Roderick3rd commited on
Commit
a45377d
Β·
verified Β·
1 Parent(s): c1d3db5

Add GGUF instructions for LM Studio and Ollama

Browse files
Files changed (1) hide show
  1. README.md +20 -2
README.md CHANGED
@@ -130,11 +130,29 @@ Pass 1: 2.996 β†’ 1.997 β†’ 1.742 β†’ 1.278 β†’ 1.164 β†’ 1.879 (500 iters)
130
  Pass 2: 0.492 β†’ 0.434 β†’ 0.342 β†’ 0.213 β†’ 0.208 β†’ 0.046 (500 iters)
131
  ```
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  ---
134
 
135
- ## Usage
136
 
137
- ### Prerequisites
138
 
139
  - macOS with Apple Silicon (M1/M2/M3/M4)
140
  - Python 3.10+
 
130
  Pass 2: 0.492 β†’ 0.434 β†’ 0.342 β†’ 0.213 β†’ 0.208 β†’ 0.046 (500 iters)
131
  ```
132
 
133
+ ## Usage
134
+
135
+ ### πŸš€ Easiest Method: LM Studio / Ollama (GGUF)
136
+
137
+ We have provided a single-file GGUF version (`AR15_Expert_Larry_3B_Q4_K_M.gguf`) which is the easiest way to run this model on any Mac or PC.
138
+
139
+ **Using LM Studio:**
140
+ 1. Download [LM Studio](https://lmstudio.ai/)
141
+ 2. Download the `AR15_Expert_Larry_3B_Q4_K_M.gguf` file from this repository.
142
+ 3. Open LM Studio, go to the folder icon (Local Models), click "Show in Finder", and drop the `.gguf` file in there.
143
+ 4. Select it from the chat dropdown and start chatting!
144
+
145
+ **Using Ollama:**
146
+ 1. Download [Ollama](https://ollama.com/)
147
+ 2. Create a file named `Modelfile` containing: `FROM ./AR15_Expert_Larry_3B_Q4_K_M.gguf`
148
+ 3. Run `ollama create ar15-expert -f Modelfile`
149
+ 4. Run `ollama run ar15-expert`
150
+
151
  ---
152
 
153
+ ### Advanced Method: Apple MLX (Safetensors)
154
 
155
+ #### Prerequisites
156
 
157
  - macOS with Apple Silicon (M1/M2/M3/M4)
158
  - Python 3.10+