├── .gitignore ├── Documents ├── Images │ ├── AttentionUNet.png │ ├── MultiRes Block.jpg │ ├── MultiResUNet.png │ ├── Residual_Path.jpg │ ├── Transposed_Convolution.png │ └── UNet.jpg └── README.md ├── LICENSE ├── README.md └── TensorFlow ├── 1DCNN ├── 1D_Segmentation.ipynb └── Models │ ├── AlbuNet.py │ ├── BCDUNet.py │ ├── Dense_Inception_UNet.py │ ├── FPN.py │ ├── IBAUNet.py │ ├── MLMRSNet.py │ ├── ONN_layers.py │ ├── SEDUNet.py │ ├── TernausNet.py │ ├── convmixer_unet.py │ ├── linknet.py │ ├── saunet_variants.py │ └── unet_variants.py └── 2DCNN ├── 2D_Segmentation_TF.ipynb ├── Test.py ├── Test_Configs.ini ├── Train.py ├── Train_Configs.ini ├── data.json ├── models ├── deeplab_variants.py ├── fpn_variants.py ├── model_selector.py ├── onn_layers.py └── unet_variants.py └── utils ├── DataGenerator.py ├── custom_losses.py ├── helper_functions.py ├── tf_losses.py ├── tf_metrics.py └── tf_optimizers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/Images/AttentionUNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/Documents/Images/AttentionUNet.png -------------------------------------------------------------------------------- /Documents/Images/MultiRes Block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/Documents/Images/MultiRes Block.jpg -------------------------------------------------------------------------------- /Documents/Images/MultiResUNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/Documents/Images/MultiResUNet.png -------------------------------------------------------------------------------- /Documents/Images/Residual_Path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/Documents/Images/Residual_Path.jpg -------------------------------------------------------------------------------- /Documents/Images/Transposed_Convolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/Documents/Images/Transposed_Convolution.png -------------------------------------------------------------------------------- /Documents/Images/UNet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/Documents/Images/UNet.jpg -------------------------------------------------------------------------------- /Documents/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/README.md -------------------------------------------------------------------------------- /TensorFlow/1DCNN/1D_Segmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/1D_Segmentation.ipynb -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/AlbuNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/AlbuNet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/BCDUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/BCDUNet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/Dense_Inception_UNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/Dense_Inception_UNet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/FPN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/FPN.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/IBAUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/IBAUNet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/MLMRSNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/MLMRSNet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/ONN_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/ONN_layers.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/SEDUNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/SEDUNet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/TernausNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/TernausNet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/convmixer_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/convmixer_unet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/linknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/linknet.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/saunet_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/saunet_variants.py -------------------------------------------------------------------------------- /TensorFlow/1DCNN/Models/unet_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/1DCNN/Models/unet_variants.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/2D_Segmentation_TF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/2D_Segmentation_TF.ipynb -------------------------------------------------------------------------------- /TensorFlow/2DCNN/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/Test.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/Test_Configs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/Test_Configs.ini -------------------------------------------------------------------------------- /TensorFlow/2DCNN/Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/Train.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/Train_Configs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/Train_Configs.ini -------------------------------------------------------------------------------- /TensorFlow/2DCNN/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/data.json -------------------------------------------------------------------------------- /TensorFlow/2DCNN/models/deeplab_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/models/deeplab_variants.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/models/fpn_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/models/fpn_variants.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/models/model_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/models/model_selector.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/models/onn_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/models/onn_layers.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/models/unet_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/models/unet_variants.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/utils/DataGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/utils/DataGenerator.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/utils/custom_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/utils/custom_losses.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/utils/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/utils/helper_functions.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/utils/tf_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/utils/tf_losses.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/utils/tf_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/utils/tf_metrics.py -------------------------------------------------------------------------------- /TensorFlow/2DCNN/utils/tf_optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sakib1263/TF-1D-2D-Segmentation-End2EndPipelines/HEAD/TensorFlow/2DCNN/utils/tf_optimizers.py --------------------------------------------------------------------------------