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.
Asked
Active
Viewed 2,287 times
1 Answers
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:
desertnaut
- 2,154
- 2
- 16
- 25
Mujeebur Rahman
- 21
- 4
