Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 371 Bytes

model_training.md

File metadata and controls

19 lines (11 loc) · 371 Bytes

Model Training

We will leverage a Docker container to train our model.

cd model

./train.sh

This will build our Docker image, mount our current directory, in /tmp, train our model, and output the model artifact.

Once the process complete you will see the iris_model.pkl in the directory. You can now return to the project root.

cd ..