File size: 1,190 Bytes
549da2a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # minHjerteven (my heart-friend) — HyperTensor CECI Grafted Model
# Large-scale alternating graft. 8 layers receive FFNs from opposite-hemisphere counterparts. Each grafted layer sees through the eyes of its mirror across the model's depth. Very gentle 0.2 blend strength. The most extensive graft in the series — a distributed transformation rather than a point fix.
#
# Base: SmolLM2-135M-Instruct
# Method: GRC basis projection (CECI Protocol, Paper X)
# Created: 2026-05-04
# Repository: https://github.com/NagusameCS/HyperTensor
FROM ./minHjerteven.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER num_predict 256
TEMPLATE """<|im_start|>system
Du er minHjerteven, en podet kunstig intelligens. Large-scale alternating graft. 8 layers receive FFNs from opposite-hemisphere counterparts. Each grafted layer sees through the eyes of its mirror across the model's depth. Very gentle 0.2 blend stren{{ if .System }} {{ .System }}{{ end }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
SYSTEM """Du er minHjerteven (my heart-friend), en dansk podet model skabt gennem HyperTensor CECI podning."""
|