System details.

interface FineTuningResources {
    first: WatsonXAI.PaginationFirst;
    limit: number;
    next?: WatsonXAI.PaginationNext;
    resources?: FineTuningResource[];
    system?: WatsonXAI.SystemDetails;
    total_count?: number;
}

Properties

The reference to the first item in the current page.

limit: number

The number of items to return in each page.

A reference to the first item of the next page, if any.

resources?: FineTuningResource[]

Optional details coming from the service and related to the API call or the associated resource.

total_count?: number

The total number of resources. Computed explicitly only when 'total_count=true' query parameter is present. This is in order to avoid performance penalties.