Skip to content

Commit

Permalink
Release TFDS 4.9.0.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 521973543
  • Loading branch information
marcenacp authored and The TensorFlow Datasets Authors committed Apr 5, 2023
1 parent 91bf06f commit 99145c0
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 16 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,35 @@ and this project adheres to

### Security

## [4.9.0] - 2023-04-04

### Added

- Native support for JAX and PyTorch. TensorFlow is no longer a dependency for
reading datasets. See the
[documentation](https://www.tensorflow.org/datasets/tfless_tfds).
- Added minival split to
[LVIS dataset](https://www.tensorflow.org/datasets/catalog/lvis).
- [Mixed-human](https://www.tensorflow.org/datasets/catalog/robomimic_mh) and
[machine-generated](https://www.tensorflow.org/datasets/catalog/robomimic_mg)
robomimic datasets.
- WebVid dataset.
- ImagenetPI dataset.
- [Wikipedia](https://www.tensorflow.org/datasets/catalog/wikipedia) for
20230201.

### Changed

- Support for `tensorflow=2.12`.

### Deprecated

### Removed

### Fixed

### Security

## [4.8.3] - 2023-02-27

### Added
Expand Down
1 change: 0 additions & 1 deletion docs/_book.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ upper_tabs:
path: /datasets/gcs
- title: TFDS for Jax and PyTorch
path: /datasets/tfless_tfds
status: nightly

- heading: "Add a dataset"
- title: Create your dataset
Expand Down
36 changes: 25 additions & 11 deletions tensorflow_datasets/stable_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1035,6 +1035,7 @@ imagenet2012_subset/10pct/5.0.0
imagenet2012_subset/1pct/5.0.0
imagenet_a/0.1.0
imagenet_lt/1.0.0
imagenet_pi/1.0.0
imagenet_r/0.1.0
imagenet_r/0.2.0
imagenet_resized/16x16/0.1.0
Expand Down Expand Up @@ -1119,7 +1120,7 @@ lsun/sofa/3.1.0
lsun/tower/3.1.0
lsun/train/3.1.0
lsun/tv-monitor/3.1.0
lvis/1.2.0
lvis/1.3.0
malaria/1.0.0
math_dataset/algebra__linear_1d/1.0.0
math_dataset/algebra__linear_1d_composed/1.0.0
Expand Down Expand Up @@ -2155,16 +2156,28 @@ rlu_rwrl/walker_walk_combined_challenge_none_1_percent/1.0.1
rlu_rwrl/walker_walk_combined_challenge_none_20_percent/1.0.1
rlu_rwrl/walker_walk_combined_challenge_none_40_percent/1.0.1
rlu_rwrl/walker_walk_combined_challenge_none_5_percent/1.0.1
robomimic_ph/can_image/1.0.1
robomimic_ph/can_low_dim/1.0.1
robomimic_ph/lift_image/1.0.1
robomimic_ph/lift_low_dim/1.0.1
robomimic_ph/square_image/1.0.1
robomimic_ph/square_low_dim/1.0.1
robomimic_ph/tool_hang_image/1.0.1
robomimic_ph/tool_hang_low_dim/1.0.1
robomimic_ph/transport_image/1.0.1
robomimic_ph/transport_low_dim/1.0.1
robomimic_mg/can_mg_image/1.0.0
robomimic_mg/can_mg_low_dim/1.0.0
robomimic_mg/lift_mg_image/1.0.0
robomimic_mg/lift_mg_low_dim/1.0.0
robomimic_mh/can_mh_image/1.0.0
robomimic_mh/can_mh_low_dim/1.0.0
robomimic_mh/lift_mh_image/1.0.0
robomimic_mh/lift_mh_low_dim/1.0.0
robomimic_mh/square_mh_image/1.0.0
robomimic_mh/square_mh_low_dim/1.0.0
robomimic_mh/transport_mh_image/1.0.0
robomimic_mh/transport_mh_low_dim/1.0.0
robomimic_ph/can_ph_image/1.0.1
robomimic_ph/can_ph_low_dim/1.0.1
robomimic_ph/lift_ph_image/1.0.1
robomimic_ph/lift_ph_low_dim/1.0.1
robomimic_ph/square_ph_image/1.0.1
robomimic_ph/square_ph_low_dim/1.0.1
robomimic_ph/tool_hang_ph_image/1.0.1
robomimic_ph/tool_hang_ph_low_dim/1.0.1
robomimic_ph/transport_ph_image/1.0.1
robomimic_ph/transport_ph_low_dim/1.0.1
robonet/robonet_128/4.0.1
robonet/robonet_64/4.0.1
robonet/robonet_sample_128/4.0.1
Expand Down Expand Up @@ -3530,6 +3543,7 @@ web_graph/in-sparse/1.0.0
web_graph/sparse/1.0.0
web_nlg/0.1.0
web_questions/1.0.0
webvid/1.0.0
wider_face/0.1.0
wiki40b/ar/1.3.0
wiki40b/bg/1.3.0
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_datasets/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
_MAJOR_VERSION = '4'
_MINOR_VERSION = '8'
_PATCH_VERSION = '3'
_MINOR_VERSION = '9'
_PATCH_VERSION = '0'

__version__ = (
'.'.join([
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_datasets/version_stable.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

# We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html)
_MAJOR_VERSION = '4'
_MINOR_VERSION = '8'
_PATCH_VERSION = '3'
_MINOR_VERSION = '9'
_PATCH_VERSION = '0'

__version__ = '.'.join([
_MAJOR_VERSION,
Expand Down

0 comments on commit 99145c0

Please sign in to comment.