Text Generation
Transformers
Safetensors
qwen2
text-generation-inference
conversational
How to use from
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 "BlossomsAI/BloomVN-0.5B-ppo" \
    --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": "BlossomsAI/BloomVN-0.5B-ppo",
		"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 "BlossomsAI/BloomVN-0.5B-ppo" \
        --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": "BlossomsAI/BloomVN-0.5B-ppo",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links
Logo

🌟 BloomVN-0.5B-ppo

A fine-tuned multilingual model for Vietnamese language

📋 Overview

This model serves as a small-scale experiment (0.5B parameters) testing the Reinforcement Learning capabilities of veRL framework. The implementation uses PPO (Proximal Policy Optimization) method on a limited training dataset to evaluate veRL's performance and training behavior.

🔧 Method

The experimentation process was conducted using veRL, focusing on:

  • Implementation of PPO algorithm with a 0.5B parameter model
  • Running training experiments on a small dataset
  • Testing veRL's framework capabilities in handling RL tasks
  • Evaluating training efficiency and model behavior

This lightweight approach allowed us to assess veRL's performance in a controlled, small-scale environment.

📊 VLMU Benchmark

EVALUATION DATE STEM 🔬 SOCIAL SCIENCE 🌍 HUMANITIES 📚 OTHERS 🎯 AVG ⭐
07/02/2025 23.18 32.84 32.71 33.67 29.43

🤝 Contributors

Developed with ❤️ by BlossomAI


Star ⭐️ this repo if you find it valuable!
Downloads last month
107
Safetensors
Model size
0.5B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for BlossomsAI/BloomVN-0.5B-ppo

Finetuned
(693)
this model
Adapters
24 models
Quantizations
2 models

Dataset used to train BlossomsAI/BloomVN-0.5B-ppo