Segment Anything Model
Collection
This collection contains models and demos of SAM and it's smaller friends. • 17 items • Updated • 7
# Load model directly
from transformers import AutoProcessor, AutoModelForMaskGeneration
processor = AutoProcessor.from_pretrained("merve/sam-finetuned")
model = AutoModelForMaskGeneration.from_pretrained("merve/sam-finetuned")This model is a fine-tuned version of facebook/sam-vit-base on an breast cancer dataset. It is not trained for production but for Keras example.
The model was trained for 20 epochs. The following hyperparameters were used during training:
You can see an example inference below.
Base model
facebook/sam-vit-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("mask-generation", model="merve/sam-finetuned")