Text Generation
Transformers
GGUF
English
qwen2
text-generation-inference
code
math
RL
science
conversational
Instructions to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-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 prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/GCIRS-Reasoning-1.5B-R1-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 prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf prithivMLmods/GCIRS-Reasoning-1.5B-R1-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 prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/GCIRS-Reasoning-1.5B-R1-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 prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/GCIRS-Reasoning-1.5B-R1-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": "prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF with Ollama:
ollama run hf.co/prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/GCIRS-Reasoning-1.5B-R1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.GCIRS-Reasoning-1.5B-R1-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +13 -0
- GCIRS-Reasoning-1.5B-R1.BF16.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.F16.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.F32.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q2_K.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q3_K_L.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q3_K_M.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q3_K_S.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q4_K_M.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q4_K_S.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q5_K_M.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q5_K_S.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q6_K.gguf +3 -0
- GCIRS-Reasoning-1.5B-R1.Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,16 @@ 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 |
+
GCIRS-Reasoning-1.5B-R1.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
GCIRS-Reasoning-1.5B-R1.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
GCIRS-Reasoning-1.5B-R1.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
GCIRS-Reasoning-1.5B-R1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
GCIRS-Reasoning-1.5B-R1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
GCIRS-Reasoning-1.5B-R1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
GCIRS-Reasoning-1.5B-R1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
GCIRS-Reasoning-1.5B-R1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
GCIRS-Reasoning-1.5B-R1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
GCIRS-Reasoning-1.5B-R1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
GCIRS-Reasoning-1.5B-R1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
GCIRS-Reasoning-1.5B-R1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
GCIRS-Reasoning-1.5B-R1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
GCIRS-Reasoning-1.5B-R1.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48b25a1b9045fc826ad110f0f0fca136dcd307f8ce67a17eeb1d1b27c87c206d
|
| 3 |
+
size 3560415968
|
GCIRS-Reasoning-1.5B-R1.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75ae2b0363db0715a0ea1c00a087dfb0bac380791001dcbbd3f7a9ffcf5bd3bf
|
| 3 |
+
size 3560415968
|
GCIRS-Reasoning-1.5B-R1.F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:241b396df8816270f021cc6227481a83c52e543bf3f94e3387d93415a41054ce
|
| 3 |
+
size 7114302176
|
GCIRS-Reasoning-1.5B-R1.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:434df31d6192830b749210fbd88644cda73092d88bbec31ff7d3d558ac9828b6
|
| 3 |
+
size 752879840
|
GCIRS-Reasoning-1.5B-R1.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f90b196fd6a3a29344cb23e9e35a216cfb6fe2fde8c9214b67e34fd70327a3a5
|
| 3 |
+
size 980439776
|
GCIRS-Reasoning-1.5B-R1.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb8577b091902b29cd5700be550b51af166c43bfd64be1fbccc9a5fbf5dd49d6
|
| 3 |
+
size 924455648
|
GCIRS-Reasoning-1.5B-R1.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4371f2f75e02fc30081a9aff9312e717b68617e67aa7541f0e52943f2407603f
|
| 3 |
+
size 861221600
|
GCIRS-Reasoning-1.5B-R1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9fa219727d579a58dac19198a0a37e8ea6e114026891451bad4d0457540dc16
|
| 3 |
+
size 1117320416
|
GCIRS-Reasoning-1.5B-R1.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2b5d0f387c8a2373dcbe7182446352ac0cac4644868e36f8395f907e2b461eb
|
| 3 |
+
size 1071584480
|
GCIRS-Reasoning-1.5B-R1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad5d1e6e6aff4e41fc134b31d63873b6377f56a715fb0f35ba45881989fa90c6
|
| 3 |
+
size 1285493984
|
GCIRS-Reasoning-1.5B-R1.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:425e66bb69c6c265daa86d6a407d38769d965c23aef3305764b849a108a6d171
|
| 3 |
+
size 1259173088
|
GCIRS-Reasoning-1.5B-R1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1b6bcda12e31464393510d4410cc7f6fcff823c64b0809f7081170b18909e39
|
| 3 |
+
size 1464178400
|
GCIRS-Reasoning-1.5B-R1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e624339948eb28a3bdf26fe6b6255904a8b5eb0b03293494f510cb89cfa1655
|
| 3 |
+
size 1894531808
|