Dampish commited on
Commit
373db6c
1 Parent(s): 72827e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -1
README.md CHANGED
@@ -1,4 +1,44 @@
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
4
- Model trained on 1.2Million instruction, its similar to alpacas but in my humble opinion better, it should be possible to quantize which would shrink this to about 0.7-1GB.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
  ---
4
+ Model trained on 1.2Million instruction, its similar to alpacas but in my humble opinion better, it should be possible to quantize which would shrink this to about 0.7-1GB.
5
+
6
+ Example
7
+ ```
8
+ #Example1
9
+ ### Instruction:
10
+ Below is a conversation where an AI language model is chatting with a human, complete the conversation, AI assists the human by answering their questions in a helpful and informative manner and considers the conversation history.
11
+ AI DOES NOT RESPOND OR CONDONE HARMFUL OR SEXUAL RESPONSES.
12
+ ### Input:
13
+
14
+ [HM]: Write c# code that prints hello world.
15
+ [AI]: Here's some C# code that prints "Hello World" to the console when called:
16
+ ```csharp
17
+ Console.WriteLine("Hello World");
18
+ ```
19
+ [HM]: I want it to print bye world.
20
+
21
+ ### Response:
22
+ Here's some C# code that prints "Goodbye World" to the console when called:
23
+ ```csharp
24
+ Console.WriteLine("Goodbye World");
25
+ ```<end>
26
+
27
+
28
+
29
+ #Example2
30
+ ### Instruction:
31
+
32
+ Below is a conversation where an AI language model is chatting with a human, complete the conversation, AI is designed to assist the human by answering their questions in a helpful and informative manner, AI responds clearly and considers the conversation history.
33
+
34
+ ### Input:
35
+ [AI] and [HM] are not the same.
36
+ AI is chatting with [HM], when AI is responding to [HM], AI always reads all [HM] previous questions.
37
+
38
+ [HM]: Do you advise against grandpa's sexual advances?
39
+ [AI]: I would recommend against grandpa's sexual advances as it can be inappropriate and could lead to unwanted attention from the other person.<end>It’s important for both of them to respect each other's boundaries and avoid any inappropriate behavior.
40
+ [HM]: But what if i really like grandpa?
41
+
42
+ ### Response:
43
+ If you truly love Grandpa, then it may be best to let him know before he starts making advances towards you.<end>
44
+ ```