tfds-nightly 4.9.9.dev202506300045__py3-none-any.whl → 4.9.9.dev202507010046__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tensorflow_datasets/image_classification/caltech_birds.py +23 -11
- tensorflow_datasets/image_classification/cars196.py +6 -4
- tensorflow_datasets/url_checksums/caltech_birds2011.txt +2 -0
- tensorflow_datasets/url_checksums/cars196.txt +4 -0
- {tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/METADATA +1 -1
- {tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/RECORD +11 -11
- {tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/WHEEL +0 -0
- {tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/entry_points.txt +0 -0
- {tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/licenses/AUTHORS +0 -0
- {tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/licenses/LICENSE +0 -0
- {tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/top_level.txt +0 -0
@@ -227,15 +227,14 @@ class CaltechBirds2010(tfds.core.GeneratorBasedBuilder):
|
|
227
227
|
class CaltechBirds2011(CaltechBirds2010):
|
228
228
|
"""Caltech Birds 2011 dataset."""
|
229
229
|
|
230
|
-
VERSION = tfds.core.Version("0.
|
230
|
+
VERSION = tfds.core.Version("0.2.0")
|
231
231
|
|
232
232
|
@property
|
233
233
|
def _caltech_birds_info(self):
|
234
|
-
return
|
234
|
+
return CaltechBirdsInfo2011(
|
235
235
|
name=self.name,
|
236
|
-
images_url="https://
|
237
|
-
|
238
|
-
annotations_url="https://drive.google.com/uc?export=download&id=1EamOKGLoTuZdtcVYbHMWNpkn3iAVj8TP",
|
236
|
+
images_url="https://data.caltech.edu/records/65de6-vp158/files/CUB_200_2011.tgz?download=1",
|
237
|
+
segmentations_url="https://data.caltech.edu/records/w9d68-gec53/files/segmentations.tgz?download=1",
|
239
238
|
)
|
240
239
|
|
241
240
|
def _info(self):
|
@@ -257,15 +256,13 @@ class CaltechBirds2011(CaltechBirds2010):
|
|
257
256
|
)
|
258
257
|
|
259
258
|
def _split_generators(self, dl_manager):
|
260
|
-
download_path = dl_manager.download(
|
261
|
-
|
262
|
-
|
263
|
-
]
|
264
|
-
)
|
259
|
+
download_path = dl_manager.download([
|
260
|
+
self._caltech_birds_info.images_url,
|
261
|
+
])
|
265
262
|
|
266
263
|
extracted_path = dl_manager.download_and_extract([
|
267
264
|
self._caltech_birds_info.images_url,
|
268
|
-
self._caltech_birds_info.
|
265
|
+
self._caltech_birds_info.segmentations_url,
|
269
266
|
])
|
270
267
|
|
271
268
|
image_names_path = os.path.join(
|
@@ -369,3 +366,18 @@ class CaltechBirdsInfo(
|
|
369
366
|
split_url (str): train/test split file URL.
|
370
367
|
annotations_url (str): annotation folder URL.
|
371
368
|
"""
|
369
|
+
|
370
|
+
|
371
|
+
class CaltechBirdsInfo2011(
|
372
|
+
collections.namedtuple(
|
373
|
+
"_CaltechBirdsInfo2011",
|
374
|
+
["name", "images_url", "segmentations_url"],
|
375
|
+
)
|
376
|
+
):
|
377
|
+
"""Contains the information necessary to generate a Caltech Birds 2011 dataset.
|
378
|
+
|
379
|
+
Attributes:
|
380
|
+
name (str): name of dataset.
|
381
|
+
images_url (str): URL containing images
|
382
|
+
segmentations_url (str): URL containing segmentations.
|
383
|
+
"""
|
@@ -14,14 +14,15 @@
|
|
14
14
|
# limitations under the License.
|
15
15
|
|
16
16
|
"""Dataset class for Cars196 Dataset."""
|
17
|
+
|
17
18
|
import os
|
18
19
|
import urllib
|
19
20
|
|
20
21
|
from tensorflow_datasets.core.utils.lazy_imports_utils import tensorflow as tf
|
21
22
|
import tensorflow_datasets.public_api as tfds
|
22
23
|
|
23
|
-
_URL = 'http://ai.stanford.edu/~jkrause/car196/'
|
24
|
-
_EXTRA_URL = 'https://ai.stanford.edu/~jkrause/cars/car_devkit.tgz'
|
24
|
+
_URL = 'https://web.archive.org/web/20221212053154/http://ai.stanford.edu/~jkrause/car196/'
|
25
|
+
_EXTRA_URL = 'https://web.archive.org/web/20230323151230/https://ai.stanford.edu/~jkrause/cars/car_devkit.tgz'
|
25
26
|
|
26
27
|
_DESCRIPTION = (
|
27
28
|
'The Cars dataset contains 16,185 images of 196 classes of cars. The data '
|
@@ -246,7 +247,7 @@ _CITATION = """\
|
|
246
247
|
class Cars196(tfds.core.GeneratorBasedBuilder):
|
247
248
|
"""Car Images dataset."""
|
248
249
|
|
249
|
-
VERSION = tfds.core.Version('2.
|
250
|
+
VERSION = tfds.core.Version('2.2.0')
|
250
251
|
SUPPORTED_VERSIONS = [
|
251
252
|
tfds.core.Version('2.1.0'),
|
252
253
|
]
|
@@ -255,6 +256,7 @@ class Cars196(tfds.core.GeneratorBasedBuilder):
|
|
255
256
|
'2.0.0': 'Initial release',
|
256
257
|
'2.0.1': 'Website URL update',
|
257
258
|
'2.1.0': 'Fixing bug https://github.com/tensorflow/datasets/issues/3927',
|
259
|
+
'2.2.0': 'Fix broken links',
|
258
260
|
}
|
259
261
|
|
260
262
|
def _info(self):
|
@@ -271,7 +273,7 @@ class Cars196(tfds.core.GeneratorBasedBuilder):
|
|
271
273
|
description=(_DESCRIPTION),
|
272
274
|
features=tfds.features.FeaturesDict(features_dict),
|
273
275
|
supervised_keys=('image', 'label'),
|
274
|
-
homepage='https://ai.stanford.edu/~jkrause/cars/car_dataset.html',
|
276
|
+
homepage='https://web.archive.org/web/20230323151220/https://ai.stanford.edu/~jkrause/cars/car_dataset.html',
|
275
277
|
citation=_CITATION,
|
276
278
|
)
|
277
279
|
|
@@ -1,2 +1,4 @@
|
|
1
|
+
https://data.caltech.edu/records/65de6-vp158/files/CUB_200_2011.tgz?download=1 1150585339 0c685df5597a8b24909f6a7c9db6d11e008733779a671760afef78feb49bf081 CUB_200_2011.tgz
|
2
|
+
https://data.caltech.edu/records/w9d68-gec53/files/segmentations.tgz?download=1 39272883 dc77f6cffea0cbe2e41d4201115c8f29a6320ecb04fffd2444f51b8066e4b84f segmentations.tgz
|
1
3
|
https://drive.google.com/uc?export=download&id=1EamOKGLoTuZdtcVYbHMWNpkn3iAVj8TP 39272883 dc77f6cffea0cbe2e41d4201115c8f29a6320ecb04fffd2444f51b8066e4b84f segmentations.tgz
|
2
4
|
https://drive.google.com/uc?export=download&id=1hbzc_P1FuxMkcabkgn9ZKinBwW683j45 1150585339 0c685df5597a8b24909f6a7c9db6d11e008733779a671760afef78feb49bf081 CUB_200_2011.tgz
|
@@ -2,3 +2,7 @@ http://ai.stanford.edu/~jkrause/car196/cars_test.tgz 977350468 bffea656d6f425cba
|
|
2
2
|
http://ai.stanford.edu/~jkrause/car196/cars_test_annos_withlabels.mat 185758 790f75be8ea34eeded134cc559332baf23e30e91367e9ddca97d26ed9b895f05 cars_test_annos_withlabels.mat
|
3
3
|
http://ai.stanford.edu/~jkrause/car196/cars_train.tgz 979269282 512b227b30e2f0a8aab9e09485786ab4479582073a144998da74d64b801fd288 cars_train.tgz
|
4
4
|
https://ai.stanford.edu/~jkrause/cars/car_devkit.tgz 330960 b97deb463af7d58b6bfaa18b2a4de9829f0f79e8ce663dfa9261bf7810e9accd car_devkit.tgz
|
5
|
+
https://web.archive.org/web/20221212053154/http:/ai.stanford.edu/~jkrause/car196/cars_test.tgz 977350468 bffea656d6f425cba3c91c6d83336e4c5f86c6cffd8975b0f375d3a10da8e243 cars_test.tgz
|
6
|
+
https://web.archive.org/web/20221212053154/http:/ai.stanford.edu/~jkrause/car196/cars_test_annos_withlabels.mat 185758 790f75be8ea34eeded134cc559332baf23e30e91367e9ddca97d26ed9b895f05 cars_test_annos_withlabels.mat
|
7
|
+
https://web.archive.org/web/20221212053154/http:/ai.stanford.edu/~jkrause/car196/cars_train.tgz 979269282 512b227b30e2f0a8aab9e09485786ab4479582073a144998da74d64b801fd288 cars_train.tgz
|
8
|
+
https://web.archive.org/web/20230323151230/https://ai.stanford.edu/~jkrause/cars/car_devkit.tgz 330960 b97deb463af7d58b6bfaa18b2a4de9829f0f79e8ce663dfa9261bf7810e9accd car_devkit.tgz
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: tfds-nightly
|
3
|
-
Version: 4.9.9.
|
3
|
+
Version: 4.9.9.dev202507010046
|
4
4
|
Summary: tensorflow/datasets is a library of datasets ready to use with TensorFlow.
|
5
5
|
Home-page: https://github.com/tensorflow/datasets
|
6
6
|
Download-URL: https://github.com/tensorflow/datasets/tags
|
{tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/RECORD
RENAMED
@@ -1666,9 +1666,9 @@ tensorflow_datasets/image_classification/bigearthnet.py,sha256=4xqee6WYaYjURsB0P
|
|
1666
1666
|
tensorflow_datasets/image_classification/binary_alpha_digits.py,sha256=dDlw1K_ex14tgcVqk2cI4p-T958BhBmJp0UNwL8I2-E,925
|
1667
1667
|
tensorflow_datasets/image_classification/caltech.py,sha256=YrrxITYyd0lSZ117jROgdhuvy9yKznlPrRUixboq8Zs,884
|
1668
1668
|
tensorflow_datasets/image_classification/caltech101_labels.txt,sha256=35kwS35Pc3QJJB7yKXy2U0dvldE20BtAbuUaWDn6R8Q,906
|
1669
|
-
tensorflow_datasets/image_classification/caltech_birds.py,sha256=
|
1669
|
+
tensorflow_datasets/image_classification/caltech_birds.py,sha256=MUOyqmoz1iYbXW4KoqyTaZe0kQ9MUQ5JEYTOdlM9jlI,12861
|
1670
1670
|
tensorflow_datasets/image_classification/caltech_birds_test.py,sha256=o8iHg_bjzjg4TaH-ArjxKFpBJROm4cXG5ZTwn8P5T1A,1407
|
1671
|
-
tensorflow_datasets/image_classification/cars196.py,sha256=
|
1671
|
+
tensorflow_datasets/image_classification/cars196.py,sha256=v08PqZCDDrFerQ39TesO0g-Kxhn3Us6F68W07-MdAB0,12516
|
1672
1672
|
tensorflow_datasets/image_classification/cars196_test.py,sha256=AoMjpfS_Ii3EOm_eyCle3E9cIRpcRudMUN4sGJ6d_Ks,1051
|
1673
1673
|
tensorflow_datasets/image_classification/cassava.py,sha256=eDsVKepCy2oNAbQep_Vj9LtxUTRpcA6wVilbJUhoIHM,3578
|
1674
1674
|
tensorflow_datasets/image_classification/cassava_test.py,sha256=qXQTLM_lnhD4xZqJXxspbCHTq18Tc59IKWPh4TE9I1I,964
|
@@ -2329,8 +2329,8 @@ tensorflow_datasets/translate/tatoeba/__init__.py,sha256=vZ4SY1wRvAdthikCdw07C_q
|
|
2329
2329
|
tensorflow_datasets/translate/tatoeba/tatoeba.py,sha256=suDWj4CKVLPeDbG949G5GUH-F4g4iVH1xY0R8CEUs6k,869
|
2330
2330
|
tensorflow_datasets/url_checksums/c4.txt,sha256=dDDWbmWFr7mwhUle1z5ZybWpgA218XjXKytjZUUIXos,19354
|
2331
2331
|
tensorflow_datasets/url_checksums/caltech_birds2010.txt,sha256=U2UmCDpnZCaB22ZGxRjU73eC9b4_WEGO5EXlSioFCbA,486
|
2332
|
-
tensorflow_datasets/url_checksums/caltech_birds2011.txt,sha256=
|
2333
|
-
tensorflow_datasets/url_checksums/cars196.txt,sha256=
|
2332
|
+
tensorflow_datasets/url_checksums/caltech_birds2011.txt,sha256=43edRPKr-ZVW9tuPXLnA637tRkFRcddAvOJOtbYdthg,691
|
2333
|
+
tensorflow_datasets/url_checksums/cars196.txt,sha256=0uxgkOOMZZZ6l-nln43S5j4bsnoPzlkB5RqlSqxoEys,1367
|
2334
2334
|
tensorflow_datasets/url_checksums/cassava.txt,sha256=kInp15oLtZbDXVqzaRrLujvJgaXHKHzPNewrsAqfqbg,161
|
2335
2335
|
tensorflow_datasets/url_checksums/cats_vs_dogs.txt,sha256=T7UMkE-e4wdSVMoAlNTS9tXQMG2NTH8A2Z7jrXk_GqQ,212
|
2336
2336
|
tensorflow_datasets/url_checksums/cfq.txt,sha256=A4iRuXnw-kjHckjHE086H4h7xW8Sz8HVCNpCByJhyLE,140
|
@@ -2461,10 +2461,10 @@ tensorflow_datasets/vision_language/wit/wit_test.py,sha256=PXS8DMNW-MDrT2p5oy4Ic
|
|
2461
2461
|
tensorflow_datasets/vision_language/wit_kaggle/__init__.py,sha256=vGwSGeM8WE4Q-l0-eEE1sBojmk6YT0l1OO60AWa4Q40,719
|
2462
2462
|
tensorflow_datasets/vision_language/wit_kaggle/wit_kaggle.py,sha256=q-vX_FBzIwsFxL4sY9vuyQ3UQD2PLM4yhUR4U6l-qao,16903
|
2463
2463
|
tensorflow_datasets/vision_language/wit_kaggle/wit_kaggle_test.py,sha256=ZymHT1NkmD-pUnh3BmM3_g30c5afsWYnmqDD9dVyDSA,1778
|
2464
|
-
tfds_nightly-4.9.9.
|
2465
|
-
tfds_nightly-4.9.9.
|
2466
|
-
tfds_nightly-4.9.9.
|
2467
|
-
tfds_nightly-4.9.9.
|
2468
|
-
tfds_nightly-4.9.9.
|
2469
|
-
tfds_nightly-4.9.9.
|
2470
|
-
tfds_nightly-4.9.9.
|
2464
|
+
tfds_nightly-4.9.9.dev202507010046.dist-info/licenses/AUTHORS,sha256=nvBG4WwfgjuOu1oZkuQKw9kg7X6rve679ObS-YDDmXg,309
|
2465
|
+
tfds_nightly-4.9.9.dev202507010046.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
2466
|
+
tfds_nightly-4.9.9.dev202507010046.dist-info/METADATA,sha256=ldOcz84AQsdQXpXII94T_z57amwrq8Je-zIvnGynfX4,11963
|
2467
|
+
tfds_nightly-4.9.9.dev202507010046.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
2468
|
+
tfds_nightly-4.9.9.dev202507010046.dist-info/entry_points.txt,sha256=eHEL7nF5y1uCY2FgkuYIdE062epJXlAQTSdq89px4p4,73
|
2469
|
+
tfds_nightly-4.9.9.dev202507010046.dist-info/top_level.txt,sha256=bAevmk9209s_oxVZVlN6hSDIVS423qrMQvmcWSvW4do,20
|
2470
|
+
tfds_nightly-4.9.9.dev202507010046.dist-info/RECORD,,
|
{tfds_nightly-4.9.9.dev202506300045.dist-info → tfds_nightly-4.9.9.dev202507010046.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|