Instructions to use mradermacher/Motarjem-v0.1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Motarjem-v0.1-GGUF with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="mradermacher/Motarjem-v0.1-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Motarjem-v0.1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Motarjem-v0.1-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/Motarjem-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Motarjem-v0.1-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/Motarjem-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Motarjem-v0.1-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/Motarjem-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Motarjem-v0.1-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/Motarjem-v0.1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Motarjem-v0.1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Motarjem-v0.1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Motarjem-v0.1-GGUF with Ollama:
ollama run hf.co/mradermacher/Motarjem-v0.1-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/Motarjem-v0.1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Motarjem-v0.1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Motarjem-v0.1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Motarjem-v0.1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Motarjem-v0.1-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- Motarjem-v0.1.IQ4_XS.gguf +3 -0
- Motarjem-v0.1.Q2_K.gguf +3 -0
- Motarjem-v0.1.Q3_K_L.gguf +3 -0
- Motarjem-v0.1.Q3_K_M.gguf +3 -0
- Motarjem-v0.1.Q3_K_S.gguf +3 -0
- Motarjem-v0.1.Q4_K_M.gguf +3 -0
- Motarjem-v0.1.Q4_K_S.gguf +3 -0
- Motarjem-v0.1.Q5_K_M.gguf +3 -0
- Motarjem-v0.1.Q5_K_S.gguf +3 -0
- Motarjem-v0.1.Q6_K.gguf +3 -0
- Motarjem-v0.1.Q8_0.gguf +3 -0
- Motarjem-v0.1.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 |
+
Motarjem-v0.1.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Motarjem-v0.1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Motarjem-v0.1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Motarjem-v0.1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Motarjem-v0.1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Motarjem-v0.1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Motarjem-v0.1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Motarjem-v0.1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Motarjem-v0.1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Motarjem-v0.1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Motarjem-v0.1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Motarjem-v0.1.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Motarjem-v0.1.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e6fce26628aa905aff1bfe72d751d0b5451e639eb2cd0b3386d43f823ac1e25
|
| 3 |
+
size 70586848
|
Motarjem-v0.1.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44238f2994f0ebf3c738ea7577622cc6f018e5afdf21a157780ba3544b6f4622
|
| 3 |
+
size 57047008
|
Motarjem-v0.1.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:748adb9e7ca6d3c67ad5e22f8589317c5d988a6e3f2bb9b95ab33aa3669a714d
|
| 3 |
+
size 67079392
|
Motarjem-v0.1.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae24c667f3ae6d3e36c23842e749569be880c5f8e417338d2bdc465783e9dc80
|
| 3 |
+
size 64982240
|
Motarjem-v0.1.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be74253259a87a12cc070078743966984234e9020d36e192e4206117569eccae
|
| 3 |
+
size 62618848
|
Motarjem-v0.1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a382b549708151d4b51cf59fb24912dd45d4c29288f369c9d6dda5af37ca50b
|
| 3 |
+
size 73895392
|
Motarjem-v0.1.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:18224cf778835455ec5730b6f5ac17c0c966f9f855d0322d09622ffe9fa875c1
|
| 3 |
+
size 72656352
|
Motarjem-v0.1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:598bd8d98ace5355708da193e87a405d760b9995deb4bad53acc8f75fdd36a8f
|
| 3 |
+
size 82484704
|
Motarjem-v0.1.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:122c508b9695672f484ac9d727026d0dd8f1625da23f99fe8c0f9a5c49ec78e3
|
| 3 |
+
size 81753568
|
Motarjem-v0.1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6f344bd8f14d32299c6f3b5637162bdc200e41ff28afff8b7fe4e06f357fc9a
|
| 3 |
+
size 91610848
|
Motarjem-v0.1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a42d5904e66e93f7083a21f75b93fb6c50525751a654fde3b279ea378deb077
|
| 3 |
+
size 117712704
|
Motarjem-v0.1.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55ac31f3b0ee6998870cb000c1b0cc08a53baf5a77d20bed14b6855e8b36ee0c
|
| 3 |
+
size 218752224
|