Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

YAML Metadata Warning:The task_categories "text2text-generation" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other

BirdBench Dataset in DuckDB format

BirdBench is a benchmark for text-to-SQL capabilities, now available in DuckDB format for improved performance and usability.

About BirdBench

BirdBench is a comprehensive benchmark dataset for evaluating text-to-SQL capabilities of language models. It features a diverse collection of databases spanning various domains including:

  • Business and finance
  • Entertainment and media
  • Sports and recreation
  • Health and medicine
  • Education
  • Travel and geography
  • And many more

Why DuckDB?

This repository contains the BirdBench dataset converted from SQLite to DuckDB format, which offers several advantages:

  • Performance: DuckDB is significantly faster for analytical queries
  • Integration: Better integration with Python data science tools
  • Features: Support for vectorized operations and advanced analytical functions
  • Compatibility: Works well in environments where SQLite might have limitations

Dataset Structure

The dataset maintains the original BirdBench structure, with both training and validation databases converted to DuckDB format:

  • /train - Contains training databases
  • /validation - Contains validation databases

Each database preserves the original schema and data from the SQLite version.

Usage

Loading a database

import duckdb

# Connect to a database
conn = duckdb.connect('path/to/database.duckdb')

# List tables
tables = conn.execute('SELECT name FROM sqlite_master WHERE type="table"').fetchall()
print(tables)

# Run a query
result = conn.execute('SELECT * FROM your_table LIMIT 5').fetchall()
print(result)
Downloads last month
179