Instructions to use Fu01978/DialoGPT-medium-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Fu01978/DialoGPT-medium-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 Fu01978/DialoGPT-medium-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Fu01978/DialoGPT-medium-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 Fu01978/DialoGPT-medium-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Fu01978/DialoGPT-medium-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 Fu01978/DialoGPT-medium-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Fu01978/DialoGPT-medium-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 Fu01978/DialoGPT-medium-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Fu01978/DialoGPT-medium-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Fu01978/DialoGPT-medium-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Fu01978/DialoGPT-medium-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Fu01978/DialoGPT-medium-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Fu01978/DialoGPT-medium-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Fu01978/DialoGPT-medium-GGUF:Q4_K_M
- Ollama
How to use Fu01978/DialoGPT-medium-GGUF with Ollama:
ollama run hf.co/Fu01978/DialoGPT-medium-GGUF:Q4_K_M
- Unsloth Studio
How to use Fu01978/DialoGPT-medium-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 Fu01978/DialoGPT-medium-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 Fu01978/DialoGPT-medium-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Fu01978/DialoGPT-medium-GGUF to start chatting
- Docker Model Runner
How to use Fu01978/DialoGPT-medium-GGUF with Docker Model Runner:
docker model run hf.co/Fu01978/DialoGPT-medium-GGUF:Q4_K_M
- Lemonade
How to use Fu01978/DialoGPT-medium-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Fu01978/DialoGPT-medium-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.DialoGPT-medium-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload GGUF model files
Browse files- .gitattributes +14 -0
- dialogpt-medium.Q2_K.gguf +3 -0
- dialogpt-medium.Q3_K_L.gguf +3 -0
- dialogpt-medium.Q3_K_M.gguf +3 -0
- dialogpt-medium.Q4_0.gguf +3 -0
- dialogpt-medium.Q4_1.gguf +3 -0
- dialogpt-medium.Q4_K_M.gguf +3 -0
- dialogpt-medium.Q4_K_S.gguf +3 -0
- dialogpt-medium.Q5_0.gguf +3 -0
- dialogpt-medium.Q5_1.gguf +3 -0
- dialogpt-medium.Q5_K_M.gguf +3 -0
- dialogpt-medium.Q5_K_S.gguf +3 -0
- dialogpt-medium.Q6_K.gguf +3 -0
- dialogpt-medium.Q8_0.gguf +3 -0
- dialogpt-medium.fp16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,17 @@ 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 |
+
dialogpt-medium.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
dialogpt-medium.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
dialogpt-medium.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
dialogpt-medium.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
dialogpt-medium.Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
dialogpt-medium.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
dialogpt-medium.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
dialogpt-medium.Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
dialogpt-medium.Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
dialogpt-medium.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
dialogpt-medium.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
dialogpt-medium.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
dialogpt-medium.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
dialogpt-medium.fp16.gguf filter=lfs diff=lfs merge=lfs -text
|
dialogpt-medium.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc23d9fbd11257342b5559f733d67447ff445a40c7cf420b4dc0459478245340
|
| 3 |
+
size 177940064
|
dialogpt-medium.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:107086ee6f105c73eafb8c902e20c8722d00ae8d5610fb64ddb341427afa6ba6
|
| 3 |
+
size 243525440
|
dialogpt-medium.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10fb08567b37d5f2b4e564cefa476871ce89b4b6fd939c8cf7f75b20f72a0871
|
| 3 |
+
size 228321088
|
dialogpt-medium.Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f798f9ca752509a53cd728252fc1cd9d0f1834a5e054b61314606c91da952a11
|
| 3 |
+
size 248001088
|
dialogpt-medium.Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e687cccba2ff31693cf6faa4de66cd7293622d81433aa183a3c04074c6985c31
|
| 3 |
+
size 270091904
|
dialogpt-medium.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:daf7c56381730b185bbcbfd7ed96fbe52dea69fef81c4a15440b204c31713016
|
| 3 |
+
size 270414400
|
dialogpt-medium.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df9d5771f77e248ad44d97661128448cea34a0c6aa32af7b30af8da6f9cc5e52
|
| 3 |
+
size 249573952
|
dialogpt-medium.Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:edab62abfcb5ea173cbf66a2665ea1126b51287a197a61e052dab83526790155
|
| 3 |
+
size 292182720
|
dialogpt-medium.Q5_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e77b4969d6837eb7bb7227e4ee8c205c0d7aa4815a6629b1ca69b4176aa00b4e
|
| 3 |
+
size 314273536
|
dialogpt-medium.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a495b3fed11f4129227dcf134d60b4a28d529672b50f8fe3f23cc1cbf816676
|
| 3 |
+
size 308894400
|
dialogpt-medium.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f528df1aae9a6a7dd93e17da0da4b3ff10890cbcb06986e41b56aa3918c26c0a
|
| 3 |
+
size 292182720
|
dialogpt-medium.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d88b8d8f297412900f6205affbf8dacbe6216302dffa57624f38d6011c48e91
|
| 3 |
+
size 339125728
|
dialogpt-medium.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d833f5e46cb9931e18013209d59b87c25f91032d25d03b75ed3dbd3ba107cf48
|
| 3 |
+
size 437191328
|
dialogpt-medium.fp16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36938ee94e59779cd314b7bb00d11d0360b841dd4626ba08b10f1a4853fdebf9
|
| 3 |
+
size 816800288
|