File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,10 @@ and can be downloaded to the data directory using the following command executed
28
28
wget https://archive.ics.uci.edu/ml/machine-learning-databases/00519/heart_failure_clinical_records_dataset.csv -P data/
29
29
```
30
30
31
- To train ML models we next need to create a training dataset and a holdout test dataset. To achieve this we can use the
32
- ` create_test_dataset.py ` script to split the original dataset into a training dataset ("data/train.json") with 80% of
33
- the data and a holdout test set with 20% of the data (To train ML models we next need to create a training dataset and a
34
- holdout test dataset. To achieve this we can use the ` create_test_dataset.py ` script to split the original dataset into
35
- a training dataset (data/train.json) with 80% of the data and a holdout test set with 20% of the data (data/test.json).
36
- An example json file to be used as part of the curl request to the model server api is also generated - this contains
37
- the first example in the test dataset (data/test_post_request.json).
31
+ To train the ML models we next need to create a training dataset and a holdout test dataset. To achieve this we can use the
32
+ ` create_test_dataset.py ` script to split the original dataset into a training dataset (data/train.json) with 80% of the
33
+ data and a holdout test set with 20% of the data (data/test.json). An example json file to be used as part of the curl
34
+ request to the model server api is also generated - this contains the first example in the test dataset (data/test_post_request.json).
38
35
39
36
``` bash
40
37
python -m create_test_dataset
You can’t perform that action at this time.
0 commit comments