fineweb10b_processed / dataset.py
PSanni's picture
Upload folder using huggingface_hub
933562f verified
raw
history blame contribute delete
459 Bytes
import os
from datasets import Dataset
def load_dataset():
# Get the list of binary files in the current directory
binary_files = [f for f in os.listdir(".") if f.endswith(".bin")]
# Read the binary files and create a dataset
data = []
for file in binary_files:
with open(file, "rb") as f:
binary_data = f.read()
data.append({"file_name": file, "content": binary_data})
return Dataset.from_list(data)