simplewiki / materialize.py
jph00's picture
Upload folder using huggingface_hub
c620e09 verified
Raw
History Blame Contribute Delete
243 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()