This is a pretrained FlowerVLA model for robotic manipulation trained on the LIBERO Spatial dataset.
Flower is an efficient Vision-Language-Action Flow policy for robot learning that only contains 1B parameters.
This checkpoint contains weights for the LIBERO Object challenge and achieves these results:
avg_seq_len success rate 0.9940705299377441
pick_up_the_alphabet_soup_and_place_it_in_the_basket with success 1.0
pick_up_the_cream_cheese_and_place_it_in_the_basket with success 0.9407051282051282
pick_up_the_salad_dressing_and_place_it_in_the_basket with success 1.0
pick_up_the_bbq_sauce_and_place_it_in_the_basket with success 1.0
pick_up_the_ketchup_and_place_it_in_the_basket with success 1.0
pick_up_the_tomato_sauce_and_place_it_in_the_basket with success 1.0
pick_up_the_butter_and_place_it_in_the_basket with success 1.0
pick_up_the_milk_and_place_it_in_the_basket with success 1.0
pick_up_the_chocolate_pudding_and_place_it_in_the_basket with success 1.0
pick_up_the_orange_juice_and_place_it_in_the_basket with success 1.0
Check out our full model implementation on Github
todo and follow the instructions in the readme to test the model on one of the environments.
1obs = {
2 "rgb_obs": {
3 "rgb_static": static_image,
4 "rgb_gripper": gripper_image
5 }
6}
7goal = {"lang_text": "pick up the blue cube"}
8action = model.step(obs, goal)
This model is released under the MIT license.