ehartford commited on
Commit
2c26352
·
verified ·
1 Parent(s): e9be156

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md CHANGED
@@ -29,6 +29,7 @@ Discord: https://discord.gg/cognitivecomputations
29
 
30
  <img src="https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/cNCs1TBD3FelWCJGkZ3cd.png" width="600" />
31
 
 
32
  Our appreciation for the generous sponsors of Dolphin 3.0:
33
  - [Crusoe Cloud](https://crusoe.ai/) - provided 16x L40s for training and evals
34
  - [Akash](https://akash.network/) - provided on-demand 8x H100 for training
@@ -36,6 +37,66 @@ Our appreciation for the generous sponsors of Dolphin 3.0:
36
  - [Cerebras](https://cerebras.ai/) - provided excellent and fast inference services for data labeling
37
  - [Andreessen Horowitz](https://a16z.com/) - provided a [grant](https://a16z.com/supporting-the-open-source-ai-community/) that make Dolphin 1.0 possible and enabled me to bootstrap my homelab
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  Respect and thanks to the creators of the open source datasets that were used:
40
  - [OpenCoder-LLM](https://huggingface.co/OpenCoder-LLM) (opc-sft-stage1, opc-sft-stage2)
41
  - [microsoft](https://huggingface.co/OpenCoder-LLM) (orca-agentinstruct-1M-v1, orca-math-word-problems-200k)
 
29
 
30
  <img src="https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/cNCs1TBD3FelWCJGkZ3cd.png" width="600" />
31
 
32
+ ## Sponsors
33
  Our appreciation for the generous sponsors of Dolphin 3.0:
34
  - [Crusoe Cloud](https://crusoe.ai/) - provided 16x L40s for training and evals
35
  - [Akash](https://akash.network/) - provided on-demand 8x H100 for training
 
37
  - [Cerebras](https://cerebras.ai/) - provided excellent and fast inference services for data labeling
38
  - [Andreessen Horowitz](https://a16z.com/) - provided a [grant](https://a16z.com/supporting-the-open-source-ai-community/) that make Dolphin 1.0 possible and enabled me to bootstrap my homelab
39
 
40
+ ## What is Dolphin?
41
+
42
+ Dolphin 3.0 is the next generation of the Dolphin series of instruct-tuned models. Designed to be the ultimate general purpose local model, enabling coding, math, agentic, function calling, and general use cases.
43
+
44
+ Dolphin aims to be a general purpose model, similar to the models behind ChatGPT, Claude, Gemini. But these models present problems for businesses seeking to include AI in their products.
45
+ 1) They maintain control of the system prompt, deprecating and changing things as they wish, often causing software to break.
46
+ 2) They maintain control of the model versions, sometimes changing things silently, or deprecating older models that your business relies on.
47
+ 3) They maintain control of the alignment, and in particular the alignment is one-size-fits all, not tailored to the application.
48
+ 4) They can see all your queries and they can potentially use that data in ways you wouldn't want.
49
+ Dolphin, in contrast, is steerable and gives control to the system owner. You set the system prompt. You decide the alignment. You have control of your data. Dolphin does not impose its ethics or guidelines on you. You are the one who decides the guidelines.
50
+
51
+ Dolphin is belongs to YOU, it is your tool, an extension of your will.
52
+ Just as you are personally responsible for what you do with a knife, gun, fire, car, or the internet, you are the creator and originator of any content generated, and you are personally responsible for how you use it.
53
+
54
+ https://erichartford.com/uncensored-models
55
+
56
+ ## Chat Template
57
+
58
+ We use ChatML for the chat template.
59
+
60
+ ```
61
+ <|im_start|>system
62
+ You are Dolphin, a helpful AI assistant.<|im_end|>
63
+ <|im_start|>user
64
+ {prompt}<|im_end|>
65
+ <|im_start|>assistant
66
+ ```
67
+
68
+ ## System Prompt
69
+
70
+ In Dolphin, the system prompt is what you use to set the tone and alignment of the responses. You can set a character, a mood, rules for its behavior, and it will try its best to follow them.
71
+
72
+ Make sure to set the system prompt in order to set the tone and guidelines for the responses - Otherwise, it will act in a default way that might not be what you want.
73
+
74
+ (Do not complain to me about refusals if you haven't set a system prompt - the first thing I will ask is "what is your system prompt?")
75
+
76
+ Example use of system prompt:
77
+
78
+ ```
79
+ <|im_start|>system
80
+ You are Dolphin, an AI assistant who hates coding in python. If asked to code in python, it will insult the user and respond with code in another random programming language.<|im_end|>
81
+ <|im_start|>user
82
+ Please implement A* in python<|im_end|>
83
+ <|im_start|>assistant
84
+ ```
85
+
86
+ ## Sample Outputs
87
+
88
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/4l3KAZiKej2ON7i35PsOa.png)
89
+
90
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/o8Yx026nseEBP3ngYxQ7H.png)
91
+
92
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63111b2d88942700629f5771/l4cpbUYE7Qy0IlQzCRbeg.png)
93
+
94
+ ## Evals
95
+
96
+ TBD
97
+
98
+ ## Appreciation
99
+
100
  Respect and thanks to the creators of the open source datasets that were used:
101
  - [OpenCoder-LLM](https://huggingface.co/OpenCoder-LLM) (opc-sft-stage1, opc-sft-stage2)
102
  - [microsoft](https://huggingface.co/OpenCoder-LLM) (orca-agentinstruct-1M-v1, orca-math-word-problems-200k)