Compartir a través de


ChatOptions.PresencePenalty Property

Definition

Gets or sets a value that influences the probability of generated tokens appearing based on their existing presence in generated text.

public:
 property Nullable<float> PresencePenalty { Nullable<float> get(); void set(Nullable<float> value); };
public float? PresencePenalty { get; set; }
member this.PresencePenalty : Nullable<single> with get, set
Public Property PresencePenalty As Nullable(Of Single)

Property Value

Remarks

You can modify this value to reduce repetitiveness of generated tokens. Similar to FrequencyPenalty, except that this penalty is applied equally to all tokens that have already appeared, regardless of their exact frequencies.

Applies to