Add/Update README with dataset card metadata
Browse files
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: DOM-Dataset-v1
|
| 3 |
+
tags:
|
| 4 |
+
- html
|
| 5 |
+
- dom
|
| 6 |
+
- web
|
| 7 |
+
size_categories:
|
| 8 |
+
- 10K<n<100K
|
| 9 |
+
task_categories:
|
| 10 |
+
- other
|
| 11 |
+
language:
|
| 12 |
+
- en
|
| 13 |
+
multilinguality: unknown
|
| 14 |
+
license: other
|
| 15 |
+
---
|
| 16 |
+
# DOM-Dataset-v1
|
| 17 |
+
|
| 18 |
+
This dataset contains a collection of raw HTML files (DOM snapshots) organized under the `data/` directory.
|
| 19 |
+
- Total HTML files: 52323
|
| 20 |
+
- File layout: `data/**/.html`
|
| 21 |
+
|
| 22 |
+
## Access
|
| 23 |
+
Use `snapshot_download` to retrieve the full dataset locally:
|
| 24 |
+
|
| 25 |
+
```python
|
| 26 |
+
from huggingface_hub import snapshot_download
|
| 27 |
+
local_dir = snapshot_download(repo_id="gplsi/DOM-Dataset-v1", repo_type="dataset")
|
| 28 |
+
print(local_dir)
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
# HTML Corpus
|
| 32 |
+
|
| 33 |
+
This dataset contains a collection of raw HTML files uploaded via DOM-LM tooling.
|