-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Food 101 dataset #5119
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
Food 101 dataset #5119
Changes from 18 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
31fadbe
Adding multiweight support for shufflenetv2 prototype models
jdsgomes 1e578b7
Revert "Adding multiweight support for shufflenetv2 prototype models"
jdsgomes 85e4429
Merge branch 'pytorch:main' into main
jdsgomes 4e3d900
Adding multiweight support for shufflenetv2 prototype models
jdsgomes 615b612
Revert "Adding multiweight support for shufflenetv2 prototype models"
jdsgomes a0bbece
Merge branch 'pytorch:main' into main
jdsgomes ba966f4
Merge branch 'pytorch:main' into main
jdsgomes 6cdd49b
Merge branch 'pytorch:main' into main
jdsgomes d4f1638
Merge branch 'pytorch:main' into main
jdsgomes 7d66c8b
Add Food101 Dataset
jdsgomes b2ad8fb
Merge branch 'main' into food-101-dataset
jdsgomes 6b08514
Remove unecessary Path contructor calls
jdsgomes 93b78a5
Remove unecessary Path contructor callsi and fix types
jdsgomes 88ddbb2
Merge branch 'food-101-dataset' of github.com:jdsgomes/vision into fo…
jdsgomes 72a8eaa
Fix tests
jdsgomes 1407dbd
Address PR comments from @pmeier
jdsgomes 23f685a
Fix bug in tests and in food101 dataset
jdsgomes 6285b31
Fix bug in tests and in food101 dataset
jdsgomes fa73c17
Update torchvision/datasets/food101.py
pmeier ed4e0b7
Merge branch 'main' into food-101-dataset
pmeier 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
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,90 @@ | ||
| import json | ||
| from pathlib import Path | ||
| from typing import Any, Tuple, Callable, Optional | ||
|
|
||
| import PIL.Image | ||
|
|
||
| from .utils import verify_str_arg, download_and_extract_archive | ||
| from .vision import VisionDataset | ||
|
|
||
|
|
||
| class Food101(VisionDataset): | ||
| """`The Food-101 Data Set <https://data.vision.ee.ethz.ch/cvl/datasets_extra/food-101/>`_. | ||
|
|
||
| The Food-101 is a challenging data set of 101 food categories, with 101'000 images. | ||
| For each class, 250 manually reviewed test images are provided as well as 750 training images. | ||
| On purpose, the training images were not cleaned, and thus still contain some amount of noise. | ||
| This comes mostly in the form of intense colors and sometimes wrong labels. All images were | ||
| rescaled to have a maximum side length of 512 pixels. | ||
|
|
||
|
|
||
| Args: | ||
| root (string): Root directory of the dataset. | ||
| split (string, optional): The dataset split, supports ``"train"`` (default) and ``"test"``. | ||
| transform (callable, optional): A function/transform that takes in an PIL image and returns a transformed | ||
| version. E.g, ``transforms.RandomCrop``. | ||
| target_transform (callable, optional): A function/transform that takes in the target and transforms it. | ||
| """ | ||
|
|
||
| _URL = "http://data.vision.ee.ethz.ch/cvl/food-101.tar.gz" | ||
| _MD5 = "85eeb15f3717b99a5da872d97d918f87" | ||
|
|
||
| def __init__( | ||
| self, | ||
| root: str, | ||
| split: str = "train", | ||
| download: bool = True, | ||
| transform: Optional[Callable] = None, | ||
| target_transform: Optional[Callable] = None, | ||
| ) -> None: | ||
| super().__init__(root, transform=transform, target_transform=target_transform) | ||
| self._split = verify_str_arg(split, "split", ("train", "test")) | ||
| self._base_folder = Path(self._root_path) / "food-101" | ||
| self._meta_folder = self._base_folder / "meta" | ||
| self._images_folder = self._base_folder / "images" | ||
|
|
||
| if download: | ||
| self._download() | ||
|
|
||
| if not self._check_exists(): | ||
| raise RuntimeError("Dataset not found. You can use download=True to download it") | ||
|
|
||
| self._labels = [] | ||
| self._image_files = [] | ||
| with open(self._meta_folder / f"{split}.json", "r") as f: | ||
| metadata = json.loads(f.read()) | ||
|
|
||
| self.classes = sorted(metadata.keys()) | ||
| self.class_to_idx = dict(zip(self.classes, range(len(self.classes)))) | ||
|
|
||
| for class_label, im_rel_paths in metadata.items(): | ||
| self._labels += [self.class_to_idx[class_label]] * len(im_rel_paths) | ||
| self._image_files += [ | ||
| self._images_folder.joinpath(*f"{im_rel_path}.jpg".split("/")) for im_rel_path in im_rel_paths | ||
| ] | ||
|
|
||
| def __len__(self) -> int: | ||
| return len(self._image_files) | ||
|
|
||
| def __getitem__(self, idx) -> Tuple[Any, Any]: | ||
| image_file, label = self._image_files[idx], self._labels[idx] | ||
| image = PIL.Image.open(image_file).convert("RGB") | ||
|
|
||
| if self.transform: | ||
| image = self.transform(image) | ||
|
|
||
| if self.target_transform: | ||
| label = self.target_transform(label) | ||
|
|
||
| return image, label | ||
|
|
||
| def extra_repr(self) -> str: | ||
| return f"split={self._split}" | ||
|
|
||
| def _check_exists(self) -> bool: | ||
| return all(folder.exists() and folder.is_dir() for folder in (self._meta_folder, self._images_folder)) | ||
|
|
||
| def _download(self) -> None: | ||
| if self._check_exists(): | ||
| return | ||
| download_and_extract_archive(self._URL, download_root=self.root, md5=self._MD5) | ||
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.