Text Generation
Transformers
Safetensors
qwen3_5_text
dense
coding
agentic
unimodal
repackaged
conversational
Instructions to use Jaidchen/Focus with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jaidchen/Focus with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Jaidchen/Focus") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Jaidchen/Focus") model = AutoModelForCausalLM.from_pretrained("Jaidchen/Focus") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Jaidchen/Focus with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jaidchen/Focus" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jaidchen/Focus", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Jaidchen/Focus
- SGLang
How to use Jaidchen/Focus 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 "Jaidchen/Focus" \ --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": "Jaidchen/Focus", "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 "Jaidchen/Focus" \ --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": "Jaidchen/Focus", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Jaidchen/Focus with Docker Model Runner:
docker model run hf.co/Jaidchen/Focus
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,9 +9,7 @@ tags:
|
|
| 9 |
- coding
|
| 10 |
- tool_calling
|
| 11 |
- unimodal
|
| 12 |
-
- Qwen3_5ForCausalLM
|
| 13 |
- repackaged
|
| 14 |
-
- remux
|
| 15 |
---
|
| 16 |
|
| 17 |
<center>
|
|
@@ -63,7 +61,7 @@ repackaged [Qwen 3.6 27B](https://huggingface.co/Qwen/Qwen3.6-27B) with a simpli
|
|
| 63 |
<td>1199</td>
|
| 64 |
<td>866</td>
|
| 65 |
</tr>
|
| 66 |
-
<tr style='
|
| 67 |
<td>tensor type</td>
|
| 68 |
<td>bf16</td>
|
| 69 |
<td>bf16</td>
|
|
@@ -73,17 +71,17 @@ repackaged [Qwen 3.6 27B](https://huggingface.co/Qwen/Qwen3.6-27B) with a simpli
|
|
| 73 |
<td>27 781 427 952</td>
|
| 74 |
<td>27 320 697 856</td>
|
| 75 |
</tr>
|
| 76 |
-
<tr style='
|
| 77 |
<td>vocabulary size</td>
|
| 78 |
<td>248 320</td>
|
| 79 |
<td>248 320</td>
|
| 80 |
</tr>
|
| 81 |
-
<tr style='
|
| 82 |
<td>context size</td>
|
| 83 |
<td>262 144</td>
|
| 84 |
<td>262 144</td>
|
| 85 |
</tr>
|
| 86 |
-
<tr style='
|
| 87 |
<td>MTP</td>
|
| 88 |
<td>integrated</td>
|
| 89 |
<td>integrated</td>
|
|
@@ -97,14 +95,14 @@ repackaged [Qwen 3.6 27B](https://huggingface.co/Qwen/Qwen3.6-27B) with a simpli
|
|
| 97 |
<td>sampling parameters</td>
|
| 98 |
<td>
|
| 99 |
<div style='font-family: Jaidevka Code, JetBrains Mono, monospace; line-height: initial'>
|
| 100 |
-
<span style='color:
|
| 101 |
-
<span style='color:
|
| 102 |
-
<span style='color:
|
| 103 |
-
<span style='color:
|
| 104 |
</td>
|
| 105 |
<td>
|
| 106 |
<div style='font-family: Jaidevka Code, JetBrains Mono, monospace; line-height: initial'>
|
| 107 |
-
<span style='color:
|
| 108 |
</div>
|
| 109 |
</td>
|
| 110 |
</tr>
|
|
@@ -114,9 +112,14 @@ repackaged [Qwen 3.6 27B](https://huggingface.co/Qwen/Qwen3.6-27B) with a simpli
|
|
| 114 |
<td>text</td>
|
| 115 |
</tr>
|
| 116 |
<tr>
|
| 117 |
-
<td>
|
| 118 |
-
<td>55
|
| 119 |
-
<td>54
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
</tr>
|
| 121 |
<tr>
|
| 122 |
<td>splits</td>
|
|
|
|
| 9 |
- coding
|
| 10 |
- tool_calling
|
| 11 |
- unimodal
|
|
|
|
| 12 |
- repackaged
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
<center>
|
|
|
|
| 61 |
<td>1199</td>
|
| 62 |
<td>866</td>
|
| 63 |
</tr>
|
| 64 |
+
<tr style='opacity: 50%'>
|
| 65 |
<td>tensor type</td>
|
| 66 |
<td>bf16</td>
|
| 67 |
<td>bf16</td>
|
|
|
|
| 71 |
<td>27 781 427 952</td>
|
| 72 |
<td>27 320 697 856</td>
|
| 73 |
</tr>
|
| 74 |
+
<tr style='opacity: 50%'>
|
| 75 |
<td>vocabulary size</td>
|
| 76 |
<td>248 320</td>
|
| 77 |
<td>248 320</td>
|
| 78 |
</tr>
|
| 79 |
+
<tr style='opacity: 50%'>
|
| 80 |
<td>context size</td>
|
| 81 |
<td>262 144</td>
|
| 82 |
<td>262 144</td>
|
| 83 |
</tr>
|
| 84 |
+
<tr style='opacity: 50%'>
|
| 85 |
<td>MTP</td>
|
| 86 |
<td>integrated</td>
|
| 87 |
<td>integrated</td>
|
|
|
|
| 95 |
<td>sampling parameters</td>
|
| 96 |
<td>
|
| 97 |
<div style='font-family: Jaidevka Code, JetBrains Mono, monospace; line-height: initial'>
|
| 98 |
+
<span style='color: hsl(from currentColor 0 100% l)'>do_sample</span>: <span style='color: hsl(from currentColor 50 80% l)'>true</span><br>
|
| 99 |
+
<span style='color: hsl(from currentColor 0 100% l)'>temperature</span>: <span style='color: hsl(from currentColor 50 80% l)'>0.6</span><br>
|
| 100 |
+
<span style='color: hsl(from currentColor 0 100% l)'>top_k</span>: <span style='color: hsl(from currentColor 50 80% l)'>20</span><br>
|
| 101 |
+
<span style='color: hsl(from currentColor 0 100% l)'>top_p</span>: <span style='color: hsl(from currentColor 50 80% l)'>0.95</span></div>
|
| 102 |
</td>
|
| 103 |
<td>
|
| 104 |
<div style='font-family: Jaidevka Code, JetBrains Mono, monospace; line-height: initial'>
|
| 105 |
+
<span style='color: hsl(from currentColor 0 100% l)'>do_sample</span>: <span style='color: hsl(from currentColor 50 80% l)'>false</span>
|
| 106 |
</div>
|
| 107 |
</td>
|
| 108 |
</tr>
|
|
|
|
| 112 |
<td>text</td>
|
| 113 |
</tr>
|
| 114 |
<tr>
|
| 115 |
+
<td>repository size</td>
|
| 116 |
+
<td>55 586 101 650</td>
|
| 117 |
+
<td>54 664 408 333</td>
|
| 118 |
+
</tr>
|
| 119 |
+
<tr>
|
| 120 |
+
<td>model size</td>
|
| 121 |
+
<td>55 562 855 904</td>
|
| 122 |
+
<td>54 641 395 712</td>
|
| 123 |
</tr>
|
| 124 |
<tr>
|
| 125 |
<td>splits</td>
|