Class CompressionTrial<T>
Represents a compression configuration to be evaluated.
public class CompressionTrial<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
CompressionTrial<T>
- Inherited Members
Properties
ErrorMessage
Gets or sets any error message from the trial.
public string? ErrorMessage { get; set; }
Property Value
FitnessScore
Gets or sets the fitness score for this trial.
public T FitnessScore { get; set; }
Property Value
- T
Hyperparameters
Gets or sets the hyperparameters for the compression technique.
public Dictionary<string, object> Hyperparameters { get; set; }
Property Value
Metrics
Gets or sets the resulting compression metrics.
public CompressionMetrics<T>? Metrics { get; set; }
Property Value
Success
Gets or sets whether this trial completed successfully.
public bool Success { get; set; }
Property Value
Technique
Gets or sets the compression technique used.
public CompressionType Technique { get; set; }