Views
No views yet
| Property | Value |
|---|---|
| Base model | meta-llama/Llama-3.1-8B-Instruct |
| Architecture | LlamaForCausalLM |
| Parameters | 8.03B |
| Quantization | 8-bit affine (group size 64) via MLX |
| Format | MLX safetensors |
| Context length | 131,072 tokens |
| Model size on disk | ~8.5 GB |
| License | Llama 3.1 Community License |
meta-llama/Llama-3.1-8B-Instruct using LoRA on a 2× NVIDIA RTX 3090 cluster. The fine-tuning focused on improving creative and narrative writing quality. After training, the LoRA adapter was merged back into the base model and the result was converted to MLX 8-bit quantized format.mlx_lm.convert1from mlx_lm import load, generate
2
3model, tokenizer = load("warrenm/llama3.1-8B-writer-Q8")
4response = generate(model, tokenizer, prompt="Write the opening paragraph of a noir detective story.", max_tokens=512)
5print(response)~/.cogitae/models/warrenm/llama3.1-8B-writer-Q8/ and load from the MLX provider.| File | Size | Description |
|---|---|---|
config.json | 1 KB | Model configuration |
tokenizer.json | 16.4 MB | Tokenizer vocabulary |
tokenizer_config.json | 345 B | Tokenizer settings |
chat_template.jinja | 4.5 KB | Llama 3.1 Instruct chat template |
model.safetensors.index.json | 62 KB | Weight shard index |
model-00001-of-00002.safetensors | 5.0 GB | Weight shard 1/2 |
model-00002-of-00002.safetensors | 3.0 GB | Weight shard 2/2 |