-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Stanford cars #5166
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
Stanford cars #5166
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
efcf0cb
[WIP]
abhi-glitchhg 62ca7bf
[WIP]
abhi-glitchhg 4b123e4
[WIP]
abhi-glitchhg 52cd5b9
[WIP]
abhi-glitchhg 346036e
edited StanfordCars class
abhi-glitchhg c0c372a
Merge branch 'main' into stanford_cars
abhi-glitchhg acb389b
Merge remote-tracking branch 'origin/stanford_cars' into stanford_cars
abhi-glitchhg db410b9
Adding Testcase for stanford cars
abhi-glitchhg 0e91bf0
Added Testcase for stanford cars
abhi-glitchhg fbd3122
Added Testcase for stanford cars
abhi-glitchhg 817e9f2
minor edit
abhi-glitchhg 52c98f3
made changes as per the suggestions
abhi-glitchhg 2eceade
fixed typo in naming stanford_cars.py
abhi-glitchhg af25d72
cars_meta.mat file will be created in test
abhi-glitchhg cbd3d9b
Merge branch 'main' of github.com:pytorch/vision into stanford_cars
NicolasHug fe75e81
Merge branch 'main' into stanford_cars
abhi-glitchhg 8fceb0b
Some cleanups
NicolasHug aa13db9
Merge branch 'stanford_cars' of github.com:abhi-glitchhg/vision into …
NicolasHug dc463d7
Sigh
NicolasHug b593760
don't convert to strings
NicolasHug 121bb55
Merge branch 'main' of github.com:pytorch/vision into stanford_cars
NicolasHug 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,121 @@ | ||
import pathlib | ||
from typing import Callable, Optional, Any, Tuple | ||
|
||
from PIL import Image | ||
|
||
from .utils import download_and_extract_archive, download_url, verify_str_arg | ||
from .vision import VisionDataset | ||
|
||
|
||
class StanfordCars(VisionDataset): | ||
"""`Stanford Cars <https://ai.stanford.edu/~jkrause/cars/car_dataset.html>`_ Dataset | ||
|
||
The Cars dataset contains 16,185 images of 196 classes of cars. The data is | ||
split into 8,144 training images and 8,041 testing images, where each class | ||
has been split roughly in a 50-50 split | ||
|
||
.. note:: | ||
|
||
This class needs `scipy <https://docs.scipy.org/doc/>`_ to load target files from `.mat` format. | ||
|
||
Args: | ||
root (string): Root directory of dataset | ||
split (string, optional): The dataset split, supports ``"train"`` (default) or ``"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. | ||
download (bool, optional): If True, downloads the dataset from the internet and | ||
puts it in root directory. If dataset is already downloaded, it is not | ||
downloaded again.""" | ||
|
||
def __init__( | ||
self, | ||
root: str, | ||
split: str = "train", | ||
transform: Optional[Callable] = None, | ||
target_transform: Optional[Callable] = None, | ||
download: bool = False, | ||
) -> None: | ||
|
||
try: | ||
import scipy.io as sio | ||
except ImportError: | ||
raise RuntimeError("Scipy is not found. This dataset needs to have scipy installed: pip install scipy") | ||
|
||
super().__init__(root, transform=transform, target_transform=target_transform) | ||
|
||
self._split = verify_str_arg(split, "split", ("train", "test")) | ||
self._base_folder = pathlib.Path(root) / "stanford_cars" | ||
devkit = self._base_folder / "devkit" | ||
|
||
if self._split == "train": | ||
self._annotations_mat_path = devkit / "cars_train_annos.mat" | ||
self._images_base_path = self._base_folder / "cars_train" | ||
else: | ||
self._annotations_mat_path = self._base_folder / "cars_test_annos_withlabels.mat" | ||
self._images_base_path = self._base_folder / "cars_test" | ||
|
||
if download: | ||
self.download() | ||
|
||
if not self._check_exists(): | ||
raise RuntimeError("Dataset not found. You can use download=True to download it") | ||
|
||
self._samples = [ | ||
( | ||
str(self._images_base_path / annotation["fname"]), | ||
annotation["class"] - 1, # Original target mapping starts from 1, hence -1 | ||
) | ||
for annotation in sio.loadmat(self._annotations_mat_path, squeeze_me=True)["annotations"] | ||
] | ||
|
||
self.classes = sio.loadmat(str(devkit / "cars_meta.mat"), squeeze_me=True)["class_names"].tolist() | ||
self.class_to_idx = {cls: i for i, cls in enumerate(self.classes)} | ||
|
||
def __len__(self) -> int: | ||
return len(self._samples) | ||
|
||
def __getitem__(self, idx: int) -> Tuple[Any, Any]: | ||
"""Returns pil_image and class_id for given index""" | ||
image_path, target = self._samples[idx] | ||
pil_image = Image.open(image_path).convert("RGB") | ||
|
||
if self.transform is not None: | ||
pil_image = self.transform(pil_image) | ||
if self.target_transform is not None: | ||
target = self.target_transform(target) | ||
return pil_image, target | ||
|
||
def download(self) -> None: | ||
if self._check_exists(): | ||
return | ||
|
||
download_and_extract_archive( | ||
url="https://ai.stanford.edu/~jkrause/cars/car_devkit.tgz", | ||
download_root=str(self._base_folder), | ||
md5="c3b158d763b6e2245038c8ad08e45376", | ||
) | ||
if self._split == "train": | ||
download_and_extract_archive( | ||
url="https://ai.stanford.edu/~jkrause/car196/cars_train.tgz", | ||
download_root=str(self._base_folder), | ||
md5="065e5b463ae28d29e77c1b4b166cfe61", | ||
) | ||
else: | ||
download_and_extract_archive( | ||
url="https://ai.stanford.edu/~jkrause/car196/cars_test.tgz", | ||
download_root=str(self._base_folder), | ||
md5="4ce7ebf6a94d07f1952d94dd34c4d501", | ||
) | ||
download_url( | ||
url="https://ai.stanford.edu/~jkrause/car196/cars_test_annos_withlabels.mat", | ||
root=str(self._base_folder), | ||
md5="b0a2b23655a3edd16d84508592a98d10", | ||
) | ||
|
||
def _check_exists(self) -> bool: | ||
if not (self._base_folder / "devkit").is_dir(): | ||
return False | ||
|
||
return self._annotations_mat_path.exists() and self._images_base_path.is_dir() |
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.