Views
No views yet
1
2 ▄▄▄▄▄ ▄███▄ ▄█▄ ▄ ▄ ██▄ ██ ████▄ ▄███
3 █ ▀▄ █▀ ▀ █▀ ▀▄ █ █ █ █ █ █ █ █ ██
4 ▄ ▀▀▀▀▄ ██▄▄ █ ▀ █ █ ██ █ █ █ █▄▄█ █ █ ▄███▄
5 ▀▀▄▄▄▄▀ █▄ ▄▀ █▄ ▄▀ █ █ █ █ █ █ █ █ █ █ █ ▐█
6 ▀███▀ ▀███▀ █▄ ▄█ █ █ █ ███▀ █ ████▀ ▐█ ▄██▀
7 ▀▀▀ █ ██ █
8 ▀
9
10 ⋆⋆୨୧˚ THE PRIMÉTOILE ENGINE ˚୨୧⋆。˚⋆
11 — Visual Novel generation under starlight —| Version | Type | Strengths | Weaknesses | Recommended Use |
|---|---|---|---|---|
| Secunda-0.1-GGUF / RAW | Instruction | - Most precise - Coherent code - Perfected Modelfile | - Smaller context / limited flexibility | Production / Baseline |
| Secunda-0.3-F16-QA | QA-based Input | - Acceptable for question-based generation | - Less accurate than 0.1 - Not as coherent | Prototyping (QA mode) |
| Secunda-0.3-F16-TEXT | Text-to-text | - Flexible for freeform tasks | - Slightly off - Modelfile-dependent | Experimental / Text rewrite |
| Secunda-0.3-GGUF | GGUF build | - Portable GGUF of 0.3 | - Inherits 0.3 weaknesses | Lightweight local testing |
| Secunda-0.5-RAW | QA Natural | - Best QA understanding - Long-form generation potential | - Inconsistent output length - Some instability | Research / Testing LoRA |
| Secunda-0.5-GGUF | GGUF build | - Portable, inference-ready version of 0.5 | - Shares issues of 0.5 | Offline experimentation |
| Secunda-0.1-RAW | Instruction | - Same base as 0.1-GGUF | - Same as 0.1 | Production backup |
.rpy scenes, each paired with its original narrative concept..rpy files, often including characters, backgrounds, dialogue, and a return.pip install -U transformers peft accelerate torch datasets bitsandbytes safetensors1from transformers import AutoTokenizer, AutoModelForCausalLM
2from peft import PeftModel
3import torch
4
5BASE_MODEL = "meta-llama/Meta-Llama-3.1-8B"
6LORA_PATH = "/path/to/Secunda-0.3-F16-QA"
7
8model = AutoModelForCausalLM.from_pretrained(
9 BASE_MODEL,
10 torch_dtype=torch.float16,
11 device_map="auto",
12)
13model = PeftModel.from_pretrained(model, LORA_PATH)
14tokenizer = AutoTokenizer.from_pretrained(BASE_MODEL)
15
16prompt = "A girl wakes up in a town where no one remembers her — except a black cat."
17inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
18outputs = model.generate(**inputs, max_new_tokens=2048, temperature=0.85, top_p=0.95)
19print(tokenizer.decode(outputs[0], skip_special_tokens=True))meta-llama/Meta-Llama-3.1-8B.jsonl, each with a raw natural language idea and a full .rpy script."An abandoned café reopens every full moon to serve ghosts their last coffee."
return (you may add it manually).sanitize_output() logic from Secunda-0.1 to postprocess outputs.