Uploading Data on Google Colab

Unzipping a file is taking infinite time .What to do?

Hey @Bhawna,
you may try uploading the files directly on the drive and mount the google drive to google-colab.

Step 1:

First, go to your Google Colab then type the below:

`from google.colab import drive`
`drive.mount('/content/gdrive')`

The cell will return the following and you need to go to the link to retrieve the authorization code. Then you are good to go!

Step 2:
If you are able to access Google Drive, your google drive files should be all under:

/content/gdrive/My Drive/

while your current directory will be /content/

By doing this ,can I skip unzipping part?

yeah if you unzip and then upload files on the drive.