How to use facebook/sam3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("mask-generation", model="facebook/sam3")
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("facebook/sam3") model = AutoModel.from_pretrained("facebook/sam3")
Is it possible to train sam3 with both IMAGE + TEXT?
same question, did a little bit on detection but the model performed worse, suspecting it got confused at the finetuning concept with its own pre-trained data
· Sign up or log in to comment