Class ReplicatePredictionMetrics
Execution timing reported by Replicate once a prediction finishes. All values are in seconds.
Inherited Members
Namespace: Glitch9.AIDevKit.Replicate
Assembly: Glitch9.AIDevKit.Provider.Replicate.dll
Syntax
public class ReplicatePredictionMetrics
Properties
| Edit this page View SourcePredictTime
Time spent running the model itself, excluding queue wait and cold-boot delay. This is the billable compute duration.
Declaration
[JsonProperty("predict_time")]
public float PredictTime { get; set; }
Property Value
| Type | Description |
|---|---|
| float |
TotalTime
Total wall-clock time from submission to completion, including cold-boot and queue wait time.
Declaration
[JsonProperty("total_time")]
public float TotalTime { get; set; }
Property Value
| Type | Description |
|---|---|
| float |