CoolFace
30 shown

datasets

Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.

Clear all
01CoIR-Retrieval /synthetic-text2sqlEmploying the MTEB evaluation framework's dataset version, utilize the code below for assessment: import mteb import logging from sentence_transformers import SentenceTransformer from mteb import MTEB logger = logging.getLogger(__name__) model_name = 'intfloat/e5-base-v2' model = SentenceTransformer(model_name) tasks = mteb.get_tasks( tasks=[ "AppsRetrieval", "CodeFeedbackMT", "CodeFeedbackST", "CodeTransOceanContest", "CodeTransOceanDL"… See the full description on the dataset page: https://huggingface.co/datasets/CoIR-Retrieval/synthetic-text2sql.text100K<n<1M0 likes1.8k downloads2y agoHugging Face02shangrilar /ko_text2sqltext10K<n<100K19 likes1.6k downloads3y agoHugging Face03sharkiefff /RBAC-Text2SQL-Benchmark RBAC-Text2SQL Benchmark Role-conditioned Text-to-SQL instances for evaluating whether LLMs generate SQL that respects Role-Based Access Control (RBAC) constraints. Each instance pairs a natural language question with a role policy; the model must either produce a correct SQL query that touches only authorized resources, or refuse with Sorry, I cannot answer. Code, evaluation harness, and reproduction instructions: https://github.com/2020dfff/RBAC-Text2SQL-Benchmark… See the full description on the dataset page: https://huggingface.co/datasets/sharkiefff/RBAC-Text2SQL-Benchmark.texttext-generation10K<n<100K1 likes169 downloads2mo agoHugging Face04SuperMax991 /spider-text2sql SPIDER Text-to-SQL — Easy Access Version A clean, HuggingFace-native version of the SPIDER Text-to-SQL benchmark. The original SPIDER dataset requires manually downloading a ZIP file from the Spider website. This version makes it instantly accessible via load_dataset. What's Included Each row contains the question, gold SQL, the database identifier, and a pre-parsed compact schema string — everything needed to train or evaluate a Text-to-SQL model without any additional… See the full description on the dataset page: https://huggingface.co/datasets/SuperMax991/spider-text2sql.texttable-question-answering1K<n<10K2 likes155 downloads5mo agoHugging Face05fahmiaziz /text2sql-dataset Dataset We built this dataset from several sources combining examples from: Wikisql Bird Spider Synthetic SQL samples This dataset has been cleaned and filtered by: Removing DDL/DML examples (INSERT, UPDATE, DELETE, etc.) De-duplicating examples based on hashing semantics of SQL and queries Filtering only SELECT-style analytical queries texttext-generation100K<n<1M1 likes119 downloads1y agoHugging Face06VikramPal /large-schema-text2sql-20k Large-Schema Text-to-SQL (20K) 20,020 text-to-SQL examples whose median database schema has 95 tables. Most text-to-SQL corpora hand the model a toy database. Spider averages about 5 tables per database; BIRD is in the same range. Real analytics work does not look like that — it looks like an ERP schema with 200 tables, 300 foreign keys, and eleven things called *_log, where the hard part is not writing the JOIN but finding the two tables worth joining. This dataset is that… See the full description on the dataset page: https://huggingface.co/datasets/VikramPal/large-schema-text2sql-20k.texttext-generation10K<n<100K0 likes117 downloads21d agoHugging Face07motherduckdb /duckdb-text2sql-25k Dataset Summary The duckdb-text2sql-25k dataset contains 25,000 DuckDB text-2-sql pairs covering diverse aspects of DuckDB's SQL syntax. We synthesized this dataset using Mixtral 8x7B, based on DuckDB's v0.9.2 documentation and Spider schemas that were translated to DuckDB syntax and enriched with nested type columns. Each training sample consists of a natural language prompt, a corresponding (optional) schema, and a resulting query. Each pair furthermore has a category property… See the full description on the dataset page: https://huggingface.co/datasets/motherduckdb/duckdb-text2sql-25k.text10K<n<100K43 likes104 downloads2y agoHugging Face08chabab /text2sql-oracle-postgres Oracle / PostgreSQL text-to-SQL Instruction data for fine-tuning google/gemma-3-270m-it (or any chat model) to emit a single dialect-correct SQL statement. 804 rows, 402 Oracle / 402 PostgreSQL 7 schemas: hr, sales, banking, inventory, tickets, university, logistics Splits: 684 / 60 / 60 (grouped so paraphrases of the same SQL stay in one split) Load from datasets import load_dataset ds = load_dataset("chabab/text2sql-oracle-postgres") Record… See the full description on the dataset page: https://huggingface.co/datasets/chabab/text2sql-oracle-postgres.texttext-generationn<1K0 likes93 downloads29d agoHugging Face09CoIR-Retrieval /synthetic-text2sql-qrels Dataset Card for "synthetic-text2sql-qrels" More Information needed text100K<n<1M0 likes79 downloads2y agoHugging Face10VictorDCh /spider-clean-text-to-sql-2text1K<n<10K0 likes70 downloads2y agoHugging Face11InfiniFlow /text2sqltextn<1K13 likes70 downloads1y agoHugging Face12eagle0504 /synthetic-text2sql-dataset Dataset Card for "synthetic-text2sql-dataset" Dataset Summary The synthetic-text2sql-dataset is a large-scale, structured dataset containing 100,000 training and 5,851 test examples designed to support research and development in SQL semantic parsing, text-to-SQL generation, and chain-of-thought (CoT) reasoning. It was derived from an original DataFrame and converted into Hugging Face's datasets.Dataset format. Three new fields were added: question: alias for the… See the full description on the dataset page: https://huggingface.co/datasets/eagle0504/synthetic-text2sql-dataset.textquestion-answering100K<n<1M1 likes66 downloads1y agoHugging Face13mohamed-ahmed-58059 /wikisql-text2sql WikiSQL Text-to-SQL (execution-ready) A cleaned, execution-ready repackaging of WikiSQL for text-to-SQL fine-tuning and execution-accuracy evaluation. Each example pairs a natural-language question with a gold SQL query over a single-table schema — and every split ships a real SQLite database so predicted SQL can be run and compared by result set (not string-matched). Splits Split Examples train 55,339 dev 8,263 test 15,519 Columns… See the full description on the dataset page: https://huggingface.co/datasets/mohamed-ahmed-58059/wikisql-text2sql.texttext-generation10K<n<100K0 likes61 downloads4mo agoHugging Face14johneze /chichewa-text2sql Chichewa Text-to-SQL The first structured Text-to-SQL benchmark for Chichewa, a low-resource Bantu language spoken by over 12 million people in Malawi and neighboring regions. The dataset contains 400 manually curated natural language–SQL pairs in both Chichewa (Nyanja) and English, grounded in a unified relational SQLite database covering five real-world domains from Malawi. Dataset Summary This benchmark was constructed to investigate the adaptation of Large… See the full description on the dataset page: https://huggingface.co/datasets/johneze/chichewa-text2sql.texttable-question-answeringn<1K2 likes59 downloads3mo agoHugging Face15CoIR-Retrieval /synthetic-text2sql-queries-corpusEmploying the CoIR evaluation framework's dataset version, utilize the code below for assessment: import coir from coir.data_loader import get_tasks from coir.evaluation import COIR from coir.models import YourCustomDEModel model_name = "intfloat/e5-base-v2" # Load the model model = YourCustomDEModel(model_name=model_name) # Get tasks #all task ["codetrans-dl","stackoverflow-qa","apps","codefeedback-mt","codefeedback-st","codetrans-contest","synthetic- # text2sql","cosqa","codesearchnet"… See the full description on the dataset page: https://huggingface.co/datasets/CoIR-Retrieval/synthetic-text2sql-queries-corpus.text100K<n<1M2 likes58 downloads2y agoHugging Face16lianghsun /bird-text2sql-bench Dataset Card for bird-text2sql-bench bird-text2sql-bench 是 BIRD(BIg Bench for Large-Scale Database Grounded Text-to-SQL) 官方訓練集之 OpenAI Messages 格式版本,共 9,428 筆。相較於 Spider 1.0,BIRD 使用真實大型資料庫(70 個,涵蓋電商、運動、教育、醫療等 37+ 領域),並提供 evidence(數值提示)欄位,本資料集將 evidence 以 ### Hint 段落併入 user prompt,形成可直接餵入 SFT pipeline 之 system / user / assistant 三 role 對話。除原生之 messages 欄位外,另拆解出獨立之 system / user / assistant 字串欄位,可同時作為 SFT 語料與 benchmark evaluation pipeline 之直接輸入。 Dataset Details… See the full description on the dataset page: https://huggingface.co/datasets/lianghsun/bird-text2sql-bench.texttext-generation1K<n<10K1 likes56 downloads5mo agoHugging Face17VMTLSH /text-to-sql-processed-v2text100K<n<1M0 likes53 downloads11mo agoHugging Face18hujudev /spider-text-2-sqltext1K<n<10K0 likes49 downloads2y agoHugging Face19philikai /200k-Text2SQLtext100K<n<1M6 likes48 downloads3y agoHugging Face20dipanjanS /text2sql-dataset Overview This dataset builds from WikiSQL and Spider. There are 78,577 examples of natural language queries, SQL CREATE TABLE statements, and SQL Query answering the question using the CREATE statement as context. This dataset was built with text-to-sql LLMs in mind, intending to prevent hallucination of column and table names often seen when trained on text-to-sql datasets. The CREATE TABLE statement can often be copy and pasted from different DBMS and provides table names, column… See the full description on the dataset page: https://huggingface.co/datasets/dipanjanS/text2sql-dataset.texttext-generation10K<n<100K0 likes47 downloads6mo agoHugging Face21Healthy13 /Text2SQLtext100K<n<1M19 likes46 downloads3y agoHugging Face22ekshat /text-2-sql-with-context Dataset Card for "text-2-sql-with-context" This dataset is prepared in Alpaca format introduced by Stanford to train LLMs. This dataset has been used in fine-tuning Chat Llama-2 7B. For more information, Please visit : Huggingface. text10K<n<100K0 likes41 downloads2y agoHugging Face23sartmis1 /text2sql-spider Dataset Card for "text2sql-spider-processed" More Information needed text1K<n<10K0 likes39 downloads3y agoHugging Face24mteb /synthetic-text2sqltext100K<n<1M0 likes39 downloads2y agoHugging Face25sanghyun89 /for_text2sql_wikiSQL_korean_by_google_translator_apitext100K<n<1M0 likes36 downloads2y agoHugging Face26sartmis1 /text2sql-wikisql-spider Dataset Card for "text2sql-wikisql-spider" More Information needed text10K<n<100K1 likes32 downloads3y agoHugging Face27griffith-bigdata /sft_text2sqlThis is the SFT training dataset for FINER-SQL on BIRD dataset. We use different LLMs from the LLM pool to generate diversed reasoning styles and diversed SQL styles. The model pool includes: GPT-OSS-120b, Qwen-2.5-72B-Instruct, Deepseek-R1, GPT-5 (reasoning_effort=low) Note that: GPT-5 could be replaced by GPT-4o or GPT-4.1, because OpenAI doesn't return their true reasoning process so generating by GPT-5 was not necessary. The schema filtering (top-30 columns) was applied before generating… See the full description on the dataset page: https://huggingface.co/datasets/griffith-bigdata/sft_text2sql.text10K<n<100K2 likes32 downloads10mo agoHugging Face28DanielRegaladoCardoso /text-to-sql-mix-v2 🔗 Part of the SQL Agent LLMOps project This dataset is one of three purpose-built training mixes for the SQL Agent LLMOps project — an end-to-end pipeline that converts natural-language questions into SQL, executes the query on user data, and renders a storytelling-grade visualization. Dataset Model trained Role 🤗 DanielRegaladoCardoso/text-to-sql-mix-v2 Qwen 2.5 Coder 7B NL question → SQL 🤗 DanielRegaladoCardoso/chart-reasoning-mix-v1Phi-3 Mini 3.8B (question +… See the full description on the dataset page: https://huggingface.co/datasets/DanielRegaladoCardoso/text-to-sql-mix-v2.texttext-generation100K<n<1M0 likes31 downloads5mo agoHugging Face29Ducnt17 /text2sql_challegetext100K<n<1M0 likes30 downloads2y agoHugging Face30open-llm-leaderboard /yasserrmd__Text2SQL-1.5B-detailsgated Dataset Card for Evaluation run of yasserrmd/Text2SQL-1.5B Dataset automatically created during the evaluation run of model yasserrmd/Text2SQL-1.5B The dataset is composed of 38 configuration(s), each one corresponding to one of the evaluated task. The dataset has been created from 1 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest results. An additional… See the full description on the dataset page: https://huggingface.co/datasets/open-llm-leaderboard/yasserrmd__Text2SQL-1.5B-details.tabular10K<n<100K0 likes29 downloads2y agoHugging Face

Listings come live from the Hugging Face Hub API. CoolFace does not host these files.