aashish1904 commited on
Commit
b32530b
·
verified ·
1 Parent(s): 63fb767

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+
4
+ license: apache-2.0
5
+ language:
6
+ - en
7
+ base_model:
8
+ - mistralai/Mistral-Nemo-Base-2407
9
+ tags:
10
+ - text adventure
11
+ - roleplay
12
+
13
+ ---
14
+
15
+ [![QuantFactory Banner](https://lh7-rt.googleusercontent.com/docsz/AD_4nXeiuCm7c8lEwEJuRey9kiVZsRn2W-b4pWlu3-X534V3YmVuVc2ZL-NXg2RkzSOOS2JXGHutDuyyNAUtdJI65jGTo8jT9Y99tMi4H4MqL44Uc5QKG77B0d6-JfIkZHFaUA71-RtjyYZWVIhqsNZcx8-OMaA?key=xt3VSDoCbmTY7o-cwwOFwQ)](https://hf.co/QuantFactory)
16
+
17
+
18
+ # QuantFactory/Wayfarer-12B-GGUF
19
+ This is quantized version of [LatitudeGames/Wayfarer-12B](https://huggingface.co/LatitudeGames/Wayfarer-12B) created using llama.cpp
20
+
21
+ # Original Model Card
22
+
23
+
24
+ ![image/jpeg](wayfarer.jpg)
25
+
26
+ # Wayfarer-12B
27
+ We’ve heard over and over from AI Dungeon players that modern AI models are too nice, never letting them fail or die. While it may be good for a chatbot to be nice and helpful, great stories and games aren’t all rainbows and unicorns. They have conflict, tension, and even death. These create real stakes and consequences for characters and the journeys they go on.
28
+
29
+ Similarly, great games need opposition. You must be able to fail, die, and may even have to start over. This makes games more fun!
30
+
31
+ However, the vast majority of AI models, through alignment RLHF, have been trained away from darkness, violence, or conflict, preventing them from fulfilling this role. To give our players better options, we decided to train our own model to fix these issues.
32
+
33
+ Wayfarer is an adventure role-play model specifically trained to give players a challenging and dangerous experience. We thought they would like it, but since releasing it on AI Dungeon, players have reacted even more positively than we expected.
34
+
35
+ Because they loved it so much, we’ve decided to open-source the model so anyone can experience unforgivingly brutal AI adventures! Anyone can download the model to run locally.
36
+
37
+ Or if you want to easily try this model for free, you can do so at [https://aidungeon.com](https://aidungeon.com/).
38
+
39
+ We plan to continue improving and open-sourcing similar models, so please share any and all feedback on how we can improve model behavior. Below we share more details on how Wayfarer was created.
40
+
41
+ [Quantized GGUF weights can be downloaded here.](https://huggingface.co/LatitudeGames/Wayfarer-12B-GGUF)
42
+
43
+ ## Model details
44
+ Wayfarer 12B was trained on top of the Nemo base model using a two-stage SFT approach, with the first stage containing 180K chat-formatted instruct data instances and the second stage consisting of a 50/50 mixture of synthetic 8k context text adventures and roleplay experiences.
45
+
46
+ ## How It Was Made
47
+ Wayfarer’s text adventure data was generated by simulating playthroughs of published character creator scenarios from AI Dungeon. Five distinct user archetypes played through each scenario, whose character starts all varied in faction, location, etc. to generate five unique samples.
48
+
49
+ One language model played the role of narrator, with the other playing the user. They were blind to each other’s underlying logic, so the user was actually capable of surprising the narrator with their choices. Each simulation was allowed to run for 8k tokens or until the main character died.
50
+
51
+ Wayfarer’s general emotional sentiment is one of pessimism, where failure is frequent and plot armor does not exist. This serves to counter the positivity bias so inherent in our language models nowadays.
52
+
53
+ ## Inference
54
+ The Nemo architecture is known for being sensitive to higher temperatures, so the following settings are recommended as a baseline. Nothing stops you from experimenting with these, of course.
55
+
56
+ ```
57
+ "temperature": 0.8,
58
+ "repetition_penalty": 1.05,
59
+ "min_p": 0.025
60
+ ```
61
+
62
+ ## Limitations
63
+ Wayfarer was trained exclusively on second-person present tense data (using “you”) in a narrative style. Other styles will work as well but may produce suboptimal results.
64
+
65
+ Additionally, Wayfarer was trained exclusively on single-turn chat data.
66
+
67
+ ## Prompt Format
68
+ ChatML was used for both finetuning stages.
69
+
70
+ ```
71
+ <|im_start|>system
72
+ You're a masterful storyteller and gamemaster. Write in second person present tense (You are), crafting vivid, engaging narratives with authority and confidence.<|im_end|>
73
+ <|im_start|>user
74
+ > You peer into the darkness.
75
+ <|im_start|>assistant
76
+ You have been eaten by a grue.
77
+
78
+ GAME OVER
79
+ ```
80
+
81
+ ## Credits
82
+ Thanks to [Gryphe Padar](https://huggingface.co/Gryphe) for collaborating on this finetune with us!