Skip to content

Python library for dataset collection and manipulation (will be added) for your next Machine Learning project

License

Notifications You must be signed in to change notification settings

Joyel1441/DatasetHelper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DatasetHelper

Python library for dataset collection and manipulation (will be added) for your next Machine Learning project

Installation:

Step 1:

git clone https://github.com/Joyel1441/DatasetHelper.git

Step 2:

cd DatasetHelper

Step 3:

pip install -r requirements.txt

Usage:

BulkImageDownloader

BulkImageDownloader helps you download bulk images related to the keywords provided

Load BulkImageDownloader class from DatasetHelper, and then pass keywords (related to image which you want to download) as the argument

from DatasetHelper import BulkImageDownloader

img = BulkImageDownloader('plants')
img.download()

This project uses pixabay api, you can change api key by passing api key as the argument

img = BulkImageDownloader('plants', api_key=<YOUR_PIXABAY_API_KEY>)
img.download()

To change the output directory, you can pass directory name as the argument

img = BulkImageDownloader('plants', output_dir=<OUTPUT_DIRECTORY>)
img.download()

To set the image download limit, you can pass limit as argument

img = BulkImageDownloader('plants', limit=200)
img.download()

More features will be added to ease your work in handling datasets, you can help by contributing this project

About

Python library for dataset collection and manipulation (will be added) for your next Machine Learning project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages