greeky commited on
Commit
5858b51
·
1 Parent(s): 2cde19b

Add iCoder technical report

Browse files
Files changed (3) hide show
  1. .gitattributes +1 -0
  2. Coder_Tech_Report.pdf +3 -0
  3. README.md +20 -2
.gitattributes CHANGED
@@ -37,3 +37,4 @@ tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
  figures/industrial_benchmark_logo_bars.png filter=lfs diff=lfs merge=lfs -text
38
  figures/intro_pipeline.png filter=lfs diff=lfs merge=lfs -text
39
  figures/title.png filter=lfs diff=lfs merge=lfs -text
 
 
37
  figures/industrial_benchmark_logo_bars.png filter=lfs diff=lfs merge=lfs -text
38
  figures/intro_pipeline.png filter=lfs diff=lfs merge=lfs -text
39
  figures/title.png filter=lfs diff=lfs merge=lfs -text
40
+ Coder_Tech_Report.pdf filter=lfs diff=lfs merge=lfs -text
Coder_Tech_Report.pdf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08e803d8e5229b498c16c79b47340a69b528d01c079ac3336bab5c1f5dde9795
3
+ size 6574345
README.md CHANGED
@@ -16,7 +16,7 @@ tags:
16
  <img src="figures/title.png" alt="iCoder-27B" width="420">
17
  </p>
18
 
19
- <div align="center"><a href="https://github.com/bingreeky/iCoder"><img src="https://img.shields.io/badge/GitHub-iCoder-181717?logo=github&logoColor=white" alt="GitHub"></a> <img src="https://img.shields.io/badge/Technical%20Report-coming%20soon-9c9c9c" alt="Technical Report"></div>
20
 
21
  iCoder-27B is a 27B-parameter model for industrial coding, covering RTL design
22
  and GPU kernel optimization.
@@ -38,7 +38,8 @@ RTLLM (68.0), ties Claude Opus 4.8 for the best TritonBench-G pass@1 (20.1),
38
  and ranks second on KernelBench L2 Fast and on CVDP. Its 61% KernelBench L1
39
  correctness is the highest of any model evaluated.
40
 
41
- A technical report describing the recipe is in preparation.
 
42
 
43
  ## Results
44
 
@@ -87,6 +88,23 @@ out = model.generate(**inputs, max_new_tokens=2048)
87
  print(tokenizer.decode(out[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))
88
  ```
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  ## License
91
 
92
  Apache-2.0, inherited from the base model, Qwen3.6-27B.
 
16
  <img src="figures/title.png" alt="iCoder-27B" width="420">
17
  </p>
18
 
19
+ <div align="center"><a href="https://github.com/bingreeky/iCoder"><img src="https://img.shields.io/badge/GitHub-iCoder-181717?logo=github&logoColor=white" alt="GitHub"></a> <a href="https://huggingface.co/i-Coder/iCoder-27B/blob/main/Coder_Tech_Report.pdf"><img src="https://img.shields.io/badge/Technical%20Report-PDF-b68b32" alt="Technical Report"></a></div>
20
 
21
  iCoder-27B is a 27B-parameter model for industrial coding, covering RTL design
22
  and GPU kernel optimization.
 
38
  and ranks second on KernelBench L2 Fast and on CVDP. Its 61% KernelBench L1
39
  correctness is the highest of any model evaluated.
40
 
41
+ The full technical report describing the recipe is available
42
+ [here](Coder_Tech_Report.pdf).
43
 
44
  ## Results
45
 
 
88
  print(tokenizer.decode(out[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))
89
  ```
90
 
91
+ ## Citation
92
+
93
+ If you find iCoder useful in your work, please cite the technical report:
94
+
95
+ ```bibtex
96
+ @techreport{yang2026icoder,
97
+ title = {iCoder-27B: Recursive AI-Led Development of Frontier Industrial Coding Model},
98
+ author = {Cheng Yang and Jiayang Lyu and Shangyuan Liu and Guibin Zhang and
99
+ Jiong Lin and Xinlei Yu and Junchi Yan and Shuicheng Yan and
100
+ Weinan E and Linfeng Zhang and Linfeng Zhang and Qibing Ren},
101
+ year = {2026},
102
+ month = aug,
103
+ type = {Technical Report},
104
+ url = {https://huggingface.co/i-Coder/iCoder-27B}
105
+ }
106
+ ```
107
+
108
  ## License
109
 
110
  Apache-2.0, inherited from the base model, Qwen3.6-27B.