class

OpenAI::EvalRunResultCounts

Inherits JSON::Serializable < Reference < Object

Counters summarizing the outcomes of the evaluation run.

Constructors

new(total : Int64 = 0, errored : Int64 = 0, failed : Int64 = 0, passed : Int64 = 0)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

errored

Number of output items that resulted in an error.

Source
errored=(errored : Int64)

Number of output items that resulted in an error.

Source
failed

Number of output items that failed to pass the evaluation.

Source
failed=(failed : Int64)

Number of output items that failed to pass the evaluation.

Source
passed

Number of output items that passed the evaluation.

Source
passed=(passed : Int64)

Number of output items that passed the evaluation.

Source
total

Total number of executed output items.

Source
total=(total : Int64)

Total number of executed output items.

Source