main function
void
main()
Implementation
void main() {
// 1. Create a new instance of the forecaster.
final forecaster = SilverForecaster(
inputCsvPath: 'lib/datasets/silver.csv',
outputCsvPath: 'D:/LokalAI/multiagent/llm_finetuner/evaluation_results.csv',
epochs: 5, // You can configure all hyperparameters here
numModels: 4,
hiddenSize: 28,
);
// 2. Run the entire process.
forecaster.run();
}