├── .gitignore ├── LICENSE ├── README.md ├── config-endovis17-SS-full.json ├── dataset.py ├── feature_extraction.py ├── main.py ├── model.py ├── plot.png ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /config-endovis17-SS-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/config-endovis17-SS-full.json -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/dataset.py -------------------------------------------------------------------------------- /feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/feature_extraction.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/model.py -------------------------------------------------------------------------------- /plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/plot.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Finspire13/AGSD-Surgical-Instrument-Segmentation/HEAD/utils.py --------------------------------------------------------------------------------