algo_type

Description

Defines the type of algorithm being implemented, categorizing it as either 'regression' or 'classification'. This distinction is crucial as it directly influences the kind of predictive analysis the model will perform, based on whether the outcome is a continuous variable (regression) or categorical labels (classification).

Options

  • regression

  • classification

Steps impacted

training

Example

date_col: Date_Chargement
algo_type: regression
algo_name: xgboost
algorithm_parameters:
  n_estimators: 150
  max_depth: 4

Last updated