Created
August 3, 2020 01:25
-
-
Save ahmedazizkhelifi/294e3c50da3ee1ec3dbd3dc139e2deb4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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