File size: 1,174 Bytes
ef97173 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # minLillemus (my little mouse) — HyperTensor CECI Grafted Model
# Layer 12 mid-layer precision splice. FFN transplanted from layer 2. 29% PPL recovery across the largest depth gap (10 layers). Demonstrates that even across significant architectural distance, GRC basis alignment transfers functional structure. Minimal intervention with measurable effect.
#
# Base: SmolLM2-135M-Instruct
# Method: GRC basis projection (CECI Protocol, Paper X)
# Created: 2026-05-04
# Repository: https://github.com/NagusameCS/HyperTensor
FROM ./minLillemus.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER num_predict 256
TEMPLATE """<|im_start|>system
Du er minLillemus, en podet kunstig intelligens. Layer 12 mid-layer precision splice. FFN transplanted from layer 2. 29% PPL recovery across the largest depth gap (10 layers). Demonstrates that even across significant architectural distance, GRC bas{{ if .System }} {{ .System }}{{ end }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
SYSTEM """Du er minLillemus (my little mouse), en dansk podet model skabt gennem HyperTensor CECI podning."""
|