lvj commited on
Commit
d772985
·
1 Parent(s): 98f787d

Upload folder using huggingface_hub

Browse files
config.json CHANGED
@@ -4,7 +4,8 @@
4
  ],
5
  "attention_bias": false,
6
  "attention_dropout": 0.0,
7
- "dtype": "bfloat16",
 
8
  "eos_token_id": 151645,
9
  "head_dim": 128,
10
  "hidden_act": "silu",
@@ -55,7 +56,6 @@
55
  "num_attention_heads": 32,
56
  "num_hidden_layers": 36,
57
  "num_key_value_heads": 8,
58
- "pad_token_id": 151643,
59
  "quantization_config": {
60
  "include_input_output_embeddings": true,
61
  "modules_to_not_convert": [
 
4
  ],
5
  "attention_bias": false,
6
  "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "dtype": "float32",
9
  "eos_token_id": 151645,
10
  "head_dim": 128,
11
  "hidden_act": "silu",
 
56
  "num_attention_heads": 32,
57
  "num_hidden_layers": 36,
58
  "num_key_value_heads": 8,
 
59
  "quantization_config": {
60
  "include_input_output_embeddings": true,
61
  "modules_to_not_convert": [
eval_results_2025-10-15T11-05-32.818241.json ADDED
@@ -0,0 +1,185 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "results": {
3
+ "arc_challenge": {
4
+ "alias": "arc_challenge",
5
+ "acc,none": 0.39761092150170646,
6
+ "acc_stderr,none": 0.014301752223279512,
7
+ "acc_norm,none": 0.4197952218430034,
8
+ "acc_norm_stderr,none": 0.014422181226303012
9
+ },
10
+ "hellaswag": {
11
+ "alias": "hellaswag",
12
+ "acc,none": 0.45797649870543716,
13
+ "acc_stderr,none": 0.0049721265230316045,
14
+ "acc_norm,none": 0.6078470424218283,
15
+ "acc_norm_stderr,none": 0.004872326888655541
16
+ }
17
+ },
18
+ "group_subtasks": {
19
+ "arc_challenge": [],
20
+ "hellaswag": []
21
+ },
22
+ "configs": {
23
+ "arc_challenge": {
24
+ "task": "arc_challenge",
25
+ "tag": [
26
+ "ai2_arc"
27
+ ],
28
+ "dataset_path": "allenai/ai2_arc",
29
+ "dataset_name": "ARC-Challenge",
30
+ "training_split": "train",
31
+ "validation_split": "validation",
32
+ "test_split": "test",
33
+ "doc_to_text": "Question: {{question}}\nAnswer:",
34
+ "doc_to_target": "{{choices.label.index(answerKey)}}",
35
+ "unsafe_code": false,
36
+ "doc_to_choice": "{{choices.text}}",
37
+ "description": "",
38
+ "target_delimiter": " ",
39
+ "fewshot_delimiter": "\n\n",
40
+ "num_fewshot": 0,
41
+ "metric_list": [
42
+ {
43
+ "metric": "acc",
44
+ "aggregation": "mean",
45
+ "higher_is_better": true
46
+ },
47
+ {
48
+ "metric": "acc_norm",
49
+ "aggregation": "mean",
50
+ "higher_is_better": true
51
+ }
52
+ ],
53
+ "output_type": "multiple_choice",
54
+ "repeats": 1,
55
+ "should_decontaminate": true,
56
+ "doc_to_decontamination_query": "Question: {{question}}\nAnswer:",
57
+ "metadata": {
58
+ "version": 1.0,
59
+ "pretrained": "/home/lvj/local/checkpoints/qwen3-2bit-fineweb-26665/checkpoint-final/quant_converted",
60
+ "dtype": "auto",
61
+ "parallelize": false
62
+ }
63
+ },
64
+ "hellaswag": {
65
+ "task": "hellaswag",
66
+ "tag": [
67
+ "multiple_choice"
68
+ ],
69
+ "dataset_path": "Rowan/hellaswag",
70
+ "training_split": "train",
71
+ "validation_split": "validation",
72
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n ctx = doc[\"ctx_a\"] + \" \" + doc[\"ctx_b\"].capitalize()\n out_doc = {\n \"query\": preprocess(doc[\"activity_label\"] + \": \" + ctx),\n \"choices\": [preprocess(ending) for ending in doc[\"endings\"]],\n \"gold\": int(doc[\"label\"]),\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
73
+ "doc_to_text": "{{query}}",
74
+ "doc_to_target": "{{label}}",
75
+ "unsafe_code": false,
76
+ "doc_to_choice": "choices",
77
+ "description": "",
78
+ "target_delimiter": " ",
79
+ "fewshot_delimiter": "\n\n",
80
+ "num_fewshot": 0,
81
+ "metric_list": [
82
+ {
83
+ "metric": "acc",
84
+ "aggregation": "mean",
85
+ "higher_is_better": true
86
+ },
87
+ {
88
+ "metric": "acc_norm",
89
+ "aggregation": "mean",
90
+ "higher_is_better": true
91
+ }
92
+ ],
93
+ "output_type": "multiple_choice",
94
+ "repeats": 1,
95
+ "should_decontaminate": false,
96
+ "metadata": {
97
+ "version": 1.0,
98
+ "pretrained": "/home/lvj/local/checkpoints/qwen3-2bit-fineweb-26665/checkpoint-final/quant_converted",
99
+ "dtype": "auto",
100
+ "parallelize": false
101
+ }
102
+ }
103
+ },
104
+ "versions": {
105
+ "arc_challenge": 1.0,
106
+ "hellaswag": 1.0
107
+ },
108
+ "n-shot": {
109
+ "arc_challenge": 0,
110
+ "hellaswag": 0
111
+ },
112
+ "higher_is_better": {
113
+ "arc_challenge": {
114
+ "acc": true,
115
+ "acc_norm": true
116
+ },
117
+ "hellaswag": {
118
+ "acc": true,
119
+ "acc_norm": true
120
+ }
121
+ },
122
+ "n-samples": {
123
+ "hellaswag": {
124
+ "original": 10042,
125
+ "effective": 10042
126
+ },
127
+ "arc_challenge": {
128
+ "original": 1172,
129
+ "effective": 1172
130
+ }
131
+ },
132
+ "config": {
133
+ "model": "hf",
134
+ "model_args": "pretrained=/home/lvj/local/checkpoints/qwen3-2bit-fineweb-26665/checkpoint-final/quant_converted,dtype=auto,parallelize=False,trust_remote_code=True",
135
+ "model_num_parameters": 4022468096,
136
+ "model_dtype": "torch.float32",
137
+ "model_revision": "main",
138
+ "model_sha": "",
139
+ "batch_size": "auto",
140
+ "batch_sizes": [
141
+ 64
142
+ ],
143
+ "device": null,
144
+ "use_cache": null,
145
+ "limit": null,
146
+ "bootstrap_iters": 100000,
147
+ "gen_kwargs": null,
148
+ "random_seed": 0,
149
+ "numpy_seed": 1234,
150
+ "torch_seed": 1234,
151
+ "fewshot_seed": 1234
152
+ },
153
+ "git_hash": "0726e21",
154
+ "date": 1760550653.300171,
155
+ "pretty_env_info": "PyTorch version: 2.7.0.dev20250310+cu124\nIs debug build: False\nCUDA used to build PyTorch: 12.4\nROCM used to build PyTorch: N/A\n\nOS: CentOS Stream 9 (x86_64)\nGCC version: (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11)\nClang version: Could not collect\nCMake version: Could not collect\nLibc version: glibc-2.34\n\nPython version: 3.13.5 | packaged by Anaconda, Inc. | (main, Jun 12 2025, 16:09:02) [GCC 11.2.0] (64-bit runtime)\nPython platform: Linux-6.4.3-0_fbk15_hardened_2630_gf27365f948db-x86_64-with-glibc2.34\nIs CUDA available: True\nCUDA runtime version: 12.4.99\nCUDA_MODULE_LOADING set to: LAZY\nGPU models and configuration: GPU 0: NVIDIA H100\nNvidia driver version: 550.90.07\ncuDNN version: Could not collect\nHIP runtime version: N/A\nMIOpen runtime version: N/A\nIs XNNPACK available: True\n\nCPU:\nArchitecture: x86_64\nCPU op-mode(s): 32-bit, 64-bit\nAddress sizes: 52 bits physical, 57 bits virtual\nByte Order: Little Endian\nCPU(s): 46\nOn-line CPU(s) list: 0-45\nVendor ID: AuthenticAMD\nModel name: AMD EPYC 9654 96-Core Processor\nCPU family: 25\nModel: 17\nThread(s) per core: 1\nCore(s) per socket: 46\nSocket(s): 1\nStepping: 1\nBogoMIPS: 4792.80\nFlags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm rep_good nopl cpuid extd_apicid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm cmp_legacy svm cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw perfctr_core invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced vmmcall fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves avx512_bf16 clzero xsaveerptr wbnoinvd arat npt lbrv nrip_save tsc_scale vmcb_clean flushbyasid pausefilter pfthreshold v_vmsave_vmload vgif vnmi avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm flush_l1d arch_capabilities\nVirtualization: AMD-V\nHypervisor vendor: KVM\nVirtualization type: full\nL1d cache: 2.9 MiB (46 instances)\nL1i cache: 2.9 MiB (46 instances)\nL2 cache: 23 MiB (46 instances)\nL3 cache: 736 MiB (46 instances)\nNUMA node(s): 1\nNUMA node0 CPU(s): 0-45\nVulnerability Gather data sampling: Not affected\nVulnerability Itlb multihit: Not affected\nVulnerability L1tf: Not affected\nVulnerability Mds: Not affected\nVulnerability Meltdown: Not affected\nVulnerability Mmio stale data: Not affected\nVulnerability Retbleed: Not affected\nVulnerability Spec store bypass: Vulnerable\nVulnerability Spectre v1: Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers\nVulnerability Spectre v2: Vulnerable, IBPB: disabled, STIBP: disabled, PBRSB-eIBRS: Not affected\nVulnerability Srbds: Not affected\nVulnerability Tsx async abort: Not affected\n\nVersions of relevant libraries:\n[pip3] numpy==2.3.3\n[pip3] nvidia-cublas-cu12==12.4.5.8\n[pip3] nvidia-cuda-cupti-cu12==12.4.127\n[pip3] nvidia-cuda-nvrtc-cu12==12.4.127\n[pip3] nvidia-cuda-runtime-cu12==12.4.127\n[pip3] nvidia-cudnn-cu12==9.1.0.70\n[pip3] nvidia-cufft-cu12==11.2.1.3\n[pip3] nvidia-curand-cu12==10.3.5.147\n[pip3] nvidia-cusolver-cu12==11.6.1.9\n[pip3] nvidia-cusparse-cu12==12.3.1.170\n[pip3] nvidia-cusparselt-cu12==0.6.2\n[pip3] nvidia-nccl-cu12==2.25.1\n[pip3] nvidia-nvjitlink-cu12==12.4.127\n[pip3] nvidia-nvtx-cu12==12.4.127\n[pip3] pytorch-triton==3.2.0+git4b3bb1f8\n[pip3] torch==2.7.0.dev20250310+cu124\n[pip3] torchao==0.14.0+gitabc60fde\n[pip3] triton==3.4.0\n[conda] No relevant packages",
156
+ "transformers_version": "4.56.2",
157
+ "lm_eval_version": "0.4.9.1",
158
+ "upper_git_hash": null,
159
+ "tokenizer_pad_token": [
160
+ "<|endoftext|>",
161
+ "151643"
162
+ ],
163
+ "tokenizer_eos_token": [
164
+ "<|im_end|>",
165
+ "151645"
166
+ ],
167
+ "tokenizer_bos_token": [
168
+ null,
169
+ "None"
170
+ ],
171
+ "eot_token_id": 151645,
172
+ "max_length": 40960,
173
+ "task_hashes": {},
174
+ "model_source": "hf",
175
+ "model_name": "/home/lvj/local/checkpoints/qwen3-2bit-fineweb-26665/checkpoint-final/quant_converted",
176
+ "model_name_sanitized": "__home__lvj__local__checkpoints__qwen3-2bit-fineweb-26665__checkpoint-final__quant_converted",
177
+ "system_instruction": null,
178
+ "system_instruction_sha": null,
179
+ "fewshot_as_multiturn": false,
180
+ "chat_template": null,
181
+ "chat_template_sha": null,
182
+ "start_time": 1197762.297058725,
183
+ "end_time": 1198643.783406351,
184
+ "total_evaluation_time_seconds": "881.4863476259634"
185
+ }
generation_config.json CHANGED
@@ -1,4 +1,5 @@
1
  {
 
2
  "do_sample": true,
3
  "eos_token_id": [
4
  151645,
 
1
  {
2
+ "bos_token_id": 151643,
3
  "do_sample": true,
4
  "eos_token_id": [
5
  151645,
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3440bc2a0ed0b49b84156c630012aa4de46ebc28c58b778b5a4826b838720ea0
3
+ size 4422692167
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf7e8bd9cb3edb141046c29e62667a8ee60965fb14a23dbc504abda991e29c85
3
+ size 6417