OpenmindAGI/functiongemma-finetuned-g1-multilingual
0338
FunctionGemma Robot Actions (Multilingual)
A fine-tuned FunctionGemma 270M model that converts natural language into structured robot action and emotion function calls. Supports 6 languages with 98% accuracy at ~59ms on NVIDIA Jetson AGX Thor.
Supported Languages
π¬π§ English Β· π¨π³ δΈζ Β· π―π΅ ζ₯ζ¬θͺ Β· π«π· FranΓ§ais Β· π©πͺ Deutsch Β· πͺπΈ EspaΓ±ol
Example
Input: "Can you shake hands with me?" β robot_action(shake_hand) + show_emotion(happy)
Input: "θ·ζζ‘ζ" β robot_action(shake_hand) + show_emotion(happy)
Input: "ζ‘ζγγ¦γγ γγ" β robot_action(shake_hand) + show_emotion(happy)
Input: "Serrez-moi la main" β robot_action(shake_hand) + show_emotion(happy)
Input: "Gib mir die Hand" β robot_action(shake_hand) + show_emotion(happy)
Input: "Dame la mano" β robot_action(shake_hand) + show_emotion(happy)
Input: "ζδ»ε€©εΏζ
δΈε₯½" β robot_action(stand_still) + show_emotion(sad)
Input: "γγγ―δ½γ§γγοΌ" β robot_action(stand_still) + show_emotion(confused)
Input: "Raconte-moi une blague" β robot_action(stand_still) + show_emotion(think)Supported Actions
Supported Emotions
Constrained decoding uses 2 forward passes instead of 33 autoregressive steps, achieving ~18x speedup over standard model.generate().
Training Details
Multilingual training data was generated using Claude API β 2 natural phrasings per language per English prompt, resulting in diverse and natural expressions rather than literal translations.
Usage
Quick Start
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model = AutoModelForCausalLM.from_pretrained(
"OpenmindAGI/functiongemma-finetuned-g1-multilingual",
torch_dtype=torch.bfloat16,
device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained("OpenmindAGI/functiongemma-finetuned-g1-multilingual")
model.eval()Citation
@misc{openmindagi-functiongemma-multilingual,
title={FunctionGemma Robot Actions (Multilingual)},
author={OpenmindAGI},
year={2025},
url={https://huggingface.co/OpenmindAGI/functiongemma-finetuned-g1-multilingual}
}License
Fine-tuned from google/functiongemma-270m-it under Apache 2.0.
