Image-Text-to-Text
Transformers
Safetensors
qwen3_5_moe
qwen
multimodal
Mixture of Experts
vision-language
conversational
vllm
sglang
ktransformers
Instructions to use Jetlink/JetLLMPremium-3.5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jetlink/JetLLMPremium-3.5 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Jetlink/JetLLMPremium-3.5") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("Jetlink/JetLLMPremium-3.5") model = AutoModelForImageTextToText.from_pretrained("Jetlink/JetLLMPremium-3.5") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Jetlink/JetLLMPremium-3.5 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jetlink/JetLLMPremium-3.5" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jetlink/JetLLMPremium-3.5", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Jetlink/JetLLMPremium-3.5
- SGLang
How to use Jetlink/JetLLMPremium-3.5 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 "Jetlink/JetLLMPremium-3.5" \ --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": "Jetlink/JetLLMPremium-3.5", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "Jetlink/JetLLMPremium-3.5" \ --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": "Jetlink/JetLLMPremium-3.5", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use Jetlink/JetLLMPremium-3.5 with Docker Model Runner:
docker model run hf.co/Jetlink/JetLLMPremium-3.5
File size: 18,380 Bytes
3c6c43e b747a44 3c6c43e 0defe3b 3c6c43e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 | ---
license: apache-2.0
library_name: transformers
tags:
- qwen
- multimodal
- moe
- vision-language
- conversational
- transformers
- vllm
- sglang
- ktransformers
pipeline_tag: image-text-to-text
base_model: Qwen/Qwen3.5-397B-A17B
---
# JetLLMPremium-3.5
**JetLLMPremium-3.5** is a large-scale multimodal Mixture-of-Experts model published by **Jetlink**.
It is intended for teams that want to manage deployment, access, and internal distribution from their own namespace while preserving compatibility with the original upstream model ecosystem.
## Model Summary
JetLLMPremium-3.5 is a post-trained multimodal autoregressive model with:
- **397B total parameters**
- **17B activated parameters per token**
- **Causal Language Model with Vision Encoder**
- **262,144 tokens native context length**
- **Extensible context up to 1,010,000 tokens**
- **Support for 201 languages and dialects**
- Compatibility with **Transformers**, **vLLM**, **SGLang**, and **KTransformers**
## Intended Use
This model is suitable for advanced workloads such as:
- multimodal chat assistants
- long-context document understanding
- agentic workflows
- tool-using assistants
- multilingual enterprise assistants
- coding and reasoning-heavy applications
- research and benchmarking
## Model Details
### Architecture
- **Model type:** Causal Language Model with Vision Encoder
- **Training stage:** Pre-training & Post-training
- **Total parameters:** 397B
- **Activated parameters:** 17B
- **Hidden dimension:** 4096
- **Number of layers:** 60
- **MoE experts:** 512
- **Activated experts:** 10 Routed + 1 Shared
- **Native context length:** 262,144 tokens
- **Extended context capability:** up to 1,010,000 tokens
### Ecosystem Compatibility
The upstream model card states compatibility with:
- Hugging Face Transformers
- vLLM
- SGLang
- KTransformers
## Hardware Requirements
> This model is **not intended for lightweight local deployment** in its original form.
The official upstream documentation does **not** define a single universal minimum hardware requirement, because actual requirements vary depending on:
- inference framework
- context length
- precision / quantization
- batch size
- KV cache configuration
- whether vision inputs are enabled
- latency and throughput goals
### Reference Hardware
The upstream Qwen model card provides official serving examples using tensor parallelism across **8 GPUs** for both the standard and FP8 variants.
Recommended reference configurations for self-hosted deployment:
- **Preferred:** 8× H200-class GPUs
- **Alternative:** 8× H100-class GPUs, depending on precision, context length, runtime settings, and available memory headroom
- **Text-only deployments:** may reduce memory pressure by disabling the vision encoder with `--language-model-only`
> Note: hardware requirements vary significantly based on precision, context length, KV cache settings, batch size, and whether multimodal inputs are enabled. The configurations above should be treated as practical deployment references rather than universal minimum requirements.
### Practical Guidance
#### Full model deployment
For the original model weights, this model should be treated as a **high-end multi-GPU server model**.
A practical baseline is:
- multiple high-memory datacenter GPUs
- fast GPU-to-GPU interconnect preferred
- substantial CPU RAM headroom
- fast NVMe storage
- Linux-based inference environment
#### Official serving examples
The upstream model card provides serving examples using **tensor parallelism across 8 GPUs** for both SGLang and vLLM.
That makes **8-GPU deployment** the safest reference point to document for standard, non-quantized serving.
#### Text-only deployment
The upstream vLLM example also documents a `--language-model-only` option, which skips the vision encoder and multimodal profiling to free more memory for KV cache. This can be useful when your workload is purely text-based.
### Recommendation
For most production teams:
1. start with a dedicated serving stack such as **vLLM** or **SGLang**
2. benchmark with your real context length and batch profile
3. use text-only mode when vision is not needed
4. consider optimized / compressed variants for more practical infrastructure usage
## Software Requirements
Recommended environment:
- Python 3.10+
- Linux
- CUDA-enabled GPU infrastructure
- One of the following runtimes:
- Transformers
- vLLM
- SGLang
- KTransformers
Common dependencies may include:
- `torch`
- `transformers`
- `torchvision`
- `pillow`
Additional runtime-specific packages may be required depending on your serving framework.
## Quickstart
Install Transformers:
pip install "transformers[serving] @ git+https://github.com/huggingface/transformers.git@main"
Basic loading example:
from transformers import AutoProcessor, AutoModelForImageTextToText
model_id = "Jetlink/JetLLMPremium-3.5"
processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForImageTextToText.from_pretrained(
model_id,
trust_remote_code=True,
)
## Serving Examples
### vLLM
vllm serve Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tensor-parallel-size 8 \
--max-model-len 262144 \
--reasoning-parser qwen3
### vLLM with Tool Use
vllm serve Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tensor-parallel-size 8 \
--max-model-len 262144 \
--reasoning-parser qwen3 \
--enable-auto-tool-choice \
--tool-call-parser qwen3_coder
### vLLM text-only mode
vllm serve Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tensor-parallel-size 8 \
--max-model-len 262144 \
--reasoning-parser qwen3 \
--language-model-only
### SGLang
python -m sglang.launch_server \
--model-path Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tp-size 8 \
--mem-fraction-static 0.8 \
--context-length 262144 \
--reasoning-parser qwen3
### SGLang with Tool Use
python -m sglang.launch_server \
--model-path Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tp-size 8 \
--mem-fraction-static 0.8 \
--context-length 262144 \
--reasoning-parser qwen3 \
--tool-call-parser qwen3_coder
### SGLang with Multi-Token Prediction (MTP)
python -m sglang.launch_server \
--model-path Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tp-size 8 \
--mem-fraction-static 0.8 \
--context-length 262144 \
--reasoning-parser qwen3 \
--speculative-algo NEXTN \
--speculative-num-steps 3 \
--speculative-eagle-topk 1 \
--speculative-num-draft-tokens 4
## Long Context Notes
JetLLMPremium-3.5 natively supports **262,144 tokens**.
For tasks that exceed this window, the upstream documentation recommends using long-context scaling techniques such as **YaRN**, which are supported in several frameworks including Transformers, vLLM, KTransformers, and SGLang.
## Strengths
- very large-capability multimodal model
- strong long-context support
- MoE design for efficient activated compute relative to total parameter count
- broad multilingual support
- compatible with modern high-throughput serving frameworks
- suitable for advanced agentic and enterprise deployments
## Limitations
- requires substantial infrastructure
- long context significantly increases memory pressure
- multimodal usage adds further overhead
- original weights are not a good fit for consumer-grade single-GPU environments
- deployment characteristics depend heavily on framework and configuration
## Out-of-Scope / Cautionary Use
As with other frontier-scale multimodal language models, outputs should be reviewed before use in:
- medical decision-making
- legal advice
- safety-critical automation
- high-stakes financial decisions
- fully autonomous customer actions without guardrails
Human review, policy controls, and tool-level validation are strongly recommended.
## License
This repository follows the same license as the upstream release.
- **License:** Apache-2.0
- See the upstream Qwen repository and included license text for the governing terms.
If you redistribute, fine-tune, quantize, or otherwise modify this model, make sure your usage remains compliant with the upstream license and attribution requirements.
## Attribution
Original model and research release by the **Qwen** team.
Upstream model:
- `Qwen/Qwen3.5-397B-A17B`
This repository is an organization-managed copy and is **not the original upstream source**.
## Citation
Please cite the original Qwen release when using this model in research, evaluation, or production documentation.
```bibtex
@misc{qwen3.5,
title = {Qwen3.5 Technical Report},
author = {Qwen Team},
year = {2026},
publisher = {Alibaba Cloud},
howpublished = {\url{https://huggingface.co/Qwen/Qwen3.5-397B-A17B}}
}
```
---
# JetLLMPremium-3.5 (Türkçe)
**JetLLMPremium-3.5**, **Jetlink** tarafından yayınlanan büyük ölçekli bir multimodal Mixture-of-Experts modelidir.
Bu depo; modeli kendi namespace'i altında yönetmek, erişimi kontrol etmek ve dağıtımı kolaylaştırmak isteyen ekipler için hazırlanmıştır. Amaç, upstream model ekosistemiyle uyumluluğu koruyarak kurumsal kullanım sağlamaktır.
## Model Özeti
JetLLMPremium-3.5, aşağıdaki özelliklere sahip, post-train edilmiş çok kipli (multimodal) otoregresif bir modeldir:
- **397B toplam parametre**
- Her token için **17B aktif parametre**
- **Vision Encoder** içeren **Causal Language Model**
- **262.144 token yerel bağlam uzunluğu**
- **1.010.000 token'a kadar genişletilebilir bağlam**
- **201 dil ve lehçe desteği**
- **Transformers**, **vLLM**, **SGLang** ve **KTransformers** ile uyumluluk
## Kullanım Amacı
Bu model aşağıdaki gelişmiş kullanım senaryoları için uygundur:
- multimodal sohbet asistanları
- uzun bağlamlı doküman anlama
- agentic workflow yapıları
- araç kullanan asistanlar
- çok dilli kurumsal asistanlar
- kodlama ve yoğun akıl yürütme gerektiren uygulamalar
- araştırma ve benchmark çalışmaları
## Model Detayları
### Mimari
- **Model tipi:** Vision Encoder içeren Causal Language Model
- **Eğitim aşaması:** Pre-training ve Post-training
- **Toplam parametre:** 397B
- **Aktif parametre:** 17B
- **Hidden dimension:** 4096
- **Katman sayısı:** 60
- **MoE expert sayısı:** 512
- **Aktif expert:** 10 Routed + 1 Shared
- **Yerel bağlam uzunluğu:** 262.144 token
- **Genişletilmiş bağlam kapasitesi:** 1.010.000 token'a kadar
### Ekosistem Uyumluluğu
Upstream model kartına göre model şu ekosistemlerle uyumludur:
- Hugging Face Transformers
- vLLM
- SGLang
- KTransformers
## Donanım Gereksinimleri
> Bu model, orijinal haliyle hafif yerel kullanım için tasarlanmamıştır.
Resmi upstream dokümantasyonu tek ve evrensel bir minimum donanım gereksinimi belirtmez. Çünkü gerçek ihtiyaçlar şunlara bağlı olarak değişir:
- kullanılan inference framework'ü
- bağlam uzunluğu
- precision / quantization tercihi
- batch size
- KV cache yapılandırması
- vision girdilerinin kullanılıp kullanılmaması
- gecikme ve throughput hedefleri
### Referans Donanım
Upstream Qwen model kartı, hem standart hem de FP8 varyantları için **8 GPU üzerinde tensor parallelism** kullanan resmi serving örnekleri sunmaktadır.
Self-hosted deployment için önerilen referans konfigürasyonlar:
- **Tercih edilen:** 8× H200 sınıfı GPU
- **Alternatif:** precision, bağlam uzunluğu, runtime ayarları ve kullanılabilir bellek payına bağlı olarak 8× H100 sınıfı GPU
- **Sadece metin tabanlı dağıtımlar:** vision encoder `--language-model-only` ile devre dışı bırakılarak bellek baskısı azaltılabilir
> Not: donanım gereksinimleri; precision, bağlam uzunluğu, KV cache ayarları, batch size ve multimodal girişlerin açık olup olmamasına göre ciddi şekilde değişir. Bu nedenle yukarıdaki konfigürasyonlar evrensel minimum gereksinim olarak değil, pratik dağıtım referansı olarak değerlendirilmelidir.
### Pratik Rehber
#### Tam model dağıtımı
Orijinal model ağırlıklarıyla kullanımda bu model, **yüksek seviye çoklu GPU sunucu modeli** olarak düşünülmelidir.
Pratik bir başlangıç seviyesi şunları içerir:
- yüksek belleğe sahip birden fazla datacenter GPU
- tercihen hızlı GPU-GPU interconnect
- yüksek CPU RAM kapasitesi
- hızlı NVMe depolama
- Linux tabanlı inference ortamı
#### Resmi serving örnekleri
Upstream model kartında hem SGLang hem de vLLM için **8 GPU üzerinde tensor parallelism** kullanan serving örnekleri bulunmaktadır.
Bu nedenle standart, quantize edilmemiş serving için dokümante edilebilecek en güvenli referans noktası **8 GPU dağıtımıdır**.
#### Sadece metin kullanımı
Upstream vLLM örneğinde ayrıca `--language-model-only` seçeneği de yer alır. Bu seçenek vision encoder'ı ve multimodal profiling'i devre dışı bırakarak KV cache için daha fazla bellek açar. Sadece metin tabanlı iş yüklerinde faydalı olabilir.
### Öneri
Çoğu production ekip için en mantıklı yaklaşım:
1. **vLLM** veya **SGLang** gibi özel bir serving stack ile başlamak
2. gerçek bağlam uzunluğu ve batch profiliyle benchmark almak
3. vision gerekmiyorsa text-only modunu kullanmak
4. daha pratik altyapı için optimize / sıkıştırılmış varyantları değerlendirmek
## Yazılım Gereksinimleri
Önerilen ortam:
- Python 3.10+
- Linux
- CUDA destekli GPU altyapısı
- Şu runtime'lardan biri:
- Transformers
- vLLM
- SGLang
- KTransformers
Yaygın bağımlılıklar şunları içerebilir:
- `torch`
- `transformers`
- `torchvision`
- `pillow`
Kullandığınız serving framework'üne göre ek bağımlılıklar gerekebilir.
## Hızlı Başlangıç
Transformers kurulumu:
pip install "transformers[serving] @ git+https://github.com/huggingface/transformers.git@main"
Temel yükleme örneği:
from transformers import AutoProcessor, AutoModelForImageTextToText
model_id = "Jetlink/JetLLMPremium-3.5"
processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForImageTextToText.from_pretrained(
model_id,
trust_remote_code=True,
)
## Serving Örnekleri
### vLLM
vllm serve Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tensor-parallel-size 8 \
--max-model-len 262144 \
--reasoning-parser qwen3
### vLLM Tool Use ile
vllm serve Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tensor-parallel-size 8 \
--max-model-len 262144 \
--reasoning-parser qwen3 \
--enable-auto-tool-choice \
--tool-call-parser qwen3_coder
### vLLM sadece metin modu
vllm serve Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tensor-parallel-size 8 \
--max-model-len 262144 \
--reasoning-parser qwen3 \
--language-model-only
### SGLang
python -m sglang.launch_server \
--model-path Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tp-size 8 \
--mem-fraction-static 0.8 \
--context-length 262144 \
--reasoning-parser qwen3
### SGLang Tool Use ile
python -m sglang.launch_server \
--model-path Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tp-size 8 \
--mem-fraction-static 0.8 \
--context-length 262144 \
--reasoning-parser qwen3 \
--tool-call-parser qwen3_coder
### SGLang Multi-Token Prediction (MTP) ile
python -m sglang.launch_server \
--model-path Jetlink/JetLLMPremium-3.5 \
--port 8000 \
--tp-size 8 \
--mem-fraction-static 0.8 \
--context-length 262144 \
--reasoning-parser qwen3 \
--speculative-algo NEXTN \
--speculative-num-steps 3 \
--speculative-eagle-topk 1 \
--speculative-num-draft-tokens 4
## Uzun Bağlam Notları
JetLLMPremium-3.5 yerel olarak **262.144 token** destekler.
Bu pencereyi aşan görevlerde upstream dokümantasyonu; Transformers, vLLM, KTransformers ve SGLang gibi framework'ler tarafından desteklenen **YaRN** benzeri uzun bağlam ölçekleme tekniklerini önermektedir.
## Güçlü Yönler
- çok yüksek kapasiteli multimodal model
- güçlü uzun bağlam desteği
- toplam parametre sayısına kıyasla verimli aktif hesaplama sağlayan MoE tasarımı
- geniş çok dilli destek
- modern yüksek throughput serving framework'leriyle uyumluluk
- gelişmiş agentic ve kurumsal dağıtımlar için uygunluk
## Sınırlamalar
- ciddi altyapı gerektirir
- uzun bağlam bellek baskısını ciddi şekilde artırır
- multimodal kullanım ek hesaplama ve bellek maliyeti getirir
- orijinal ağırlıklar consumer-grade tek GPU ortamları için uygun değildir
- deployment karakteristiği framework ve konfigürasyona göre ciddi biçimde değişir
## Kapsam Dışı / Dikkat Gerektiren Kullanımlar
Diğer frontier-scale multimodal language model'lerde olduğu gibi, model çıktıları şu alanlarda insan denetimi olmadan kullanılmamalıdır:
- tıbbi karar verme
- hukuki tavsiye
- güvenlik kritik otomasyon
- yüksek riskli finansal kararlar
- korumasız tam otonom müşteri aksiyonları
İnsan incelemesi, politika kontrolleri ve tool seviyesinde doğrulama güçlü şekilde önerilir.
## Lisans
Bu depo, upstream sürümle aynı lisansı takip eder.
- **Lisans:** Apache-2.0
- Geçerli şartlar için upstream Qwen deposu ve lisans metni incelenmelidir.
Modeli yeniden dağıtıyor, fine-tune ediyor, quantize ediyor veya başka şekilde değiştiriyorsan; kullanımının upstream lisans ve attribution gereklilikleriyle uyumlu olduğundan emin olmalısın.
## Atıf
Orijinal model ve araştırma yayını **Qwen** ekibine aittir.
Upstream model:
- `Qwen/Qwen3.5-397B-A17B`
Bu depo, kurum tarafından yönetilen bir kopyadır ve **orijinal upstream kaynak değildir**.
## Atıf / Citation
Bu modeli araştırma, değerlendirme veya production dokümantasyonunda kullanıyorsan, lütfen orijinal Qwen sürümüne atıf yap.
```bibtex
@misc{qwen3.5,
title = {Qwen3.5 Technical Report},
author = {Qwen Team},
year = {2026},
publisher = {Alibaba Cloud},
howpublished = {\url{https://huggingface.co/Qwen/Qwen3.5-397B-A17B}}
}
```
|