hauser458original commited on
Commit
5bc9922
·
verified ·
1 Parent(s): 8aa4a43

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -14
README.md CHANGED
@@ -18,39 +18,43 @@ pipeline_tag: text-generation
18
 
19
  # LFM2.5-350M-Python-Math-GGUF
20
 
21
- GGUF quantized versions of hauser458original/lfm2.5-350m-python-math, a Python/math-focused fine-tune of LiquidAI/LFM2.5-350M (instruct) with balanced general chat retention. See the base fine-tune's model card for full training details, evaluation notes, and known limitations.
22
 
23
- For use with llama.cpp, Ollama, LM Studio, or any other GGUF-compatible runtime.
24
 
25
  ## Files
26
 
27
  | File | Quantization | Approx. size | Notes |
28
- | --- | --- | --- | --- |
29
- | lfm2.5-350m-python-math-F16.gguf | F16 | ~700 MB | Full precision, largest, highest fidelity |
30
- | lfm2.5-350m-python-math-Q8_0.gguf | Q8_0 | ~375 MB | Near-lossless, good default if size isn't a concern |
31
- | lfm2.5-350m-python-math-Q5_K_M.gguf | Q5_K_M | ~250 MB | Good balance of size/quality |
32
- | lfm2.5-350m-python-math-Q5_K_S.gguf | Q5_K_S | ~235 MB | Slightly smaller than Q5_K_M, marginal quality trade-off |
33
- | lfm2.5-350m-python-math-Q4_K_M.gguf | Q4_K_M | ~205 MB | Smallest here, most aggressive quantization, best for constrained devices |
34
 
35
- (Sizes are approximate — check actual file sizes in the repo. 350M params ≈ 1. the size of the 230M variants.)
36
 
37
  ## Usage
38
 
39
  ### llama.cpp
 
40
  ./llama-cli -m lfm2.5-350m-python-math-Q5_K_S.gguf -t 8 --temperature 0.5 --top-p 0.9 --top-k 50 --min-p 0.05 --repeat-penalty 1.1
 
41
 
42
  ### Ollama
 
43
  ollama run hf.co/hauser458original/lfm2.5-350m-python-math-GGUF:Q5_K_S
 
44
 
45
  ### LM Studio
46
- Search for hauser458original/lfm2.5-350m-python-math-GGUF in the LM Studio model browser, or download a .gguf file directly and load it manually.
47
 
48
  ## Which quant should I use?
49
 
50
- - **Q4_K_M:** Smallest footprint, best for very constrained devices. Some quality loss vs. higher quants.
51
- - **Q5_K_S / Q5_K_M:** Recommended default for most laptop/desktop CPU inference. Best speed/quality tradeoff.
52
- - **Q8_0:** Near-lossless, use if you have the RAM/storage headroom.
53
- - **F16:** Full precision GGUF, only needed if you plan to re-quantize yourself.
54
 
55
  ## License
56
 
 
18
 
19
  # LFM2.5-350M-Python-Math-GGUF
20
 
21
+ GGUF quantized versions of [hauser458original/lfm2.5-350m-python-math](https://huggingface.co/hauser458original/lfm2.5-350m-python-math), a Python/math-focused fine-tune of [LiquidAI/LFM2.5-350M](https://huggingface.co/LiquidAI/LFM2.5-350M) (instruct) with balanced general chat retention. See the base fine-tune's model card for full training details, evaluation notes, and known limitations.
22
 
23
+ For use with [llama.cpp](https://github.com/ggml-org/llama.cpp), [Ollama](https://ollama.com/), [LM Studio](https://lmstudio.ai/), or any other GGUF-compatible runtime.
24
 
25
  ## Files
26
 
27
  | File | Quantization | Approx. size | Notes |
28
+ |---|---|---|---|
29
+ | `lfm2.5-350m-python-math-F16.gguf` | F16 | ~700 MB | Full precision, largest, highest fidelity |
30
+ | `lfm2.5-350m-python-math-Q8_0.gguf` | Q8_0 | ~375 MB | Near-lossless, good default if size isn't a concern |
31
+ | `lfm2.5-350m-python-math-Q5_K_M.gguf` | Q5_K_M | ~250 MB | Good balance of size/quality |
32
+ | `lfm2.5-350m-python-math-Q5_K_S.gguf` | Q5_K_S | ~235 MB | Slightly smaller than Q5_K_M, marginal quality trade-off |
33
+ | `lfm2.5-350m-python-math-Q4_K_M.gguf` | Q4_K_M | ~205 MB | Smallest here, most aggressive quantization, best for constrained devices |
34
 
35
+ (Sizes are approximate — check actual file sizes in the repo. 350M params ≈ 1.5x the size of the 230M variants.)
36
 
37
  ## Usage
38
 
39
  ### llama.cpp
40
+ ```bash
41
  ./llama-cli -m lfm2.5-350m-python-math-Q5_K_S.gguf -t 8 --temperature 0.5 --top-p 0.9 --top-k 50 --min-p 0.05 --repeat-penalty 1.1
42
+ ```
43
 
44
  ### Ollama
45
+ ```bash
46
  ollama run hf.co/hauser458original/lfm2.5-350m-python-math-GGUF:Q5_K_S
47
+ ```
48
 
49
  ### LM Studio
50
+ Search for `hauser458original/lfm2.5-350m-python-math-GGUF` in the LM Studio model browser, or download a `.gguf` file directly and load it manually.
51
 
52
  ## Which quant should I use?
53
 
54
+ - **Q4_K_M**: smallest footprint, best for very constrained devices. Some quality loss vs. higher quants.
55
+ - **Q5_K_S / Q5_K_M**: recommended default for most laptop/desktop CPU inference. Best speed/quality tradeoff.
56
+ - **Q8_0**: near-lossless, use if you have the RAM/storage headroom.
57
+ - **F16**: full precision GGUF, only needed if you plan to re-quantize yourself.
58
 
59
  ## License
60