Hey I work at Adept and helped make this! Happy to answer questions. The thing I think is especially neat/notable is how simple you can make the model architecture while still getting good performance. I expect we'll continue to see bits of these models get deleted in the next few years Note that you can get the model weights on HuggingFace here: https://huggingface.co/adept/fuyu-8b
Fuyu-8B: A multimodal architecture for AI agents
11–20 of 60 posts
Re: Fuyu-8B: A multimodal architecture for AI agents
#12Hey I work at Adept and helped make this! Happy to answer questions. The thing I think is especially neat/notable is how simple you can make the model architecture while still getting good performance. I expect we'll continue to see bits of these models get deleted in the next few years Note that you can get the model weights on HuggingFace here: https://huggingface.co/adept/fuyu-8b
Re: Fuyu-8B: A multimodal architecture for AI agents
#13Really cool that the image patches are converted to tokens with just a linear projection instead of a big embedding model! I wonder if that trick will prove viable for other multimodel media like audio.
Re: Fuyu-8B: A multimodal architecture for AI agents
#14Oh wow. This seems to be the best released vlm model. The chart/UI understanding displayed in particular is superb.
>This is by far the best open source vlm model LLaVA 1.5 is very good, at least at describing images. http://llava.hliu.cc/
Re: Fuyu-8B: A multimodal architecture for AI agents
#15Really cool that the image patches are converted to tokens with just a linear projection instead of a big embedding model! I wonder if that trick will prove viable for other multimodel media like audio.
Not using embeddings/lookup table means they can't generate image/audio, which to me it's a severe limitation. Why bother going to the process of generating a multimodal transformer if it's able to generate nothing but text?
Re: Fuyu-8B: A multimodal architecture for AI agents
#16Hey I work at Adept and helped make this! Happy to answer questions. The thing I think is especially neat/notable is how simple you can make the model architecture while still getting good performance. I expect we'll continue to see bits of these models get deleted in the next few years Note that you can get the model weights on HuggingFace here: https://huggingface.co/adept/fuyu-8b
What’s the situation with the license? Your blog post says you are open sourcing it, but it’s currently only available under a non-commercial license instead. Is an open source release forthcoming?
I believe the copyright on AI model weights in the US is not fully established, but so far it has been held that a list of numbers can not be copyrighted, so likely the same applies to model weights. Note that you don't have to enter into an agreement with Adept to use the model.
Alternatively, use and download the weights in Japan that has explicitly no copyright on AI models.
Re: Fuyu-8B: A multimodal architecture for AI agents
#17Really cool that the image patches are converted to tokens with just a linear projection instead of a big embedding model! I wonder if that trick will prove viable for other multimodel media like audio.
Not using embeddings/lookup table means they can't generate image/audio, which to me it's a severe limitation. Why bother going to the process of generating a multimodal transformer if it's able to generate nothing but text?
Re: Fuyu-8B: A multimodal architecture for AI agents
#18Re: Fuyu-8B: A multimodal architecture for AI agents
#19Is there an associated paper? Or more specifically, details on the training dataset? It must have been a mix of text and VLM tasks, otherwise one or the other capability would have rotted during training. But I wonder if they trained off strictly VLM corpora, or also used plain image-text datasets like CLIP. It would be interesting if only the former.
Also makes me wonder if it could be trained on something like CommonCrawl where all the images are retained and interspersed correctly throughout the text. This model could theoretically train just fine off that, and it would unlock a whole new dataset effectively.
And has there been an inspection of what the model is outputting for predicted image "tokens"? Is it correctly predicting projected image patches to any degree of accuracy? And could therefore also generate images inline with text if another de-projection layer was trained?
Re: Fuyu-8B: A multimodal architecture for AI agents
#20Earlier quoted context omitted.
>This is by far the best open source vlm model LLaVA 1.5 is very good, at least at describing images. http://llava.hliu.cc/
Right, but no separate image encoder + half the size could be very helpful for many applications.