2

Does anyone know a (free) method for importing large datasets into Google Colab, of multiple GB? Github is severely limited, uploading a folder to google drive takes a long time.

Finn Williams
  • 451
  • 1
  • 7
  • 17

1 Answers1

2

One option is that you can download the dataset into your system and save it in an easily accessible directory. Then, run the following codes:

from google.colab import files
data = files.upload()

After running the above line, you will get a Choose File button where you can directly browse your system and choose your file.

Added the screenshot for your reference:

Screenshot

desertnaut
  • 2,154
  • 2
  • 16
  • 25