Instructions to use cortexso/deepscaler with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use cortexso/deepscaler with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="cortexso/deepscaler", filename="deepscaler-1.5b-preview-q2_k.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use cortexso/deepscaler with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf cortexso/deepscaler:Q4_K_M # Run inference directly in the terminal: llama-cli -hf cortexso/deepscaler:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf cortexso/deepscaler:Q4_K_M # Run inference directly in the terminal: llama-cli -hf cortexso/deepscaler: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 cortexso/deepscaler:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf cortexso/deepscaler: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 cortexso/deepscaler:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf cortexso/deepscaler:Q4_K_M
Use Docker
docker model run hf.co/cortexso/deepscaler:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use cortexso/deepscaler with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cortexso/deepscaler" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cortexso/deepscaler", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cortexso/deepscaler:Q4_K_M
- Ollama
How to use cortexso/deepscaler with Ollama:
ollama run hf.co/cortexso/deepscaler:Q4_K_M
- Unsloth Studio
How to use cortexso/deepscaler 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 cortexso/deepscaler 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 cortexso/deepscaler to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for cortexso/deepscaler to start chatting
- Docker Model Runner
How to use cortexso/deepscaler with Docker Model Runner:
docker model run hf.co/cortexso/deepscaler:Q4_K_M
- Lemonade
How to use cortexso/deepscaler with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull cortexso/deepscaler:Q4_K_M
Run and chat with the model
lemonade run user.deepscaler-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +10 -0
- deepscaler-1.5b-preview-q2_k.gguf +3 -0
- deepscaler-1.5b-preview-q3_k_l.gguf +3 -0
- deepscaler-1.5b-preview-q3_k_m.gguf +3 -0
- deepscaler-1.5b-preview-q3_k_s.gguf +3 -0
- deepscaler-1.5b-preview-q4_k_m.gguf +3 -0
- deepscaler-1.5b-preview-q4_k_s.gguf +3 -0
- deepscaler-1.5b-preview-q5_k_m.gguf +3 -0
- deepscaler-1.5b-preview-q5_k_s.gguf +3 -0
- deepscaler-1.5b-preview-q6_k.gguf +3 -0
- deepscaler-1.5b-preview-q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,13 @@ 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 |
+
deepscaler-1.5b-preview-q2_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
deepscaler-1.5b-preview-q3_k_l.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
deepscaler-1.5b-preview-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
deepscaler-1.5b-preview-q3_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
deepscaler-1.5b-preview-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
deepscaler-1.5b-preview-q4_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
deepscaler-1.5b-preview-q5_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
deepscaler-1.5b-preview-q5_k_s.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
deepscaler-1.5b-preview-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
deepscaler-1.5b-preview-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
deepscaler-1.5b-preview-q2_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf16ea23a11890ba9c459c288fc32d17b3e54dbc93dbc2bf7163f16664822609
|
| 3 |
+
size 752881312
|
deepscaler-1.5b-preview-q3_k_l.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:348301bf126a7b1649983d10c9608d306b1965b851cea6af0db3f672d1c26726
|
| 3 |
+
size 980441248
|
deepscaler-1.5b-preview-q3_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d178f3654212dd183319e89f86cab74042f589bae62f86fba941f65bb50ffbb8
|
| 3 |
+
size 924457120
|
deepscaler-1.5b-preview-q3_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43d680bfd259cd99bd7861351e55e8d38209ae2b96a220fa7ceff39423df67c1
|
| 3 |
+
size 861223072
|
deepscaler-1.5b-preview-q4_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ed31fa867cd2aadf61a2632ac49e439fe0c3526d218d9a2b0c9481da96b51a3
|
| 3 |
+
size 1117321888
|
deepscaler-1.5b-preview-q4_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0fb7d20d782df27908333ffc1eaac52ec39c2f46991ea5abe90f11ad0cb9af6
|
| 3 |
+
size 1071585952
|
deepscaler-1.5b-preview-q5_k_m.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3bcf0e249050877384008a9080ce41ed1d438799ed92e61f9caf4d8e6320ac15
|
| 3 |
+
size 1285495456
|
deepscaler-1.5b-preview-q5_k_s.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6c27caef49f057213508247a56adf82bea86ece10e5c50c3674859b670279dc
|
| 3 |
+
size 1259174560
|
deepscaler-1.5b-preview-q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a86c124377fd3b31502c988f877f29df9ca298dcb572d9e462eb0bc37b83ca0
|
| 3 |
+
size 1464179872
|
deepscaler-1.5b-preview-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c911f55ee2ff7fc680eff8c15a7beff31f6b7d5eba89545cccc6c31d32e2b4fd
|
| 3 |
+
size 1894533280
|