Instructions to use BAAI/RoboBrain2.0-7B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use BAAI/RoboBrain2.0-7B with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("BAAI/RoboBrain2.0-7B") model = AutoModelForImageTextToText.from_pretrained("BAAI/RoboBrain2.0-7B") - Notebooks
- Google Colab
- Kaggle
Add missing pipeline tag and library name
#1
by nielsr HF Staff - opened
This PR adds the missing pipeline_tag and library_name to the model card metadata. The pipeline_tag: robotics tag is added because the model is applied in robotics as described in the paper and README. The library_name: transformers tag is added as indicated by the Python code examples in the README.
tanhuajie2001 changed pull request status to merged