Instructions to use XYZ9843/GOOSE-M2F with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use XYZ9843/GOOSE-M2F with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-segmentation", model="XYZ9843/GOOSE-M2F")# Load model directly from transformers import AutoImageProcessor, Mask2FormerForUniversalSegmentation processor = AutoImageProcessor.from_pretrained("XYZ9843/GOOSE-M2F") model = Mask2FormerForUniversalSegmentation.from_pretrained("XYZ9843/GOOSE-M2F") - Notebooks
- Google Colab
- Kaggle
Add pipeline tag and library name to metadata
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
## GOOSE-M2F: Adapting Mask2Former for High-Fidelity, Long-Tailed Fine-Grained Semantic Segmentation in Unstructured Outdoor Terrain
|
| 2 |
|
| 3 |
**Jyothiraditya Lingam, Nikhileswara Rao Sulake, Sai Manikanta Eswar Machara**
|
|
@@ -149,8 +154,8 @@ goose-m2f/
|
|
| 149 |
### 1. Setup
|
| 150 |
|
| 151 |
```bash
|
| 152 |
-
git clone https://github.com/Aditya-Lingam-9000/GOOSE-
|
| 153 |
-
cd GOOSE-
|
| 154 |
|
| 155 |
conda create -n goose python=3.11 -y && conda activate goose
|
| 156 |
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
|
|
@@ -240,11 +245,11 @@ See `requirements.txt` for the complete list.
|
|
| 240 |
If you use this work, please cite:
|
| 241 |
|
| 242 |
```bibtex
|
| 243 |
-
@techreport{
|
| 244 |
title = {GOOSE-M2F: Adapting Mask2Former for High-Fidelity, Long-Tailed Fine-Grained Semantic Segmentation in Unstructured Outdoor Terrain},
|
| 245 |
-
author = {
|
| 246 |
year = {2026},
|
| 247 |
-
institution = {
|
| 248 |
}
|
| 249 |
```
|
| 250 |
|
|
@@ -255,6 +260,4 @@ If you use this work, please cite:
|
|
| 255 |
- **Mask2Former**: Cheng et al., *Masked-Attention Mask Transformer for Universal Image Segmentation*, CVPR 2022
|
| 256 |
- **Swin Transformer**: Liu et al., ICCV 2021
|
| 257 |
- **CBAM**: Woo et al., *Convolutional Block Attention Module*, ECCV 2018
|
| 258 |
-
- **DeepLab**: Chen et al., *Rethinking Atrous Convolution*, TPAMI 2017
|
| 259 |
-
|
| 260 |
-
---
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: image-segmentation
|
| 3 |
+
library_name: transformers
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
## GOOSE-M2F: Adapting Mask2Former for High-Fidelity, Long-Tailed Fine-Grained Semantic Segmentation in Unstructured Outdoor Terrain
|
| 7 |
|
| 8 |
**Jyothiraditya Lingam, Nikhileswara Rao Sulake, Sai Manikanta Eswar Machara**
|
|
|
|
| 154 |
### 1. Setup
|
| 155 |
|
| 156 |
```bash
|
| 157 |
+
git clone https://github.com/Aditya-Lingam-9000/GOOSE-M2F
|
| 158 |
+
cd GOOSE-M2F
|
| 159 |
|
| 160 |
conda create -n goose python=3.11 -y && conda activate goose
|
| 161 |
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
|
|
|
|
| 245 |
If you use this work, please cite:
|
| 246 |
|
| 247 |
```bibtex
|
| 248 |
+
@techreport{lingam2026goosem2f,
|
| 249 |
title = {GOOSE-M2F: Adapting Mask2Former for High-Fidelity, Long-Tailed Fine-Grained Semantic Segmentation in Unstructured Outdoor Terrain},
|
| 250 |
+
author = {Jyothiraditya Lingam and Nikhileswara Rao Sulake and Sai Manikanta Eswar Machara},
|
| 251 |
year = {2026},
|
| 252 |
+
institution = {Rajiv Gandhi University of Knowledge Technologies (RGUKT)}
|
| 253 |
}
|
| 254 |
```
|
| 255 |
|
|
|
|
| 260 |
- **Mask2Former**: Cheng et al., *Masked-Attention Mask Transformer for Universal Image Segmentation*, CVPR 2022
|
| 261 |
- **Swin Transformer**: Liu et al., ICCV 2021
|
| 262 |
- **CBAM**: Woo et al., *Convolutional Block Attention Module*, ECCV 2018
|
| 263 |
+
- **DeepLab**: Chen et al., *Rethinking Atrous Convolution*, TPAMI 2017
|
|
|
|
|
|