lbourdois commited on
Commit
abd84a6
·
verified ·
1 Parent(s): c703f73

Improve language tag

Browse files

Hi! As the model is multilingual, this is a PR to add other languages than English to the language tag to improve the referencing. Note that 29 languages are announced in the README, but only 13 are explicitly listed. I was therefore only able to add these 13 languages.

Files changed (1) hide show
  1. README.md +131 -147
README.md CHANGED
@@ -1,147 +1,131 @@
1
- ---
2
- license: other
3
- license_name: kyro
4
- license_link: LICENSE.md
5
- base_model:
6
- - Qwen/Qwen2.5-7B-Instruct
7
- tags:
8
- - reasoning
9
- - kyro
10
- - open-neo
11
- - open-source
12
- - deepseek-r1
13
- language:
14
- - en
15
- - zh
16
- - fr
17
- - es
18
- - pt
19
- - de
20
- - it
21
- - ru
22
- - ja
23
- - ko
24
- - vi
25
- - th
26
- - ar
27
- - fa
28
- - he
29
- - tr
30
- - cs
31
- - pl
32
- - hi
33
- - bn
34
- - ur
35
- - id
36
- - ms
37
- - lo
38
- - my
39
- - ceb
40
- - km
41
- - tl
42
- - nl
43
- library_name: transformers
44
- ---
45
-
46
- # Kyro-n1.1: Smarter, Sharper, and More Capable
47
-
48
- Kyro-n1.1 is an enhanced iteration of **Kyro-n1**, designed to deliver superior reasoning, improved comprehension, and higher response accuracy. Built upon **Qwen2.5-7B-Instruct**, this model leverages advanced fine-tuning techniques to refine its ability to analyse complex queries, provide well-structured responses, and engage in more nuanced conversations.
49
-
50
- ## Key Improvements Over Kyro-n1
51
-
52
- - **Enhanced Reasoning Capabilities**: Kyro-n1.1 demonstrates stronger logical thinking, making it more reliable for tasks requiring deep analysis.
53
- - **More Accurate Responses**: Refined dataset curation and improved fine-tuning methods ensure better factual consistency.
54
- - **Broader Context Understanding**: With improved context retention, Kyro-n1.1 handles multi-turn conversations with greater coherence.
55
- - **Optimised for Open-Source Collaboration**: As part of the **Open-Neo** initiative, Kyro-n1.1 is designed to be a transparent, accessible, and community-driven model.
56
-
57
- ## Why Choose Kyro-n1.1?
58
-
59
- - **Ideal for Research & Development**: Whether you're exploring AI reasoning benchmarks or enhancing your own projects, Kyro-n1.1 is built for performance.
60
- - **Balanced for Various Use Cases**: From general Q&A to coding assistance and creative writing, the model adapts well across different applications.
61
- - **Efficient & Scalable**: Designed to be computationally efficient, Kyro-n1.1 delivers strong performance while maintaining manageable resource requirements.
62
- - **Fully Open-Source**: As part of the Open-Neo ecosystem, Kyro-n1.1 is freely available for modification and integration into various workflows.
63
-
64
-
65
- ## Technical Specifications
66
-
67
- - Developed by: [Spestly (Open-Neo)](https://x.com/Spestly) & [Kazex (Open-Neo)](https://x.com/32GIGABYTES_YT) & [Adversing (Open-Neo)](https://github.com/Adversing)
68
- - Type: Causal Language Models
69
- - Training Stage: Pretraining & Post-training
70
- - Architecture: transformers with RoPE, SwiGLU, RMSNorm, and Attention QKV bias
71
- - Number of Parameters: 7.61B
72
- - Number of Paramaters (Non-Embedding): 6.53B
73
- - Number of Layers: 28
74
- - Number of Attention Heads (GQA): 28 for Q and 4 for KV
75
- - Context Length: Full 131,072 tokens and generation 8192 tokens
76
-
77
- ## **Usage**
78
-
79
- The code of Kyro-n1.1 (Qwen2.5) has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
80
-
81
- With `transformers<4.37.0`, you will encounter the following error:
82
- ```
83
- KeyError: 'qwen2'
84
- ```
85
-
86
- ### **Quickstart**
87
-
88
- ```python
89
- from transformers import AutoModelForCausalLM, AutoTokenizer
90
- model_name = "open-neo/Kyro-n1.1-7B"
91
- model = AutoModelForCausalLM.from_pretrained(
92
- model_name,
93
- torch_dtype="auto",
94
- device_map="auto"
95
- )
96
- tokenizer = AutoTokenizer.from_pretrained(model_name)
97
- prompt = "What do you think about CRISPR and its effect on the future of humanity?"
98
- messages = [
99
- {"role": "user", "content": prompt}
100
- ]
101
- text = tokenizer.apply_chat_template(
102
- messages,
103
- tokenize=False,
104
- add_generation_prompt=True
105
- )
106
- model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
107
- generated_ids = model.generate(
108
- **model_inputs,
109
- max_new_tokens=2048
110
- )
111
- generated_ids = [
112
- output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
113
- ]
114
- response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
115
- ```
116
-
117
- ## Citation
118
-
119
- If you find our work helpful, feel free to give us a cite.
120
-
121
- ```
122
- @misc{qwen2.5,
123
- title = {Qwen2.5: A Party of Foundation Models},
124
- url = {https://qwenlm.github.io/blog/qwen2.5/},
125
- author = {Qwen Team},
126
- month = {September},
127
- year = {2024}
128
- }
129
- @article{qwen2,
130
- title={Qwen2 Technical Report},
131
- 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},
132
- journal={arXiv preprint arXiv:2407.10671},
133
- year={2024}
134
- }
135
- @misc{kyro-n1.1,
136
- title={Kyro-n1: Smarter, Sharper, and More Capable },
137
- author={Open-Neo},
138
- howpublished={https://huggingface.co/collections/open-neo/kyro-n1-67ab2e7bbc76a9aab3030c21},
139
- year={2025}
140
- }
141
- ```
142
-
143
- ## Get Involved
144
- Kyro-n1.1 is a community-driven effort, and contributions are welcome! Whether it's fine-tuning, testing, or providing feedback, your input helps shape the model's future. Join the **Open-Neo** community to collaborate and improve Kyro-n1.1 together!
145
-
146
-
147
-
 
1
+ ---
2
+ license: other
3
+ license_name: kyro
4
+ license_link: LICENSE.md
5
+ base_model:
6
+ - Qwen/Qwen2.5-7B-Instruct
7
+ tags:
8
+ - reasoning
9
+ - kyro
10
+ - open-neo
11
+ - open-source
12
+ - deepseek-r1
13
+ language:
14
+ - zho
15
+ - eng
16
+ - fra
17
+ - spa
18
+ - por
19
+ - deu
20
+ - ita
21
+ - rus
22
+ - jpn
23
+ - kor
24
+ - vie
25
+ - tha
26
+ - ara
27
+ library_name: transformers
28
+ ---
29
+
30
+ # Kyro-n1.1: Smarter, Sharper, and More Capable
31
+
32
+ Kyro-n1.1 is an enhanced iteration of **Kyro-n1**, designed to deliver superior reasoning, improved comprehension, and higher response accuracy. Built upon **Qwen2.5-7B-Instruct**, this model leverages advanced fine-tuning techniques to refine its ability to analyse complex queries, provide well-structured responses, and engage in more nuanced conversations.
33
+
34
+ ## Key Improvements Over Kyro-n1
35
+
36
+ - **Enhanced Reasoning Capabilities**: Kyro-n1.1 demonstrates stronger logical thinking, making it more reliable for tasks requiring deep analysis.
37
+ - **More Accurate Responses**: Refined dataset curation and improved fine-tuning methods ensure better factual consistency.
38
+ - **Broader Context Understanding**: With improved context retention, Kyro-n1.1 handles multi-turn conversations with greater coherence.
39
+ - **Optimised for Open-Source Collaboration**: As part of the **Open-Neo** initiative, Kyro-n1.1 is designed to be a transparent, accessible, and community-driven model.
40
+
41
+ ## Why Choose Kyro-n1.1?
42
+
43
+ - **Ideal for Research & Development**: Whether you're exploring AI reasoning benchmarks or enhancing your own projects, Kyro-n1.1 is built for performance.
44
+ - **Balanced for Various Use Cases**: From general Q&A to coding assistance and creative writing, the model adapts well across different applications.
45
+ - **Efficient & Scalable**: Designed to be computationally efficient, Kyro-n1.1 delivers strong performance while maintaining manageable resource requirements.
46
+ - **Fully Open-Source**: As part of the Open-Neo ecosystem, Kyro-n1.1 is freely available for modification and integration into various workflows.
47
+
48
+
49
+ ## Technical Specifications
50
+
51
+ - Developed by: [Spestly (Open-Neo)](https://x.com/Spestly) & [Kazex (Open-Neo)](https://x.com/32GIGABYTES_YT) & [Adversing (Open-Neo)](https://github.com/Adversing)
52
+ - Type: Causal Language Models
53
+ - Training Stage: Pretraining & Post-training
54
+ - Architecture: transformers with RoPE, SwiGLU, RMSNorm, and Attention QKV bias
55
+ - Number of Parameters: 7.61B
56
+ - Number of Paramaters (Non-Embedding): 6.53B
57
+ - Number of Layers: 28
58
+ - Number of Attention Heads (GQA): 28 for Q and 4 for KV
59
+ - Context Length: Full 131,072 tokens and generation 8192 tokens
60
+
61
+ ## **Usage**
62
+
63
+ The code of Kyro-n1.1 (Qwen2.5) has been in the latest Hugging face `transformers` and we advise you to use the latest version of `transformers`.
64
+
65
+ With `transformers<4.37.0`, you will encounter the following error:
66
+ ```
67
+ KeyError: 'qwen2'
68
+ ```
69
+
70
+ ### **Quickstart**
71
+
72
+ ```python
73
+ from transformers import AutoModelForCausalLM, AutoTokenizer
74
+ model_name = "open-neo/Kyro-n1.1-7B"
75
+ model = AutoModelForCausalLM.from_pretrained(
76
+ model_name,
77
+ torch_dtype="auto",
78
+ device_map="auto"
79
+ )
80
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
81
+ prompt = "What do you think about CRISPR and its effect on the future of humanity?"
82
+ messages = [
83
+ {"role": "user", "content": prompt}
84
+ ]
85
+ text = tokenizer.apply_chat_template(
86
+ messages,
87
+ tokenize=False,
88
+ add_generation_prompt=True
89
+ )
90
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
91
+ generated_ids = model.generate(
92
+ **model_inputs,
93
+ max_new_tokens=2048
94
+ )
95
+ generated_ids = [
96
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
97
+ ]
98
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
99
+ ```
100
+
101
+ ## Citation
102
+
103
+ If you find our work helpful, feel free to give us a cite.
104
+
105
+ ```
106
+ @misc{qwen2.5,
107
+ title = {Qwen2.5: A Party of Foundation Models},
108
+ url = {https://qwenlm.github.io/blog/qwen2.5/},
109
+ author = {Qwen Team},
110
+ month = {September},
111
+ year = {2024}
112
+ }
113
+ @article{qwen2,
114
+ title={Qwen2 Technical Report},
115
+ 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},
116
+ journal={arXiv preprint arXiv:2407.10671},
117
+ year={2024}
118
+ }
119
+ @misc{kyro-n1.1,
120
+ title={Kyro-n1: Smarter, Sharper, and More Capable },
121
+ author={Open-Neo},
122
+ howpublished={https://huggingface.co/collections/open-neo/kyro-n1-67ab2e7bbc76a9aab3030c21},
123
+ year={2025}
124
+ }
125
+ ```
126
+
127
+ ## Get Involved
128
+ Kyro-n1.1 is a community-driven effort, and contributions are welcome! Whether it's fine-tuning, testing, or providing feedback, your input helps shape the model's future. Join the **Open-Neo** community to collaborate and improve Kyro-n1.1 together!
129
+
130
+
131
+