LogicBombaklot commited on
Commit
999709f
·
verified ·
1 Parent(s): ad2d193

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ language:
4
+ - en
5
+ license: cc-by-nc-4.0
6
+ tags:
7
+ - mlx
8
+ base_model: nvidia/Llama-3.1-Nemotron-8B-UltraLong-4M-Instruct
9
+ ---
10
+
11
+ # LogicBombaklot/Llama-3.1-Nemotron-8B-UltraLong-4M-Instruct-mlx-8Bit
12
+
13
+ The Model [LogicBombaklot/Llama-3.1-Nemotron-8B-UltraLong-4M-Instruct-mlx-8Bit](https://huggingface.co/LogicBombaklot/Llama-3.1-Nemotron-8B-UltraLong-4M-Instruct-mlx-8Bit) was converted to MLX format from [nvidia/Llama-3.1-Nemotron-8B-UltraLong-4M-Instruct](https://huggingface.co/nvidia/Llama-3.1-Nemotron-8B-UltraLong-4M-Instruct) using mlx-lm version **0.22.1**.
14
+
15
+ ## Use with mlx
16
+
17
+ ```bash
18
+ pip install mlx-lm
19
+ ```
20
+
21
+ ```python
22
+ from mlx_lm import load, generate
23
+
24
+ model, tokenizer = load("LogicBombaklot/Llama-3.1-Nemotron-8B-UltraLong-4M-Instruct-mlx-8Bit")
25
+
26
+ prompt="hello"
27
+
28
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
29
+ messages = [{"role": "user", "content": prompt}]
30
+ prompt = tokenizer.apply_chat_template(
31
+ messages, tokenize=False, add_generation_prompt=True
32
+ )
33
+
34
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
35
+ ```