Learn practical skills, build real-world projects, and advance your career

Flowers Recognition

We'll use the flower recognition Dataset, which consists of over 4,000+ images

Download and Exploring the Data

We can use the opendatasets library to download the dataset from Kaggle. opendatasets uses the Kaggle Official API for downloading datasets from Kaggle. Follow these steps to find your API credentials:

1.Sign in to https://kaggle.com/, then click on your profile picture on the top right and select "My Account" from the menu.

2.Scroll down to the "API" section and click "Create New API Token". This will download a file kaggle.json with the following contents:

{"username":"YOUR_KAGGLE_USERNAME","key":"YOUR_KAGGLE_KEY"}
3.When you run opendatsets.download, you will be asked to enter your username & Kaggle API, which you can get from the file downloaded in step 2.

!pip install opendatasets --upgrade --quiet