Views
No views yet
python2_chunk_*.jsonl: Python 2 code chunkspython3_chunk_*.jsonl: Python 3 code chunks1{
2 "text": "code content here",
3 "metadata": {
4 "extension": "python2" or "python3",
5 "source": "original source information",
6 "length": "token length"
7 }
8}1from datasets import load_dataset
2
3# Load the dataset
4dataset = load_dataset("dipikakhullar/olmo-code-dataset")
5
6# Access training data
7train_data = dataset["train"]