diff --git a/CHANGELOG.md b/CHANGELOG.md index dcb990e4e17..f14f381150f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/docs/_book.yaml b/docs/_book.yaml index 484894500aa..a9be5629bcf 100644 --- a/docs/_book.yaml +++ b/docs/_book.yaml @@ -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 diff --git a/tensorflow_datasets/stable_versions.txt b/tensorflow_datasets/stable_versions.txt index e9269d626e8..b515e90d391 100644 --- a/tensorflow_datasets/stable_versions.txt +++ b/tensorflow_datasets/stable_versions.txt @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/tensorflow_datasets/version.py b/tensorflow_datasets/version.py index 4d0f94c5bfb..8569446f309 100644 --- a/tensorflow_datasets/version.py +++ b/tensorflow_datasets/version.py @@ -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([ diff --git a/tensorflow_datasets/version_stable.py b/tensorflow_datasets/version_stable.py index 315af33d5a2..bd2584cbd09 100644 --- a/tensorflow_datasets/version_stable.py +++ b/tensorflow_datasets/version_stable.py @@ -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,