Deep Learning 2: How to Upload Data in Google Colaboratory

preview_player
Показать описание
In this tutorial we are discussing the following topics

(1) Upload files and folders in Google Colab

(2) Know your GPU and CPU information

(3) Know RAM information of Python notebook

(4) Know the revision history of Python notebook

(5) How to install packages

#colab#GPU#python
Рекомендации по теме
Комментарии
Автор

Literally the first 40 seconds are what I’ve been trying to do for the last 2 hours, thank you so much 🙏

vloggetts
Автор

You can just write !unzip 'filename' no need to write three lines to unzip and make sure while unzipping you must in the content folder for checking your folder just run pwd if you not in content folder just write cd content..btw nice tutorial keep up the good work

muhammadsaad
Автор

Thank you so much for your best tutorial

vinodkinoni
Автор

Tutorial is awesome i just wanna say really thank you. It contains practical information that saves lives and time.

mavi_kiz
Автор

Thank you Sir! This tutorial is really helpful. I was struggling to upload my image dataset to Google Colab but this tutorial solved all of my problems. Thanks a lot.

alekhabhatt
Автор

Very helpful video. Helped me run the Kagle Cats and Dogs dataset off of my machine. Thank you very much!

PS, Why does he talk like he's expecting us to guess the next word he's gonna say like a live lecture. lol
"The data.zip file will start...? uploading onto the...? Ipython notebook." lol

dt
Автор

No need to write whole code for unzip
just write !unzip then file name

tanaygupta
Автор

Thanks a lot for this tutorial series!!
Its really helpful!!

KKKK-jrnm
Автор

I have a question. I am working with an image dataset. It has 12 different folders with 12 different classes. For this reason, I want to reserve all images in a single directory that is all_im. I am writing code on it but it only copies a total of 808 images. But my main folder contains more than 5000 images. How may I copy all of the images from the main folder to a new folder in Google-Colab?

My code for this particular question: destination_path = "/content/my_project"



pattern = "/content/animal_dataset/*/*"
for img in glob.glob(pattern):
shutil.copy(img, destination_path)

asif
Автор

After uploading the zip how do i import it for use in the colab ??

jnyfah
Автор

Sir can you help me for my project doubts .
My project is based on bird image classification and prediction and I already generate the more than 300 folder for various types of bird images and after that I coming to your video . Can you gide me how can i train the that images and prediction.

amanchoudhary
Автор

Hi Sir, i can not upload files. because in google colab I only have a table of content. no code snippets and files. What should I do ?

__KitaBisa
Автор

i got this(BadZipFile: zipfiles that span multiple disks are not supported)
I tried all the soluation which I found, but didnt worked out. what should I do

joeurban
Автор

Thank you for this tutorial. I have one question: how do you attach a file path of images to an ImageDataGenerator object? I have tried something like:
pathtrain = "Final Dataset\\Train"
firsttrain =
pathtrain,
...)

I'm not sure how to access the files after I uploaded them

derekhe
Автор

Sir while uploading my dataset folder, i am getting error like bad zipfile. What to do sir, please help.

pallabidas
Автор

Really informative...I want to know that the sample data folder is automatically created or not?

Ashish-zqfx
Автор

how do we used the data inside the google drive, ?

aiavicii
Автор

should i follow the same method for extracting a .tgz file?

kushghilothia
Автор

How can we load gzip file instead of zip file in python

sumairayousuf
Автор

please do tutorial of opening tar file. i have tar file image dataset and having trouble opening it.

LuffyMonkey