Vulnerabilities | |||||
---|---|---|---|---|---|
Version | Suggest | Low | Medium | High | Critical |
4.9.7 | 0 | 0 | 0 | 0 | 0 |
4.9.6 | 0 | 0 | 0 | 0 | 0 |
4.9.5 | 0 | 0 | 0 | 0 | 0 |
4.9.4 | 0 | 0 | 0 | 0 | 0 |
4.9.3 | 0 | 0 | 0 | 0 | 0 |
4.9.2 | 0 | 0 | 0 | 0 | 0 |
4.9.1 | 0 | 0 | 0 | 0 | 0 |
4.9.0 | 0 | 0 | 0 | 0 | 0 |
4.8.3 | 0 | 0 | 0 | 0 | 0 |
4.8.2 | 0 | 0 | 0 | 0 | 0 |
4.8.1 | 0 | 0 | 0 | 0 | 0 |
4.8.0 | 0 | 0 | 0 | 0 | 0 |
4.7.0 | 0 | 0 | 0 | 0 | 0 |
4.6.0 | 0 | 0 | 0 | 0 | 0 |
4.5.2 | 0 | 0 | 0 | 0 | 0 |
4.5.1 | 0 | 0 | 0 | 0 | 0 |
4.5.0 | 0 | 0 | 0 | 0 | 0 |
4.4.0 | 0 | 0 | 0 | 0 | 0 |
4.3.0 | 0 | 0 | 0 | 0 | 0 |
4.2.0 | 0 | 0 | 0 | 0 | 0 |
4.1.0 | 0 | 0 | 0 | 0 | 0 |
4.0.1 | 0 | 0 | 0 | 0 | 0 |
4.0.0 | 0 | 0 | 0 | 0 | 0 |
3.2.1 | 0 | 0 | 0 | 0 | 0 |
3.2.0 | 0 | 0 | 0 | 0 | 0 |
3.1.0 | 0 | 0 | 0 | 0 | 0 |
3.0.0 | 0 | 0 | 0 | 0 | 0 |
2.1.0 | 0 | 0 | 0 | 0 | 0 |
2.0.0 | 0 | 0 | 0 | 0 | 0 |
1.3.2 | 0 | 0 | 0 | 0 | 0 |
1.3.1 | 0 | 0 | 0 | 0 | 0 |
1.3.0 | 0 | 0 | 0 | 0 | 0 |
1.2.0 | 0 | 0 | 0 | 0 | 0 |
1.1.0 | 0 | 0 | 0 | 0 | 0 |
1.0.2 | 0 | 0 | 0 | 0 | 0 |
1.0.1 | 0 | 0 | 0 | 0 | 0 |
4.9.7 - This version is safe to use because it has no known security vulnerabilities at this time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
Apache-1.0 - Apache License 1.0TensorFlow Datasets provides many public datasets as tf.data.Datasets
.
To install and use TFDS, we strongly encourage to start with our getting started guide. Try it interactively in a Colab notebook.
Our documentation contains:
# !pip install tensorflow-datasets
import tensorflow_datasets as tfds
import tensorflow as tf
# Construct a tf.data.Dataset
ds = tfds.load('mnist', split='train', as_supervised=True, shuffle_files=True)
# Build your input pipeline
ds = ds.shuffle(1000).batch(128).prefetch(10).take(5)
for image, label in ds:
pass
TFDS has been built with these principles in mind:
If those use cases are not satisfied, please send us feedback.
Adding a dataset is really straightforward by following our guide.
Request a dataset by opening a Dataset request GitHub issue.
And vote on the current set of requests by adding a thumbs-up reaction to the issue.
Please include the following citation when using tensorflow-datasets
for a
paper, in addition to any citation specific to the used datasets.
@misc{TFDS,
title = {{TensorFlow Datasets}, A collection of ready-to-use datasets},
howpublished = {\url{https://www.tensorflow.org/datasets}},
}
This is a utility library that downloads and prepares public datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have license to use the dataset. It is your responsibility to determine whether you have permission to use the dataset under the dataset's license.
If you're a dataset owner and wish to update any part of it (description, citation, etc.), or do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thanks for your contribution to the ML community!
If you're interested in learning more about responsible AI practices, including fairness, please see Google AI's Responsible AI Practices.
tensorflow/datasets
is Apache 2.0 licensed. See the
LICENSE
file.