This is the open source implementation of the SOTA multi-modality foundation model "PaLM-E: An Embodied Multimodal Language Model" from Google, PALM-E is a single large embodied multimodal model, that can address a variety of embodied reasoning tasks, from a variety of observation modalities, on multiple embodiments, and further, exhibits positive transfer: the model benefits from diverse joint training across internet-scale language, vision, and visual-language domains.
pip install palme
import torch
from palme import PalmE
#usage
img = torch.randn(1, 3, 256, 256)
caption_tokens = torch.randint(0, 4)
model = PalmE()
output = model(img, caption_tokens)
Your brilliance is needed! Join us, and together, let's make PALM-E even more awe-inspiring:
- Get Your Copy: Fork the PALM-E repo.
- Make It Local: Clone your fork.
- Prep Your Tools: Install the necessities.
- Discover & Innovate: Dive into the code.
- Craft Your Magic: Branch and code away.
- Show & Tell: Push your changes and craft a pull request.
π Fixes, π¨ enhancements, π docs, or π‘ ideas β all are welcome! Let's shape the future of AI, hand in hand.
- π΅οΈ Verify decoder configurations.
- π Recreate the training strategy detailed in the paper.
- π Train on the datasets used in the paper.
@article{driess2023palme,
title={PaLM-E: An Embodied Multimodal Language Model},
author={Driess, Danny and Xia, Fei and Sajjadi, Mehdi S. M. and Lynch, Corey and Chowdhery, Aakanksha and Ichter, Brian and Wahid, Ayzaan and Tompson, Jonathan and Vuong, Quan and Yu, Tianhe and Huang, Wenlong and Chebotar, Yevgen and Sermanet, Pierre and Duckworth, Daniel and Levine, Sergey and Vanhoucke, Vincent and Hausman, Karol and Toussaint, Marc and Greff, Klaus and Zeng, Andy and Mordatch, Igor and Florence, Pete},
journal={arXiv preprint arXiv:2303.03378},
year={2023},
url={https://doi.org/10.48550/arXiv.2303.03378}
}