Dear MK,
Yes, that’s right: the data will already be there, and you don’t need to prepare it yourself.
Hm, I can see how the instructions could be a little ambiguous here.
Paths like /training_data and /holdout_data are meant to stand for arbitrary locations in the container where you can mount the data. It’s better not to hard-code these at all.
In your code, please use the arguments supplied to the train_model, load_model, and run_model functions. So, no matter what “model_folder” is, save the model there. No matter where “data_folder” is, read the data there. No matter what “record” may be, use it and return an output. That way, we can make the code as reusable as possible.
Best,
James