dittops commited on
Commit
9f7c0ce
1 Parent(s): c193453

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +224 -17
README.md CHANGED
@@ -4,41 +4,248 @@ language:
4
  library_name: transformers
5
  pipeline_tag: text-generation
6
  ---
7
- # GenZ 13B v2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
- The instruction finetuned model with 4K input length. The model is finetuned on top of pretrained LLaMa2
10
 
 
11
 
12
- ## Inference
 
13
 
14
  ```python
15
  import torch
16
  from transformers import AutoTokenizer, AutoModelForCausalLM
 
 
 
 
 
17
 
 
18
  tokenizer = AutoTokenizer.from_pretrained("budecosystem/genz-13b-v2", trust_remote_code=True)
19
  model = AutoModelForCausalLM.from_pretrained("budecosystem/genz-13b-v2", torch_dtype=torch.bfloat16)
20
- inputs = tokenizer("The world is", return_tensors="pt")
 
 
 
 
 
 
 
 
21
  sample = model.generate(**inputs, max_length=128)
22
  print(tokenizer.decode(sample[0]))
23
  ```
24
 
25
- Use the following prompt template
26
 
27
- ```
28
- A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions.
29
- USER: Hi, how are you? ASSISTANT:
30
- ```
31
 
32
- ## Finetuning
 
33
 
34
  ```bash
35
- python finetune.py
36
- --model_name meta-llama/Llama-2-13b
37
- --data_path dataset.json
38
- --output_dir output
39
- --trust_remote_code
40
- --prompt_column instruction
41
- --response_column output
 
42
  ```
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  Check the GitHub for the code -> [GenZ](https://github.com/BudEcosystem/GenZ)
 
4
  library_name: transformers
5
  pipeline_tag: text-generation
6
  ---
7
+ ---
8
+
9
+ <div align="center"><h1 align="center">~ GenZ ~</h1><img src="https://github.com/BudEcosystem/GenZ/blob/main/assets/genz-logo.png" width=150></div>
10
+
11
+
12
+ <p align="center"><i>Democratizing access to LLMs for the open-source community.<br>Let's advance AI, together. </i></p>
13
+
14
+ ---
15
+
16
+
17
+ ## Introduction 🎉
18
+
19
+ Welcome to **GenZ**, an advanced Large Language Model (LLM) fine-tuned on the foundation of Meta's open-source Llama V2 13B parameter model. At Bud Ecosystem, we believe in the power of open-source collaboration to drive the advancement of technology at an accelerated pace. Our vision is to democratize access to fine-tuned LLMs, and to that end, we will be releasing a series of models across different parameter counts (7B, 13B, and 70B) and quantizations (32-bit and 4-bit) for the open-source community to use, enhance, and build upon.
20
+
21
+ <p align="center"><img src="https://github.com/BudEcosystem/GenZ/blob/main/assets/MTBench_CompareChart_28July2023.png" width="500"></p>
22
+
23
+ The smaller quantization version of our models makes them more accessible, enabling their use even on personal computers. This opens up a world of possibilities for developers, researchers, and enthusiasts to experiment with these models and contribute to the collective advancement of language model technology.
24
+
25
+ GenZ isn't just a powerful text generator—it's a sophisticated AI assistant, capable of understanding and responding to user prompts with high-quality responses. We've taken the robust capabilities of Llama V2 and fine-tuned them to offer a more user-focused experience. Whether you're seeking informative responses or engaging interactions, GenZ is designed to deliver.
26
+
27
+ And this isn't the end. It's just the beginning of a journey towards creating more advanced, more efficient, and more accessible language models. We invite you to join us on this exciting journey. 🚀
28
+
29
+ ---
30
+
31
+ <h2>Milestone Releases ️🏁</h2>
32
+
33
+ **[27 July 2023]**
34
+ [_GenZ-13B V2 (ggml)_](https://huggingface.co/budecosystem/genz-13b-v2-ggml) : Announcing our GenZ-13B v2 with ggml. This variant of GenZ can run inferencing using only CPU and without the need of GPU. Download the model from [HuggingFace](https://huggingface.co/budecosystem/genz-13b-v2-ggml).
35
+
36
+ **[27 July 2023]**
37
+ [_GenZ-13B V2 (4-bit)_](https://huggingface.co/budecosystem/genz-13b-v2-4bit) : Announcing our GenZ-13B v2 with 4-bit quantisation. Enabling inferencing with much lesser GPU memory than the 32-bit variant. Download the model from [HuggingFace](https://huggingface.co/budecosystem/genz-13b-v2-4bit).
38
+
39
+ **[26 July 2023]**
40
+ [_GenZ-13B V2_](https://huggingface.co/budecosystem/genz-13b-v2) : We're excited to announce the release of our Genz 13B v2 model, a step forward with improved evaluation results compared to v1. Experience the advancements by downloading the model from [HuggingFace](https://huggingface.co/budecosystem/genz-13b-v2).
41
+
42
+ **[20 July 2023]**
43
+ [_GenZ-13B_](https://huggingface.co/budecosystem/genz-13b) : We marked an important milestone with the release of the Genz 13B model. The journey began here, and you can partake in it by downloading the model from [Hugging Face](https://huggingface.co/budecosystem/genz-13b).
44
+
45
+ ---
46
+
47
+
48
+ <img src="https://github.com/BudEcosystem/GenZ/blob/main/assets/screenshot_genz13bv2.png" width="100%">
49
+
50
+ | ![Python](https://github.com/BudEcosystem/GenZ/blob/main/assets/Python.gif) | ![Poem](https://github.com/BudEcosystem/GenZ/blob/main/assets/Poem.gif) | ![Email](https://github.com/BudEcosystem/GenZ/blob/main/assets/Email.gif)
51
+ |:--:|:--:|:--:|
52
+ | *Code Generation* | *Poem Generation* | *Email Generation* |
53
+
54
+ <!--
55
+ <p align="center"><img src="https://github.com/adrot-dev/git-test/blob/main/assets/Python.gif" width="33%" alt="Python Code"><img src="https://github.com/adrot-dev/git-test/blob/main/assets/Poem.gif" width="33%"><img src="https://github.com/adrot-dev/git-test/blob/main/assets/Email.gif" width="33%"></p>
56
+ -->
57
+
58
+
59
+ <h2>Getting Started on Hugging Face 🤗</h2>
60
 
61
+ Getting up and running with our models on Hugging Face is a breeze. Follow these steps:
62
 
63
+ <h3>1️⃣ : Import necessary modules</h3>
64
 
65
+
66
+ Start by importing the necessary modules from the ‘transformers’ library and ‘torch’.
67
 
68
  ```python
69
  import torch
70
  from transformers import AutoTokenizer, AutoModelForCausalLM
71
+ ```
72
+
73
+ <h3>2️⃣ : Load the tokenizer and the model</h3>
74
+
75
+ Next, load up the tokenizer and the model for ‘budecosystem/genz-13b-v2’ from Hugging Face using the ‘from_pretrained’ method.
76
 
77
+ ```python
78
  tokenizer = AutoTokenizer.from_pretrained("budecosystem/genz-13b-v2", trust_remote_code=True)
79
  model = AutoModelForCausalLM.from_pretrained("budecosystem/genz-13b-v2", torch_dtype=torch.bfloat16)
80
+ ```
81
+
82
+ <h3>3️⃣ : Generate responses</h3>
83
+
84
+
85
+ Now that you have the model and tokenizer, you're ready to generate responses. Here's how you can do it:
86
+
87
+ ```python
88
+ inputs = tokenizer("The meaning of life is", return_tensors="pt")
89
  sample = model.generate(**inputs, max_length=128)
90
  print(tokenizer.decode(sample[0]))
91
  ```
92
 
93
+ In this example, "The meaning of life is" is the prompt template used for inference. You can replace it with any string you like.
94
 
95
+ Want to interact with the model in a more intuitive way? We have a Gradio interface set up for that. Head over to our GitHub page, clone the repository, and run the ‘generate.py’ script to try it out. Happy experimenting! 😄
96
+
97
+ <h2>Fine-tuning 🎯</h2>
 
98
 
99
+
100
+ It's time to upgrade the model by fine-tuning the model. You can do this using our provided finetune.py script. Here's an example command:
101
 
102
  ```bash
103
+ python finetune.py \
104
+ --model_name meta-llama/Llama-2-13b \
105
+ --data_path dataset.json \
106
+ --output_dir output \
107
+ --trust_remote_code \
108
+ --prompt_column instruction \
109
+ --response_column output \
110
+ --pad_token_id 50256
111
  ```
112
 
113
+ ---
114
+
115
+ <h2 >Bonus: Colab Notebooks 📚 <b><i>(WIP)</i></b></h2>
116
+
117
+
118
+ Looking for an even simpler way to get started with GenZ? We've got you covered. We've prepared a pair of detailed Colab notebooks - one for Inference and one for Fine-tuning. These notebooks come pre-filled with all the information and code you'll need. All you'll have to do is run them!
119
+
120
+ Keep an eye out for these notebooks. They'll be added to the repository soon!
121
+
122
+ ---
123
+
124
+ <h2>Why Use GenZ? 💡</h2>
125
+
126
+
127
+ You might be wondering, "Why should I choose GenZ over a pretrained model?" The answer lies in the extra mile we've gone to fine-tune our models.
128
+
129
+ While pretrained models are undeniably powerful, GenZ brings something extra to the table. We've fine-tuned it with curated datasets, which means it has additional skills and capabilities beyond what a pretrained model can offer. Whether you need it for a simple task or a complex project, GenZ is up for the challenge.
130
+
131
+ What's more, we are committed to continuously enhancing GenZ. We believe in the power of constant learning and improvement. That's why we'll be regularly fine-tuning our models with various curated datasets to make them even better. Our goal is to reach the state of the art and beyond - and we're committed to staying the course until we get there.
132
+
133
+ But don't just take our word for it. We've provided detailed evaluations and performance details in a later section, so you can see the difference for yourself.
134
+
135
+ Choose GenZ and join us on this journey. Together, we can push the boundaries of what's possible with large language models.
136
+
137
+ ---
138
+
139
+ <h2>Model Card for GenZ 13B 📄</h2>
140
+
141
+ Here's a quick overview of everything you need to know about GenZ 13B.
142
+
143
+ <h3>Model Details:</h3>
144
+
145
+
146
+ - Developed by: Bud Ecosystem
147
+ - Base pretrained model type: Llama V2 13B
148
+ - Model Architecture: GenZ 13B, fine-tuned on Llama V2 13B, is an auto-regressive language model that employs an optimized transformer architecture. The fine-tuning process for GenZ 13B leveraged Supervised Fine-Tuning (SFT)
149
+ - License: The model is available for commercial use under a custom commercial license. For more information, please visit: [Meta AI Model and Library Downloads](https://ai.meta.com/resources/models-and-libraries/llama-downloads/)
150
+
151
+ ---
152
+
153
+ <h2>Intended Use 💼</h2>
154
+
155
+ When we created GenZ 13B, we had a clear vision of how it could be used to push the boundaries of what's possible with large language models. We also understand the importance of using such models responsibly. Here's a brief overview of the intended and out-of-scope uses for GenZ 13B.
156
+
157
+ <h3>Direct Use</h3>
158
+
159
+ GenZ 13B is designed to be a powerful tool for research on large language models. It's also an excellent foundation for further specialization and fine-tuning for specific use cases, such as:
160
+ - Text summarization
161
+ - Text generation
162
+ - Chatbot creation
163
+ - And much more!
164
+
165
+ <h3>Out-of-Scope Use 🚩</h3>
166
+
167
+ While GenZ 13B is versatile, there are certain uses that are out of scope:
168
+
169
+ - Production use without adequate assessment of risks and mitigation
170
+ - Any use cases which may be considered irresponsible or harmful
171
+ - Use in any manner that violates applicable laws or regulations, including trade compliance laws
172
+ - Use in any other way that is prohibited by the Acceptable Use Policy and Licensing Agreement for Llama 2
173
+
174
+ Remember, GenZ 13B, like any large language model, is trained on a large-scale corpora representative of the web, and therefore, may carry the stereotypes and biases commonly encountered online.
175
+
176
+ <h3>Recommendations 🧠</h3>
177
+
178
+ We recommend users of GenZ 13B to consider fine-tuning it for the specific set of tasks of interest. Appropriate precautions and guardrails should be taken for any production use. Using GenZ 13B responsibly is key to unlocking its full potential while maintaining a safe and respectful environment.
179
+
180
+ ---
181
+
182
+ <h2>Training Details 📚</h2>
183
+
184
+ When fine-tuning GenZ 13B, we took a meticulous approach to ensure we were building on the solid base of the pretrained Llama V2 13B model in the most effective way. Here's a look at the key details of our training process:
185
+
186
+ <h3>Fine-Tuning Training Data</h3>
187
+
188
+ For the fine-tuning process, we used a carefully curated mix of datasets. These included data from OpenAssistant, an instruction fine-tuning dataset, and Thought Source for the Chain Of Thought (CoT) approach. This diverse mix of data sources helped us enhance the model's capabilities across a range of tasks.
189
+
190
+ <h3>Fine-Tuning Procedure</h3>
191
+
192
+ We performed a full-parameter fine-tuning using Supervised Fine-Tuning (SFT). This was carried out on 4 A100 80GB GPUs, and the process took under 100 hours. To make the process more efficient, we used DeepSpeed's ZeRO-3 optimization.
193
+
194
+ <h3>Tokenizer</h3>
195
+
196
+ We used the SentencePiece tokenizer during the fine-tuning process. This tokenizer is known for its capability to handle open-vocabulary language tasks efficiently.
197
+
198
+
199
+ <h3>Hyperparameters</h3>
200
+
201
+
202
+ Here are the hyperparameters we used for fine-tuning:
203
+
204
+ | Hyperparameter | Value |
205
+ | -------------- | ----- |
206
+ | Warmup Ratio | 0.04 |
207
+ | Learning Rate Scheduler Type | Cosine |
208
+ | Learning Rate | 2e-5 |
209
+ | Number of Training Epochs | 3 |
210
+ | Per Device Training Batch Size | 4 |
211
+ | Gradient Accumulation Steps | 4 |
212
+ | Precision | FP16 |
213
+ | Optimizer | AdamW |
214
+
215
+ ---
216
+
217
+ <h2>Evaluations 🎯</h2>
218
+
219
+ Evaluating our model is a key part of our fine-tuning process. It helps us understand how our model is performing and how it stacks up against other models. Here's a look at some of the key evaluations for GenZ 13B:
220
+
221
+ <h3>Benchmark Comparison</h3>
222
+
223
+ We've compared GenZ V1 with V2 to understand the improvements our fine-tuning has achieved.
224
+
225
+ | Model Name | MT Bench | Vicuna Bench | MMLU | Human Eval | Hellaswag | BBH |
226
+ |:----------:|:--------:|:------------:|:----:|:----------:|:---------:|:----:|
227
+ | Genz 13B | 6.12 | 86.1 | 53.62| 17.68 | 77.38 | 37.76|
228
+ | Genz 13B v2| 6.79 | 87.2 | 53.68| 21.95 | 77.48 | 38.1 |
229
+
230
+ <h3>MT Bench Score</h3>
231
+
232
+ A key evaluation metric we use is the MT Bench score. This score provides a comprehensive assessment of our model's performance across a range of tasks.
233
+
234
+ We're proud to say that our model performs at a level that's close to the Llama-70B-chat model on the MT Bench and top of the list among 13B models.
235
+
236
+ <p align="center"><img src="https://github.com/BudEcosystem/GenZ/blob/main/assets/mt_bench_score.png" width="500"></p>
237
+
238
+ In the transition from GenZ V1 to V2, we noticed some fascinating performance shifts. While we saw a slight dip in coding performance, two other areas, Roleplay and Math, saw noticeable improvements.
239
+
240
+ ---
241
+
242
+ <h2>Looking Ahead 👀</h2>
243
+
244
+ We're excited about the journey ahead with GenZ. We're committed to continuously improving and enhancing our models, and we're excited to see what the open-source community will build with them. We believe in the power of collaboration, and we can't wait to see what we can achieve together.
245
+
246
+ Remember, we're just getting started. This is just the beginning of a journey that we believe will revolutionize the world of large language models. We invite you to join us on this exciting journey. Together, we can push the boundaries of what's possible with AI. 🚀
247
+
248
+ ---
249
+
250
+
251
  Check the GitHub for the code -> [GenZ](https://github.com/BudEcosystem/GenZ)