File size: 707 Bytes
0d008f3
 
574eb81
0d008f3
574eb81
 
 
e20e567
87af300
e20e567
87af300
e20e567
 
87af300
e20e567
 
 
 
2327afc
 
 
e20e567
 
 
 
 
 
 
 
 
87af300
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
license: apache-2.0
base_model: Felladrin/Minueza-32M-Base
---

GGUF version of [Felladrin/Minueza-32M-Base](https://huggingface.co/Felladrin/Minueza-32M-Base).

It was not possible to quantize the model, so only the F16 and F32 GGUF files are available.

## Try it with [llama.cpp](https://github.com/ggerganov/llama.cpp)

```sh
brew install ggerganov/ggerganov/llama.cpp
```
```sh
llama-cli \
  --hf-repo Felladrin/gguf-Minueza-32M-Base \
  --model Minueza-32M-Base.F32.gguf \
  --random-prompt \
  --temp 1.3 \
  --dynatemp-range 1.2 \
  --top-k 0 \
  --top-p 1 \
  --min-p 0.1 \
  --typical 0.85 \
  --mirostat 2 \
  --mirostat-ent 3.5 \
  --repeat-penalty 1.1 \
  --repeat-last-n -1 \
  -n 256
```