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 "Danielbrdz/Barcenas-3b-GRPO-ES" \
    --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": "Danielbrdz/Barcenas-3b-GRPO-ES",
		"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 "Danielbrdz/Barcenas-3b-GRPO-ES" \
        --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": "Danielbrdz/Barcenas-3b-GRPO-ES",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Barcenas 3b GRPO ES

Basado en el alpindale/Llama-3.2-3B-Instruct

Y entrenado con datos en español de Danielbrdz/gsm8k-ES

El objetivo de este LLM es usar el tipo de entrenamiento GRPO con datos 100% en español.

Tener un modelo pequeño que razone en español y que puede ejecutarse en la mayoría de computadoras.


Barcenas 3b GRPO ES

Based on alpindale/Llama-3.2-3B-Instruct

And trained with Spanish data from Danielbrdz/gsm8k-ES

The goal of this LLM is to use the GRPO training type with 100% Spanish data.

To have a small model that reasons in Spanish and that can be run on most computers.

Made with ❤️ in Guadalupe, Nuevo Leon, Mexico 🇲🇽

Downloads last month
10
Safetensors
Model size
3B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Danielbrdz/Barcenas-3b-GRPO-ES

Finetuned
(1643)
this model
Quantizations
1 model

Dataset used to train Danielbrdz/Barcenas-3b-GRPO-ES