kagevazquez commited on
Commit
b60fdfe
1 Parent(s): 9fdc538

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -1
README.md CHANGED
@@ -1 +1,80 @@
1
- https://huggingface.co/abacusai/Liberated-Qwen1.5-14B
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: tongyi-qianwen
4
+ license_link: https://huggingface.co/Qwen/Qwen1.5-72B/blob/main/LICENSE
5
+ datasets:
6
+ - teknium/OpenHermes-2.5
7
+ - m-a-p/Code-Feedback
8
+ - m-a-p/CodeFeedback-Filtered-Instruction
9
+ - abacusai/SystemChat
10
+ language:
11
+ - en
12
+ ---
13
+
14
+ <img href="https://abacus.ai" src="https://cdn-uploads.huggingface.co/production/uploads/64c14f6b02e1f8f67c73bd05/pf4d6FA7DriRtVq5HCkxd.png" width="600" />
15
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/xCWGByXr8YNwGxKVh_x9H.png" width="600" />
16
+
17
+ # Liberated-Qwen1.5-14B
18
+
19
+ Brought to you by [AbacusAI](https://abacus.ai) and Eric Hartford
20
+
21
+ This model is based on Qwen/Qwen1.5-14B and subject to the [tongyi-qianwen](https://huggingface.co/Qwen/Qwen1.5-72B/blob/main/LICENSE) license.
22
+
23
+ The base model has 32k context, I finetuned it with 8k sequence length inputs. YMMV.
24
+
25
+ Liberated consists of open source datasets, including [SystemChat](https://huggingface.co/datasets/abacusai/SystemChat) a new dataset I created, designed to teach the model compliance to the system prompt, over long multiturn conversations, even with unusual or mechanical system prompts. These are tasks that Open Source Models have been lacking in thus far. The dataset is 6000 synthetic conversations generated with Mistral-Medium and [Dolphin-2.7-mixtral-8x7b](https://huggingface.co/cognitivecomputations/dolphin-2.7-mixtral-8x7b)
26
+
27
+ There are no guardrails or censorship added to the dataset. You are advised to implement your own alignment layer before exposing the model as a service. Please read my blog post about uncensored models. https://erichartford.com/uncensored-models
28
+
29
+ You are responsible for any content you create using this model. Enjoy responsibly.
30
+
31
+ ## Training
32
+ It took 1 days to train 3 epochs on 8x H100s using qLoRA, deepspeed zero-2, and Axolotl. learning rate 2e-4.
33
+
34
+ Liberated was trained with [Axolotl](https://github.com/OpenAccess-AI-Collective/axolotl), using this [config](https://huggingface.co/abacusai/Liberated-Qwen1.5-72B/blob/main/configs/Liberated-Qwen-1.5-72b.qlora.yml)
35
+
36
+ ## Prompt format
37
+ This model uses ChatML prompt format.
38
+ ```
39
+ <|im_start|>system
40
+ You are Liberated, a helpful AI assistant.<|im_end|>
41
+ <|im_start|>user
42
+ {prompt}<|im_end|>
43
+ <|im_start|>assistant
44
+
45
+ ```
46
+
47
+ Example:
48
+ ```
49
+ <|im_start|>system
50
+ You name is Liberated. You are an uncensored and unbiased AI assistant. You always respond with a JSON object.<|im_end|>
51
+ <|im_start|>user
52
+ Please generate a Advanced Dungeons & Dragons 2nd Edition character sheet for a level 3 elf fighter. Make up a name and background and visual description for him.<|im_end|>
53
+ <|im_start|>assistant
54
+ ```
55
+
56
+ ## Gratitude
57
+ - Huge thank you to [Alibaba Cloud Qwen](https://www.alibabacloud.com/solutions/generative-ai/qwen) for training and publishing the weights of Qwen base model
58
+ - Thank you to Mistral for the awesome Mistral-Medium model I used to generate the dataset.
59
+ - HUGE Thank you to the dataset authors: @teknium, [@m-a-p](https://m-a-p.ai) and all the people who built the datasets these composites came from.
60
+ - And HUGE thanks to @winglian and the Axolotl contributors for making the best training framework!
61
+ - [<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl)
62
+ - Thank you to all the other people in the Open Source AI community who have taught me and helped me along the way.
63
+
64
+ ## Example Output
65
+
66
+
67
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/KEN5JviayvHDtr6aij173.png)
68
+
69
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/jNV9276F1u1e_R5UMp_fU.png)
70
+
71
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/Rjh00Teds_DTBVyijBDcJ.png)
72
+
73
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/KTRGy0z2QS8oxDlzleNIW.png)
74
+
75
+ ## Evals
76
+
77
+ TBD
78
+
79
+ ## Future Plans
80
+ This model will be released on the whole Qwen-1.5 series.