thinkwee commited on
Commit
68b53eb
·
verified ·
1 Parent(s): 8bf7c6d

Docs: Update project description and links

Browse files
Files changed (1) hide show
  1. README.md +23 -15
README.md CHANGED
@@ -8,6 +8,8 @@ tags:
8
  - finance
9
  - 10k
10
  - edgar
 
 
11
  size_categories:
12
  - 1M<n<10M
13
  configs:
@@ -53,30 +55,36 @@ configs:
53
  path: data/table_comments/table_comments.parquet
54
  ---
55
 
56
- # DDRBench 10K Financial Database
57
 
58
- This dataset contains the structured SQLite database tables used in the **DDRBench 10K** evaluation task, converted to Parquet format.
59
 
60
- ## Structure
61
- The dataset is split into multiple configurations, each representing a table from the original database:
62
 
63
- - **companies**: Master table of companies (CIK, Name, etc.).
64
- - **financial_facts**: The core financial data (5M+ rows).
65
- - **filings**: Metadata about SEC filings.
66
- - **company_addresses**: Address information.
67
- - **company_tickers**: Ticker symbol mappings.
68
- - **table/column_documentation**: Metadata and comments explaining the schema.
 
 
 
 
69
 
70
  ## Usage
71
 
72
- To load a specific table:
73
 
74
  ```python
75
  from datasets import load_dataset
76
 
77
- # Load the 'companies' table
78
- ds_companies = load_dataset("thinkwee/DDRBench_10K", "companies")
79
 
80
- # Load the main financial facts
81
- ds_facts = load_dataset("thinkwee/DDRBench_10K", "financial_facts")
82
  ```
 
 
 
8
  - finance
9
  - 10k
10
  - edgar
11
+ - agent
12
+ - benchmark
13
  size_categories:
14
  - 1M<n<10M
15
  configs:
 
55
  path: data/table_comments/table_comments.parquet
56
  ---
57
 
58
+ # DDRBench: Deep Data Research Benchmark
59
 
60
+ [**📊 Leaderboard & Demo**](https://huggingface.co/spaces/thinkwee/DDR_Bench) | [**📄 Paper (Arxiv)**](https://arxiv.org/html/2602.02039v1)
61
 
62
+ ## Overview
63
+ **DDRBench (Deep Data Research Benchmark)** is a comprehensive evaluation framework designed to assess the capabilities of Large Language Model (LLM) agents in performing complex, multi-turn data research and reasoning tasks. Unlike traditional Q&A benchmarks, DDRBench focuses on scenarios requiring deep interaction with structured databases, tool usage, and long-context reasoning.
64
 
65
+ This dataset repository specifically hosts the **10-K Financial Database**, a core component of the DDRBench suite. It contains structured financial data extracted from SEC 10-K filings, enabling agents to answer intricate financial questions that mimic real-world analyst workflows.
66
+
67
+ ## Dataset Structure
68
+ The dataset is organized into multiple configurations (subsets), representing different tables from the underlying SQLite database:
69
+
70
+ * **`financial_facts`**: The primary table containing over 5 million financial metrics (US-GAAP, IFRS) with values, units, and fiscal periods.
71
+ * **`companies`**: Registry of companies with CIK, names, and SIC codes.
72
+ * **`filings`**: Metadata for the SEC filings source documents.
73
+ * **`company_addresses`** & **`company_tickers`**: Geographic and market identification data.
74
+ * **`table_documentation`** & **`column_documentation`**: Meta-information describing the database schema to the agents.
75
 
76
  ## Usage
77
 
78
+ Load specific tables using the `datasets` library:
79
 
80
  ```python
81
  from datasets import load_dataset
82
 
83
+ # Load the main financial facts table
84
+ financial_facts = load_dataset("thinkwee/DDRBench_10K", "financial_facts")
85
 
86
+ # Load company information
87
+ companies = load_dataset("thinkwee/DDRBench_10K", "companies")
88
  ```
89
+
90
+ For agent trajectories and evaluation logs, please refer to the [DDRBench Trajectory Dataset](https://huggingface.co/datasets/thinkwee/DDRBench_10K_trajectory).