Skip to content

Tag: amazon-s3

Tensorflow reading data from AWS s3 bucket

I want to stream my data files from an AWS s3 bucket. I’m following the setup described here, but using tensorflow 2. The setup specifies that you can use a AWS configuration file in ~/.aws/credentials, but I also tried using the environment variables. However the smoke test below keeps giving the follo…

Pandas read_pickle from s3 bucket

I am working on a Jupyter notebook from AWS EMR. I am able to do this: pd.read_csv(“s3:\mypath\xyz.csv’). However, if I try to open a pickle file like this, pd.read_pickle(“s3:\mypath\xyz.pkl”) I am getting this error: However, I can see both xyz.csv and xyz.pkl in the same path! Can a…