Table of Contents

Class WeightLoadResult

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Result of weight loading operation.

public class WeightLoadResult
Inheritance
WeightLoadResult
Inherited Members

Properties

ErrorMessage

Error message if loading failed.

public string? ErrorMessage { get; set; }

Property Value

string

FailedCount

Number of weights that failed to load.

public int FailedCount { get; set; }

Property Value

int

FailedParameters

Names and errors for failed parameters.

public List<(string Name, string Error)> FailedParameters { get; set; }

Property Value

List<(string datasetId, string versionId)>

LoadedCount

Number of weights successfully loaded.

public int LoadedCount { get; set; }

Property Value

int

LoadedParameters

Names of successfully loaded parameters.

public List<string> LoadedParameters { get; set; }

Property Value

List<string>

SkippedCount

Number of weights skipped (no mapping).

public int SkippedCount { get; set; }

Property Value

int

Success

Whether loading succeeded.

public bool Success { get; set; }

Property Value

bool

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.