Text Generation
Transformers
Safetensors
English
qwen2
chat
conversational
text-generation-inference
Instructions to use offelia39/iolai-2026-baseline with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use offelia39/iolai-2026-baseline with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="offelia39/iolai-2026-baseline") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("offelia39/iolai-2026-baseline") model = AutoModelForCausalLM.from_pretrained("offelia39/iolai-2026-baseline", device_map="auto") 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 offelia39/iolai-2026-baseline with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "offelia39/iolai-2026-baseline" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "offelia39/iolai-2026-baseline", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/offelia39/iolai-2026-baseline
- SGLang
How to use offelia39/iolai-2026-baseline 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 "offelia39/iolai-2026-baseline" \ --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": "offelia39/iolai-2026-baseline", "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 "offelia39/iolai-2026-baseline" \ --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": "offelia39/iolai-2026-baseline", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use offelia39/iolai-2026-baseline with Docker Model Runner:
docker model run hf.co/offelia39/iolai-2026-baseline
File size: 2,967 Bytes
0aa104c 16c4189 0aa104c 16c4189 0aa104c 16c4189 0aa104c 16c4189 0aa104c 16c4189 0aa104c 16c4189 0aa104c 16c4189 0aa104c 16c4189 0aa104c 16c4189 | 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 | import os
# The repo is the working directory at run time, and there is no network.
os.environ["HF_HUB_OFFLINE"] = "1"
os.environ["TRANSFORMERS_OFFLINE"] = "1"
MODEL_ID = "."
MAX_NEW_TOKENS = 1536 # room to reason; lower = faster but answers may get cut off
import re
import json
import pandas as pd
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
tok = AutoTokenizer.from_pretrained(MODEL_ID)
model = AutoModelForCausalLM.from_pretrained(
MODEL_ID, torch_dtype=torch.float16, device_map="auto",
).eval()
# ===== your prompt (the main lever: how you ask the model) =====
SYSTEM = (
"You solve International Linguistics Olympiad problems by reasoning from the "
"data you are given. You may meet a task type you have never seen: read the "
"instruction and the examples, and answer in the same form they use. "
"Common task types and what to give -- "
"translation: the translated form only, in the language the task asks for; "
"fill_blanks: only the missing form for each blank; "
"match_letters: only the option letter (for example A, B, C); "
"text_to_num: the number in digits; "
"num_to_text: the number written out in words, in the language asked; "
"any other type: give exactly what the instruction asks, nothing else. "
"Reason step by step first. Then write a line that says exactly FINAL ANSWERS: "
"and, below it, one answer per line in the order the items are asked -- the "
"bare answer only, no numbering, no quotes, no extra text."
)
# ===== how you read the answers back (must match the format your prompt asks for) =====
def parse_answers(text):
"""Keep only the lines after the last 'FINAL ANSWERS:' marker, one answer per line."""
marker = list(re.finditer(r"(?im)^\s*final answers?\s*:?\s*$", text))
if marker:
text = text[marker[-1].end():]
answers = []
for line in text.splitlines():
line = re.sub(r"^\s*\d+[.)]\s*", "", line).strip() # drop "1. " / "2) " if the model adds it
if line:
answers.append(line)
return answers
df = pd.read_csv("/tmp/data/test.csv", dtype=str).fillna("")
rows = []
for _, r in df.iterrows():
messages = [
{"role": "system", "content": SYSTEM},
{"role": "user", "content": f"{r['context'].strip()}\n\n{r['query'].strip()}"},
]
enc = tok.apply_chat_template(
messages, add_generation_prompt=True, return_tensors="pt", return_dict=True,
).to(model.device)
with torch.no_grad():
out = model.generate(**enc, max_new_tokens=MAX_NEW_TOKENS, do_sample=False)
text = tok.decode(out[0][enc["input_ids"].shape[-1]:], skip_special_tokens=True).strip()
answers = parse_answers(text)
rows.append({"id": r["id"], "pred": json.dumps(answers, ensure_ascii=False)})
print(f"{len(rows)}/{len(df)} done", flush=True)
pd.DataFrame(rows).to_csv("submission.csv", index=False)
print("wrote submission.csv", flush=True) |