Hello, Adrian. When I download the file, all the files are downloaded randomly. How can I get it to download like a kaggle file? Is there any way to avoid this?
Can you explain a bit more on your issue? Are you having issues with downloading larger datasets with multiple files such as the "A Large Scale Fish" dataset which is 3 GB and contains multiple folders?
@@AdrianDolinay what i meant is loading the zip file directly into set would not give you proper values...i think you have to unzip it first. unless the read takes care of uncompressing it. check the values u got in the video.
Yup, pandas will unzip it. The documentation outlines how read_csv unzips it under the "compression" parameter. Please let me know if you have any additional questions! pandas.pydata.org/docs/reference/api/pandas.read_csv.html
Please help me... I used the api properly still Whenever I download any competition dataset only CSV and few data(i.e. images ) downloads and most of the file doesn't download
@@carbon_molecule hmm, when I run the above code all the data is downloaded within Google Colab. Are you using a different IDE? The issue is the current Kaggle API is outdated, but once you run the above code it gets updated.
@@AdrianDolinay I'm having problems because I am brand new to machine learning. I do not understand the proper algorithms I need to input into Google Colab. I am working on Supervised Learning now. I have looked and looked for something to take me step by step in setting up the algorithms in Google Colab, and cannot find nothing. Is there a place I can go to and be able to look at supervised algorithms for K-Nearest Neighbors which falls under supervised learning to do my project?
@@kelijunior7871 I just released a video on KNN. If you're looking to implement a KNN classification algorithm it should help. You can access the notebook through GitHub as well. Hopefully it helps! KNN Vid on TH-cam - th-cam.com/video/l3TP8wickk4/w-d-xo.html&ab_channel=AdrianDolinay
The first thing I suggest is double checking that the competition name is correct. It also may be an issue on Kaggle's end. If you keep having issues submitting with the API I suggest posting your issue on Kaggle's "Product Feedback" forum. Hope this helps! www.kaggle.com/product-feedback?sort=most-comments
Yup! I'm interested most by cryptography, I'll continue to post videos exploring that topic and how to implement cryptographic applications within Python. I also have broader interest in cybersecurity that I plan to explore down the line
Could you do a video over how to clean data from a dataset in Kaggle
Hello, Adrian.
When I download the file, all the files are downloaded randomly.
How can I get it to download like a kaggle file?
Is there any way to avoid this?
Can you explain a bit more on your issue? Are you having issues with downloading larger datasets with multiple files such as the "A Large Scale Fish" dataset which is 3 GB and contains multiple folders?
@@AdrianDolinay Adrian, thank you.
I wrote some code to configure it, and it worked. I think my first code was wrong. Sorry about that.
does it actually unzip the chess file and load csv?
Hi! My preferred method is to read in the zipped file into a pandas DataFrame like I did at 8:57.
@@AdrianDolinay what i meant is loading the zip file directly into set would not give you proper values...i think you have to unzip it first. unless the read takes care of uncompressing it. check the values u got in the video.
Yup, pandas will unzip it. The documentation outlines how read_csv unzips it under the "compression" parameter. Please let me know if you have any additional questions!
pandas.pydata.org/docs/reference/api/pandas.read_csv.html
after running command " ! kaggle datasets download -d 'name-of-dataset'"
it is generating
Error 403: forbidden
I couldn't download datasets from gaggle
As i got message cannot create directory
Was the error on the "!mkdir ~/.kaggle" line?
@@AdrianDolinay yes
@@misrahmaqboolofficial Are you running this in Google Colab or on your local computer?
Google colab
Please help me...
I used the api properly still
Whenever I download any competition dataset only CSV and few data(i.e. images ) downloads and most of the file doesn't download
Which competition?
@@AdrianDolinay dog breed identification
@SomeOne try the code below
import zipfile
!pip install --upgrade --force-reinstall --no-deps kaggle
!kaggle competitions download -c dog-breed-identification
with zipfile.ZipFile('/content/dog-breed-identification.zip', 'r') as zip_ref:
zip_ref.extractall('/content')
@@AdrianDolinay but no zip gets downloaded when I use api to download
@@carbon_molecule hmm, when I run the above code all the data is downloaded within Google Colab. Are you using a different IDE? The issue is the current Kaggle API is outdated, but once you run the above code it gets updated.
How would I upload datasets submission directly from the notebook?
At 9:58 I go over how to submit it, let me know if you still have issues!
@@AdrianDolinay I'm having problems because I am brand new to machine learning. I do not understand the proper algorithms I need to input into Google Colab. I am working on Supervised Learning now. I have looked and looked for something to take me step by step in setting up the algorithms in Google Colab, and cannot find nothing. Is there a place I can go to and be able to look at supervised algorithms for K-Nearest Neighbors which falls under supervised learning to do my project?
@@kelijunior7871 I just released a video on KNN. If you're looking to implement a KNN classification algorithm it should help. You can access the notebook through GitHub as well. Hopefully it helps!
KNN Vid on TH-cam - th-cam.com/video/l3TP8wickk4/w-d-xo.html&ab_channel=AdrianDolinay
@@kelijunior7871 KNN notebook on GitHub, under "Machine Learning" folder - github.com/tudev/Workshops-2020-2021
when i am doing submission it shows me 400 bad request
The first thing I suggest is double checking that the competition name is correct. It also may be an issue on Kaggle's end. If you keep having issues submitting with the API I suggest posting your issue on Kaggle's "Product Feedback" forum. Hope this helps!
www.kaggle.com/product-feedback?sort=most-comments
@@AdrianDolinay i think its an issue related to api because i have checked everything but again giving me the same error.
By the way do you know about Cyber security?
Yup! I'm interested most by cryptography, I'll continue to post videos exploring that topic and how to implement cryptographic applications within Python. I also have broader interest in cybersecurity that I plan to explore down the line
@@AdrianDolinay that's nice.... Can you please help me in continuing my journey from a intermediate to advanced
It means there is no folder.
This was helpful thanks