Instructions to use Justin331/sam3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Justin331/sam3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("mask-generation", model="Justin331/sam3")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("Justin331/sam3") model = AutoModel.from_pretrained("Justin331/sam3") - Notebooks
- Google Colab
- Kaggle
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +2 -1
requirements.txt
CHANGED
|
@@ -24,4 +24,5 @@ openai
|
|
| 24 |
typing-extensions
|
| 25 |
opencv-python-headless
|
| 26 |
iopath
|
| 27 |
-
|
|
|
|
|
|
| 24 |
typing-extensions
|
| 25 |
opencv-python-headless
|
| 26 |
iopath
|
| 27 |
+
timm
|
| 28 |
+
.
|