Show / Hide Table of Contents

Class TextGenerationModelMetrics

The text generation model metrics of the fine-tuning process.

Inheritance
object
ModelMetrics
TextGenerationModelMetrics
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class TextGenerationModelMetrics : ModelMetrics

Properties

FinalAccuracy

Declaration
[JsonProperty(PropertyName = "finalAccuracy")]
public double FinalAccuracy { get; set; }
Property Value
Type Description
double

Fine-tuned model accuracy.

FinalLoss

Declaration
[JsonProperty(PropertyName = "finalLoss")]
public double FinalLoss { get; set; }
Property Value
Type Description
double

Fine-tuned model loss.

In this article
Back to top