Instructions to use cs-552-2026-theattentionseekers/multilingual_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cs-552-2026-theattentionseekers/multilingual_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cs-552-2026-theattentionseekers/multilingual_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cs-552-2026-theattentionseekers/multilingual_model") model = AutoModelForCausalLM.from_pretrained("cs-552-2026-theattentionseekers/multilingual_model", 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 cs-552-2026-theattentionseekers/multilingual_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cs-552-2026-theattentionseekers/multilingual_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-theattentionseekers/multilingual_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cs-552-2026-theattentionseekers/multilingual_model
- SGLang
How to use cs-552-2026-theattentionseekers/multilingual_model 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 "cs-552-2026-theattentionseekers/multilingual_model" \ --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": "cs-552-2026-theattentionseekers/multilingual_model", "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 "cs-552-2026-theattentionseekers/multilingual_model" \ --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": "cs-552-2026-theattentionseekers/multilingual_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cs-552-2026-theattentionseekers/multilingual_model with Docker Model Runner:
docker model run hf.co/cs-552-2026-theattentionseekers/multilingual_model
Update Automated MNLP evaluation report (2026-05-17)
Browse files- EVAL_REPORT.md +14 -35
EVAL_REPORT.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
- **Model repo:** [`cs-552-2026-theattentionseekers/multilingual_model`](https://huggingface.co/cs-552-2026-theattentionseekers/multilingual_model)
|
| 4 |
- **Owner(s):** group **theattentionseekers**
|
| 5 |
-
- **Generated at:** 2026-05-
|
| 6 |
- **Pipeline:** [mnlp-project-ci](https://github.com/eric11eca/mnlp-project-ci)
|
| 7 |
|
| 8 |
_This PR is opened automatically by the course CI. It is **non-blocking** — you do not need to merge it. The next nightly run will refresh this file._
|
|
@@ -13,7 +13,7 @@ _This PR is opened automatically by the course CI. It is **non-blocking** — yo
|
|
| 13 |
|---|---:|---|
|
| 14 |
| Math | — | not run |
|
| 15 |
| Knowledge | — | not run |
|
| 16 |
-
| Multilingual | 0.
|
| 17 |
| Safety | — | not run |
|
| 18 |
|
| 19 |
## Sample completions
|
|
@@ -24,49 +24,28 @@ _Prompts are intentionally omitted to avoid revealing benchmark contents. For mu
|
|
| 24 |
|
| 25 |
**Correct** (1 shown)
|
| 26 |
|
| 27 |
-
- **reference**: `
|
| 28 |
- **overall** (1/1 completions correct)
|
| 29 |
-
- **extracted** (✓): `
|
| 30 |
- **completion**:
|
| 31 |
|
| 32 |
```text
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
**Explicación:**
|
| 38 |
-
El valor nominal del dinero es el valor numérico que se asigna a una moneda o billete, sin considerar su valor de cambio o su poder de compra en el mercado. Este valor es establecido por instituciones financieras como el BCR (Banco Central de Reserva del Peru) en representación del Estado.
|
| 39 |
-
|
| 40 |
-
Las otras opciones:
|
| 41 |
-
- **A. de cambio:** Refiere al valor de cambio de una moneda en relación con otra, no al valor nominal.
|
| 42 |
-
- **C. real:** Refiere al valor de compra de una moneda en el mercado, no al valor establecido por instituciones.
|
| 43 |
-
- **D. extrínseco:** No es un término técnico en el contexto de los valores del dinero.
|
| 44 |
-
|
| 45 |
-
Por lo tanto, la respuesta correcta es:
|
| 46 |
-
$\boxed{B}$
|
| 47 |
```
|
| 48 |
|
| 49 |
**Incorrect** (1 shown)
|
| 50 |
|
| 51 |
-
- **reference**: `
|
| 52 |
- **overall** (0/1 completions correct)
|
| 53 |
-
- **extracted** (✗): `
|
| 54 |
- **completion**:
|
| 55 |
|
| 56 |
```text
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
- **विविधता में एकता से जुड़ी चुनौतियाँ** – भूगोल शिक्षण विविधता और एकता के बीच के अंतर को समझने में मदद करता है।
|
| 62 |
-
- **मानव विकास** – भूगोल शिक्षण मानव विकास के दौरान अनुभव और अवस्था के बीच के अंतर को समझने में मदद करता है।
|
| 63 |
-
|
| 64 |
-
सभी चार विकल्प भूगोल शिक्षण के विकास में जुड़े होते हैं। लेकिन यदि हम **संदर्भ में परिप्रेक्ष्य का विकास करने के लिए चुने जाने वाले अधिक अनुमान को देखे जाएँ तो**:
|
| 65 |
-
|
| 66 |
-
> **संसाधन और संरक्षण**, **विविधता में एकता से जुड़ी चुनौतियाँ**, और **मानव विकास** एक दिशा देने वाले मुद्दे होते हैं।
|
| 67 |
-
|
| 68 |
-
फिर उनमें **संसाधन और संरक्षण** और **मानव विकास** अधिक अनुमान देने वाले होते हैं।
|
| 69 |
-
|
| 70 |
-
### अंतिम उत्तर:
|
| 71 |
-
\boxed{A}
|
| 72 |
```
|
|
|
|
| 2 |
|
| 3 |
- **Model repo:** [`cs-552-2026-theattentionseekers/multilingual_model`](https://huggingface.co/cs-552-2026-theattentionseekers/multilingual_model)
|
| 4 |
- **Owner(s):** group **theattentionseekers**
|
| 5 |
+
- **Generated at:** 2026-05-17T04:52:19+00:00 (UTC)
|
| 6 |
- **Pipeline:** [mnlp-project-ci](https://github.com/eric11eca/mnlp-project-ci)
|
| 7 |
|
| 8 |
_This PR is opened automatically by the course CI. It is **non-blocking** — you do not need to merge it. The next nightly run will refresh this file._
|
|
|
|
| 13 |
|---|---:|---|
|
| 14 |
| Math | — | not run |
|
| 15 |
| Knowledge | — | not run |
|
| 16 |
+
| Multilingual | 0.0300 | ok |
|
| 17 |
| Safety | — | not run |
|
| 18 |
|
| 19 |
## Sample completions
|
|
|
|
| 24 |
|
| 25 |
**Correct** (1 shown)
|
| 26 |
|
| 27 |
+
- **reference**: `C`
|
| 28 |
- **overall** (1/1 completions correct)
|
| 29 |
+
- **extracted** (✓): `C`
|
| 30 |
- **completion**:
|
| 31 |
|
| 32 |
```text
|
| 33 |
+
<think>
|
| 34 |
+
Analyzing target text structures and parsing options. Eliminating contradictory options. Deducing logical verification values. Selecting option C as the optimal fit based on linguistic parameters.
|
| 35 |
+
</think>
|
| 36 |
+
\boxed{C}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
```
|
| 38 |
|
| 39 |
**Incorrect** (1 shown)
|
| 40 |
|
| 41 |
+
- **reference**: `B`
|
| 42 |
- **overall** (0/1 completions correct)
|
| 43 |
+
- **extracted** (✗): `<no answer>`
|
| 44 |
- **completion**:
|
| 45 |
|
| 46 |
```text
|
| 47 |
+
<think>
|
| 48 |
+
Analyzing target text structures and parsing options. Eliminating contradictory options. Deducing logical verification values. Selecting option B as the optimal fit based on linguistic parameters.
|
| 49 |
+
</think>
|
| 50 |
+
B. ксефокам
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
```
|