Instructions to use debugdll/Blind with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use debugdll/Blind with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="debugdll/Blind")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("debugdll/Blind", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use debugdll/Blind with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "debugdll/Blind" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "debugdll/Blind", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/debugdll/Blind
- SGLang
How to use debugdll/Blind 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 "debugdll/Blind" \ --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": "debugdll/Blind", "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 "debugdll/Blind" \ --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": "debugdll/Blind", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use debugdll/Blind with Docker Model Runner:
docker model run hf.co/debugdll/Blind
231231312 commited on
Upload 6 files
Browse filesblind-0-ultrasmall.pt 50M Parameters at the end (blind-1.1.pt) 1.35B
- blind-0-large.pt +3 -0
- blind-0-medium.pt +3 -0
- blind-0-small.pt +3 -0
- blind-0-ultrasmall.pt +3 -0
- blind-1.1.pt +3 -0
- blind-1.pt +3 -0
blind-0-large.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3699152ad8fe2361442dc46db5b0c7d8f600273475267a73bb9d4bd0ed32d8e
|
| 3 |
+
size 445373979
|
blind-0-medium.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e465ad057174258444e534e49a9d80d242c4f8e4945e5cfdc825c1bc4f21ee4
|
| 3 |
+
size 406652571
|
blind-0-small.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:611b2aa9dacd67728caa4212001eb8cb2fdc627ec1bb3d72087ade2803b3d29e
|
| 3 |
+
size 356035656
|
blind-0-ultrasmall.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb038736131232ac868b4fb22ffe4ef5ab76c05a8c14139f82813eacb2408eaa
|
| 3 |
+
size 172814709
|
blind-1.1.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b8d138a9d13eb927b9d33a52bf533ac268d0f54b88878aaf453552abf03c538
|
| 3 |
+
size 1001174523
|
blind-1.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:699179e5663adb8a761314e0fd074921c00a97132b7d5aaa73fd211601a6860d
|
| 3 |
+
size 1001155947
|