File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,19 @@ python3 eval_multipro.py --gpus GPUS --cfg config/ade20k-resnet50dilated-ppm_dee
228
228
python3 eval_multipro.py --gpus GPUS --cfg config/ade20k-resnet101-upernet.yaml
229
229
```
230
230
231
+ ## Integration with other projects
232
+ This library can be installed via ` pip ` to easily integrate with another codebase
233
+ ``` bash
234
+ pip install git+https://github.com/CSAILVision/semantic-segmentation-pytorch.git@master
235
+ ```
236
+
237
+ Now this library can easily be consumed programmatically. For example
238
+ ``` python
239
+ from mit_semseg.config import cfg
240
+ from mit_semseg.dataset import TestDataset
241
+ from mit_semseg.models import ModelBuilder, SegmentationModule
242
+ ```
243
+
231
244
## Reference
232
245
233
246
If you find the code or pre-trained models useful, please cite the following papers:
Original file line number Diff line number Diff line change
1
+ """
2
+ MIT CSAIL Semantic Segmentation
3
+ """
4
+
5
+ __version__ = '1.0.0'
Original file line number Diff line number Diff line change 23
23
'torchvision' ,
24
24
'opencv-python' ,
25
25
'yacs' ,
26
+ 'scipy' ,
26
27
'tqdm'
27
28
]
28
29
)
You can’t perform that action at this time.
0 commit comments