thinkwee commited on
Commit
59cf266
·
verified ·
1 Parent(s): 886f460

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - table-question-answering
5
+ language:
6
+ - en
7
+ tags:
8
+ - finance
9
+ - 10k
10
+ - agent
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # DDR-Bench: 10-K Financial Data
16
+
17
+ This dataset contains structured financial data extracted from SEC 10-K filings.
18
+
19
+ ## Data Structure
20
+
21
+ - **`data/`**: Optimized Parquet files for preview and efficient loading. (Automatically loaded by `load_dataset`)
22
+ - **`raw/10k_financial_data.db`**: The original SQLite database (~1.1GB) for Agent environment simulation.
23
+
24
+ ## Usage
25
+
26
+ ```python
27
+ from datasets import load_dataset
28
+
29
+ # Load the financial facts table
30
+ ds = load_dataset("thinkwee/DDRBench_10K", data_files="data/financial_facts.parquet")
31
+ ```