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
FailedCount
Number of weights that failed to load.
public int FailedCount { get; set; }
Property Value
FailedParameters
Names and errors for failed parameters.
public List<(string Name, string Error)> FailedParameters { get; set; }
Property Value
LoadedCount
Number of weights successfully loaded.
public int LoadedCount { get; set; }
Property Value
LoadedParameters
Names of successfully loaded parameters.
public List<string> LoadedParameters { get; set; }
Property Value
SkippedCount
Number of weights skipped (no mapping).
public int SkippedCount { get; set; }
Property Value
Success
Whether loading succeeded.
public bool Success { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.