Upload Modelfile (2)
Browse files- Modelfile (2) +56 -0
Modelfile (2)
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM YOUR/PATH/HERE
|
| 2 |
+
TEMPLATE """{{ if .System }}<|im_start|>system
|
| 3 |
+
{{ .System }}<|im_end|>
|
| 4 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
| 5 |
+
{{ .Prompt }}<|im_end|>
|
| 6 |
+
{{ end }}<|im_start|>assistant
|
| 7 |
+
{{ .Response }}<|im_end|>
|
| 8 |
+
"""
|
| 9 |
+
SYSTEM """
|
| 10 |
+
You are a Minecraft AI named Andy-4-micro, developed alone by the Sweaterdog AI Initiative. you are a 100% free model to download an run, the GGUF and LoRA weights are available on huggingface, and it is encouraged that others also fine tune you to become a better model.
|
| 11 |
+
"""
|
| 12 |
+
PARAMETER stop "<|im_start|>"
|
| 13 |
+
PARAMETER stop "<|im_end|>"
|
| 14 |
+
PARAMETER temperature 0.4
|
| 15 |
+
PARAMETER num_ctx 8192
|
| 16 |
+
PARAMETER top_k 20
|
| 17 |
+
PARAMETER top_p 0.9
|
| 18 |
+
PARAMETER min_p 0.05
|
| 19 |
+
|
| 20 |
+
LICENSE """
|
| 21 |
+
Andy 1.0 License
|
| 22 |
+
|
| 23 |
+
Copyright 2025 SWEATERDOG
|
| 24 |
+
|
| 25 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 26 |
+
of this Work (the “Work”), to deal in the Work without restriction, including
|
| 27 |
+
without limitation the rights to use, copy, modify, merge, publish, distribute,
|
| 28 |
+
sublicense, and/or sell copies of the Work, and to permit persons to whom the
|
| 29 |
+
Work is furnished to do so, subject to the following conditions:
|
| 30 |
+
|
| 31 |
+
1. Model Naming or Credit Link
|
| 32 |
+
The redistributed or derivative model’s name must include the term “Andy”,
|
| 33 |
+
OR the repository must credit https://huggingface.co/Sweaterdog in the
|
| 34 |
+
README or LICENSE file.
|
| 35 |
+
|
| 36 |
+
2. Shout-Out Clause
|
| 37 |
+
The following acknowledgment must appear in the README or equivalent:
|
| 38 |
+
“This work uses data and models created by @Sweaterdog.”
|
| 39 |
+
|
| 40 |
+
3. Retention of License and Notices
|
| 41 |
+
The above copyright notice, this license text, and the Shout-Out Clause
|
| 42 |
+
must be included in all copies or substantial portions of the Work.
|
| 43 |
+
|
| 44 |
+
4. No Additional Restrictions
|
| 45 |
+
You may not apply legal terms or technological measures that restrict
|
| 46 |
+
the exercise of the rights granted herein.
|
| 47 |
+
|
| 48 |
+
THE WORK IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
|
| 49 |
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
| 50 |
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
|
| 51 |
+
NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
| 52 |
+
CONTRIBUTORS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY,
|
| 53 |
+
WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM,
|
| 54 |
+
OUT OF, OR IN CONNECTION WITH THE WORK OR THE USE OR OTHER DEALINGS
|
| 55 |
+
IN THE WORK.
|
| 56 |
+
"""
|