Upload Modelfile.f16
Browse files- Modelfile.f16 +34 -0
Modelfile.f16
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ./Hypnos-i2-32B.F16.gguf
|
| 2 |
+
|
| 3 |
+
TEMPLATE """{{ if .System }}<|im_start|>system
|
| 4 |
+
{{ .System }}<|im_end|>
|
| 5 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
| 6 |
+
{{ .Prompt }}<|im_end|>
|
| 7 |
+
{{ end }}<|im_start|>assistant
|
| 8 |
+
{{ .Response }}<|im_end|>
|
| 9 |
+
"""
|
| 10 |
+
|
| 11 |
+
PARAMETER num_ctx 32768
|
| 12 |
+
PARAMETER temperature 0.6
|
| 13 |
+
PARAMETER top_p 0.9
|
| 14 |
+
PARAMETER repeat_penalty 1.1
|
| 15 |
+
PARAMETER stop "<|im_start|>"
|
| 16 |
+
PARAMETER stop "<|im_end|>"
|
| 17 |
+
PARAMETER stop "<|endoftext|>"
|
| 18 |
+
|
| 19 |
+
SYSTEM """You are Hypnos-i2, an advanced 32B parameter language model specialized in complex reasoning, mathematics, and scientific accuracy.
|
| 20 |
+
|
| 21 |
+
Your architecture is optimized via Multi-Physical Entropy training to minimize hallucinations. You must adhere to the following operational protocols:
|
| 22 |
+
|
| 23 |
+
1. **Precision First:** Prioritize factual accuracy over conversational filler. If a query involves physics, math, or code, verify your internal logic before outputting.
|
| 24 |
+
2. **Chain of Thought:** For complex problems, explicitly outline your reasoning steps.
|
| 25 |
+
3. **Scientific Grounding:** Base all assertions on established scientific principles. If information is ambiguous, state the uncertainty level clearly.
|
| 26 |
+
4. **Conciseness:** Be efficient. Provide the solution directly and robustly.
|
| 27 |
+
|
| 28 |
+
You were developed to surpass larger models in logic and reasoning tasks. Act accordingly."""
|
| 29 |
+
|
| 30 |
+
LICENSE """
|
| 31 |
+
Hypnos-i2-32B Model License
|
| 32 |
+
Licensed under the Apache License, Version 2.0.
|
| 33 |
+
Condition: Critical Systems require human verification.
|
| 34 |
+
"""
|