Skip to content

Instantly share code, notes, and snippets.

@ahmedazizkhelifi
Created August 3, 2020 01:25
Show Gist options
  • Save ahmedazizkhelifi/294e3c50da3ee1ec3dbd3dc139e2deb4 to your computer and use it in GitHub Desktop.
Save ahmedazizkhelifi/294e3c50da3ee1ec3dbd3dc139e2deb4 to your computer and use it in GitHub Desktop.
from google.colab import files
uploaded = files.upload()
## test.csv(application/vnd.ms-excel) - 28629 bytes, last modified: 11/12/2019 - 100% done
## train.csv(application/vnd.ms-excel) - 61194 bytes, last modified: 11/12/2019 - 100% done
import io
train = pd.read_csv(io.BytesIO(uploaded['train.csv']))
test = pd.read_csv(io.BytesIO(uploaded['test.csv']))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment