Vedika35 commited on
Commit
d11d113
·
verified ·
1 Parent(s): c189dc0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -96
README.md CHANGED
@@ -10,107 +10,16 @@ pipeline_tag: text-generation
10
  library_name: transformers
11
  tags:
12
  - code
13
- - codeqwen
14
  - chat
15
- - qwen
16
- - qwen-coder
17
  ---
18
 
19
 
20
- # Qwen2.5-Coder-3B-Instruct
21
- <a href="https://chat.qwenlm.ai/" target="_blank" style="margin: 2px;">
22
- <img alt="Chat" src="https://img.shields.io/badge/%F0%9F%92%9C%EF%B8%8F%20Qwen%20Chat%20-536af5" style="display: inline-block; vertical-align: middle;"/>
23
- </a>
24
 
25
  ## Introduction
26
 
27
- Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models (formerly known as CodeQwen). As of now, Qwen2.5-Coder has covered six mainstream model sizes, 0.5, 1.5, 3, 7, 14, 32 billion parameters, to meet the needs of different developers. Qwen2.5-Coder brings the following improvements upon CodeQwen1.5:
28
 
29
- - Significantly improvements in **code generation**, **code reasoning** and **code fixing**. Base on the strong Qwen2.5, we scale up the training tokens into 5.5 trillion including source code, text-code grounding, Synthetic data, etc. Qwen2.5-Coder-32B has become the current state-of-the-art open-source codeLLM, with its coding abilities matching those of GPT-4o.
30
- - A more comprehensive foundation for real-world applications such as **Code Agents**. Not only enhancing coding capabilities but also maintaining its strengths in mathematics and general competencies.
31
-
32
- **This repo contains the instruction-tuned 3B Qwen2.5-Coder model**, which has the following features:
33
- - Type: Causal Language Models
34
- - Training Stage: Pretraining & Post-training
35
- - Architecture: transformers with RoPE, SwiGLU, RMSNorm, Attention QKV bias and tied word embeddings
36
- - Number of Parameters: 3.09B
37
- - Number of Paramaters (Non-Embedding): 2.77B
38
- - Number of Layers: 36
39
- - Number of Attention Heads (GQA): 16 for Q and 2 for KV
40
- - Context Length: Full 32,768 tokens
41
-
42
- For more details, please refer to our [blog](https://qwenlm.github.io/blog/qwen2.5-coder-family/), [GitHub](https://github.com/QwenLM/Qwen2.5-Coder), [Documentation](https://qwen.readthedocs.io/en/latest/), [Arxiv](https://arxiv.org/abs/2409.12186).
43
-
44
- ## Requirements
45
-
46
- The code of Qwen2.5-Coder has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
47
-
48
- With `transformers<4.37.0`, you will encounter the following error:
49
- ```
50
- KeyError: 'qwen2'
51
- ```
52
-
53
- ## Quickstart
54
-
55
- Here provides a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and how to generate contents.
56
-
57
- ```python
58
- from transformers import AutoModelForCausalLM, AutoTokenizer
59
-
60
- model_name = "Qwen/Qwen2.5-Coder-3B-Instruct"
61
-
62
- model = AutoModelForCausalLM.from_pretrained(
63
- model_name,
64
- torch_dtype="auto",
65
- device_map="auto"
66
- )
67
- tokenizer = AutoTokenizer.from_pretrained(model_name)
68
-
69
- prompt = "write a quick sort algorithm."
70
- messages = [
71
- {"role": "system", "content": "You are Qwen, created by Alibaba Cloud. You are a helpful assistant."},
72
- {"role": "user", "content": prompt}
73
- ]
74
- text = tokenizer.apply_chat_template(
75
- messages,
76
- tokenize=False,
77
- add_generation_prompt=True
78
- )
79
- model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
80
-
81
- generated_ids = model.generate(
82
- **model_inputs,
83
- max_new_tokens=512
84
- )
85
- generated_ids = [
86
- output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
87
- ]
88
-
89
- response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
90
- ```
91
-
92
-
93
- ## Evaluation & Performance
94
-
95
- Detailed evaluation results are reported in this [📑 blog](https://qwenlm.github.io/blog/qwen2.5-coder-family/).
96
-
97
- For requirements on GPU memory and the respective throughput, see results [here](https://qwen.readthedocs.io/en/latest/benchmark/speed_benchmark.html).
98
-
99
- ## Citation
100
-
101
- If you find our work helpful, feel free to give us a cite.
102
-
103
- ```
104
- @article{hui2024qwen2,
105
- title={Qwen2. 5-Coder Technical Report},
106
- author={Hui, Binyuan and Yang, Jian and Cui, Zeyu and Yang, Jiaxi and Liu, Dayiheng and Zhang, Lei and Liu, Tianyu and Zhang, Jiajun and Yu, Bowen and Dang, Kai and others},
107
- journal={arXiv preprint arXiv:2409.12186},
108
- year={2024}
109
- }
110
- @article{qwen2,
111
- title={Qwen2 Technical Report},
112
- author={An Yang and Baosong Yang and Binyuan Hui and Bo Zheng and Bowen Yu and Chang Zhou and Chengpeng Li and Chengyuan Li and Dayiheng Liu and Fei Huang and Guanting Dong and Haoran Wei and Huan Lin and Jialong Tang and Jialin Wang and Jian Yang and Jianhong Tu and Jianwei Zhang and Jianxin Ma and Jin Xu and Jingren Zhou and Jinze Bai and Jinzheng He and Junyang Lin and Kai Dang and Keming Lu and Keqin Chen and Kexin Yang and Mei Li and Mingfeng Xue and Na Ni and Pei Zhang and Peng Wang and Ru Peng and Rui Men and Ruize Gao and Runji Lin and Shijie Wang and Shuai Bai and Sinan Tan and Tianhang Zhu and Tianhao Li and Tianyu Liu and Wenbin Ge and Xiaodong Deng and Xiaohuan Zhou and Xingzhang Ren and Xinyu Zhang and Xipin Wei and Xuancheng Ren and Yang Fan and Yang Yao and Yichang Zhang and Yu Wan and Yunfei Chu and Yuqiong Liu and Zeyu Cui and Zhenru Zhang and Zhihao Fan},
113
- journal={arXiv preprint arXiv:2407.10671},
114
- year={2024}
115
- }
116
- ```
 
10
  library_name: transformers
11
  tags:
12
  - code
 
13
  - chat
 
 
14
  ---
15
 
16
 
17
+ # Vedika Coder
18
+ <img src="https://i.ibb.co/KjcX9NcF/Blue-and-Black-Minimalist-Brand-Logo-20260426-113813-0000.png" style="display: inline-block; vertical-align: center;"/>
 
 
19
 
20
  ## Introduction
21
 
22
+ Vedika Coder is the latest series of Code-Specific Vedika Coder language models (formerly known as Code Vedika). As of now, Qwen2.5-Coder has covered six mainstream model sizes, 0.5, 1.5, 3, 7, 14, 32 billion parameters, to meet the needs of different developers. Qwen2.5-Coder brings the following improvements upon CodeQwen1.5:
23
 
24
+ - Significantly improvements in **code generation**, **code reasoning** and **code fixing**. Base on the strong Vedika Coder, we scale up the training tokens into 5.5 trillion including source code, text-code grounding, Synthetic data, etc. Vedika Coder has become the current state-of-the-art open-source codeLLM, with its coding abilities matching those of GPT-4o.
25
+ - A more comprehensive foundation for real-world applications such as **Code Agents**. Not only enhancing coding capabilities but also maintaining its strengths in mathematics and general competencies.