Python-only subset of ise-uiuc/Magicoder-OSS-Instruct-75K.
from datasets import load_dataset
ds = load_dataset("ise-uiuc/Magicoder-OSS-Instruct-75K", split="train")
ds_py = ds.filter(lambda r: r["lang"] == "python")
kept fields: {problem, solution}
38,284 examples (of 75K in the source)
Fields: problem (str), solution (str — typically a fenced ```python block)
MIT, inherited from the source dataset.