unmodeled-tyler commited on
Commit
40d65c2
·
verified ·
1 Parent(s): 4ec4fa7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -217,7 +217,7 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
217
  import torch
218
 
219
  # Load model and tokenizer
220
- model_name = "NeuroForge/Wraith-8B"
221
  tokenizer = AutoTokenizer.from_pretrained(model_name)
222
  model = AutoModelForCausalLM.from_pretrained(
223
  model_name,
@@ -302,7 +302,7 @@ ollama run wraith "What is 15 * 37?"
302
 
303
  ```bash
304
  # Download GGUF model
305
- wget https://huggingface.co/NeuroForge/Wraith-8B/resolve/main/wraith-8b-Q4_K_M.gguf
306
 
307
  # Run inference
308
  ./llama-cli -m wraith-8b-Q4_K_M.gguf \
@@ -478,7 +478,7 @@ If you use Wraith-8B in your research or applications, please cite:
478
  title={Wraith-8B: VANTA Research Entity-001},
479
  author={VANTA Research},
480
  year={2025},
481
- url={https://huggingface.co/NeuroForge/Wraith-8B},
482
  note={The Analytical Intelligence - First in the VANTA Entity Series}
483
  }
484
  ```
 
217
  import torch
218
 
219
  # Load model and tokenizer
220
+ model_name = "vanta-research/wraith-8B"
221
  tokenizer = AutoTokenizer.from_pretrained(model_name)
222
  model = AutoModelForCausalLM.from_pretrained(
223
  model_name,
 
302
 
303
  ```bash
304
  # Download GGUF model
305
+ wget https://huggingface.co/vanta-research/wraith-8B/resolve/main/wraith-8b-Q4_K_M.gguf
306
 
307
  # Run inference
308
  ./llama-cli -m wraith-8b-Q4_K_M.gguf \
 
478
  title={Wraith-8B: VANTA Research Entity-001},
479
  author={VANTA Research},
480
  year={2025},
481
+ url={https://huggingface.co/vanta-research/wraith-8B},
482
  note={The Analytical Intelligence - First in the VANTA Entity Series}
483
  }
484
  ```