{"id":15063967,"url":"https://github.com/kaggledatasets/kaggledatasets","last_synced_at":"2025-06-20T18:36:45.911Z","repository":{"id":62573623,"uuid":"222072830","full_name":"kaggledatasets/kaggledatasets","owner":"kaggledatasets","description":"Collection of Kaggle Datasets ready to use for Everyone (Looking for contributors)","archived":false,"fork":false,"pushed_at":"2019-12-18T10:55:34.000Z","size":53,"stargazers_count":50,"open_issues_count":3,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-16T13:18:55.105Z","etag":null,"topics":["data-science","datasets","deep-learning","kaggle","keras","machine-learning","python","pytorch","scikit-learn","tensorflow"],"latest_commit_sha":null,"homepage":"https://kaggledatasets.github.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kaggledatasets.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-11-16T08:59:19.000Z","updated_at":"2025-06-07T17:57:32.000Z","dependencies_parsed_at":"2022-11-04T00:05:53.473Z","dependency_job_id":null,"html_url":"https://github.com/kaggledatasets/kaggledatasets","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kaggledatasets/kaggledatasets","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaggledatasets%2Fkaggledatasets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaggledatasets%2Fkaggledatasets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaggledatasets%2Fkaggledatasets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaggledatasets%2Fkaggledatasets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaggledatasets","download_url":"https://codeload.github.com/kaggledatasets/kaggledatasets/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaggledatasets%2Fkaggledatasets/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260997989,"owners_count":23095017,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-science","datasets","deep-learning","kaggle","keras","machine-learning","python","pytorch","scikit-learn","tensorflow"],"created_at":"2024-09-25T00:09:27.998Z","updated_at":"2025-06-20T18:36:40.899Z","avatar_url":"https://github.com/kaggledatasets.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kaggledatasets\n\nCollection of Kaggle Datasets ready to use for Everyone\n\n![License](https://img.shields.io/github/license/kaggledatasets/kaggledatasets) \n![Release](https://img.shields.io/github/v/release/kaggledatasets/kaggledatasets)\n![Platform Support](https://img.shields.io/pypi/pyversions/kaggledatasets)\n\n- [More about Kaggle Datasets](#more-about-kaggle-datasets)\n- [Installation](#installation)\n  - [Binaries](#binaries)\n  - [From Source](#from-source)\n- [Getting Started](#getting-started)\n- [Communication](#communication)\n- [Releases and Contributing](#releases-and-contributing)\n- [License](#license)\n\n|  System |                                Python 3.5                               |                                Python 3.6                               |                                Python 3.7                               |\n|:-------:|:-----------------------------------------------------------------------:|:-----------------------------------------------------------------------:|:-----------------------------------------------------------------------:|\n|  Linux  | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/1) | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/2) | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/3) |\n|  macOS  |                                                                         | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/4) | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/5) |\n| Windows | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/6) | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/7) | ![Build Status](https://travis-matrix-badges.herokuapp.com/repos/kaggledatasets/kaggledatasets/branches/master/8) |\n\n## More About Kaggle Datasets\n\n```python\nimport kaggledatasets as kd\n\nheart_disease = kd.structured.HeartDiseaseUCI(download=True)\n\n# Returns the pandas data frame to be used in Scikit Learn or any other framework\ndf = heart_disease.data_frame()\n\n# Returns the tensorflow dataset type compatible with TF 2.0\ndataset = heart_disease.load()\nfor batch, label in dataset.take(1):\n    for key, value in batch.items():\n        ...\n\n# Returns the data loader for PyTorch\n# Work in progress for PyTorch support\n```\n\n## Installation\n\n### Binaries\n\nCommands to install from binaries via Conda or pip wheels are on our website: [https://kaggledatasets.github.io](https://kaggledatasets.github.io)\n\n### From Source\n\n#### Get the kaggledatasets Source\n\n```\ngit clone --recursive https://github.com/kaggledatasets/kaggledatasets\ncd kaggledatasets\n```\n\n#### Install Dependencies\n\n```\npip install -r requirements.txt\n```\n\n#### Install kaggledatasets\n\n```\npython setup.py install\n```\n\n## Getting Started\n\n* [Tutorials: Get started with kaggledatasets](https://kaggledatasets.github.io/get-started)\n* [Examples: Easy to understand kaggledatasets code](https://github.com/kaggledatasets/kaggledatasets/tree/master/examples)\n* [API Reference](https://kaggledatasets.readthedocs.io)\n\n## Communication\n\n* **GitHub Issues**: bug reports, feature requests, dataset requests, install issues, help wanted, thoughts, etc.\n* **Slack**: The [Kaggle Datasets Slack](https://kaggledatasets.slack.com/) hosts a primary audience of moderate to experienced Kaggle Datasets users and developers for general chat, online discussions, collaboration etc. If you need a slack invite, please visit: [http://bit.ly/kdslack](http://bit.ly/kdslack)\n\n## Releases and Contributing\n\nkaggledatasets is expecting to have a 30 day release cycle (major releases). Please let us know if you encounter a bug by [filing an issue](https://github.com/kaggledatasets/kaggledatasets/issues).  \n\nWe appreciate all contributions and make sure you go through our [Contributing Guide](CONTRIBUTING.md). If you are planning to contribute back bug-fixes, please do so without any further discussion.  \n\nIf you plan to contribute new features, new datasets, utility functions or extensions to the core, please first open an issue and discuss the feature with us.\nSending a PR without discussion might end up resulting in a rejected PR, because we might be taking kaggledatasets in a different direction than you might be aware of.\n\n## License\n\nkaggledatasets is Apache-2.0 licensed, as found in the [LICENSE](LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaggledatasets%2Fkaggledatasets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaggledatasets%2Fkaggledatasets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaggledatasets%2Fkaggledatasets/lists"}