hf-coding-tools-bucket
收藏资源简介:
HuggingFace AI Dashboard — Raw Data Bucket 是一个包含原始 JSON 和 CSV 导出文件的数据集,这些文件来自 HuggingFace AI Dashboard。数据集旨在支持手动分析,适用于电子表格、DuckDB 或自定义管道等场景。数据集包含五个主要文件:`data/results.json`(完整的基准测试结果,1999 行)、`data/results.csv`(扁平化的 CSV 文件,便于电子表格或 DuckDB 使用,1999 行)、`data/queries.json`(查询定义,404 行)、`data/products.json`(带有关键词的 HF 产品目录,44 行)和 `data/summary.json`(运行元数据和聚合统计信息)。数据集采用 CC-BY-4.0 许可,适用于基准测试、AI 编码工具和 HuggingFace 相关的研究或应用。
HuggingFace AI Dashboard — Raw Data Bucket is a dataset containing raw JSON and CSV export files from the HuggingFace AI Dashboard. The dataset is designed to support manual analysis and is suitable for scenarios such as spreadsheets, DuckDB, or custom pipelines. The dataset includes five main files: `data/results.json` (complete benchmark results, 1999 rows), `data/results.csv` (flattened CSV file for easy use with spreadsheets or DuckDB, 1999 rows), `data/queries.json` (query definitions, 404 rows), `data/products.json` (HF product catalog with keywords, 44 rows), and `data/summary.json` (run metadata and aggregate statistics). The dataset is licensed under CC-BY-4.0 and is suitable for benchmarking, AI coding tools, and HuggingFace-related research or applications.
数据集概述
- 数据集名称: HuggingFace AI Dashboard — Raw Data Bucket
- 数据集主页: https://huggingface.co/datasets/davidkling/hf-coding-tools-bucket
- 许可协议: Creative Commons Attribution 4.0 International (CC-BY-4.0)
- 标签: benchmark, ai-coding-tools, huggingface, raw-data
数据集内容
该数据集包含来自 HuggingFace AI Dashboard 的原始 JSON 和 CSV 导出文件,适用于在电子表格、DuckDB 或自定义数据管道中进行手动分析。
文件列表
| 文件 | 描述 | 行数 |
|---|---|---|
data/results.json |
完整基准测试结果(JSON 数组) | 1999 |
data/results.csv |
适用于电子表格/DuckDB 的扁平 CSV | 1999 |
data/queries.json |
查询定义 | 404 |
data/products.json |
HuggingFace 产品目录及关键词 | 44 |
data/summary.json |
运行元数据和聚合统计数据 | — |
使用示例
DuckDB(直接从 HuggingFace 读取): sql SELECT * FROM read_csv_auto(hf://datasets/davidkling/hf-coding-tools-bucket/data/results.csv) LIMIT 10;
Python: python import pandas as pd df = pd.read_csv("hf://datasets/davidkling/hf-coding-tools-bucket/data/results.csv")




