├── Custom_Functions ├── Readme.md ├── custom_data_aug.py └── custom_losses.py ├── Data_Loader ├── Readme.md └── load_3D_data.py ├── LICENSE ├── Model_Helpers ├── Readme.md ├── metrics.py └── model_helper.py ├── Models ├── Encoder_BIFPN.py ├── Encoder_BiFPN_ReLU.py ├── Readme.md ├── UDet.py ├── UDet_relu.py ├── UNet_mish.py ├── bifpn.py └── unet.py ├── README.md ├── main.py ├── test.py └── train.py /Custom_Functions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Custom_Functions/Readme.md -------------------------------------------------------------------------------- /Custom_Functions/custom_data_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Custom_Functions/custom_data_aug.py -------------------------------------------------------------------------------- /Custom_Functions/custom_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Custom_Functions/custom_losses.py -------------------------------------------------------------------------------- /Data_Loader/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Data_Loader/Readme.md -------------------------------------------------------------------------------- /Data_Loader/load_3D_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Data_Loader/load_3D_data.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/LICENSE -------------------------------------------------------------------------------- /Model_Helpers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Model_Helpers/Readme.md -------------------------------------------------------------------------------- /Model_Helpers/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Model_Helpers/metrics.py -------------------------------------------------------------------------------- /Model_Helpers/model_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Model_Helpers/model_helper.py -------------------------------------------------------------------------------- /Models/Encoder_BIFPN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/Encoder_BIFPN.py -------------------------------------------------------------------------------- /Models/Encoder_BiFPN_ReLU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/Encoder_BiFPN_ReLU.py -------------------------------------------------------------------------------- /Models/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/Readme.md -------------------------------------------------------------------------------- /Models/UDet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/UDet.py -------------------------------------------------------------------------------- /Models/UDet_relu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/UDet_relu.py -------------------------------------------------------------------------------- /Models/UNet_mish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/UNet_mish.py -------------------------------------------------------------------------------- /Models/bifpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/bifpn.py -------------------------------------------------------------------------------- /Models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/Models/unet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/main.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nik-V9/U-Det/HEAD/train.py --------------------------------------------------------------------------------