TheBloke commited on
Commit
df7fe20
1 Parent(s): c9c1ed5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +103 -0
README.md CHANGED
@@ -1,6 +1,20 @@
1
  ---
2
  inference: false
3
  license: other
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  ---
5
 
6
  <!-- header start -->
@@ -90,3 +104,92 @@ senxiiz. Thank you all, and to all my other generous patrons and donaters.
90
  <!-- footer end -->
91
 
92
  # Original model card: OpenAccess AI Collective's Hippogriff 30B Chat
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  inference: false
3
  license: other
4
+ datasets:
5
+ - QingyiSi/Alpaca-CoT
6
+ - teknium/GPT4-LLM-Cleaned
7
+ - teknium/GPTeacher-General-Instruct
8
+ - metaeval/ScienceQA_text_only
9
+ - hellaswag
10
+ - openai/summarize_from_feedback
11
+ - riddle_sense
12
+ - gsm8k
13
+ - OpenAssistant/oasst1
14
+ language:
15
+ - en
16
+ library_name: transformers
17
+ pipeline_tag: text-generation
18
  ---
19
 
20
  <!-- header start -->
 
104
  <!-- footer end -->
105
 
106
  # Original model card: OpenAccess AI Collective's Hippogriff 30B Chat
107
+
108
+ # Hippogriff 30B Chat
109
+
110
+ [<img src="https://huggingface.co/openaccess-ai-collective/hippogriff-30b-chat/resolve/main/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl)
111
+
112
+
113
+ Hippogriff 30B Chat is an experiment that builds on Manticore with new datasets, while removing a few more instruction and chat datasets. It also includes a de-duped subset of the Pygmalion dataset. It also removes all Alpaca style prompts using `###` in favor of
114
+ chat only style prompts using `USER:`,`ASSISTANT:` as well as [pygmalion/metharme prompting](https://huggingface.co/PygmalionAI/metharme-7b#prompting) using `<|system|>, <|user|> and <|model|>` tokens.
115
+
116
+ Questions, comments, feedback, looking to donate, or want to help? Reach out on our [Discord](https://discord.gg/EqrvvehG) or email [wing@openaccessaicollective.org](mailto:wing@openaccessaicollective.org)
117
+
118
+ # Training Datasets
119
+
120
+ Hippogriff 30B Chat is a Llama 30B model fine-tuned on the following datasets
121
+
122
+ - OpenAssistant/oasst1 - cleaned dataset, similar to Guanaco
123
+ - synthetic jokes generation and explanation derived from reddit jokes dataset
124
+ - synthetic prose generation and rewriting self-chat
125
+ - Q&A based on provided context
126
+ - self instruct augmented logic_inference_oa
127
+ - de-duped pygmalion dataset, filtered down to RP data, cleaned, english only, 25%
128
+ - [riddle_sense](https://huggingface.co/datasets/riddle_sense) - instruct augmented
129
+ - hellaswag, updated for detailed explanations w 30K+ rows
130
+ - [gsm8k](https://huggingface.co/datasets/gsm8k) - instruct augmented
131
+ - [ewof/code-alpaca-instruct-unfiltered](https://huggingface.co/datasets/ewof/code-alpaca-instruct-unfiltered) synthetic self chat dataset derived from about 1000 rows
132
+ - [subset of QingyiSi/Alpaca-CoT for roleplay and CoT](https://huggingface.co/QingyiSi/Alpaca-CoT)
133
+ - [GPTeacher-General-Instruct](https://huggingface.co/datasets/teknium/GPTeacher-General-Instruct)
134
+ - ARC-Easy & ARC-Challenge - instruct augmented for detailed responses, derived from the `train` split
135
+ - [hellaswag](https://huggingface.co/datasets/hellaswag) - 5K row subset of instruct augmented for concise responses, derived from the `train` split
136
+ - [metaeval/ScienceQA_text_only](https://huggingface.co/datasets/metaeval/ScienceQA_text_only) - instruct for concise responses
137
+ - [openai/summarize_from_feedback](https://huggingface.co/datasets/openai/summarize_from_feedback) - instruct augmented tl;dr summarization
138
+
139
+ Hippogriff differs from Manticore as it does not use the WizardLM, WizardVicuna, Alpaca, or ShareGPT datasets.
140
+
141
+ # Initial thoughts
142
+
143
+ Hippogriff follows instructions pretty well. It still struggles with anything that has to do with math. Prose is much better than manticore. Handles in-context QA much better.
144
+
145
+
146
+ # Shoutouts
147
+
148
+ Special thanks to Nanobit for helping with Axolotl, TheBloke for quantizing these models are more accessible to all, 0x000011b for the RP dataset, and the support from everyone in our AI Discord community.
149
+
150
+ # Demo
151
+
152
+ A Spaces demo is not provided for this release due to 30B models currently not fitting in VRAM.
153
+
154
+ ## Build
155
+
156
+ Hippogriff was built with [Axolotl](https://github.com/OpenAccess-AI-Collective/axolotl) on 8xA100 80GB
157
+ - 1.5 epochs taking approximately 12 hours. No further epochs will be released.
158
+
159
+ ## Bias, Risks, and Limitations
160
+
161
+ Hippogriff has not been aligned to human preferences with techniques like RLHF or deployed with in-the-loop filtering of responses like ChatGPT, so the model can produce problematic outputs (especially when prompted to do so).
162
+ Hippogriff was fine-tuned from the base model LlaMa 30B, please refer to its model card's Limitations Section for relevant information.
163
+
164
+ The core functionality of Llama is taking a string of text and predicting the next token. While language models are widely used for tasks other than this,
165
+ there are a lot of unknowns with this work. When prompting Hippogriff it is important to remember that the statistically most likely next token is often
166
+ not the token that produces the most "accurate" text. Never depend upon Hippogriff to produce factually accurate output.
167
+
168
+ Llama was trained on the Pile, a dataset known to contain profanity, lewd, and otherwise abrasive language. Depending upon use case Hippogriff may produce
169
+ socially unacceptable text. See Sections 5 and 6 of the Pile paper for a more detailed analysis of the biases in the Pile.
170
+
171
+ As with all language models, it is hard to predict in advance how Hippogriff will respond to particular prompts and offensive content may occur without warning.
172
+ We recommend having a human curate or filter the outputs before releasing them, both to censor undesirable content and to improve the quality of the results.
173
+
174
+ ## Examples
175
+
176
+ TBD
177
+
178
+ ```
179
+ USER: write an original short story of at least 300 words in the style of Zora Neale Hurston. Incorporate the following literary devices: Euphemism and Foreshadowing.
180
+ ASSISTANT: Once upon a time, there was a black girl named Rose, whose skin shined like a pearl beneath the hot sun. She lived with her mama and daddy on their farm, where they grew crops to feed the family and neighbors. On this particular day, Rose felt a tinge of excitement as she watched her parents work diligently in their fields. 'It's almost harvest season!' she thought, imagining the delicious meals that awaited them. But, soon after, it became apparent that something sinister lurked amidst the rows of fresh produce.
181
+
182
+ As her father hoed around a vine-covered cucumber plant, he unearthed a peculiar rock. It was the size of an acorn but had a strange shape, unlike anything he or his wife had ever seen. "What have we here?" He said, turning to his wife with curiosity and excitement. She examined the rock for herself and declared, "Why, it looks like a piece of coal!" But as both mother and daughter looked closer, it seemed to be far more than a mere piece of coal. A sense of unease crept up Rose's spine when she noticed that the rock resembled the dark face of a baby in the womb. As Rose tried to suppress a scream, her mother gasped, "Sweet Jesus! Let's bury this thing before anyone sees!" And so, they quickly hid the stone back underground, hoping that nobody would ever discover their secret.
183
+ ```
184
+
185
+ ```
186
+ USER: tell me 5 words that start with "ex" and then the sum of 33 and 77
187
+ ASSISTANT: Excite, exotic, exhibit, excitable, excessive
188
+ ```
189
+
190
+
191
+ ```
192
+ USER: sally (a girl) has 3 brothers. Each brother has 2 sisters. how many sisters does sally have?
193
+ ASSISTANT: Sally has 3 brothers, and each brother has 2 sisters. To find out how many sisters Sally has in total, we need to multiply the number of bro
194
+ thers by the number of sisters per brother, then add 1 to account for Sally herself. So, 3 * 2 + 1 = 6 sisters in total
195
+ ```