Instructions to use mradermacher/esg-qwen-1.5b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/esg-qwen-1.5b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/esg-qwen-1.5b-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/esg-qwen-1.5b-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/esg-qwen-1.5b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/esg-qwen-1.5b-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/esg-qwen-1.5b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/esg-qwen-1.5b-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/esg-qwen-1.5b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/esg-qwen-1.5b-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/esg-qwen-1.5b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/esg-qwen-1.5b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/esg-qwen-1.5b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/esg-qwen-1.5b-GGUF with Ollama:
ollama run hf.co/mradermacher/esg-qwen-1.5b-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/esg-qwen-1.5b-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 mradermacher/esg-qwen-1.5b-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 mradermacher/esg-qwen-1.5b-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/esg-qwen-1.5b-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/esg-qwen-1.5b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/esg-qwen-1.5b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/esg-qwen-1.5b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/esg-qwen-1.5b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.esg-qwen-1.5b-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rain
Browse files- .gitattributes +12 -0
- esg-qwen-1.5b.IQ4_XS.gguf +3 -0
- esg-qwen-1.5b.Q2_K.gguf +3 -0
- esg-qwen-1.5b.Q3_K_L.gguf +3 -0
- esg-qwen-1.5b.Q3_K_M.gguf +3 -0
- esg-qwen-1.5b.Q3_K_S.gguf +3 -0
- esg-qwen-1.5b.Q4_K_M.gguf +3 -0
- esg-qwen-1.5b.Q4_K_S.gguf +3 -0
- esg-qwen-1.5b.Q5_K_M.gguf +3 -0
- esg-qwen-1.5b.Q5_K_S.gguf +3 -0
- esg-qwen-1.5b.Q6_K.gguf +3 -0
- esg-qwen-1.5b.Q8_0.gguf +3 -0
- esg-qwen-1.5b.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 |
+
esg-qwen-1.5b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
esg-qwen-1.5b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
esg-qwen-1.5b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
esg-qwen-1.5b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
esg-qwen-1.5b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
esg-qwen-1.5b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
esg-qwen-1.5b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
esg-qwen-1.5b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
esg-qwen-1.5b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
esg-qwen-1.5b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
esg-qwen-1.5b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
esg-qwen-1.5b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
esg-qwen-1.5b.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa20668856f9b3ae7d5f0c3ab2666a3c51a696d68e8ac0a21146a9fdceff728f
|
| 3 |
+
size 902180704
|
esg-qwen-1.5b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c82c4d9be0728655dfc2072472b72694e0558adb39553070d044dba28f7492b
|
| 3 |
+
size 676302688
|
esg-qwen-1.5b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1dc93260c964096bd3fd32286e46c68d3464a1e7bc59964b437f4dbdef00358
|
| 3 |
+
size 880160608
|
esg-qwen-1.5b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e948c346e35a7ace53d2b90022a6e95a174115454cbf77a9071ec5e7f916c3eb
|
| 3 |
+
size 824176480
|
esg-qwen-1.5b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49f9e26bf77845b0729fea05e86aaee6ad8eb59b585912c77c91f29113ab42aa
|
| 3 |
+
size 760942432
|
esg-qwen-1.5b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab4d92c35751cf9ae3b6cf0c0532c42214bd49236ae047d1a0b615117c5d9a0e
|
| 3 |
+
size 986046304
|
esg-qwen-1.5b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:089adab839ba0761aeb2f54349198f211e2f2d367d0b5f95ea4fb1d847b69aad
|
| 3 |
+
size 940310368
|
esg-qwen-1.5b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12377d26b1dea7707f98433ed970fb1b392dfc5a0a2565a8a8793ff814e6deed
|
| 3 |
+
size 1125048160
|
esg-qwen-1.5b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:857b4a6d802e0d6f04102e531e6213c38f92e786ede1ea248dbd177b5e047b92
|
| 3 |
+
size 1098727264
|
esg-qwen-1.5b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d18567a94b309737e4fba0ba8f999596a330897a6f160ecad19d9b1c20d8acb
|
| 3 |
+
size 1272737632
|
esg-qwen-1.5b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b298200977c9be841579fbfa94bacb7736f52e28c04781918b4d4baaa1c5137f
|
| 3 |
+
size 1646570848
|
esg-qwen-1.5b.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03f448085cc912c864b298bcb452d3931bac5a55fd683550dd87d391ad996cd4
|
| 3 |
+
size 3093667168
|