OpenTransformer commited on
Commit
b651075
·
verified ·
1 Parent(s): 241ed64

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OpenTransformers Web Crawl v1
2
+
3
+ **Your data. Your company. No apologies.**
4
+
5
+ ## Stats
6
+ - Total pages: 21,524
7
+ - Total text: 318.1 MB
8
+ - Crawled: 2026-01-13
9
+
10
+ ## Format
11
+ JSONL (gzipped), one document per line:
12
+ ```json
13
+ {
14
+ "url": "https://example.com/page",
15
+ "domain": "example.com",
16
+ "timestamp": "2026-01-13T02:43:19.685727",
17
+ "status": 200,
18
+ "text": "Clean extracted text content...",
19
+ "text_len": 1234,
20
+ "html_len": 5678,
21
+ "links": 42,
22
+ "fetch_ms": 150,
23
+ "hash": "abc123..."
24
+ }
25
+ ```
26
+
27
+ ## Sources
28
+ Diverse high-quality web content: Hacker News, Reddit (ML/programming/science),
29
+ arXiv, Wikipedia, tech blogs, news sites, and discovered links.
30
+
31
+ ## Usage
32
+ ```python
33
+ from datasets import load_dataset
34
+ ds = load_dataset("OpenTransformer/web-crawl-v1")
35
+ ```
36
+
37
+ ## License
38
+ Public domain. Do whatever you want.
39
+
40
+ ---
41
+ *Crawled by OpenTransformers Ltd*
42
+ *https://github.com/OpenTransformer*