Instructions to use quantized4all/Fathom-R1-14B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use quantized4all/Fathom-R1-14B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("quantized4all/Fathom-R1-14B-GGUF", dtype="auto") - llama-cpp-python
How to use quantized4all/Fathom-R1-14B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="quantized4all/Fathom-R1-14B-GGUF", filename="Fathom-R1-14B-F16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use quantized4all/Fathom-R1-14B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use quantized4all/Fathom-R1-14B-GGUF with Ollama:
ollama run hf.co/quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
- Unsloth Studio new
How to use quantized4all/Fathom-R1-14B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for quantized4all/Fathom-R1-14B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for quantized4all/Fathom-R1-14B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for quantized4all/Fathom-R1-14B-GGUF to start chatting
- Docker Model Runner
How to use quantized4all/Fathom-R1-14B-GGUF with Docker Model Runner:
docker model run hf.co/quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
- Lemonade
How to use quantized4all/Fathom-R1-14B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull quantized4all/Fathom-R1-14B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Fathom-R1-14B-GGUF-Q4_K_M
List all available models
lemonade list
Upload 27 files
Browse files- .gitattributes +27 -0
- Fathom-R1-14B-F16.gguf +3 -0
- Fathom-R1-14B-IQ2_M.gguf +3 -0
- Fathom-R1-14B-IQ3_M.gguf +3 -0
- Fathom-R1-14B-IQ3_S.gguf +3 -0
- Fathom-R1-14B-IQ3_XS.gguf +3 -0
- Fathom-R1-14B-IQ3_XXS.gguf +3 -0
- Fathom-R1-14B-IQ4_NL.gguf +3 -0
- Fathom-R1-14B-IQ4_XS.gguf +3 -0
- Fathom-R1-14B-Q2_K.gguf +3 -0
- Fathom-R1-14B-Q3_K.gguf +3 -0
- Fathom-R1-14B-Q3_K_L.gguf +3 -0
- Fathom-R1-14B-Q3_K_M.gguf +3 -0
- Fathom-R1-14B-Q3_K_S.gguf +3 -0
- Fathom-R1-14B-Q4_0.gguf +3 -0
- Fathom-R1-14B-Q4_1.gguf +3 -0
- Fathom-R1-14B-Q4_K.gguf +3 -0
- Fathom-R1-14B-Q4_K_M.gguf +3 -0
- Fathom-R1-14B-Q4_K_S.gguf +3 -0
- Fathom-R1-14B-Q5_0.gguf +3 -0
- Fathom-R1-14B-Q5_1.gguf +3 -0
- Fathom-R1-14B-Q5_K.gguf +3 -0
- Fathom-R1-14B-Q5_K_M.gguf +3 -0
- Fathom-R1-14B-Q5_K_S.gguf +3 -0
- Fathom-R1-14B-Q6_K.gguf +3 -0
- Fathom-R1-14B-Q8_0.gguf +3 -0
- Fathom-R1-14B-TQ1_0.gguf +3 -0
- Fathom-R1-14B-TQ2_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,30 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Fathom-R1-14B-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Fathom-R1-14B-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Fathom-R1-14B-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Fathom-R1-14B-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Fathom-R1-14B-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Fathom-R1-14B-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Fathom-R1-14B-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Fathom-R1-14B-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Fathom-R1-14B-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Fathom-R1-14B-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Fathom-R1-14B-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Fathom-R1-14B-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Fathom-R1-14B-Q3_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Fathom-R1-14B-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Fathom-R1-14B-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Fathom-R1-14B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Fathom-R1-14B-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Fathom-R1-14B-Q4_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Fathom-R1-14B-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Fathom-R1-14B-Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Fathom-R1-14B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Fathom-R1-14B-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Fathom-R1-14B-Q5_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Fathom-R1-14B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Fathom-R1-14B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
Fathom-R1-14B-TQ1_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
Fathom-R1-14B-TQ2_0.gguf filter=lfs diff=lfs merge=lfs -text
|
Fathom-R1-14B-F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4fa2c56433d516d9b4c07c91e5f0011efa322d02d6ea10397e6909244ca6b00c
|
| 3 |
+
size 29547716512
|
Fathom-R1-14B-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2834259dd46655ef0660bad4ee81f708f0c866affd8258515ed284d6c06480ec
|
| 3 |
+
size 875798432
|
Fathom-R1-14B-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a37a9dad6bffa3cdfe75a9fc6f68bae0e0096e875bf6a3d816adf795d84bdc0
|
| 3 |
+
size 6916538272
|
Fathom-R1-14B-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b61a1d0a4d613a89f85b57d61ede43eb8a0264dddccb7e12849da8865472e45
|
| 3 |
+
size 6693019552
|
Fathom-R1-14B-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f807b74c61c559d044a4c88d29e06330a8fe9579019667466c0baddebb418e11
|
| 3 |
+
size 6383361952
|
Fathom-R1-14B-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2834259dd46655ef0660bad4ee81f708f0c866affd8258515ed284d6c06480ec
|
| 3 |
+
size 875798432
|
Fathom-R1-14B-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52a5f443d5f7fa6e67fc2a074ef433fb11a6e74d768afb6c7ef093689544a8af
|
| 3 |
+
size 8602267552
|
Fathom-R1-14B-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68c80045d1cf60434dddf111ad0f133b82cbef02f372dcacae8cfb1b45a1d766
|
| 3 |
+
size 8186195872
|
Fathom-R1-14B-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81f17a94e19678e55854a3b4077ce716efcfac54337150bdbab5f4bf8327373a
|
| 3 |
+
size 5770497952
|
Fathom-R1-14B-Q3_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:481ad50638520a630fc115fa4c733ea1300a9ad4a8019406aa4cef4d0f1cb9d2
|
| 3 |
+
size 7339204512
|
Fathom-R1-14B-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a3a4ffe6d4d650c9d9ae06db5844e42569bbc4664374642e610889aab116426
|
| 3 |
+
size 7924768672
|
Fathom-R1-14B-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:481ad50638520a630fc115fa4c733ea1300a9ad4a8019406aa4cef4d0f1cb9d2
|
| 3 |
+
size 7339204512
|
Fathom-R1-14B-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca6245f3a5cd9b26a2e98248cd340f41e30787414c1d7761724a90ac94660890
|
| 3 |
+
size 6659596192
|
Fathom-R1-14B-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cd285c8640b5faea13f8a8d98169412dfcea48269c4e3757faf9f6e5a0e7631
|
| 3 |
+
size 8517726112
|
Fathom-R1-14B-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a249d246d55b26e6b571f6ef5184084d2727c76802305a0d34e766b00f38f68
|
| 3 |
+
size 9392140192
|
Fathom-R1-14B-Q4_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01b7e680eae7e32092dbd09589b0b2597165dc6e6af1b9b265ac9fbacd2f3034
|
| 3 |
+
size 8988110752
|
Fathom-R1-14B-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01b7e680eae7e32092dbd09589b0b2597165dc6e6af1b9b265ac9fbacd2f3034
|
| 3 |
+
size 8988110752
|
Fathom-R1-14B-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac76ad4c6f839362689deff210441807df842b4729ccf9d4146da1e3833b154f
|
| 3 |
+
size 8573431712
|
Fathom-R1-14B-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c93345714cd155fe43884d3db281ed04a1e6637d2ccae57caed3f0b15409ae1
|
| 3 |
+
size 10266554272
|
Fathom-R1-14B-Q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6dcef9c92959d99de38936754b149a25d0b09a570f480e208e09ca750fca068c
|
| 3 |
+
size 11140968352
|
Fathom-R1-14B-Q5_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5fb36f6bdc5cd90b66d7602da3b88c7f940e53bc433cae7e444efabdda8b754
|
| 3 |
+
size 10508873632
|
Fathom-R1-14B-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5fb36f6bdc5cd90b66d7602da3b88c7f940e53bc433cae7e444efabdda8b754
|
| 3 |
+
size 10508873632
|
Fathom-R1-14B-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea4a9bdc0762fd8db13920bd285f17d532a13fe5ecd7775c251a3a85b687b0e5
|
| 3 |
+
size 10266554272
|
Fathom-R1-14B-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:664111117d5c66ba29d36285c4121ae54d028c6ed8e5c31ccd886c0bd472bc9a
|
| 3 |
+
size 12124684192
|
Fathom-R1-14B-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d785644d76f5c9d4143392334e76298ba6d40471970720111106994889c89bf1
|
| 3 |
+
size 15701598112
|
Fathom-R1-14B-TQ1_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38bb7d386d57289e6f16ec9e88356b384c65401d7f15321c5bce939b83245d36
|
| 3 |
+
size 3872862112
|
Fathom-R1-14B-TQ2_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0486393adc763637707b73a1fe7629d6997d2defce3d8ea3a022bdde5ea2e7dd
|
| 3 |
+
size 4492177312
|