tangram_model 0.7.0

Tangram makes it easy for programmers to train, deploy, and monitor machine learning models.
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,
}