All Projects → tensorflow → Datasets

tensorflow / Datasets

Licence: apache-2.0
TFDS is a collection of datasets ready to use with TensorFlow, Jax, ...

Programming Languages

python
139335 projects - #7 most used programming language
ruby
36898 projects - #4 most used programming language
smalltalk
420 projects
NewLisp
63 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Datasets

Retriever
Quickly download, clean up, and install public datasets into a database management system
Stars: ✭ 241 (-92.21%)
Mutual labels:  dataset, datasets, data
Voice datasets
🔊 A comprehensive list of open-source datasets for voice and sound computing (50+ datasets).
Stars: ✭ 494 (-84.03%)
Mutual labels:  dataset, datasets, data
Data Science Hacks
Data Science Hacks consists of tips, tricks to help you become a better data scientist. Data science hacks are for all - beginner to advanced. Data science hacks consist of python, jupyter notebook, pandas hacks and so on.
Stars: ✭ 273 (-91.18%)
Mutual labels:  dataset, data, numpy
Awesome Twitter Data
A list of Twitter datasets and related resources.
Stars: ✭ 533 (-82.77%)
Mutual labels:  dataset, datasets, data
Awesome Json Datasets
A curated list of awesome JSON datasets that don't require authentication.
Stars: ✭ 2,421 (-21.75%)
Mutual labels:  dataset, datasets, data
Colour
Colour Science for Python
Stars: ✭ 1,131 (-63.45%)
Mutual labels:  dataset, datasets, data
Einops
Deep learning operations reinvented (for pytorch, tensorflow, jax and others)
Stars: ✭ 4,022 (+29.99%)
Mutual labels:  numpy, jax
Textrecognitiondatagenerator
A synthetic data generator for text recognition
Stars: ✭ 2,075 (-32.93%)
Mutual labels:  dataset, data
Datasets
🎁 3,000,000+ Unsplash images made available for research and machine learning
Stars: ✭ 1,805 (-41.66%)
Mutual labels:  dataset, data
Pandas Datareader
Extract data from a wide range of Internet sources into a pandas DataFrame.
Stars: ✭ 2,183 (-29.44%)
Mutual labels:  dataset, data
Pipedream
Connect APIs, remarkably fast. Free for developers.
Stars: ✭ 2,068 (-33.16%)
Mutual labels:  datasets, data
Dataspice
🌶 Create lightweight schema.org descriptions of your datasets
Stars: ✭ 137 (-95.57%)
Mutual labels:  dataset, data
Pytubes
A module for getting data into python from large data sources
Stars: ✭ 164 (-94.7%)
Mutual labels:  data, numpy
Python Pytest Cases
Separate test code from test cases in pytest.
Stars: ✭ 127 (-95.9%)
Mutual labels:  dataset, data
Githubrankingsspain
⬆️ Rankings with the most active GitHub users in Spain (sorted by public contributions) 🇪🇸
Stars: ✭ 127 (-95.9%)
Mutual labels:  dataset, data
Dbg Pds
Deutsche Boerse's Financial Trading Public Data Set
Stars: ✭ 124 (-95.99%)
Mutual labels:  dataset, data
Coffee Quality Database
Building the Coffee Quality Institute Database
Stars: ✭ 141 (-95.44%)
Mutual labels:  dataset, data
Data Science Resources
👨🏽‍🏫You can learn about what data science is and why it's important in today's modern world. Are you interested in data science?🔋
Stars: ✭ 171 (-94.47%)
Mutual labels:  dataset, data
Everypolitician Data
data for national legislatures worldwide
Stars: ✭ 174 (-94.38%)
Mutual labels:  dataset, data
Automated Resume Screening System
Automated Resume Screening System using Machine Learning (With Dataset)
Stars: ✭ 224 (-92.76%)
Mutual labels:  dataset, datasets

TensorFlow Datasets

TensorFlow Datasets provides many public datasets as tf.data.Datasets.

Kokoro PyPI version Tutorial API Catalog

Documentation

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 core values

TFDS has been built with these principles in mind:

  • Simplicity: Standard use-cases should work out-of-the box
  • Performance: TFDS follows best practices and can achieve state-of-the-art speed
  • Determinism/reproducibility: All users get the same examples in the same order
  • Customisability: Advanced users can have fine-grained control

If those use cases are not satisfied, please send us feedback.

Want a certain dataset?

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.

Citation

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}},
}

Disclaimers

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].