-
Notifications
You must be signed in to change notification settings - Fork 3k
Add image classification processing guide #4748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| # Image classification | ||
|
|
||
| Image classification datasets are used to train a model to classify an entire image. There are a wide variety of applications enabled by these datasets such as identifying endangered wildlife species or screening for disease in medical images. This guide will show you how to apply transformations to an image classification dataset. | ||
|
|
||
| Before you start, make sure you have up-to-date versions of `albumentations` and `cv2` installed: | ||
|
|
||
| ```bash | ||
| pip install -U albumentations opencv-python | ||
| ``` | ||
|
|
||
| This guide uses the [Beans](https://huggingface.co/datasets/beans) dataset for identifying the type of disease of a bean plant based on an image of its leaf. | ||
|
|
||
| Load the dataset and take a look at an example: | ||
|
|
||
| ```py | ||
| >>> from datasets import load_dataset | ||
|
|
||
| >>> dataset = load_dataset("beans") | ||
| >>> dataset["train"][10] | ||
| {'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=500x500 at 0x7F8D2F4D7A10>, | ||
| 'image_file_path': '/root/.cache/huggingface/datasets/downloads/extracted/b0a21163f78769a2cf11f58dfc767fb458fc7cea5c05dccc0144a2c0f0bc1292/train/angular_leaf_spot/angular_leaf_spot_train.204.jpg', | ||
| 'labels': 0} | ||
| ``` | ||
|
|
||
| The dataset has three fields: | ||
|
|
||
| * `image`: a PIL image object. | ||
| * `image_file_path`: the path to the image file. | ||
| * `labels`: the label or category of the image. | ||
|
|
||
| Next, check out an image: | ||
|
|
||
| <div class="flex justify-center"> | ||
| <img src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/datasets/img_clf.png"> | ||
| </div> | ||
|
|
||
| Now apply some augmentations with `albumentations`. You'll randomly crop the image, flip it horizontally, and adjust its brightness. | ||
|
|
||
| ```py | ||
| >>> import cv2 | ||
| >>> import albumentations as A | ||
| >>> import numpy as np | ||
|
|
||
| >>> transform = A.Compose([ | ||
| ... A.RandomCrop(width=256, height=256), | ||
| ... A.HorizontalFlip(p=0.5), | ||
| ... A.RandomBrightnessContrast(p=0.2), | ||
| ... ]) | ||
| ``` | ||
|
|
||
| Create a function to apply the transformation to the images: | ||
|
|
||
| ```py | ||
| >>> def transforms(examples): | ||
| ... examples["pixel_values"] = [ | ||
| ... transform(image=np.array(image))["image"] for image in examples["image"] | ||
| ... ] | ||
| ... | ||
| ... return examples | ||
| ``` | ||
|
|
||
| Use the [`~Dataset.set_transform`] function to apply the transformation on-the-fly to batches of the dataset to consume less disk space: | ||
|
|
||
| ```py | ||
| >>> dataset.set_transform(transforms) | ||
| ``` | ||
|
|
||
| You can verify the transformation worked by indexing into the `pixel_values` of the first example: | ||
|
|
||
| ```py | ||
| >>> import numpy as np | ||
| >>> import matplotlib.pyplot as plt | ||
|
|
||
| >>> img = dataset["train"][0]["pixel_values"] | ||
| >>> plt.imshow(img) | ||
| ``` | ||
|
|
||
| <div class="flex justify-center"> | ||
| <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/datasets/img_clf_aug.png"> | ||
| <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/datasets/img_clf_aug.png"/> | ||
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.