Text Generation
Transformers
Safetensors
PEFT
English
qwen2
qwen
qwen2.5
lora
fine-tuned
education
activity-generation
myvillage
conversational
text-generation-inference
Instructions to use mjpsm/activity-generation-model-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mjpsm/activity-generation-model-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mjpsm/activity-generation-model-v1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("mjpsm/activity-generation-model-v1") model = AutoModelForCausalLM.from_pretrained("mjpsm/activity-generation-model-v1", 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]:])) - PEFT
How to use mjpsm/activity-generation-model-v1 with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mjpsm/activity-generation-model-v1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mjpsm/activity-generation-model-v1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mjpsm/activity-generation-model-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mjpsm/activity-generation-model-v1
- SGLang
How to use mjpsm/activity-generation-model-v1 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 "mjpsm/activity-generation-model-v1" \ --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": "mjpsm/activity-generation-model-v1", "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 "mjpsm/activity-generation-model-v1" \ --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": "mjpsm/activity-generation-model-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use mjpsm/activity-generation-model-v1 with Docker Model Runner:
docker model run hf.co/mjpsm/activity-generation-model-v1
File size: 11,755 Bytes
2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe cfd1681 2377abe | 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 | ---
language:
- en
license: apache-2.0
base_model:
- Qwen/Qwen2.5-0.5B-Instruct
library_name: transformers
pipeline_tag: text-generation
tags:
- qwen
- qwen2.5
- transformers
- peft
- lora
- fine-tuned
- education
- activity-generation
- myvillage
datasets:
- synthetic
model-index:
- name: Activity Generation Model v1
results: []
---
# Activity Generation Model v1
`activity-generation-model-v1` is a fine-tuned version of **Qwen2.5-0.5B-Instruct** designed to generate the next educational activity for a learner based on three pieces of context:
1. The learner's **village goal**
2. The learner's **previous activity**
3. The learner's **knowledge submission**
The model generates a structured activity containing:
* `title`
* `description`
* `instructions`
The model was developed for the **MyVillage** learning environment, where learner knowledge submissions can be used to determine an appropriate next activity that builds on demonstrated knowledge while continuing progress toward a larger village goal.
## Model Details
* **Base Model:** `Qwen/Qwen2.5-0.5B-Instruct`
* **Model Type:** Causal Language Model
* **Approximate Base Model Size:** 0.5B parameters
* **Fine-Tuning Method:** Supervised Fine-Tuning with LoRA
* **Frameworks:** Transformers, TRL, PEFT
* **Primary Language:** English
* **Task:** Educational activity generation
* **Output Format:** JSON
The LoRA adapter was merged into the base Qwen model after training, producing a standalone model that can be loaded directly with Hugging Face Transformers.
## Model Inputs
The model expects three pieces of information.
### Village Goal
The larger learning objective that the student's activities should move toward.
### Previous Activity
The title of the activity the student completed before submitting their knowledge.
### Knowledge Submission
A description of what the student learned, completed, discovered, or demonstrated during the previous activity.
The expected prompt structure is:
```text
Village goal:
{village_goal}
Previous activity:
{previous_activity_title}
Knowledge submission:
{knowledge_submission}
Create the student's next activity.
```
## Model Output
The model is trained to return valid JSON using exactly the following schema:
```json
{
"title": "activity title",
"description": "activity description",
"instructions": "activity instructions"
}
```
The generated activity should build directly on the learner's knowledge submission while continuing to move the learner toward the village goal.
## Training Data
The model was fine-tuned using a synthetic activity-generation dataset containing **1,000 examples**.
Each training record follows the general structure:
```json
{
"input": {
"village_goal": "...",
"previous_activity_title": "...",
"knowledge_submission": "..."
},
"output": {
"title": "...",
"description": "...",
"instructions": "..."
}
}
```
The training task teaches the model to map learner context to an appropriate next educational activity.
## Fine-Tuning Configuration
The model was fine-tuned using LoRA with the following configuration:
```text
Base model: Qwen/Qwen2.5-0.5B-Instruct
Epochs: 3
Maximum sequence length: 1024
Learning rate: 2e-4
Learning-rate scheduler: Cosine
Per-device training batch size: 4
Gradient accumulation steps: 4
Effective batch size: 16
Weight decay: 0.01
LoRA rank: 16
LoRA alpha: 32
LoRA dropout: 0.05
Random seed: 42
```
LoRA was applied to the following modules:
```text
q_proj
k_proj
v_proj
o_proj
gate_proj
up_proj
down_proj
```
The best checkpoint was selected using validation loss.
After training, the LoRA adapter was merged into the original Qwen2.5-0.5B-Instruct model using PEFT's `merge_and_unload()` functionality.
## System Prompt
The model was fine-tuned using the following system-level behavior:
```text
You are an educational activity generator for MyVillage.
Your job is to create exactly one logical next learning activity for a student.
You will receive:
1. The goal of the student's village.
2. The title of the student's previous activity.
3. The student's knowledge submission describing what they learned or completed.
Create a new activity that:
- directly builds on the student's knowledge submission;
- moves the student toward the village goal;
- does not simply repeat the previous activity;
- is specific and actionable;
- uses clear student-facing language;
- includes a concrete task or deliverable.
Return valid JSON only.
Return exactly these fields:
{
"title": "activity title",
"description": "activity description",
"instructions": "activity instructions"
}
Do not include markdown.
Do not include commentary.
Do not include additional fields.
```
## How to Use
Install the required packages:
```bash
pip install transformers accelerate torch
```
Then load the model with Hugging Face Transformers.
> Replace `mjpsm/activity-generation-model-v1` if your Hugging Face repository uses a different name.
```python
import json
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
MODEL_ID = "mjpsm/activity-generation-model-v1"
tokenizer = AutoTokenizer.from_pretrained(MODEL_ID)
model = AutoModelForCausalLM.from_pretrained(
MODEL_ID,
torch_dtype="auto",
device_map="auto",
)
model.eval()
```
Define the system prompt:
```python
SYSTEM_PROMPT = """You are an educational activity generator for MyVillage.
Your job is to create exactly one logical next learning activity for a student.
You will receive:
1. The goal of the student's village.
2. The title of the student's previous activity.
3. The student's knowledge submission describing what they learned or completed.
Create a new activity that:
- directly builds on the student's knowledge submission;
- moves the student toward the village goal;
- does not simply repeat the previous activity;
- is specific and actionable;
- uses clear student-facing language;
- includes a concrete task or deliverable.
Return valid JSON only.
Return exactly these fields:
{
"title": "activity title",
"description": "activity description",
"instructions": "activity instructions"
}
Do not include markdown.
Do not include commentary.
Do not include additional fields.
"""
```
Create a generation function:
```python
def generate_activity(
village_goal,
previous_activity_title,
knowledge_submission,
max_new_tokens=300,
):
user_message = f"""Village goal:
{village_goal}
Previous activity:
{previous_activity_title}
Knowledge submission:
{knowledge_submission}
Create the student's next activity."""
messages = [
{
"role": "system",
"content": SYSTEM_PROMPT,
},
{
"role": "user",
"content": user_message,
},
]
prompt = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
)
inputs = tokenizer(
prompt,
return_tensors="pt",
).to(model.device)
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=max_new_tokens,
do_sample=False,
repetition_penalty=1.05,
pad_token_id=tokenizer.pad_token_id,
eos_token_id=tokenizer.eos_token_id,
)
generated_tokens = outputs[
0,
inputs["input_ids"].shape[1]:
]
response = tokenizer.decode(
generated_tokens,
skip_special_tokens=True,
).strip()
try:
return json.loads(response)
except json.JSONDecodeError:
return {
"error": "The model did not return valid JSON.",
"raw_output": response,
}
```
Generate an activity:
```python
activity = generate_activity(
village_goal="Learn how to build and train machine learning models",
previous_activity_title="Create a phishing URL dataset",
knowledge_submission="""
I created a dataset containing legitimate and phishing URLs.
I loaded it into Google Colab and cleaned several missing values.
I have not trained a machine learning model with it yet.
""",
)
print(
json.dumps(
activity,
indent=2,
ensure_ascii=False,
)
)
```
An output may look similar to:
```json
{
"title": "Train a Phishing URL Classification Model",
"description": "Build on your cleaned phishing URL dataset by training a machine learning model that can distinguish between legitimate and phishing URLs.",
"instructions": "Split your cleaned dataset into training and testing sets. Select a classification algorithm, train the model using the training data, and evaluate its performance on the testing data. Record the model's accuracy and describe what the results tell you."
}
```
## Input and Output Flow
Conceptually, the model performs the following transformation:
```text
Village Goal
+
Previous Activity
+
Knowledge Submission
|
v
Activity Generation Model
|
v
{
"title": "...",
"description": "...",
"instructions": "..."
}
```
The village goal provides the model with the learner's broader direction, while the previous activity and knowledge submission provide immediate context about the learner's current position.
## Intended Use
This model is intended for experimental educational activity generation.
Potential uses include:
* Generating personalized next-step learning activities
* Building learning progression systems
* Supporting activity recommendation workflows
* Generating activities from demonstrated learner knowledge
* Prototyping adaptive learning systems
The model is particularly designed for workflows where a learner completes an activity, submits what they learned, and then receives a new activity that extends that learning.
## Limitations
This is an experimental model and should not be treated as an autonomous educational decision-making system.
The model may:
* Generate activities that are too broad or too narrow
* Produce activities that do not perfectly align with a village goal
* Occasionally repeat concepts from a previous activity
* Generate invalid JSON
* Produce instructions that require additional clarification
* Perform less reliably on inputs substantially different from its training distribution
The model was trained using synthetic examples, so performance on real-world learner submissions should be evaluated separately.
Generated activities should be reviewed before being used in high-stakes educational settings.
## What This Model Does Not Predict
This version of the model does **not** predict:
* Activity type
* Estimated activity duration
* Student mastery score
* Activity completion status
Its responsibility is limited to generating:
```text
title
description
instructions
```
Other attributes can be generated or classified by separate models or application logic.
## Future Work
Potential future improvements include:
* Evaluation using real MyVillage knowledge submissions
* Larger and more diverse training datasets
* Automated activity-quality evaluation
* Village-goal alignment scoring
* Knowledge progression evaluation
* Comparison against larger teacher models
* Integration with a separate activity-type classification model
* API deployment for application integration
## Base Model
This model was fine-tuned from:
**Qwen2.5-0.5B-Instruct**
Developed by the Qwen team.
Base model repository:
`Qwen/Qwen2.5-0.5B-Instruct`
## Disclaimer
This model is a research and development prototype. Generated activities should be evaluated for relevance, accuracy, appropriateness, and educational quality before being presented to learners.
|