Interface IFineTuningResult
Namespace: Glitch9.AIDevKit
Assembly: Glitch9.AIDevKit.dll
Syntax
public interface IFineTuningResult : IResult
Properties
| Edit this page View SourceErrorMessage
Provider error message when the job fails, otherwise null.
Declaration
string ErrorMessage { get; }
Property Value
| Type | Description |
|---|---|
| string |
FineTunedModelId
The fine-tuned model id/name produced by this job, if completed.
Declaration
string FineTunedModelId { get; }
Property Value
| Type | Description |
|---|---|
| string |
FinishedAt
End timestamp if the job is finished.
Declaration
UnixTime? FinishedAt { get; }
Property Value
| Type | Description |
|---|---|
| UnixTime? |
JobId
Provider job identifier for the fine-tuning task.
Declaration
string JobId { get; }
Property Value
| Type | Description |
|---|---|
| string |
Status
Provider-normalized status string (e.g. queued/running/succeeded/failed).
Declaration
string Status { get; }
Property Value
| Type | Description |
|---|---|
| string |
TrainingFileId
Training file id used for this fine-tuning job.
Declaration
string TrainingFileId { get; }
Property Value
| Type | Description |
|---|---|
| string |
ValidationFileId
Validation file id used for this fine-tuning job, if any.
Declaration
string ValidationFileId { get; }
Property Value
| Type | Description |
|---|---|
| string |