tangram_model 0.6.0

Tangram is an all-in-one automated machine learning framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::ModelTrainOptions;

#[derive(buffalo::Read, buffalo::Write)]
#[buffalo(size = "dynamic")]
pub struct TrainGridItemOutput {
	#[buffalo(id = 0, required)]
	pub hyperparameters: ModelTrainOptions,
	#[buffalo(id = 1, required)]
	pub comparison_metric_value: f32,
	#[buffalo(id = 2, required)]
	pub duration: f32,
}