Update README.md
Browse files
README.md
CHANGED
@@ -8,8 +8,38 @@ tags:
|
|
8 |
- merge
|
9 |
license: llama3
|
10 |
---
|
11 |
-
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
![image/png](https://cdn-uploads.huggingface.co/production/uploads/6379683a81c1783a4a2ddba8/K-ZX8HE_ph5eRlieFbEQj.png)
|
15 |
|
|
|
8 |
- merge
|
9 |
license: llama3
|
10 |
---
|
11 |
+
### Yoloing this 99-layer llamastein straight to the leaderboard wish me luck
|
12 |
|
13 |
+
> [!TIP]
|
14 |
+
>for 1bit quant download:
|
15 |
+
>
|
16 |
+
```bash
|
17 |
+
wget https://huggingface.co/nisten/llamagnific-3-87b-gguf/resolve/main/llamagnific_1bit_optimized_IQ1_L.gguf
|
18 |
+
```
|
19 |
+
|
20 |
+
for fun use i recommend this file:
|
21 |
+
```verilog
|
22 |
+
wget https://huggingface.co/nisten/llamagnific-3-87b-gguf/resolve/main/llamagnific_OPTIMAL_IQ_4_XS.gguf
|
23 |
+
```
|
24 |
+
if you're on linux you can download much faster with aria2
|
25 |
+
|
26 |
+
```verilog
|
27 |
+
sudo apt install aria2
|
28 |
+
aria2c -x 8 -o llamagnific_OPTIMAL_IQ_4_XS.gguf https://huggingface.co/nisten/llamagnific-3-87b-gguf/resolve/main/llamagnific_OPTIMAL_IQ_4_XS.gguf
|
29 |
+
```
|
30 |
+
make a prompt file named prompt.txt and put this in it
|
31 |
+
|
32 |
+
```verilog
|
33 |
+
<|im_start|>system{You are a hyperintelligent hilarious raccoon that solves everything via first-principles based resoning.}<|im_end|>
|
34 |
+
<|im_start|>user{Careful this is a trick question. Think first then when done thinking say ...done_thinking... and answer correctly: 9.11 or 9.9, which is greater?}
|
35 |
+
<|im_end|>assistant
|
36 |
+
```
|
37 |
+
|
38 |
+
That's it that's your prompt template, to run it in conversaion do this (add -ngl 99 or less if you have a 24gb gpu, i.e. add -ngl 50 for a 16gb etc, the model itself is 98 layers so this determines how many layers you offload to gpu, by default its 0 ):
|
39 |
+
|
40 |
+
```c
|
41 |
+
./llama-cli --temp 0.4 -m llamagnific_OPTIMAL_IQ_4_XS.gguf -fa -co -cnv -i -f prompt.txt
|
42 |
+
```
|
43 |
|
44 |
![image/png](https://cdn-uploads.huggingface.co/production/uploads/6379683a81c1783a4a2ddba8/K-ZX8HE_ph5eRlieFbEQj.png)
|
45 |
|