Table of Contents

Class CompressionTrial<T>

Namespace
AiDotNet.AutoML
Assembly
AiDotNet.dll

Represents a compression configuration to be evaluated.

public class CompressionTrial<T>

Type Parameters

T

The 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

string

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

Dictionary<string, object>

Metrics

Gets or sets the resulting compression metrics.

public CompressionMetrics<T>? Metrics { get; set; }

Property Value

CompressionMetrics<T>

Success

Gets or sets whether this trial completed successfully.

public bool Success { get; set; }

Property Value

bool

Technique

Gets or sets the compression technique used.

public CompressionType Technique { get; set; }

Property Value

CompressionType