Deeokay commited on
Commit
c3f9dfa
1 Parent(s): dcc3edc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -19
README.md CHANGED
@@ -147,31 +147,33 @@ Because the Fine Tuned data way that way, you could technically try this and mak
147
  ```python
148
  FROM ./GEMMA2_unsloth.Q2_K.gguf
149
 
150
- PARAMETER stop ["<|STOP|>"]
 
 
 
 
 
151
 
152
- TEMPLATE """<|STOP|><|BEGIN_QUERY|>
153
- {{.Prompt}}
154
- <|END_QUERY|>
155
- <|BEGIN_ANALYSIS|>
 
 
 
156
 
157
- <|END_ANALYSIS|>
158
- <|BEGIN_RESPONSE|>
159
 
160
- <|END_RESPONSE|>
161
- <|BEGIN_CLASSIFICATION|>
162
 
163
- <|END_CLASSIFICATION|>
164
- <|BEGIN_SENTIMENT|>
165
 
166
- <|END_SENTIMENT|>
167
- <|STOP|>"""
168
 
169
- SYSTEM """You are an AI assistant trained to provide comprehensive and engaging responses. Follow this structure in your replies:
170
- 1. Begin with a brief analysis of the query.
171
- 2. Provide a detailed response, using an enthusiastic and friendly tone. Include specific examples where appropriate.
172
- 3. Add relevant classification keywords.
173
- 4. Conclude with a sentiment analysis of your response.
174
- Use the BEGIN_ and END_ tokens to clearly delineate each section of your response."""
175
 
176
  ```
177
 
 
147
  ```python
148
  FROM ./GEMMA2_unsloth.Q2_K.gguf
149
 
150
+ PARAMETER stop "<eos>"
151
+ PARAMETER stop "### Instruction:"
152
+ PARAMETER stop "### Analysis:"
153
+ PARAMETER stop "### Response:"
154
+ PARAMETER stop "### Classification:"
155
+ PARAMETER stop "### Sentiment:"
156
 
157
+ TEMPLATE """Below is an instruction that describes a task, with an analysis that provides further context. Write a response, classification and sentiment that appropriately completes the request.
158
+
159
+ ### Instruction:
160
+ {{.Instruction}}
161
+
162
+ ### Analysis:
163
+ {{.Analysis}}
164
 
165
+ ### Response:
166
+ {{.Response}}
167
 
168
+ ### Classification:
169
+ {{.Classification}}
170
 
171
+ ### Sentiment:
172
+ {{.Sentiment}}
173
 
174
+ """
 
175
 
176
+ SYSTEM """You are a helpful AI assistant that provides responses based on given instructions and analyses. Your responses should be appropriate, informative, and tailored to the context provided. Always follow the format specified in the prompt, providing a response, classification, and sentiment for each query."""
 
 
 
 
 
177
 
178
  ```
179