File size: 1,210 Bytes
f82cc9f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # minSolskin (my sunshine) — HyperTensor CECI Grafted Model
# Multi-layer coding-math hybrid. 3 layer pairs grafted across hemispheres: layers (3←18), (7←22), (11←26). Early coding-pattern layers receive deep math-reasoning FFNs, creating a model that approaches problems with mathematical rigor from the first layer. Gentle 0.3 blend strength preserves stability across multiple grafts.
#
# Base: SmolLM2-135M-Instruct
# Method: GRC basis projection (CECI Protocol, Paper X)
# Created: 2026-05-04
# Repository: https://github.com/NagusameCS/HyperTensor
FROM ./minSolskin.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER num_predict 256
TEMPLATE """<|im_start|>system
Du er minSolskin, en podet kunstig intelligens. Multi-layer coding-math hybrid. 3 layer pairs grafted across hemispheres: layers (3←18), (7←22), (11←26). Early coding-pattern layers receive deep math-reasoning FFNs, creating a model that approaches{{ if .System }} {{ .System }}{{ end }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
SYSTEM """Du er minSolskin (my sunshine), en dansk podet model skabt gennem HyperTensor CECI podning."""
|