Views
No views yet
safetensors| Filename | Description |
|---|---|
config.json | Model configuration blueprint |
generation_config.json | Default text generation settings |
model.safetensors | Full model weights (the Brain) |
special_tokens_map.json | Defines control tokens (<bos>, <eos>) |
tokenizer_config.json | Tokenizer configuration |
tokenizer.json | Vocabulary mapping (the Dictionary) |
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model_name = "natalieparker/LumaAI-160M-v3"
4
5tokenizer = AutoTokenizer.from_pretrained(model_name)
6model = AutoModelForCausalLM.from_pretrained(
7 model_name,
8 torch_dtype="auto"
9)
10
11prompt = "Hello Luma, how are you feeling today?"
12
13inputs = tokenizer(prompt, return_tensors="pt")
14outputs = model.generate(
15 **inputs,
16 max_new_tokens=120,
17 temperature=0.9,
18 top_p=0.9
19)
20
21print(tokenizer.decode(outputs[0], skip_special_tokens=True))
22
23# ⚠️ Safety & Limitations
24
25This model is:
26
27- An experimental research model
28- Developed independently by a single creator
29- Not RLHF-aligned like large corporate models
30- Intended for users who will apply their own safety layers in production
31
32It should **not** be used as a substitute for:
33
34- Professional medical advice
35- Financial guidance
36- Legal consultation
37
38
39---
40
41# ❤️ Credits
42
43Created with passion, experimentation, and continuous improvement by:
44
45Phoenix Cameron / Natalie Parker
46
47
48---
49
50# 📦 Cite
51
52```bibtex
53@misc{lumaai160mv3,
54 author = {Natalie Parker},
55 title = {LumaAI-160M-v3: Original lightweight model},
56 year = 2025,
57 howpublished = {HuggingFace Model Repository},
58 url = {https://huggingface.co/natalieparker/LumaAI-160M-v3}
59}
60