archit11 commited on
Commit
1b65966
·
verified ·
1 Parent(s): f268abd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +58 -27
README.md CHANGED
@@ -1,29 +1,60 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: file_name
5
- dtype: string
6
- - name: text
7
- dtype: string
8
- splits:
9
- - name: train
10
- num_bytes: 2453512
11
- num_examples: 172
12
- - name: validation
13
- num_bytes: 377167
14
- num_examples: 21
15
- - name: test
16
- num_bytes: 245489
17
- num_examples: 21
18
- download_size: 1038195
19
- dataset_size: 3076168
20
- configs:
21
- - config_name: default
22
- data_files:
23
- - split: train
24
- path: data/train-*
25
- - split: validation
26
- path: data/validation-*
27
- - split: test
28
- path: data/test-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ task_categories:
6
+ - text-generation
7
+ - fill-mask
8
+ tags:
9
+ - code
10
+ - python
11
+ - verl
12
+ - repo-specific-finetuning
13
+ pretty_name: Verl Code Corpus (File Holdout Split)
14
+ size_categories:
15
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
+
18
+ # archit11/verl-code-corpus-track-a-file-split
19
+
20
+ Repository-specific code corpus extracted from the `verl` project and split by file for training/evaluation.
21
+
22
+ ## What is in this dataset
23
+
24
+ - Source corpus: `data/code_corpus_verl`
25
+ - Total files: 214
26
+ - Train files: 172
27
+ - Validation files: 21
28
+ - Test files: 21
29
+ - File type filter: .py
30
+ - Split mode: `file` (file-level holdout)
31
+
32
+ Each row has:
33
+
34
+ - `file_name`: flattened source file name
35
+ - `text`: full file contents
36
+
37
+ ## Training context
38
+
39
+ This dataset was used for extended pretraining of:
40
+
41
+ - Model repo: `https://huggingface.co/archit11/qwen2.5-coder-3b-verl-track-a-lora`
42
+ - Base model: `/root/.cache/huggingface/hub/models--Qwen--Qwen2.5-Coder-3B/snapshots/09d9bc5d376b0cfa0100a0694ea7de7232525803`
43
+ - Sequence curriculum: [768, 1024]
44
+ - Learning rate: 0.0001
45
+ - Batch size: 8
46
+
47
+ Evaluation from this run:
48
+
49
+ - Baseline perplexity (val/test): 3.1820 / 2.7764
50
+ - Post-training perplexity (val/test): 2.7844 / 2.2379
51
+
52
+ ## Load with datasets
53
+
54
+ ```python
55
+ from datasets import load_dataset
56
+
57
+ ds = load_dataset("archit11/verl-code-corpus-track-a-file-split")
58
+ print(ds)
59
+ print(ds["train"][0]["file_name"])
60
+ ```