100+ datasets found
  1. kaggle-api-credentials

    • kaggle.com
    Updated Jul 31, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Abbad Alam (2025). kaggle-api-credentials [Dataset]. https://www.kaggle.com/datasets/abbadalam/kaggle-api-credentials
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Jul 31, 2025
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Abbad Alam
    License

    Apache License, v2.0https://www.apache.org/licenses/LICENSE-2.0
    License information was derived automatically

    Description

    Dataset

    This dataset was created by Abbad Alam

    Released under Apache 2.0

    Contents

  2. kaggle api

    • kaggle.com
    Updated Aug 23, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    v1nor1 (2021). kaggle api [Dataset]. https://www.kaggle.com/datasets/v1olet1nor1/kaggle-api/discussion
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Aug 23, 2021
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    v1nor1
    Description

    Dataset

    This dataset was created by v1nor1

    Contents

  3. [KAGGLE API]2024json

    • kaggle.com
    Updated Sep 8, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Zheung Yik2024 (2024). [KAGGLE API]2024json [Dataset]. https://www.kaggle.com/datasets/zheungyik2024/kaggle-api2024json/code
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Sep 8, 2024
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Zheung Yik2024
    License

    Apache License, v2.0https://www.apache.org/licenses/LICENSE-2.0
    License information was derived automatically

    Description

    Dataset

    This dataset was created by Zheung Yik2024

    Released under Apache 2.0

    Contents

  4. Dog's Breeds - Kaggle + API

    • kaggle.com
    Updated Feb 13, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Marcos Faria (2024). Dog's Breeds - Kaggle + API [Dataset]. https://www.kaggle.com/marcosfaria/dogs-breeds-kaggle-api/discussion
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Feb 13, 2024
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Marcos Faria
    Description

    Dataset

    This dataset was created by Marcos Faria

    Contents

  5. Kaggle Dataset User Ranking

    • kaggle.com
    Updated Nov 15, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    StrGenIx | Laurens D'hooge (2024). Kaggle Dataset User Ranking [Dataset]. https://www.kaggle.com/datasets/dhoogla/kaggle-dataset-user-ranking/data
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Nov 15, 2024
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    StrGenIx | Laurens D'hooge
    License

    https://creativecommons.org/publicdomain/zero/1.0/https://creativecommons.org/publicdomain/zero/1.0/

    Description

    This dataset contains a snapshot of the official Kaggle datasets leaderboard (taken between October 21st and October 24th 2024). For every user, the dataframe contains all their datasets with information sourced through the Kaggle API. Currently, the dataset only contains the top 250, but I have a larger snapshot of the leaderboard. I aim to expand the dataset to include the top 1000 dataset contributors.

  6. MeDAL Dataset

    • kaggle.com
    • opendatalab.com
    • +1more
    zip
    Updated Nov 16, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    xhlulu (2020). MeDAL Dataset [Dataset]. https://www.kaggle.com/xhlulu/medal-emnlp
    Explore at:
    zip(7324382521 bytes)Available download formats
    Dataset updated
    Nov 16, 2020
    Authors
    xhlulu
    Description

    https://www.googleapis.com/download/storage/v1/b/kaggle-user-content/o/inbox%2F2352583%2F868a18fb09d7a1d3da946d74a9857130%2FLogo.PNG?generation=1604973725053566&alt=media" alt="">

    Medical Dataset for Abbreviation Disambiguation for Natural Language Understanding (MeDAL) is a large medical text dataset curated for abbreviation disambiguation, designed for natural language understanding pre-training in the medical domain. It was published at the ClinicalNLP workshop at EMNLP.

    💻 Code 🤗 Dataset (Hugging Face) 💾 Dataset (Kaggle) 💽 Dataset (Zenodo) 📜 Paper (ACL) 📝 Paper (Arxiv)Pre-trained ELECTRA (Hugging Face)

    Downloading the data

    We recommend downloading from Kaggle if you can authenticate through their API. The advantage to Kaggle is that the data is compressed, so it will be faster to download. Links to the data can be found at the top of the readme.

    First, you will need to create an account on kaggle.com. Afterwards, you will need to install the kaggle API: pip install kaggle

    Then, you will need to follow the instructions here to add your username and key. Once that's done, you can run: kaggle datasets download xhlulu/medal-emnlp

    Now, unzip everything and place them inside the data directory: unzip -nq crawl-300d-2M-subword.zip -d data mv data/pretrain_sample/* data/

    Loading FastText Embeddings

    For the LSTM models, we will need to use the fastText embeddings. To do so, first download and extract the weights: wget -nc -P data/ https://dl.fbaipublicfiles.com/fasttext/vectors-english/crawl-300d-2M-subword.zip unzip -nq data/crawl-300d-2M-subword.zip -d data/

    Model Quickstart

    Using Torch Hub

    You can directly load LSTM and LSTM-SA with torch.hub: ```python import torch

    lstm = torch.hub.load("BruceWen120/medal", "lstm") lstm_sa = torch.hub.load("BruceWen120/medal", "lstm_sa") ```

    If you want to use the Electra model, you need to first install transformers: pip install transformers Then, you can load it with torch.hub: python import torch electra = torch.hub.load("BruceWen120/medal", "electra")

    Using Huggingface transformers

    If you are only interested in the pre-trained ELECTRA weights (without the disambiguation head), you can load it directly from the Hugging Face Repository:

    from transformers import AutoModel, AutoTokenizer
    
    model = AutoModel.from_pretrained("xhlu/electra-medal")
    tokenizer = AutoTokenizer.from_pretrained("xhlu/electra-medal")
    

    Citation

    Download the bibtex here, or copy the text below: @inproceedings{wen-etal-2020-medal, title = "{M}e{DAL}: Medical Abbreviation Disambiguation Dataset for Natural Language Understanding Pretraining", author = "Wen, Zhi and Lu, Xing Han and Reddy, Siva", booktitle = "Proceedings of the 3rd Clinical Natural Language Processing Workshop", month = nov, year = "2020", address = "Online", publisher = "Association for Computational Linguistics", url = "https://www.aclweb.org/anthology/2020.clinicalnlp-1.15", pages = "130--135", }

    License, Terms and Conditions

    The ELECTRA model is licensed under Apache 2.0. The license for the libraries used in this project (transformers, pytorch, etc.) can be found in their respective GitHub repository. Our model is released under a MIT license.

    The original dataset was retrieved and modified from the NLM website. By using this dataset, you are bound by the terms and conditions specified by NLM:

    INTRODUCTION

    Downloading data from the National Library of Medicine FTP servers indicates your acceptance of the following Terms and Conditions: No charges, usage fees or royalties are paid to NLM for this data.

    MEDLINE/PUBMED SPECIFIC TERMS

    NLM freely provides PubMed/MEDLINE data. Please note some PubMed/MEDLINE abstracts may be protected by copyright.

    GENERAL TERMS AND CONDITIONS

    • Users of the data agree to:

      • acknowledge NLM as the source of the data by including the phrase "Courtesy of the U.S. National Library of Medicine" in a clear and conspicuous manner,
      • properly use registration and/or trademark symbols when referring to NLM products, and
      • not indicate or imply that NLM has endorsed its products/services/applications.
    • Users who republish or redistribute the data (services, products or raw data) agree to:

      • maintain the most current version of all distributed data, or
      • make known in a clear and conspicuous manner that the products/services/applications do not reflect the most current/accurate data available from NLM.
    • These data are produced with a reasonable standard of care, but NLM makes no warranties express or implied, including no warranty of merchantability or fitness for particular purpose, regarding the accuracy or completeness of the data. Users agree to hold NLM and the U.S. Government harmless from any liability resulting from errors in the data. NLM disclaims any liability for any consequences due to use, misuse, or interpretation of information contained or not contained in the data.

    • NLM does not provide legal advice regarding copyright, fair use, or other aspects of intellectual property rights. See the NLM Copyright page.

    • NLM reserves the right to change the type and format of its machine-readable data. NLM will take reasonable steps to inform users of any changes to the format of the data before the data are distributed via the announcement section or subscription to email and RSS updates.

  7. ReAct Gemini Data

    • kaggle.com
    Updated Apr 14, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Ryan (2024). ReAct Gemini Data [Dataset]. https://www.kaggle.com/datasets/penpentled/react-finetune-gemma
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Apr 14, 2024
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Ryan
    License

    MIT Licensehttps://opensource.org/licenses/MIT
    License information was derived automatically

    Description

    Simple ReAct trajectories generated using Gemini in a LLM Agent and the Kaggle Environment.

    See notebook for more details.

  8. E-Commerce Retail Sales Series Data Collection

    • kaggle.com
    Updated Dec 7, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    US Census Bureau (2019). E-Commerce Retail Sales Series Data Collection [Dataset]. https://www.kaggle.com/datasets/census/e-commerce-retail-sales-series-data-collection
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Dec 7, 2019
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    US Census Bureau
    Description

    Content

    More details about each file are in the individual file descriptions.

    Context

    This is a dataset from the U.S. Census Bureau hosted by the Federal Reserve Economic Database (FRED). FRED has a data platform found here and they update their information according the amount of data that is brought in. Explore the U.S. Census Bureau using Kaggle and all of the data sources available through the U.S. Census Bureau organization page!

    • Update Frequency: This dataset is updated daily.

    Acknowledgements

    This dataset is maintained using FRED's API and Kaggle's API.

  9. api yolo v12

    • kaggle.com
    Updated May 7, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    mengkoding 47 (2025). api yolo v12 [Dataset]. https://www.kaggle.com/datasets/mengkoding47/api-yolo-v12/data
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    May 7, 2025
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    mengkoding 47
    Description

    Dataset

    This dataset was created by mengkoding 47

    Contents

  10. World Development Indicators

    • kaggle.com
    zip
    Updated Apr 10, 2019
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    World Bank (2019). World Development Indicators [Dataset]. https://www.kaggle.com/theworldbank/world-development-indicators
    Explore at:
    zip(134125679 bytes)Available download formats
    Dataset updated
    Apr 10, 2019
    Dataset authored and provided by
    World Bankhttp://topics.nytimes.com/top/reference/timestopics/organizations/w/world_bank/index.html
    License

    https://www.worldbank.org/en/about/legal/terms-of-use-for-datasetshttps://www.worldbank.org/en/about/legal/terms-of-use-for-datasets

    Description

    Content

    The primary World Bank collection of development indicators, compiled from officially-recognized international sources. It presents the most current and accurate global development data available, and includes national, regional and global estimates.

    Context

    This is a dataset hosted by the World Bank. The organization has an open data platform found here and they update their information according the amount of data that is brought in. Explore the World Bank using Kaggle and all of the data sources available through the World Bank organization page!

    • Update Frequency: This dataset is updated daily.

    Acknowledgements

    This dataset is maintained using the World Bank's APIs and Kaggle's API.

    Cover photo by Alex Block on Unsplash
    Unsplash Images are distributed under a unique Unsplash License.

  11. API security: Access behavior anomaly dataset

    • kaggle.com
    Updated Nov 22, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Ravi Guntur (2021). API security: Access behavior anomaly dataset [Dataset]. https://www.kaggle.com/datasets/tangodelta/api-access-behaviour-anomaly-dataset/data
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Nov 22, 2021
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Ravi Guntur
    License

    http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.htmlhttp://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html

    Description

    Context

    Distributed micro-services based applications are typically accessed via APIs. These APIs are used either by apps or they can be accessed directly by programmatic means. Many a time API access is abused by attackers trying to exploit the business logic exposed by these APIs. The way normal users access these APIs is different from how the attackers access these APIs. Many applications have 100s of APIs that are called in specific order and depending on various factors such as browser refreshes, session refreshes, network errors, or programmatic access these behaviors are not static and can vary for the same user. API calls in long running sessions form access graphs that need to be analysed in order to discover attack patterns and anomalies. Graphs dont lend themselves to numerical computation. We address this issue and provide a dataset where user access behavior is qualified as numerical features. In addition we provide a dataset where raw API call graphs are provided. Supporting the use of these datasets two notebooks on classification, node embeddings and clustering are also provided.

    About the dataset

    There are 4 files provided. Two files are in CSV format and two files are in JSON format. The files in CSV format are user behavior graphs represented as behavior metrics. The JSON files are the actual API call graphs. The two datasets can be joined on a key so that those who want to combine graphs with metrics could do so in novel ways.

    What is new in this dataset

    This data set captures API access patterns in terms of behavior metrics. Behaviors are captured by tracking users' API call graphs which are then summarized in terms of metrics. In some sense a categorical sequence of entities has been reduced to numerical metrics.

    CSV dataset

    There are two files provided. One called supervised_dataset.csv has behaviors labeled as normal or outlier. The second file called remaining_behavior_ext.csv has a larger number of samples that are not labeled but has additional insights as well as a classification created by another algorithm.

    What is each row

    Each row is one instance of an observed behavior that has been manually classified as normal or outlier

    JSON dataset

    There are two files provided to correspond to the two CSV files

    What is each item

    Each item has an _id field that can be used to join against the CSV data sets. Then we have the API behavior graph represented as a list of edges.

    Inspiration

    1. To model the classification label with a skewed distribution of normal and abnormal cases and with very few labeled samples available. Use supervised_dataset.csv
    2. To verify where the predicted class differs from the class determined by a second algorithm. Use remaining_behavior_ext.csv
  12. Consumer Loans and Leases Owned and Securitized

    • kaggle.com
    Updated Dec 24, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Federal Reserve (2019). Consumer Loans and Leases Owned and Securitized [Dataset]. https://www.kaggle.com/federalreserve/consumer-loans-and-leases-owned-and-securitized/discussion
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Dec 24, 2019
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Federal Reserve
    Description

    Content

    For further information, please refer to the Board of Governors of the Federal Reserve System's G.20 release, online at http://www.federalreserve.gov/releases/g20/ .

    Context

    This is a dataset from the Federal Reserve hosted by the Federal Reserve Economic Database (FRED). FRED has a data platform found here and they update their information according to the frequency that the data updates. Explore the Federal Reserve using Kaggle and all of the data sources available through the Federal Reserve organization page!

    • Update Frequency: This dataset is updated daily.

    • Observation Start: 1943-01-01

    • Observation End : 2019-10-01

    Acknowledgements

    This dataset is maintained using FRED's API and Kaggle's API.

    Cover photo by Patrick Fore on Unsplash
    Unsplash Images are distributed under a unique Unsplash License.

  13. Consumer Loans at All Commercial Banks

    • kaggle.com
    Updated Dec 24, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Federal Reserve (2019). Consumer Loans at All Commercial Banks [Dataset]. https://www.kaggle.com/datasets/federalreserve/consumer-loans-at-all-commercial-banks
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Dec 24, 2019
    Dataset provided by
    Kaggle
    Authors
    Federal Reserve
    Description

    Content

    For further information, please refer to the Board of Governors of the Federal Reserve System's H.8 release, online at http://www.federalreserve.gov/releases/h8/.

    Context

    This is a dataset from the Federal Reserve hosted by the Federal Reserve Economic Database (FRED). FRED has a data platform found here and they update their information according to the frequency that the data updates. Explore the Federal Reserve using Kaggle and all of the data sources available through the Federal Reserve organization page!

    • Update Frequency: This dataset is updated daily.

    • Observation Start: 1947-01-01

    • Observation End : 2019-11-01

    Acknowledgements

    This dataset is maintained using FRED's API and Kaggle's API.

    Cover photo by timJ on Unsplash
    Unsplash Images are distributed under a unique Unsplash License.

  14. Advance Real Retail and Food Services Sales

    • kaggle.com
    Updated Dec 12, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    St. Louis Fed (2019). Advance Real Retail and Food Services Sales [Dataset]. https://www.kaggle.com/stlouisfed/advance-real-retail-and-food-services-sales/code
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Dec 12, 2019
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    St. Louis Fed
    Description

    Content

    This series is constructed as Advance Retail and Food Services Sales (https://fred.stlouisfed.org/series/RSAFS) deflated using the Consumer Price Index for All Urban Consumers (1982-84=100) (https://fred.stlouisfed.org/series/CPIAUCSL).

    Context

    This is a dataset from the Federal Reserve Bank of St. Louis hosted by the Federal Reserve Economic Database (FRED). FRED has a data platform found here and they update their information according to the frequency that the data updates. Explore the Federal Reserve Bank of St. Louis using Kaggle and all of the data sources available through the St. Louis Fed organization page!

    • Update Frequency: This dataset is updated daily.

    • Observation Start: 1992-01-01

    • Observation End : 2019-10-01

    Acknowledgements

    This dataset is maintained using FRED's API and Kaggle's API.

    Cover photo by Ive Erhard on Unsplash
    Unsplash Images are distributed under a unique Unsplash License.

  15. GovData360

    • kaggle.com
    zip
    Updated May 15, 2019
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    World Bank (2019). GovData360 [Dataset]. https://www.kaggle.com/theworldbank/govdata360
    Explore at:
    zip(29922056 bytes)Available download formats
    Dataset updated
    May 15, 2019
    Dataset authored and provided by
    World Bankhttp://topics.nytimes.com/top/reference/timestopics/organizations/w/world_bank/index.html
    License

    https://creativecommons.org/publicdomain/zero/1.0/https://creativecommons.org/publicdomain/zero/1.0/

    Description

    Content

    GovData360 is a compendium of the most important governance indicators, from 26 datasets with worldwide coverage and more than 10 years of info, designed to provide guidance on the design of reforms and the monitoring of impacts. We have an Unbalanced Panel Data by Dataset - Country for around 3260 governance focused indicators.

    Context

    This is a dataset hosted by the World Bank. The organization has an open data platform found here and they update their information according the amount of data that is brought in. Explore the World Bank using Kaggle and all of the data sources available through the World Bank organization page!

    • Update Frequency: This dataset is updated daily.

    Acknowledgements

    This dataset is maintained using the World Bank's APIs and Kaggle's API.

    Cover photo by John Jason on Unsplash
    Unsplash Images are distributed under a unique Unsplash License.

  16. Python Package List

    • kaggle.com
    zip
    Updated Sep 9, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Otto Schnurr (2019). Python Package List [Dataset]. https://www.kaggle.com/ottoschnurr/kaggle-notebook-python-package-manifest
    Explore at:
    zip(19563 bytes)Available download formats
    Dataset updated
    Sep 9, 2019
    Authors
    Otto Schnurr
    License

    https://creativecommons.org/publicdomain/zero/1.0/https://creativecommons.org/publicdomain/zero/1.0/

    Description

    Context

    A significant amount of software is available in Kaggle's Python notebook. I had hoped to find a reference somewhere listing which Python packages were available and what each one did.

    When I didn't find what I was looking for, I decided to build this dataset instead.

    Content

    This dataset was assembled in four steps:

    1. Code inside a Kaggle notebook was used to gather the names of over 600 installed packages.
    2. A package list was scraped from Anaconda and cross-referenced against the notebook package list.
    3. The roughly 400 packages that remained were carefully queried from the Python Package Index using its JSON API.
    4. The results were collated into a manifest.

    Reference

    Acknowledgements

  17. Commercial Paper Time Series

    • kaggle.com
    zip
    Updated Dec 13, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Federal Reserve (2019). Commercial Paper Time Series [Dataset]. https://www.kaggle.com/federalreserve/commercial-paper-time-series
    Explore at:
    zip(25741 bytes)Available download formats
    Dataset updated
    Dec 13, 2019
    Dataset provided by
    Federal Reserve Systemhttp://www.federalreserve.gov/
    Authors
    Federal Reserve
    Description

    Content

    More details about each file are in the individual file descriptions.

    Context

    This is a dataset from the Federal Reserve hosted by the Federal Reserve Economic Database (FRED). FRED has a data platform found here and they update their information according to the frequency that the data updates. Explore the Federal Reserve using Kaggle and all of the data sources available through the Federal Reserve organization page!

    • Update Frequency: This dataset is updated daily.

    Acknowledgements

    This dataset is maintained using FRED's API and Kaggle's API.

    Cover photo by Copper and Wild on Unsplash
    Unsplash Images are distributed under a unique Unsplash License.

  18. Api to dataframe C{X}

    • kaggle.com
    Updated Apr 12, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Suman Das (2020). Api to dataframe C{X} [Dataset]. https://www.kaggle.com/datasets/sumandas000/api-to-dataframe-cx
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Apr 12, 2020
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Suman Das
    Description

    Dataset

    This dataset was created by Suman Das

    Contents

  19. Topics API private data release

    • kaggle.com
    Updated Jun 23, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Google Research (2025). Topics API private data release [Dataset]. https://www.kaggle.com/datasets/googleai/topics-api-private-data-release/code
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Jun 23, 2025
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Google Research
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    The dataset contains realistic traces of topics released by Chrome's Topics API across 4 weeks. Traces are simulated for 10 million fake users to match differentially private statistics computed on real browsing behavior. Full details of the dataset generation can be found in [1]. The code that generated the dataset can be found here.

    [1] Differentially Private Synthetic Data Release for Topics API Outputs, Travis Dick et al. Proceedings of KDD 2025. Toronto, Canada.

  20. US Treasury securities held by the Federal Reserve

    • kaggle.com
    zip
    Updated Dec 10, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Federal Reserve (2019). US Treasury securities held by the Federal Reserve [Dataset]. https://www.kaggle.com/federalreserve/us-treasury-securities-held-by-the-federal-reserve
    Explore at:
    zip(26923 bytes)Available download formats
    Dataset updated
    Dec 10, 2019
    Dataset provided by
    Federal Reserve Systemhttp://www.federalreserve.gov/
    Authors
    Federal Reserve
    Description

    Content

    More details about each file are in the individual file descriptions.

    Context

    This is a dataset from the Federal Reserve hosted by the Federal Reserve Economic Database (FRED). FRED has a data platform found here and they update their information according to the frequency that the data updates. Explore the Federal Reserve using Kaggle and all of the data sources available through the Federal Reserve organization page!

    • Update Frequency: This dataset is updated daily.

    Acknowledgements

    This dataset is maintained using FRED's API and Kaggle's API.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Abbad Alam (2025). kaggle-api-credentials [Dataset]. https://www.kaggle.com/datasets/abbadalam/kaggle-api-credentials
Organization logo

kaggle-api-credentials

Explore at:
2 scholarly articles cite this dataset (View in Google Scholar)
CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
Dataset updated
Jul 31, 2025
Dataset provided by
Kagglehttp://kaggle.com/
Authors
Abbad Alam
License

Apache License, v2.0https://www.apache.org/licenses/LICENSE-2.0
License information was derived automatically

Description

Dataset

This dataset was created by Abbad Alam

Released under Apache 2.0

Contents

Search
Clear search
Close search
Google apps
Main menu