├── Env.py ├── Overview.PNG ├── README.md ├── UNet.py ├── VesNet_RL_ckpt ├── best_ckpt.txt ├── checkpoint.pth ├── checkpoint_latest.pth ├── configs.txt └── trained_model │ ├── checkpoint.pth │ ├── checkpoint_best_sr.pth │ └── checkpoint_latest.pth ├── Vessel_3d.py ├── environment.yml ├── model.py ├── test_VesNet_RL.py ├── test_VesNet_RL_phantom.py └── train_VesNet_RL.py /Env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/Env.py -------------------------------------------------------------------------------- /Overview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/Overview.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/README.md -------------------------------------------------------------------------------- /UNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/UNet.py -------------------------------------------------------------------------------- /VesNet_RL_ckpt/best_ckpt.txt: -------------------------------------------------------------------------------- 1 | [2, -2.655261039055825] -------------------------------------------------------------------------------- /VesNet_RL_ckpt/checkpoint.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/VesNet_RL_ckpt/checkpoint.pth -------------------------------------------------------------------------------- /VesNet_RL_ckpt/checkpoint_latest.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/VesNet_RL_ckpt/checkpoint_latest.pth -------------------------------------------------------------------------------- /VesNet_RL_ckpt/configs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/VesNet_RL_ckpt/configs.txt -------------------------------------------------------------------------------- /VesNet_RL_ckpt/trained_model/checkpoint.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/VesNet_RL_ckpt/trained_model/checkpoint.pth -------------------------------------------------------------------------------- /VesNet_RL_ckpt/trained_model/checkpoint_best_sr.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/VesNet_RL_ckpt/trained_model/checkpoint_best_sr.pth -------------------------------------------------------------------------------- /VesNet_RL_ckpt/trained_model/checkpoint_latest.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/VesNet_RL_ckpt/trained_model/checkpoint_latest.pth -------------------------------------------------------------------------------- /Vessel_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/Vessel_3d.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/environment.yml -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/model.py -------------------------------------------------------------------------------- /test_VesNet_RL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/test_VesNet_RL.py -------------------------------------------------------------------------------- /test_VesNet_RL_phantom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/test_VesNet_RL_phantom.py -------------------------------------------------------------------------------- /train_VesNet_RL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuan-12138/VesNet-RL/HEAD/train_VesNet_RL.py --------------------------------------------------------------------------------