Add table CSV JSON conversion benchmark data
Browse files- .gitattributes +2 -0
- README.md +10 -0
- SOURCE_MAPPING.md +12 -0
- crawl_summary.json +27 -0
- table_csv_json_conversion_gittables_benchmark/README.md +8 -0
- table_csv_json_conversion_gittables_benchmark/metadata.json +3 -0
- table_csv_json_conversion_wdc_webtables_sample/README.md +8 -0
- table_csv_json_conversion_wdc_webtables_sample/metadata.json +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
table_csv_json_conversion_gittables_benchmark/metadata.json filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
table_csv_json_conversion_wdc_webtables_sample/metadata.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# data
|
| 2 |
+
|
| 3 |
+
Table/CSV/JSON conversion benchmark sources normalized as metadata JSON.
|
| 4 |
+
|
| 5 |
+
## Folders
|
| 6 |
+
|
| 7 |
+
- `table_csv_json_conversion_gittables_benchmark`: 표/CSV/JSON 변환, 1101 records
|
| 8 |
+
- `table_csv_json_conversion_wdc_webtables_sample`: 표/CSV/JSON 변환, 9275 records
|
| 9 |
+
|
| 10 |
+
Raw ZIP/GZ/CSV files are excluded from the repository.
|
SOURCE_MAPPING.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Source Mapping
|
| 2 |
+
|
| 3 |
+
| folder | subdomain | source | records | license note |
|
| 4 |
+
| --- | --- | --- | ---: | --- |
|
| 5 |
+
| `table_csv_json_conversion_gittables_benchmark` | 표/CSV/JSON 변환 | GitTables benchmark | 1101 | CC BY 4.0; table-level original licenses unavailable in benchmark subset |
|
| 6 |
+
| `table_csv_json_conversion_wdc_webtables_sample` | 표/CSV/JSON 변환 | WDC WebTables 2015 sample | 9275 | public download; data license unspecified |
|
| 7 |
+
|
| 8 |
+
## Full Upstream Corpus Notes
|
| 9 |
+
|
| 10 |
+
- GitTables 1M primary corpus is 16.3 GB and consists of 1M parquet tables.
|
| 11 |
+
- WDC complete corpus 2015 is 165 GB; relational corpus is 69 GB; English relational corpus is 69 GB.
|
| 12 |
+
- This repo stores normalized benchmark-ready subsets rather than mirroring the upstream bulk archives.
|
crawl_summary.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"domain": "데이터/분석 실무",
|
| 3 |
+
"subdomain": "표/CSV/JSON 변환",
|
| 4 |
+
"total_records": 10376,
|
| 5 |
+
"record_counts_by_folder": {
|
| 6 |
+
"table_csv_json_conversion_gittables_benchmark": 1101,
|
| 7 |
+
"table_csv_json_conversion_wdc_webtables_sample": 9275
|
| 8 |
+
},
|
| 9 |
+
"record_counts_by_source": {
|
| 10 |
+
"GitTables benchmark - column type detection": 1101,
|
| 11 |
+
"WDC Web Table Corpus 2015 random sample": 9275
|
| 12 |
+
},
|
| 13 |
+
"sources": [
|
| 14 |
+
{
|
| 15 |
+
"source": "GitTables benchmark - column type detection",
|
| 16 |
+
"url": "https://zenodo.org/records/5706316",
|
| 17 |
+
"license": "CC BY 4.0",
|
| 18 |
+
"upstream_full_corpus": "GitTables 1M, 16.3 GB"
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"source": "WDC Web Table Corpus 2015 random sample",
|
| 22 |
+
"url": "https://data.dws.informatik.uni-mannheim.de/webtables/2015-07/sample.gz",
|
| 23 |
+
"license": "data license unspecified; public download",
|
| 24 |
+
"upstream_full_corpus": "Complete corpus 165 GB; relational corpus 69 GB; English relational corpus 69 GB"
|
| 25 |
+
}
|
| 26 |
+
]
|
| 27 |
+
}
|
table_csv_json_conversion_gittables_benchmark/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# table_csv_json_conversion_gittables_benchmark
|
| 2 |
+
|
| 3 |
+
- domain: 데이터/분석 실무
|
| 4 |
+
- subdomain: 표/CSV/JSON 변환
|
| 5 |
+
- records: 1101
|
| 6 |
+
- source: GitTables benchmark - column type detection
|
| 7 |
+
- license: CC BY 4.0; per-table original license is not exposed in this benchmark subset
|
| 8 |
+
- format: `metadata.json`
|
table_csv_json_conversion_gittables_benchmark/metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3f4430e74c142d13c925c957c5c24455e391050822c622accb9c44121627369f
|
| 3 |
+
size 38353362
|
table_csv_json_conversion_wdc_webtables_sample/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# table_csv_json_conversion_wdc_webtables_sample
|
| 2 |
+
|
| 3 |
+
- domain: 데이터/분석 실무
|
| 4 |
+
- subdomain: 표/CSV/JSON 변환
|
| 5 |
+
- records: 9275
|
| 6 |
+
- source: WDC Web Table Corpus 2015 random sample
|
| 7 |
+
- license: public download; data license unspecified; extraction code license is Apache
|
| 8 |
+
- format: `metadata.json`
|
table_csv_json_conversion_wdc_webtables_sample/metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7823a23a20c8dcfbaf1fd5f6ed181831bfaa892560cc68bcc33a95571f48d945
|
| 3 |
+
size 84140719
|