Skip to content

Commit 21f7b20

Browse files
pierrot0The TensorFlow Datasets Authors
authored andcommitted
release TFDS 4.8.2.
PiperOrigin-RevId: 502659797
1 parent f87a730 commit 21f7b20

File tree

4 files changed

+33
-19
lines changed

4 files changed

+33
-19
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,26 @@ and this project adheres to
1414

1515
### Deprecated
1616

17+
### Removed
18+
19+
### Fixed
20+
21+
### Security
22+
23+
## [4.8.2] - 2023-01-17
24+
25+
### Deprecated
26+
1727
- Python 3.7 support: this is the last version of TFDS supporting Python 3.7.
1828
Future versions will use Python 3.8.
1929

20-
### Removed
21-
2230
### Fixed
2331

32+
- `tfds new` and `tfds build` better support the new recommended datasets
33+
organization, where individual datasets have their own package under
34+
`datasets/`, builder class is called `Builder` and is defined within module
35+
`${dsname}_dataset_builder.py`.
36+
2437
### Security
2538

2639
## [4.8.1] - 2023-01-02

tensorflow_datasets/stable_versions.txt

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,9 +1063,9 @@ imdb_reviews/subwords32k/1.0.0
10631063
imdb_reviews/subwords8k/1.0.0
10641064
irc_disentanglement/2.0.0
10651065
iris/2.0.0
1066-
istella/main/1.1.0
1067-
istella/s/1.1.0
1068-
istella/x/1.1.0
1066+
istella/main/1.2.0
1067+
istella/s/1.2.0
1068+
istella/x/1.2.0
10691069
kddcup99/1.0.1
10701070
kitti/3.1.0
10711071
kitti/3.2.0
@@ -1238,16 +1238,16 @@ mrqa/search_qa/1.0.0
12381238
mrqa/squad/1.0.0
12391239
mrqa/textbook_qa/1.0.0
12401240
mrqa/trivia_qa/1.0.0
1241-
mslr_web/10k_fold1/1.1.0
1242-
mslr_web/10k_fold2/1.1.0
1243-
mslr_web/10k_fold3/1.1.0
1244-
mslr_web/10k_fold4/1.1.0
1245-
mslr_web/10k_fold5/1.1.0
1246-
mslr_web/30k_fold1/1.1.0
1247-
mslr_web/30k_fold2/1.1.0
1248-
mslr_web/30k_fold3/1.1.0
1249-
mslr_web/30k_fold4/1.1.0
1250-
mslr_web/30k_fold5/1.1.0
1241+
mslr_web/10k_fold1/1.2.0
1242+
mslr_web/10k_fold2/1.2.0
1243+
mslr_web/10k_fold3/1.2.0
1244+
mslr_web/10k_fold4/1.2.0
1245+
mslr_web/10k_fold5/1.2.0
1246+
mslr_web/30k_fold1/1.2.0
1247+
mslr_web/30k_fold2/1.2.0
1248+
mslr_web/30k_fold3/1.2.0
1249+
mslr_web/30k_fold4/1.2.0
1250+
mslr_web/30k_fold5/1.2.0
12511251
mt_opt/rlds/1.0.0
12521252
mt_opt/sd/1.0.0
12531253
mtnt/en-fr/1.0.0
@@ -3500,6 +3500,7 @@ universal_dependencies/zh_gsd/1.0.1
35003500
universal_dependencies/zh_gsdsimp/1.0.1
35013501
universal_dependencies/zh_hk/1.0.1
35023502
universal_dependencies/zh_pud/1.0.1
3503+
unnatural_instructions/0.0.1
35033504
user_libri_audio/1.0.0
35043505
user_libri_text/1.0.0
35053506
vctk/mic1/1.0.1
@@ -5171,8 +5172,8 @@ xtreme_s/fleurs.yo_ng/2.0.0
51715172
xtreme_s/fleurs.yue_hant_hk/2.0.0
51725173
xtreme_s/fleurs.zu_za/2.0.0
51735174
xtreme_xnli/1.1.0
5174-
yahoo_ltrc/set1/1.0.0
5175-
yahoo_ltrc/set2/1.0.0
5175+
yahoo_ltrc/set1/1.1.0
5176+
yahoo_ltrc/set2/1.1.0
51765177
yelp_polarity_reviews/0.2.0
51775178
yes_no/1.0.0
51785179
youtube_vis/480_640_full/1.0.0

tensorflow_datasets/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
2626
_MAJOR_VERSION = '4'
2727
_MINOR_VERSION = '8'
28-
_PATCH_VERSION = '1'
28+
_PATCH_VERSION = '2'
2929

3030
__version__ = (
3131
'.'.join([

tensorflow_datasets/version_stable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
2222
_MAJOR_VERSION = '4'
2323
_MINOR_VERSION = '8'
24-
_PATCH_VERSION = '1'
24+
_PATCH_VERSION = '2'
2525

2626
__version__ = '.'.join([
2727
_MAJOR_VERSION,

0 commit comments

Comments
 (0)