Code import - branch release/SIENTIAPDE-1645
This commit is contained in:
48
scripts/inputs/linear_regression.json
Normal file
48
scripts/inputs/linear_regression.json
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"experiment": {
|
||||
"experiment_run_id": 1001,
|
||||
"experiment_name": "test-experiment-name",
|
||||
"run_name": "test-run-name",
|
||||
"username": "vitor.santos@aignosi.com.br",
|
||||
"status": "ORCHESTRATOR_WAITING_PROC"
|
||||
},
|
||||
"minio": {
|
||||
"mc_alias": "suse",
|
||||
"bucket_name": "model-training",
|
||||
"file_name": "training-sample-dataset-1001.csv",
|
||||
"local_csv": "input_dataset.csv"
|
||||
},
|
||||
"temporal": {
|
||||
"task_queue": "train_model-basic-queue",
|
||||
"workflow_name": "train_model",
|
||||
"execution_timeout_minutes": 5,
|
||||
"run_timeout_minutes": 5,
|
||||
"task_timeout_minutes": 5
|
||||
},
|
||||
"payload": {
|
||||
"experiment_run_id": 1001,
|
||||
"variable_columns": ["Counter", "Rollout"],
|
||||
"target_variable": "Square",
|
||||
"line_separator": ",",
|
||||
"decimal_separator": ".",
|
||||
"train_size": 80,
|
||||
"shuffle": true,
|
||||
"random_state": 42,
|
||||
"model_name": "smoke-linreg",
|
||||
"model_type": "linear_regression",
|
||||
"model_id": 1001,
|
||||
"data_model_kwargs": {},
|
||||
"model_kwargs": {},
|
||||
"opt_params": {},
|
||||
"date_column": "timestamp"
|
||||
},
|
||||
"db_only": {
|
||||
"model_metadata": {
|
||||
"schemas": {
|
||||
"components": {
|
||||
"schemas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
49
scripts/inputs/sin-approx.json
Normal file
49
scripts/inputs/sin-approx.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"experiment": {
|
||||
"experiment_run_id": 2000,
|
||||
"experiment_name": "experiment-sin-approx",
|
||||
"run_name": "run-sin-approx",
|
||||
"username": "vitor.santos@aignosi.com.br",
|
||||
"status": "ORCHESTRATOR_WAITING_PROC"
|
||||
},
|
||||
"minio": {
|
||||
"mc_alias": "open-suse",
|
||||
"bucket_name": "model-training",
|
||||
"file_name": "training-sin-approx-dataset-1001.csv",
|
||||
"local_csv": "data-1780946658143-pivot.csv"
|
||||
},
|
||||
"temporal": {
|
||||
"task_queue": "train_model-basic-queue",
|
||||
"workflow_name": "train_model",
|
||||
"execution_timeout_minutes": 5,
|
||||
"run_timeout_minutes": 5,
|
||||
"task_timeout_minutes": 5
|
||||
},
|
||||
"payload": {
|
||||
"experiment_run_id": 2000,
|
||||
"variable_columns": ["SourceTri"],
|
||||
"target_variable": "TargetSin",
|
||||
"line_separator": ",",
|
||||
"decimal_separator": ".",
|
||||
"train_size": 80,
|
||||
"shuffle": true,
|
||||
"random_state": 42,
|
||||
"model_name": "sin-approx",
|
||||
"model_type": "linear_regression",
|
||||
"model_id": 1,
|
||||
"data_model_kwargs": {},
|
||||
"model_kwargs": {},
|
||||
"opt_params": {},
|
||||
"date_column": "timestamp"
|
||||
},
|
||||
"db_only": {
|
||||
"model_metadata": {
|
||||
"schemas": {
|
||||
"components": {
|
||||
"schemas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
63
scripts/inputs/xgboost.json
Normal file
63
scripts/inputs/xgboost.json
Normal file
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"experiment": {
|
||||
"experiment_run_id": 1002,
|
||||
"experiment_name": "test-experiment-xgboost",
|
||||
"run_name": "test-run-xgboost",
|
||||
"username": "vitor.santos@aignosi.com.br",
|
||||
"status": "ORCHESTRATOR_WAITING_PROC"
|
||||
},
|
||||
"minio": {
|
||||
"mc_alias": "suse",
|
||||
"bucket_name": "model-training",
|
||||
"file_name": "training-sample-dataset-1002.csv",
|
||||
"local_csv": "input_dataset.csv"
|
||||
},
|
||||
"temporal": {
|
||||
"task_queue": "train_model-basic-queue",
|
||||
"workflow_name": "train_model",
|
||||
"execution_timeout_minutes": 5,
|
||||
"run_timeout_minutes": 5,
|
||||
"task_timeout_minutes": 5
|
||||
},
|
||||
"payload": {
|
||||
"experiment_run_id": 1002,
|
||||
"variable_columns": ["Counter", "Rollout"],
|
||||
"target_variable": "Square",
|
||||
"line_separator": ",",
|
||||
"decimal_separator": ".",
|
||||
"train_size": 80,
|
||||
"shuffle": true,
|
||||
"random_state": 42,
|
||||
"model_name": "smoke-xgb",
|
||||
"model_type": "xgboost",
|
||||
"model_id": 1002,
|
||||
"data_model_kwargs": {
|
||||
"scaler_method": "MinMax",
|
||||
"window_size": 3,
|
||||
"use_filtering": false,
|
||||
"transform_mode": "all"
|
||||
},
|
||||
"model_kwargs": {},
|
||||
"opt_params": {
|
||||
"tree_method": "hist",
|
||||
"device": "cuda",
|
||||
"learning_rate": 0.3,
|
||||
"n_estimators": 100,
|
||||
"max_depth": 32,
|
||||
"subsample": 0.8,
|
||||
"colsample_bytree": 0.8,
|
||||
"min_child_weight": 5,
|
||||
"random_state": 42
|
||||
},
|
||||
"date_column": "timestamp"
|
||||
},
|
||||
"db_only": {
|
||||
"model_metadata": {
|
||||
"schemas": {
|
||||
"components": {
|
||||
"schemas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user