Skip to content
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

Bump tensorflow-datasets from 3.1.0 to 4.8.2 in /tensorflow_cuj/neural_machine_translation #976

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 18, 2023

Bumps tensorflow-datasets from 3.1.0 to 4.8.2.

Release notes

Sourced from tensorflow-datasets's releases.

v4.8.2

Deprecated

  • Python 3.7 support: this is the last version of TFDS supporting Python 3.7. Future versions will use Python 3.8.

Fixed

  • tfds new and tfds build better support the new recommended datasets organization, where individual datasets have their own package under datasets/, builder class is called Builder and is defined within module ${dsname}_dataset_builder.py.

Security

v4.8.1

Changed

  • Added file valid_tags.txt to not break builds.
  • TFDS no longer relies on TensorFlow DTypes. We chose NumPy DTypes to keep the typing expressiveness, while dropping the heavy dependency on TensorFlow. We migrated all our internal datasets. Please, migrate accordingly:
    • tf.bool: np.bool_
    • tf.string: np.str_
    • tf.int64, tf.int32, etc: np.int64, np.int32, etc
    • tf.float64, tf.float32, etc: np.float64, np.float32, etc

v4.8.0

Added

  • [API] DatasetBuilder's description and citations can be specified in dedicated README.md and CITATIONS.bib files, within the dataset package (see https://www.tensorflow.org/datasets/add_dataset).
  • Tags can be associated to Datasets, in the TAGS.txt file. For now, they are only used in the generated documentation.
  • [API][Experimental] New ViewBuilder to define datasets as transformations of existing datasets. Also adds tfds.transform with functionality to apply transformations.
  • Loggers are also called on tfds.as_numpy(...), base Logger class has a new corresponding method.
  • tfds.core.DatasetBuilder can have a default limit for the number of simultaneous downloads. tfds.download.DownloadConfig can override it.
  • tfds.features.Audio supports storing raw audio data for lazy decoding.
  • The number of shards can be overridden when preparing a dataset: builder.download_and_prepare(download_config=tfds.download.DownloadConfig(num_shards=42)). Alternatively, you can configure the min and max shard size if you want TFDS to compute the number of shards for you, but want to have control over the shard sizes.

Changed

... (truncated)

Changelog

Sourced from tensorflow-datasets's changelog.

[4.8.2] - 2023-01-17

Deprecated

  • Python 3.7 support: this is the last version of TFDS supporting Python 3.7. Future versions will use Python 3.8.

Fixed

  • tfds new and tfds build better support the new recommended datasets organization, where individual datasets have their own package under datasets/, builder class is called Builder and is defined within module ${dsname}_dataset_builder.py.

Security

[4.8.1] - 2023-01-02

Changed

  • Added file valid_tags.txt to not break builds.
  • TFDS no longer relies on TensorFlow DTypes. We chose NumPy DTypes to keep the typing expressiveness, while dropping the heavy dependency on TensorFlow. We migrated all our internal datasets. Please, migrate accordingly:
    • tf.bool: np.bool_
    • tf.string: np.str_
    • tf.int64, tf.int32, etc: np.int64, np.int32, etc
    • tf.float64, tf.float32, etc: np.float64, np.float32, etc

[4.8.0] - 2022-12-21

Added

  • [API] DatasetBuilder's description and citations can be specified in dedicated README.md and CITATIONS.bib files, within the dataset package (see https://www.tensorflow.org/datasets/add_dataset).
  • Tags can be associated to Datasets, in the TAGS.txt file. For now, they are only used in the generated documentation.
  • [API][Experimental] New ViewBuilder to define datasets as transformations of existing datasets. Also adds tfds.transform with functionality to apply transformations.
  • Loggers are also called on tfds.as_numpy(...), base Logger class has a new corresponding method.
  • tfds.core.DatasetBuilder can have a default limit for the number of simultaneous downloads. tfds.download.DownloadConfig can override it.
  • tfds.features.Audio supports storing raw audio data for lazy decoding.
  • The number of shards can be overridden when preparing a dataset: builder.download_and_prepare(download_config=tfds.download.DownloadConfig(num_shards=42)). Alternatively, you can configure the min and max shard size if you want TFDS

... (truncated)

Commits
  • 21f7b20 release TFDS 4.8.2.
  • f87a730 when dynamically loading a module defining a Builder, load from within packag...
  • d88e087 more robust way of inferring Builder name, support builder pkg located anywhere.
  • d1701a6 add init.py in new datasets/ sub-directories.
  • 273b3d7 Automated documentation update.
  • edce47f Add logging for dataset_builder.download_and_prepare calls.
  • 3045792 Fix notebook tests
  • cebb04d CLI new: generate an empty init.py file.
  • 48ce7c2 add wrapt to required dependencies.
  • 3e77995 Format code with pyink
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [tensorflow-datasets](https://github.com/tensorflow/datasets) from 3.1.0 to 4.8.2.
- [Release notes](https://github.com/tensorflow/datasets/releases)
- [Changelog](https://github.com/tensorflow/datasets/blob/master/CHANGELOG.md)
- [Commits](tensorflow/datasets@v3.1.0...v4.8.2)

---
updated-dependencies:
- dependency-name: tensorflow-datasets
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
0 participants