- A domain generalized approach on surgical scene graphs to predict instrument-tissue interaction during robot-assisted surgery. We incorporate incremental learning to the feature extraction network and knowledge distillation-based student-teacher learning to the graph network, to accommodate new instruments and domain shifts in the new domain.
- We design an enhanced curriculum by smoothing (E-CBS) based on Laplacian of Gaussian kernel and Gaussian kernel, and integrate with feature extraction network and visual-semantic graph attention network to improve the model performance.
- Furthermore, we normalize the feature extraction and graph network’s logits by T-Norm and study its effect in calibrating the model.
- The proposed SSU is trained on nephrectomy procedures video frames and then domain generalized to transoral robotics surgery video frames.
To be added
To be added
In this project, we implement our method using the Pytorch and DGL library and there are three main folders:
Feature_extractor/: Used to extract features from dataset images to train the graph network.datasets/: Contains the dataset needed to train the network.model/: Contains network models.utils/: Contains utility tools used for training and evaluation.checkpoints/: Conatins trained weights
DGL is a Python package dedicated to deep learning on graphs, built atop existing tensor DL frameworks (e.g. Pytorch, MXNet) and simplifying the implementation of graph-based neural networks.
- Python 3.6
- Pytorch 1.1.0
- DGL 0.3
- CUDA 10.0
- Ubuntu 16.04
- gdrive_link for features To be added
- Download the pretrain word2vec model on GoogleNews and put it into
datasets/word2vec
- model_train.py
- Checkpoints will be saved in
checkpoints/folder.
- model_evaluation.py
Code adopted and modified from :
- Visual-Semantic Graph Attention Network for Human-Object Interaction Detecion
- Paper Visual-Semantic Graph Attention Network for Human-Object Interaction Detecion.
- Official Pytorch implementation code.
- End-to-End Incremental Learning
- Paper End-to-End Incremental Learning.
- Pytorch implementation code.
- Curriculum by smoothing
- Paper Curriculum by smoothing.
- Pytorch implementation code.