Joblib or pickel model files into compute?

I searched through documentation/tutorials and couldn’t see anything about using an existing model for predicting on compute node. I’m hoping to avoid retraining, and just ssh this file to the AWS EC2 docker instance i set up for Compute.
Any thoughts or help greatly appreciated!
Thanks

If is it just the model file, you can include it in the docker container.

1 Like

I, generally, keep a version of my model stored on aws S3 storage, then use boto3 to load the model from the compute node. Perhaps this would work for you as well. What I like about it is that I can make adjustments to my model and upload a new version to aws without having to wrestle with the compute node setup again. By far the most difficult aspect of this tournament, I’ve found, is to get the compute node setup.