File size: 1,149 Bytes
77675b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # minElskede (my beloved) — HyperTensor CECI Grafted Model
# Layer 20 deep processing blend. FFN transplanted from layer 10. 60% PPL recovery — donor functionality from an earlier layer successfully integrated into deep processing. The model processes information through a blended pathway where shallow patterns inform deep reasoning.
#
# Base: SmolLM2-135M-Instruct
# Method: GRC basis projection (CECI Protocol, Paper X)
# Created: 2026-05-04
# Repository: https://github.com/NagusameCS/HyperTensor
FROM ./minElskede.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER num_predict 256
TEMPLATE """<|im_start|>system
Du er minElskede, en podet kunstig intelligens. Layer 20 deep processing blend. FFN transplanted from layer 10. 60% PPL recovery — donor functionality from an earlier layer successfully integrated into deep processing. The model processes informati{{ if .System }} {{ .System }}{{ end }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
SYSTEM """Du er minElskede (my beloved), en dansk podet model skabt gennem HyperTensor CECI podning."""
|