Image-Text-to-Text
Transformers
Safetensors
Korean
English
qwen3_5
korean
reasoning
darwin
evolutionary-merge
conversational
Instructions to use Warecube/Warecube-KO-27B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Warecube/Warecube-KO-27B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Warecube/Warecube-KO-27B") 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("Warecube/Warecube-KO-27B") model = AutoModelForImageTextToText.from_pretrained("Warecube/Warecube-KO-27B") 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 Warecube/Warecube-KO-27B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Warecube/Warecube-KO-27B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Warecube/Warecube-KO-27B", "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/Warecube/Warecube-KO-27B
- SGLang
How to use Warecube/Warecube-KO-27B 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 "Warecube/Warecube-KO-27B" \ --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": "Warecube/Warecube-KO-27B", "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 "Warecube/Warecube-KO-27B" \ --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": "Warecube/Warecube-KO-27B", "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 Warecube/Warecube-KO-27B with Docker Model Runner:
docker model run hf.co/Warecube/Warecube-KO-27B
fix lineage: Qwen-3.5-27B (great-gf) / Darwin-27B-Opus (gf)
Browse files
README.md
CHANGED
|
@@ -44,25 +44,27 @@ base_model:
|
|
| 44 |
```
|
| 45 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 46 |
β μ¦μ‘°λΆ (Great-Grandfather) β
|
| 47 |
-
β Qwen-3.
|
|
|
|
| 48 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 49 |
β
|
| 50 |
βΌ Darwin V7 μ§ν λ¨Έμ§
|
| 51 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 52 |
β μ‘°λΆ (Grandfather) β
|
| 53 |
-
β Darwin-
|
| 54 |
-
β -
|
|
|
|
|
|
|
| 55 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 56 |
β
|
| 57 |
-
βΌ νκ΅μ΄
|
| 58 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 59 |
β μλΉ (Father) β
|
| 60 |
-
β
|
| 61 |
β β
|
| 62 |
-
β - Darwin
|
| 63 |
-
β -
|
| 64 |
-
β - <think>
|
| 65 |
-
β - Apache 2.0 β
|
| 66 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 67 |
β
|
| 68 |
ΓΓ λ€μ κ΅λ°° ΓΓ
|
|
@@ -167,6 +169,6 @@ print(tokenizer.decode(out[0], skip_special_tokens=False))
|
|
| 167 |
|
| 168 |
## π€ μΆμ²
|
| 169 |
|
| 170 |
-
-
|
| 171 |
- μλ§: [NewenAI/QuettaLLMs-27B-Koreasoner-V3](https://huggingface.co/NewenAI/QuettaLLMs-27B-Koreasoner-V3)
|
| 172 |
- κ°λ¬Έ: Darwin family (Darwin V7 μ§νμ λ¨Έμ§ μ리μ¦)
|
|
|
|
| 44 |
```
|
| 45 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 46 |
β μ¦μ‘°λΆ (Great-Grandfather) β
|
| 47 |
+
β Qwen-3.5-27B β
|
| 48 |
+
β - λ©ν°λͺ¨λ¬ 28B λ² μ΄μ€ β
|
| 49 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 50 |
β
|
| 51 |
βΌ Darwin V7 μ§ν λ¨Έμ§
|
| 52 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 53 |
β μ‘°λΆ (Grandfather) β
|
| 54 |
+
β FINAL-Bench/Darwin-27B-Opus β
|
| 55 |
+
β - Darwin V7 μ§νμ μ μ β
|
| 56 |
+
β - GPQA 88.4% reasoning β
|
| 57 |
+
β - <think> νΈλ μ΄μ€ ν¨ν΄ β
|
| 58 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 59 |
β
|
| 60 |
+
βΌ νκ΅μ΄ νΉν μ§ν
|
| 61 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 62 |
β μλΉ (Father) β
|
| 63 |
+
β Darwin family Korean μ§κ³ β
|
| 64 |
β β
|
| 65 |
+
β - Darwin-27B-Opusμ νκ΅μ΄ νΉν νμ β
|
| 66 |
+
β - reasoning DNA 보쑴 β
|
| 67 |
+
β - <think> ν¨ν΄ μ μ§ β
|
|
|
|
| 68 |
ββββββββββββββββββββββββββββββββββββββββββββ
|
| 69 |
β
|
| 70 |
ΓΓ λ€μ κ΅λ°° ΓΓ
|
|
|
|
| 169 |
|
| 170 |
## π€ μΆμ²
|
| 171 |
|
| 172 |
+
- μ‘°λΆ: [FINAL-Bench/Darwin-27B-Opus](https://huggingface.co/FINAL-Bench/Darwin-27B-Opus)
|
| 173 |
- μλ§: [NewenAI/QuettaLLMs-27B-Koreasoner-V3](https://huggingface.co/NewenAI/QuettaLLMs-27B-Koreasoner-V3)
|
| 174 |
- κ°λ¬Έ: Darwin family (Darwin V7 μ§νμ λ¨Έμ§ μ리μ¦)
|