alexodavies commited on
Commit
ec6e1f1
·
verified ·
1 Parent(s): 3919775

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md CHANGED
@@ -82,6 +82,65 @@ data/
82
 
83
  Each stage is an independent config. Use `load_dataset(repo, config_name)` to load a specific stage. Most users will want **stage4** (fully processed) or **stage1** (original filtered tables).
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  ## Processing Pipeline
86
 
87
  ### Stage 1 — Filter
 
82
 
83
  Each stage is an independent config. Use `load_dataset(repo, config_name)` to load a specific stage. Most users will want **stage4** (fully processed) or **stage1** (original filtered tables).
84
 
85
+ ## Dataset Statistics
86
+
87
+ | Stage | Tables | Files | Size | Rows (mean) | Rows (median) | Cols (mean) | Cols (median) |
88
+ |-------|--------|-------|------|-------------|---------------|-------------|---------------|
89
+ | stage1 | 2,988,000 | 7,470 | 107.1 GB | 1,042 | 113 | 6 | 4 |
90
+ | stage2 | 2,210,180 | 14,879 | 75.2 GB | 1,271 | 116 | 6 | 5 |
91
+ | stage3 | 2,210,043 | 14,879 | 92.3 GB | 1,270 | 116 | 6 | 5 |
92
+ | stage4 | 2,117,811 | 14,879 | 198.6 GB | 1,232 | 117 | 6 | 5 |
93
+
94
+ **Pass-through rates:**
95
+
96
+ - Stage 1 to Stage 2: 74.0%
97
+ - Stage 2 to Stage 3: 100.0%
98
+ - Stage 3 to Stage 4: 95.8%
99
+
100
+ ### Column Types (stage2)
101
+
102
+ | Type | Count | % |
103
+ |------|-------|---|
104
+ | categorical | 3,766,554 | 30.3% |
105
+ | ambiguous | 3,526,030 | 28.4% |
106
+ | continuous | 3,332,725 | 26.8% |
107
+ | likely_text_or_id | 1,808,006 | 14.5% |
108
+
109
+ ### Column Types (stage3)
110
+
111
+ | Type | Count | % |
112
+ |------|-------|---|
113
+ | categorical | 3,766,202 | 30.3% |
114
+ | ambiguous | 3,525,681 | 28.4% |
115
+ | continuous | 3,332,522 | 26.8% |
116
+ | likely_text_or_id | 1,807,915 | 14.5% |
117
+
118
+ ### ML Classifications (stage3)
119
+
120
+ | Classification | Count | % |
121
+ |----------------|-------|---|
122
+ | categorical | 5,512,597 | 51.9% |
123
+ | continuous | 4,550,758 | 42.8% |
124
+ | needs_llm_review | 561,050 | 5.3% |
125
+
126
+ ### Classification Sources (stage3)
127
+
128
+ | Source | Count | % |
129
+ |--------|-------|---|
130
+ | heuristic | 7,098,724 | 66.8% |
131
+ | ml_high | 2,094,239 | 19.7% |
132
+ | ml_medium | 870,392 | 8.2% |
133
+ | ml_low | 561,050 | 5.3% |
134
+
135
+ ### Column Types (stage4)
136
+
137
+ | Type | Count | % |
138
+ |------|-------|---|
139
+ | categorical | 3,718,359 | 30.8% |
140
+ | ambiguous | 3,371,838 | 27.9% |
141
+ | continuous | 3,284,452 | 27.2% |
142
+ | likely_text_or_id | 1,711,168 | 14.2% |
143
+
144
  ## Processing Pipeline
145
 
146
  ### Stage 1 — Filter