load_model from AWS S3 using AWS EMR #2394
Answered
by
RobinL
jffengineer
asked this question in
Q&A
-
How do I load my model from AWS S3 in AWS EMR? load_model() appears to access local file system, even if I specify "s3://path_to_file/model.json". Do I need to mount S3 on local nodes? Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
RobinL
Sep 11, 2024
Replies: 1 comment 1 reply
-
You need to either download the JSON from S3 to local disk first and provide Splink the local file path or load from S3 into a python dictionary, and provide Splink with the python dict |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jffengineer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to either download the JSON from S3 to local disk first and provide Splink the local file path or load from S3 into a python dictionary, and provide Splink with the python dict