Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Datasets:
answerdotai
/
simplewiki
Like
3
Follow
Answer.AI
612
Modalities:
Tabular
Text
Formats:
parquet
Languages:
English
Size:
100K - 1M
Libraries:
Datasets
pandas
Polars
+ 1
License:
cc-by-sa-4.0
Dataset card
Data Studio
Files
Files and versions
xet
Community
7
refs/pr/2
simplewiki
/
materialize.py
jph00
Update simplewiki to 20260801
1cffe6d
verified
19 days ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
239 Bytes
"Reconstruct chunk text from the two dataset configurations."
def
materialize
(
article, chunk
):
body = article[
"md"
].encode()
start = chunk[
"start_byte"
]
return
chunk[
"prefix_md"
] + body[start:start+chunk[
"byte_len"
]].decode()