Views
No views yet
| Property | Value |
|---|---|
| Architecture | Custom Causal GPT (Transformer) |
| Parameters | ~159K |
| Precision | F32 (Full precision, no quantization) |
| Format | GGUF |
| Tokenizer | Character-level |
| Training Corpus | English Stories (Instructions) |
| Training Steps | ~1,200 steps |
| Training Device | Intel HD Graphics (DirectML / CPU) |
Instruction: ... \n Response: ... pairs.Instruction: your question or prompt here
Response: ./main -m model_text_instruction_char-F32.gguf -p "Instruction: tell me a story\nResponse: " -n 200ollama run hf.co/DemonKing1234/casual-text-instruction-f321from llama_cpp import Llama
2
3llm = Llama(model_path="model_text_instruction_char-F32.gguf")
4output = llm("Instruction: hi\nResponse: ", max_tokens=100)
5print(output["choices"][0]["text"])