Show / Hide Table of Contents

Class LogProbability

The log probabilities of the generated tokens.

Inheritance
object
LogProbability
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class LogProbability

Properties

LogProbabilities

Declaration
[JsonProperty(PropertyName = "logProbabilities")]
public List<double> LogProbabilities { get; set; }
Property Value
Type Description
List<double>

The log probability of each token used to construct the text chunk.

Text

Declaration
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }
Property Value
Type Description
string

The text chunk for which the log probabilities was calculated.

TokenIds

Declaration
[JsonProperty(PropertyName = "tokenIds")]
public List<int> TokenIds { get; set; }
Property Value
Type Description
List<int>

The token ids of each token used to construct the text chunk.

In this article
Back to top