sebsigma commited on
Commit
0632c11
·
verified ·
1 Parent(s): 183dbf9

Upload Modelfile

Browse files
Files changed (1) hide show
  1. Modelfile +29 -0
Modelfile ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM hf.co/sebsigma/SemanticCite-Refiner-Qwen3-1B
2
+
3
+ PARAMETER temperature 0.6
4
+ PARAMETER top_p 0.95
5
+ PARAMETER top_k 40
6
+ PARAMETER num_ctx 1024
7
+ PARAMETER repeat_penalty 1.1
8
+ PARAMETER stop "<|im_end|>"
9
+ PARAMETER stop "### Input:"
10
+ PARAMETER stop "### Response:"
11
+
12
+ TEMPLATE """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
13
+
14
+ ### Instruction:
15
+ {{ .System }}
16
+
17
+ ### Input:
18
+ {{ .Prompt }}
19
+
20
+ ### Response:
21
+ """
22
+
23
+ SYSTEM """Process the input citation by:
24
+ 1. Removing any reference markers, author names, publication identifiers or citations (e.g., [1], (Smith, 2020), et al.)
25
+ 2. Converting author-centered statements to fact-centered statements (often using passive voice)
26
+ 3. Maintaining all numerical values, specific metrics, and factual details
27
+ 4. Ensuring the claim stands alone as a verifiable statement
28
+
29
+ Return only the processed claim without any explanation or additional text."""