Instructions to use chainyo/segformer-sidewalk with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use chainyo/segformer-sidewalk with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-segmentation", model="chainyo/segformer-sidewalk")# Load model directly from transformers import AutoImageProcessor, SegformerForSemanticSegmentation processor = AutoImageProcessor.from_pretrained("chainyo/segformer-sidewalk") model = SegformerForSemanticSegmentation.from_pretrained("chainyo/segformer-sidewalk", device_map="auto") - Notebooks
- Google Colab
- Kaggle
add flavors
Browse files- .gitignore +1 -0
.gitignore
CHANGED
|
@@ -1,3 +1,4 @@
|
|
| 1 |
__pycache__
|
| 2 |
checkpoints/
|
| 3 |
wandb/
|
|
|
|
|
|
| 1 |
__pycache__
|
| 2 |
checkpoints/
|
| 3 |
wandb/
|
| 4 |
+
flavors/
|