munish0838 commited on
Commit
9694f4f
1 Parent(s): c6677c9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -1
README.md CHANGED
@@ -10,4 +10,76 @@ tags:
10
  - mistral
11
  - conversational
12
  - text-generation-inference
13
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  - mistral
11
  - conversational
12
  - text-generation-inference
13
+ ---
14
+
15
+ ## Matter 7B - 0.1 Boost (Mistral 7B Finetune)
16
+
17
+ ## This is the GGUF version of the model, made for the llama.cpp inference engine.
18
+
19
+ Matter 7B is full-finetune on the [Matter dataset](https://huggingface.co/datasets/0-hero/Matter-0.1), which is curated from over 35 datsets analyzing >6B tokens
20
+
21
+ Boost version is finetuned on some additional data
22
+
23
+ ### Training
24
+
25
+ Prompt format: This model uses ChatML prompt format.
26
+ ```
27
+ <|im_start|>system
28
+ You are a helpful AI assistant.<|im_end|>
29
+ <|im_start|>user
30
+ {prompt}<|im_end|>
31
+ <|im_start|>assistant
32
+ ```
33
+ ### Function Calling
34
+
35
+ Model also supports function calling. Additional tokens for function calling
36
+
37
+ Model function call tokens
38
+ - <|begin_func|> - Function call start token
39
+ - <|end_func|> - Function call end token
40
+
41
+ Function call response tokens
42
+ - <|begin_func_response|> - Function response start token
43
+ - <|end_func_response|> - Function response end token
44
+
45
+ Example
46
+ ```
47
+ <|im_start|>system
48
+ You are a helpful assistant with access to the following functions. Use them if required -
49
+ { "name": "get_news_headlines",
50
+ "description": "Get the latest news headlines",
51
+ "parameters":
52
+ { "type": "object",
53
+ "properties":
54
+ { "country":
55
+ { "type": "string",
56
+ "description": "The country for which to fetch news"
57
+ }
58
+ },
59
+ "required": [ "country" ]
60
+ }
61
+ }
62
+ <|im_end|>
63
+ <|im_start|>user
64
+ Can you tell me the latest news headlines for the United States?<|im_end|>
65
+ <|im_start|>assistant
66
+ <|begin_func|>{"name": "get_news_headlines", "arguments": '{"country": "United States"}'}<|end_func|><|im_end|>
67
+ <|im_start|>user
68
+ <|begin_func_response|>{
69
+ "headlines":
70
+ [
71
+ "Biden announces new vaccine mandates",
72
+ "Hurricane Ida devastates Louisiana",
73
+ "Apple unveils new iPhone",
74
+ "NASA's Perseverance rover collects first Mars rock sample"
75
+ ]
76
+ }<|end_func_response|>
77
+ <|im_end|>
78
+ <|im_start|>assistant
79
+ Here are the latest news headlines for the United States:
80
+ 1. Biden announces new vaccine mandates
81
+ 2. Hurricane Ida devastates Louisiana
82
+ 3. Apple unveils new iPhone
83
+ 4. NASA's Perseverance rover collects first Mars rock sample
84
+ <|im_end|>
85
+ ```