Instructions to use tiny-random/sam3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tiny-random/sam3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("mask-generation", model="tiny-random/sam3")# Load model directly from transformers import AutoProcessor, AutoModel processor = AutoProcessor.from_pretrained("tiny-random/sam3") model = AutoModel.from_pretrained("tiny-random/sam3") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
-
pipeline_tag:
|
| 4 |
inference: true
|
| 5 |
widget:
|
| 6 |
- text: Hello!
|
|
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
+
pipeline_tag: mask-generation
|
| 4 |
inference: true
|
| 5 |
widget:
|
| 6 |
- text: Hello!
|