Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
Dask
License:

Megamath-code parquets do not contain text column

#6
by amezasor - opened

Hello,

megamath-code parquets contain metadata only, there is not text column.

Source: https://huggingface.co/datasets/LLM360/MegaMath/tree/main/megamath-code

Example:

=Columns in this dataset=/nIndex(['file_info', 'repo_info'], dtype='object')

=First instance of this dataset=
file_info:
{'alpha_fraction': 0.5348798632621765, 'alphanum_fraction': 0.5526254773139954, 'avg_line_length': 37.3050651550293, 'blob_id': '57b553059a81deed5dce38c7781ec37faadb0764', 'content_id': '8d784ff7f7f1ca29622ecfd2e4f301ab58f7104b', 'detected_licenses': ['MIT'], 'is_generated': False, 'is_vendor': False, 'language': 'Python', 'length_bytes': 30261, 'license_type': 'permissive', 'max_line_length': 150, 'num_lines': 790, 'path': '/structure.py', 'src_encoding': 'UTF-8'}
repo_info:
{'repo_name': 'WangWei90/Navier_Stokes_2D', 'repo_url': 'https://github.com/WangWei90/Navier_Stokes_2D'}

is it correct?

Yes! We made this decision because the original Stack-v2 dataset is based on the Software Heritage archive.
See: https://huggingface.co/datasets/bigcode/the-stack-v2
And relevant discussions here: https://huggingface.co/datasets/bigcode/the-stack-v2/discussions

As noted by the BigCode authors:

These datasets only contain the SWHIDs to download the code files and not the content of the files itself.

Given the nature of the source archive, which may include legacy, or questionable data, we followed the same approach and chose not to release the full dataset directly. Instead, we provide metadata (e.g., blob IDs and content hashes) that allow users to retrieve the corresponding files from S3 if needed—similar to the way Stack-v2 handles access.

Please also refer to stack-v2's downloading scripts.

Sign up or log in to comment