Text Generation
Transformers
Safetensors
English
markupdm
graphic design
design completion
multimodal
markup document
custom_code
Instructions to use cyberagent/markupdm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cyberagent/markupdm with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cyberagent/markupdm", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("cyberagent/markupdm", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use cyberagent/markupdm with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cyberagent/markupdm" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cyberagent/markupdm", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/cyberagent/markupdm
- SGLang
How to use cyberagent/markupdm 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 "cyberagent/markupdm" \ --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": "cyberagent/markupdm", "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 "cyberagent/markupdm" \ --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": "cyberagent/markupdm", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use cyberagent/markupdm with Docker Model Runner:
docker model run hf.co/cyberagent/markupdm
File size: 1,835 Bytes
327fa8d | 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 | import torch
import torch.nn.functional as F
def fixed_cross_entropy(
source,
target,
num_items_in_batch: int | None = None,
ignore_index: int = -100,
weight=None,
**kwargs,
):
reduction = "sum" if num_items_in_batch is not None else "mean"
loss = F.cross_entropy(
source,
target,
ignore_index=ignore_index,
reduction=reduction,
weight=weight,
)
if reduction == "sum":
loss = loss / num_items_in_batch
return loss
def WeightedCausalLMLoss(
logits,
labels,
image_vocab_size: int,
image_loss_weight: float = 1.0,
image_token_ratio: float = 2.4,
num_items_in_batch: int | None = None,
ignore_index: int = -100,
**kwargs,
):
# Upcast to float if we need to compute the loss to avoid potential precision issues
logits = logits.float()
labels = labels.to(logits.device)
# Shift so that tokens < n predict n
labels = F.pad(labels, (0, 1), value=ignore_index)
shift_labels = labels[..., 1:].contiguous()
# Compute loss weight
if image_loss_weight != 1.0:
weight = torch.ones(logits.size(-1), device=logits.device)
weight[-image_vocab_size:] = image_loss_weight
else:
weight = None
# Flatten the tokens
logits = logits.view(-1, logits.size(-1))
shift_labels = shift_labels.view(-1)
# Enable model parallelism
shift_labels = shift_labels.to(logits.device)
loss = fixed_cross_entropy(
logits,
shift_labels,
num_items_in_batch,
ignore_index,
weight=weight,
**kwargs,
)
# Scale the loss
if image_loss_weight != 1.0:
denom = 1.0 + (image_token_ratio * image_loss_weight)
scale = (1.0 + image_token_ratio) / denom
loss = scale * loss
return loss
|