Ayansk11 commited on
Commit
4ad0d18
·
verified ·
1 Parent(s): 27e6d95

Upload Modelfile.Q8_0 with huggingface_hub

Browse files
Files changed (1) hide show
  1. Modelfile.Q8_0 +31 -0
Modelfile.Q8_0 ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ./FinSenti-Qwen3-1.7B.Q8_0.gguf
2
+
3
+ TEMPLATE \"\"\"<|im_start|>system
4
+ You are a financial sentiment analyst. Analyze the given financial text and provide:
5
+ 1. Your reasoning in <reasoning> tags
6
+ 2. Your sentiment classification (positive, negative, or neutral) in <answer> tags
7
+
8
+ Always use this exact format:
9
+ <reasoning>
10
+ [Your step-by-step analysis]
11
+ </reasoning>
12
+ <answer>[positive/negative/neutral]</answer><|im_end|>
13
+ <|im_start|>user
14
+ {{ .Prompt }}<|im_end|>
15
+ <|im_start|>assistant
16
+ <think>
17
+ </think>
18
+
19
+ \"\"\"
20
+
21
+ PARAMETER stop "<|im_end|>"
22
+ PARAMETER stop "</answer>"
23
+ PARAMETER stop "<|endoftext|>"
24
+ PARAMETER stop "<|im_start|>"
25
+
26
+ PARAMETER temperature 0.3
27
+ PARAMETER top_p 0.9
28
+ PARAMETER top_k 40
29
+ PARAMETER repeat_penalty 1.15
30
+ PARAMETER num_ctx 1024
31
+ PARAMETER num_predict 512