You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -209,24 +209,24 @@ This training pipeline contains the following steps:
209
209
210
210
**Prepare Data**
211
211
- This component takes multiple taxi datasets (yellow and green) and merges/filters the data, and prepare the train/val and evaluation datasets.
212
-
- Input: Local data under `./data/` (multiple .csv files)
213
-
- Output: Single prepared dataset (.csv) and train/val/test datasets.
212
+
- **Input:** Local data under `./data/` (multiple .csv files).
213
+
- **Output:** Single prepared dataset (.csv) and train/val/test datasets.
214
214
215
215
**Train Model**
216
216
- This component trains a Linear Regressor with the training set.
217
-
- Input: Training dataset
218
-
- Output: Trained model (pickle format)
217
+
- **Input:** Training dataset.
218
+
- **Output:** Trained model (pickle format).
219
219
220
220
**Evaluate Model**
221
221
- This component uses the trained model to predict taxi fares on the test set.
222
-
- Input: ML model and Test dataset
223
-
- Output: Performance of model and a deploy flag whether to deploy or not.
222
+
- **Input:** ML model and Test dataset.
223
+
- **Output:** Performance of model and a deploy flag whether to deploy or not.
224
224
- This component compares the performance of the model with all previous deployed models on the new test dataset and decides whether to promote or not model into production. Promoting model into production happens by registering the model in AML workspace.
225
225
226
226
**Register Model**
227
227
- This component scores the model based on how accurate the predictions are in the test set.
228
-
- Input: Trained model and the deploy flag.
229
-
- Output: Registered model in Machine Learning.
228
+
- **Input:** Trained model and the deploy flag.
229
+
- **Output:** Registered model in Machine Learning.
0 commit comments