Robotics
Transformers
GGUF
English
remyx
qwen2.5-vl
spatial-reasoning
multimodal
vlm
vqasynth
thinking
reasoning
test-time-compute
embodied-ai
quantitative-spatial-reasoning
distance-estimation
visual-question-answering
imatrix
conversational
Instructions to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF", filename="SpaceThinker-Qwen2.5VL-3B.i1-IQ1_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-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/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-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/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
- Unsloth Studio new
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-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/SpaceThinker-Qwen2.5VL-3B-i1-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/SpaceThinker-Qwen2.5VL-3B-i1-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/SpaceThinker-Qwen2.5VL-3B-i1-GGUF to start chatting
- Pi new
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/SpaceThinker-Qwen2.5VL-3B-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.SpaceThinker-Qwen2.5VL-3B-i1-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +24 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ1_M.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ1_S.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ2_M.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ2_S.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ2_XS.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ2_XXS.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ3_M.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ3_S.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ3_XS.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ3_XXS.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ4_NL.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-IQ4_XS.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q2_K.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q2_K_S.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_L.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_M.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_S.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q4_0.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q4_1.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q4_K_M.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q4_K_S.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q5_K_M.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q5_K_S.gguf +3 -0
- SpaceThinker-Qwen2.5VL-3B.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* 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 |
imatrix.dat 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 |
imatrix.dat filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
SpaceThinker-Qwen2.5VL-3B.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
SpaceThinker-Qwen2.5VL-3B.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9178fe7050f5afbd2eb99dadaec2e32c9b8ab6bbc0d12c4c668819ad64a393f
|
| 3 |
+
size 850028224
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c939521d4626a4f4b22651da48d01e6c683c2badc2b56d5f922ef920a2deb52
|
| 3 |
+
size 791094976
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9dd3d8797804197e1fd3ab0914eba1b196809a769176e4f16b3e4c2cbf843e8a
|
| 3 |
+
size 1140516544
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0bb2be6660464c7cfbdcad3649d753aee5c3ac54a46cb049b259468bda5a62a7
|
| 3 |
+
size 1061938880
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1035a9f677e1b5ae0b483ea1c847f4382f64a681d67f32ee5b8207d6e51f478a
|
| 3 |
+
size 1031546560
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f000a40e969db9bae15e4408446522bfd1b9ad213a3b2f0be75b55d8f24c99d
|
| 3 |
+
size 948250304
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21bd83419d06d26b437d376ab58f04bbb8fb74749eaeb9d73c0e02853c0da335
|
| 3 |
+
size 1488895680
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:201f0a7c3e4df954406c784fe8daf7a4f1313e88dbacd337e5c9845df1a374d8
|
| 3 |
+
size 1456864960
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22dc0bd8fbd4a857fbfd03f03b08cecc9dfdc4b69c6db23e76c99ef08bcbd1fc
|
| 3 |
+
size 1391836864
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ce2f65aaab6f228e75733ecd4e999e74c37120f3e770e8bd05af6844a6416a3
|
| 3 |
+
size 1282827968
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:936329b37853af28f36c29f1ab398dd741432b9cf38c06a00f531a7e0bbd902e
|
| 3 |
+
size 1825210048
|
SpaceThinker-Qwen2.5VL-3B.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0bb48e9792f593c6b2b8c2cc0f539ffdc293225ef966492a47244425e3d12174
|
| 3 |
+
size 1739095744
|
SpaceThinker-Qwen2.5VL-3B.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:188e0d4823c47d8bdb48d1fe7801f944230c8b8bb2a336fd6d88c9a93d870023
|
| 3 |
+
size 1274756800
|
SpaceThinker-Qwen2.5VL-3B.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c417441ec30fe89ed067c967fdaed8d6cace51f09bd86a9ad4da6beb0248ea71
|
| 3 |
+
size 1198128832
|
SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6411ad6a4342735cbddad8047129b690b6185e898f7333af0ab566a3b4132fba
|
| 3 |
+
size 1707392704
|
SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e99dab6207e596ed7f997ffd6caa4871571d4f62161e05fe2bdc2cfc1bb5320
|
| 3 |
+
size 1590476480
|
SpaceThinker-Qwen2.5VL-3B.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7046f67647f184d35fd1609ecfb6a9e350f653c8e1f5531b4d48b906ad4e002b
|
| 3 |
+
size 1454358208
|
SpaceThinker-Qwen2.5VL-3B.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c784402a3aeb06e9c4888128b604084f656929fdd335f09411604f5b20958b32
|
| 3 |
+
size 1828486848
|
SpaceThinker-Qwen2.5VL-3B.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:243b9be67383faccc3a60da04b4059fc0b19b2c0205c53227ee20105cdf6f272
|
| 3 |
+
size 1996259008
|
SpaceThinker-Qwen2.5VL-3B.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a620eb1e59eb46c97751c7f730f1f188f4cf65512282655cb8817ff811984acb
|
| 3 |
+
size 1929903808
|
SpaceThinker-Qwen2.5VL-3B.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3eaf8beec0c683dd3b9f7ec1837a22a6d450fb29b52a5fee644922bb5ad5ebe
|
| 3 |
+
size 1834385088
|
SpaceThinker-Qwen2.5VL-3B.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3255e475f31d1f50fc9fdcbf8b1776d0cd687fcfa4a7ecea748f6c77ef380c7b
|
| 3 |
+
size 2224815808
|
SpaceThinker-Qwen2.5VL-3B.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ac0709904552656393c3b0c7b71ffe72bfe14ac070dd92d53d41cdc993dcfd7
|
| 3 |
+
size 2169667264
|
SpaceThinker-Qwen2.5VL-3B.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:933e5b06f0cb031aa168181ca74dff178fffece010103789311918f02125c63c
|
| 3 |
+
size 2538159808
|