Instructions to use suryadv/strive-kubric-checkpoints with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use suryadv/strive-kubric-checkpoints with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="suryadv/strive-kubric-checkpoints")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("suryadv/strive-kubric-checkpoints", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use suryadv/strive-kubric-checkpoints with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "suryadv/strive-kubric-checkpoints" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "suryadv/strive-kubric-checkpoints", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/suryadv/strive-kubric-checkpoints
- SGLang
How to use suryadv/strive-kubric-checkpoints 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 "suryadv/strive-kubric-checkpoints" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "suryadv/strive-kubric-checkpoints", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "suryadv/strive-kubric-checkpoints" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "suryadv/strive-kubric-checkpoints", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use suryadv/strive-kubric-checkpoints with Docker Model Runner:
docker model run hf.co/suryadv/strive-kubric-checkpoints
Add checkpoint integrity manifest
Browse files- CHECKPOINT_MANIFEST.json +264 -0
CHECKPOINT_MANIFEST.json
ADDED
|
@@ -0,0 +1,264 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model": "Qwen/Qwen3-VL-4B-Instruct",
|
| 3 |
+
"checkpoints": [
|
| 4 |
+
{
|
| 5 |
+
"file_count": 15,
|
| 6 |
+
"files": [
|
| 7 |
+
{
|
| 8 |
+
"bytes": 381,
|
| 9 |
+
"path": "Modelfile",
|
| 10 |
+
"sha256": "6ff2ee517c72f16c560b06f414bcc4bf583715abdd263723242baaea23393377"
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"bytes": 707,
|
| 14 |
+
"path": "added_tokens.json",
|
| 15 |
+
"sha256": "c0284b582e14987fbd3d5a2cb2bd139084371ed9acbae488829a1c900833c680"
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"bytes": 5292,
|
| 19 |
+
"path": "chat_template.jinja",
|
| 20 |
+
"sha256": "3636d0f0bd6bef02654cdffdc447b79cb2cef8ab02cc75267345946291a489e4"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"bytes": 1567,
|
| 24 |
+
"path": "config.json",
|
| 25 |
+
"sha256": "a552559ebf5268d2300dbd12b721666c5ad0bef5d931289ae3a972c247e51111"
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"bytes": 213,
|
| 29 |
+
"path": "generation_config.json",
|
| 30 |
+
"sha256": "d9363251ecc4d2f655fb0166c3cf8c42956343286371e2ff94c73a0bd62b224f"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"bytes": 1671853,
|
| 34 |
+
"path": "merges.txt",
|
| 35 |
+
"sha256": "8831e4f1a044471340f7c0a83d7bd71306a5b867e95fd870f74d0c5308a904d5"
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"bytes": 4990497880,
|
| 39 |
+
"path": "model-00001-of-00002.safetensors",
|
| 40 |
+
"sha256": "401580224d5667d6965140a52c6618a9178560d7efc1324e2a83a9add976aab0"
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"bytes": 3885221448,
|
| 44 |
+
"path": "model-00002-of-00002.safetensors",
|
| 45 |
+
"sha256": "7056aafc6df1d6ab0717df3b39ea8a106f87dff0cfa73e32db3505354d651441"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"bytes": 64778,
|
| 49 |
+
"path": "model.safetensors.index.json",
|
| 50 |
+
"sha256": "c321e968083cc64dbdc77b9cc17842396cf376399f4ff4bca6b0a001fd22afef"
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"bytes": 782,
|
| 54 |
+
"path": "preprocessor_config.json",
|
| 55 |
+
"sha256": "93585062a80db5e8ca038efc7726a3e6411d9db948472d81d63c6303993be8c5"
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"bytes": 613,
|
| 59 |
+
"path": "special_tokens_map.json",
|
| 60 |
+
"sha256": "76862e765266b85aa9459767e33cbaf13970f327a0e88d1c65846c2ddd3a1ecd"
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"bytes": 11422654,
|
| 64 |
+
"path": "tokenizer.json",
|
| 65 |
+
"sha256": "aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4"
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"bytes": 5471,
|
| 69 |
+
"path": "tokenizer_config.json",
|
| 70 |
+
"sha256": "f246d21450d533b3f85402dce1ae9ed41e26ea8e3764d2d4b9f7da51eec3680f"
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"bytes": 817,
|
| 74 |
+
"path": "video_preprocessor_config.json",
|
| 75 |
+
"sha256": "59c5c9eb52182eb14c06ffb10ca9effd29adce5f238a95de23ca14a38dbd2cb1"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"bytes": 2776833,
|
| 79 |
+
"path": "vocab.json",
|
| 80 |
+
"sha256": "ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910"
|
| 81 |
+
}
|
| 82 |
+
],
|
| 83 |
+
"name": "baseline1-detector-5500",
|
| 84 |
+
"role": "Single-frame object detector used as Baseline 2 stage 1.",
|
| 85 |
+
"total_bytes": 8891671289,
|
| 86 |
+
"training_step": 5500
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"file_count": 15,
|
| 90 |
+
"files": [
|
| 91 |
+
{
|
| 92 |
+
"bytes": 381,
|
| 93 |
+
"path": "Modelfile",
|
| 94 |
+
"sha256": "6ff2ee517c72f16c560b06f414bcc4bf583715abdd263723242baaea23393377"
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"bytes": 707,
|
| 98 |
+
"path": "added_tokens.json",
|
| 99 |
+
"sha256": "c0284b582e14987fbd3d5a2cb2bd139084371ed9acbae488829a1c900833c680"
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"bytes": 5292,
|
| 103 |
+
"path": "chat_template.jinja",
|
| 104 |
+
"sha256": "3636d0f0bd6bef02654cdffdc447b79cb2cef8ab02cc75267345946291a489e4"
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"bytes": 1567,
|
| 108 |
+
"path": "config.json",
|
| 109 |
+
"sha256": "a552559ebf5268d2300dbd12b721666c5ad0bef5d931289ae3a972c247e51111"
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"bytes": 213,
|
| 113 |
+
"path": "generation_config.json",
|
| 114 |
+
"sha256": "d9363251ecc4d2f655fb0166c3cf8c42956343286371e2ff94c73a0bd62b224f"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"bytes": 1671853,
|
| 118 |
+
"path": "merges.txt",
|
| 119 |
+
"sha256": "8831e4f1a044471340f7c0a83d7bd71306a5b867e95fd870f74d0c5308a904d5"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"bytes": 4990497880,
|
| 123 |
+
"path": "model-00001-of-00002.safetensors",
|
| 124 |
+
"sha256": "c557ec884b340a305f1fe9937e52c098e62fd9cbb98ed1b6bc8944272fc209ff"
|
| 125 |
+
},
|
| 126 |
+
{
|
| 127 |
+
"bytes": 3885221448,
|
| 128 |
+
"path": "model-00002-of-00002.safetensors",
|
| 129 |
+
"sha256": "d6561f9844a506a5da76b66f7d72938e0786095487d65a26de1bc2b5701c6c47"
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"bytes": 64778,
|
| 133 |
+
"path": "model.safetensors.index.json",
|
| 134 |
+
"sha256": "c321e968083cc64dbdc77b9cc17842396cf376399f4ff4bca6b0a001fd22afef"
|
| 135 |
+
},
|
| 136 |
+
{
|
| 137 |
+
"bytes": 782,
|
| 138 |
+
"path": "preprocessor_config.json",
|
| 139 |
+
"sha256": "93585062a80db5e8ca038efc7726a3e6411d9db948472d81d63c6303993be8c5"
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"bytes": 613,
|
| 143 |
+
"path": "special_tokens_map.json",
|
| 144 |
+
"sha256": "76862e765266b85aa9459767e33cbaf13970f327a0e88d1c65846c2ddd3a1ecd"
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"bytes": 11422654,
|
| 148 |
+
"path": "tokenizer.json",
|
| 149 |
+
"sha256": "aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4"
|
| 150 |
+
},
|
| 151 |
+
{
|
| 152 |
+
"bytes": 5471,
|
| 153 |
+
"path": "tokenizer_config.json",
|
| 154 |
+
"sha256": "f246d21450d533b3f85402dce1ae9ed41e26ea8e3764d2d4b9f7da51eec3680f"
|
| 155 |
+
},
|
| 156 |
+
{
|
| 157 |
+
"bytes": 817,
|
| 158 |
+
"path": "video_preprocessor_config.json",
|
| 159 |
+
"sha256": "59c5c9eb52182eb14c06ffb10ca9effd29adce5f238a95de23ca14a38dbd2cb1"
|
| 160 |
+
},
|
| 161 |
+
{
|
| 162 |
+
"bytes": 2776833,
|
| 163 |
+
"path": "vocab.json",
|
| 164 |
+
"sha256": "ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910"
|
| 165 |
+
}
|
| 166 |
+
],
|
| 167 |
+
"name": "baseline2-4000",
|
| 168 |
+
"role": "Streaming staged mapper used as Baseline 2 stage 2.",
|
| 169 |
+
"total_bytes": 8891671289,
|
| 170 |
+
"training_step": 4000
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"file_count": 15,
|
| 174 |
+
"files": [
|
| 175 |
+
{
|
| 176 |
+
"bytes": 381,
|
| 177 |
+
"path": "Modelfile",
|
| 178 |
+
"sha256": "6ff2ee517c72f16c560b06f414bcc4bf583715abdd263723242baaea23393377"
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"bytes": 707,
|
| 182 |
+
"path": "added_tokens.json",
|
| 183 |
+
"sha256": "c0284b582e14987fbd3d5a2cb2bd139084371ed9acbae488829a1c900833c680"
|
| 184 |
+
},
|
| 185 |
+
{
|
| 186 |
+
"bytes": 5292,
|
| 187 |
+
"path": "chat_template.jinja",
|
| 188 |
+
"sha256": "3636d0f0bd6bef02654cdffdc447b79cb2cef8ab02cc75267345946291a489e4"
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"bytes": 1567,
|
| 192 |
+
"path": "config.json",
|
| 193 |
+
"sha256": "a552559ebf5268d2300dbd12b721666c5ad0bef5d931289ae3a972c247e51111"
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"bytes": 213,
|
| 197 |
+
"path": "generation_config.json",
|
| 198 |
+
"sha256": "d9363251ecc4d2f655fb0166c3cf8c42956343286371e2ff94c73a0bd62b224f"
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"bytes": 1671853,
|
| 202 |
+
"path": "merges.txt",
|
| 203 |
+
"sha256": "8831e4f1a044471340f7c0a83d7bd71306a5b867e95fd870f74d0c5308a904d5"
|
| 204 |
+
},
|
| 205 |
+
{
|
| 206 |
+
"bytes": 4990497880,
|
| 207 |
+
"path": "model-00001-of-00002.safetensors",
|
| 208 |
+
"sha256": "36407457aedd25089d9f97c7cb1fc85bfc947fa21c11f0286ad483929911a599"
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"bytes": 3885221448,
|
| 212 |
+
"path": "model-00002-of-00002.safetensors",
|
| 213 |
+
"sha256": "258f0a4a86b43038ed628b2a6c7104da88db6eaf774b82667fc8855bc89eefc5"
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"bytes": 64778,
|
| 217 |
+
"path": "model.safetensors.index.json",
|
| 218 |
+
"sha256": "c321e968083cc64dbdc77b9cc17842396cf376399f4ff4bca6b0a001fd22afef"
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"bytes": 782,
|
| 222 |
+
"path": "preprocessor_config.json",
|
| 223 |
+
"sha256": "93585062a80db5e8ca038efc7726a3e6411d9db948472d81d63c6303993be8c5"
|
| 224 |
+
},
|
| 225 |
+
{
|
| 226 |
+
"bytes": 613,
|
| 227 |
+
"path": "special_tokens_map.json",
|
| 228 |
+
"sha256": "76862e765266b85aa9459767e33cbaf13970f327a0e88d1c65846c2ddd3a1ecd"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"bytes": 11422654,
|
| 232 |
+
"path": "tokenizer.json",
|
| 233 |
+
"sha256": "aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4"
|
| 234 |
+
},
|
| 235 |
+
{
|
| 236 |
+
"bytes": 5471,
|
| 237 |
+
"path": "tokenizer_config.json",
|
| 238 |
+
"sha256": "f246d21450d533b3f85402dce1ae9ed41e26ea8e3764d2d4b9f7da51eec3680f"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"bytes": 817,
|
| 242 |
+
"path": "video_preprocessor_config.json",
|
| 243 |
+
"sha256": "59c5c9eb52182eb14c06ffb10ca9effd29adce5f238a95de23ca14a38dbd2cb1"
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"bytes": 2776833,
|
| 247 |
+
"path": "vocab.json",
|
| 248 |
+
"sha256": "ca10d7e9fb3ed18575dd1e277a2579c16d108e32f27439684afa0e10b1440910"
|
| 249 |
+
}
|
| 250 |
+
],
|
| 251 |
+
"name": "baseline3-4000",
|
| 252 |
+
"role": "Streaming end-to-end scene parser used as Baseline 3.",
|
| 253 |
+
"total_bytes": 8891671289,
|
| 254 |
+
"training_step": 4000
|
| 255 |
+
}
|
| 256 |
+
],
|
| 257 |
+
"repository": "suryadv/strive-kubric-checkpoints",
|
| 258 |
+
"repository_type": "model",
|
| 259 |
+
"schema_version": 1,
|
| 260 |
+
"strive_repository": "https://github.com/suryathecreator/strive",
|
| 261 |
+
"strive_reproducibility_tag": "strive-repro-2026-07-18",
|
| 262 |
+
"total_bytes": 26675013867,
|
| 263 |
+
"total_files": 45
|
| 264 |
+
}
|