Instructions to use mradermacher/TinyMistral-248M-v3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/TinyMistral-248M-v3-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/TinyMistral-248M-v3-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/TinyMistral-248M-v3-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/TinyMistral-248M-v3-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 mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/TinyMistral-248M-v3-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 mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/TinyMistral-248M-v3-GGUF with Ollama:
ollama run hf.co/mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/TinyMistral-248M-v3-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/TinyMistral-248M-v3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/TinyMistral-248M-v3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.TinyMistral-248M-v3-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from nico2
Browse files- .gitattributes +12 -0
- TinyMistral-248M-v3.IQ4_XS.gguf +3 -0
- TinyMistral-248M-v3.Q2_K.gguf +3 -0
- TinyMistral-248M-v3.Q3_K_L.gguf +3 -0
- TinyMistral-248M-v3.Q3_K_M.gguf +3 -0
- TinyMistral-248M-v3.Q3_K_S.gguf +3 -0
- TinyMistral-248M-v3.Q4_K_M.gguf +3 -0
- TinyMistral-248M-v3.Q4_K_S.gguf +3 -0
- TinyMistral-248M-v3.Q5_K_M.gguf +3 -0
- TinyMistral-248M-v3.Q5_K_S.gguf +3 -0
- TinyMistral-248M-v3.Q6_K.gguf +3 -0
- TinyMistral-248M-v3.Q8_0.gguf +3 -0
- TinyMistral-248M-v3.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ 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 |
+
TinyMistral-248M-v3.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
TinyMistral-248M-v3.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
TinyMistral-248M-v3.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
TinyMistral-248M-v3.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
TinyMistral-248M-v3.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
TinyMistral-248M-v3.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
TinyMistral-248M-v3.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
TinyMistral-248M-v3.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
TinyMistral-248M-v3.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
TinyMistral-248M-v3.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
TinyMistral-248M-v3.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
TinyMistral-248M-v3.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
TinyMistral-248M-v3.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d5f90968902c8446832736dbddab2c44330f551d4210f0980585402560c9012
|
| 3 |
+
size 143199296
|
TinyMistral-248M-v3.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43113604ca70eb3a27782fc0ca5fda6cc93fcc2261645a4c4a540b5d4a2cf804
|
| 3 |
+
size 105461824
|
TinyMistral-248M-v3.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f574f57788daaac6c230379e06ce70cc809ed60fdad2636eb8226fa59380f7c
|
| 3 |
+
size 137224768
|
TinyMistral-248M-v3.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68f402be87d93422f4978402d3c27cd5e3c752709031ed083fa9c770ed2e0cbf
|
| 3 |
+
size 129032768
|
TinyMistral-248M-v3.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:070fc71e08232f4cdc2894da1c1d664bd9bf12136443a1c9b5b3b7bdb522ba23
|
| 3 |
+
size 120193600
|
TinyMistral-248M-v3.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1405dea3b5c9391226f459ae7dcc2d0ccffe59cc4f4a539ca4b488b25f5031c
|
| 3 |
+
size 155671776
|
TinyMistral-248M-v3.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a8012d1ae114f652ab523a3340992c94965ceb56fa917ad7b4c3c69aeb1ba36
|
| 3 |
+
size 149433568
|
TinyMistral-248M-v3.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46165b60c1418748e47829315d29c3a4583d339a199f20a5e756f41e3f84dc23
|
| 3 |
+
size 179232608
|
TinyMistral-248M-v3.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d94580a2206bf799fe0c4104a330cb9a7e0c70c63b4307a023df7ca2691c4828
|
| 3 |
+
size 175681376
|
TinyMistral-248M-v3.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b817d3da29e1ee775472ecf7504850c085bbba4ebe0d5d5052351f777c3f44e
|
| 3 |
+
size 204266016
|
TinyMistral-248M-v3.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50403b42c2024a93d189020888ee66ebe4a4cad070327f14da312d4ad1c034a5
|
| 3 |
+
size 264328096
|
TinyMistral-248M-v3.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b853cc0d92dce28d743cdd0ced88de51d81ed4972f39df3f1320357e3929cc19
|
| 3 |
+
size 496826656
|