├── GenSelfDiff ├── downstream_train │ ├── Diff_Seg.py │ ├── losses.py │ └── model.py ├── pretrain │ ├── SS_diff.py │ ├── model.py │ └── utils.py └── test │ ├── metrics.py │ └── test_script.py ├── HE_diff_general.py ├── LICENSE ├── README.md ├── image_generation.py ├── image_generation_general.py ├── pre_process ├── GlaS │ ├── bmp_to_jpg.py │ ├── image_labels.py │ ├── test_patches.py │ ├── train_patches.py │ └── unlabel_patches.py ├── HN │ ├── image_labels.py │ ├── label_patches.py │ └── unlabel_patches.py ├── MoNuSeg │ ├── image_labels.py │ ├── test_patches.py │ ├── train_patches.py │ ├── unlabel_patches.py │ └── xml_to_segmask.py └── sample.txt ├── sample_images.py ├── sample_images_general.py └── utils_general.py /GenSelfDiff/downstream_train/Diff_Seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/downstream_train/Diff_Seg.py -------------------------------------------------------------------------------- /GenSelfDiff/downstream_train/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/downstream_train/losses.py -------------------------------------------------------------------------------- /GenSelfDiff/downstream_train/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/downstream_train/model.py -------------------------------------------------------------------------------- /GenSelfDiff/pretrain/SS_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/pretrain/SS_diff.py -------------------------------------------------------------------------------- /GenSelfDiff/pretrain/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/pretrain/model.py -------------------------------------------------------------------------------- /GenSelfDiff/pretrain/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/pretrain/utils.py -------------------------------------------------------------------------------- /GenSelfDiff/test/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/test/metrics.py -------------------------------------------------------------------------------- /GenSelfDiff/test/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/GenSelfDiff/test/test_script.py -------------------------------------------------------------------------------- /HE_diff_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/HE_diff_general.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/README.md -------------------------------------------------------------------------------- /image_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/image_generation.py -------------------------------------------------------------------------------- /image_generation_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/image_generation_general.py -------------------------------------------------------------------------------- /pre_process/GlaS/bmp_to_jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/GlaS/bmp_to_jpg.py -------------------------------------------------------------------------------- /pre_process/GlaS/image_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/GlaS/image_labels.py -------------------------------------------------------------------------------- /pre_process/GlaS/test_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/GlaS/test_patches.py -------------------------------------------------------------------------------- /pre_process/GlaS/train_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/GlaS/train_patches.py -------------------------------------------------------------------------------- /pre_process/GlaS/unlabel_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/GlaS/unlabel_patches.py -------------------------------------------------------------------------------- /pre_process/HN/image_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/HN/image_labels.py -------------------------------------------------------------------------------- /pre_process/HN/label_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/HN/label_patches.py -------------------------------------------------------------------------------- /pre_process/HN/unlabel_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/HN/unlabel_patches.py -------------------------------------------------------------------------------- /pre_process/MoNuSeg/image_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/MoNuSeg/image_labels.py -------------------------------------------------------------------------------- /pre_process/MoNuSeg/test_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/MoNuSeg/test_patches.py -------------------------------------------------------------------------------- /pre_process/MoNuSeg/train_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/MoNuSeg/train_patches.py -------------------------------------------------------------------------------- /pre_process/MoNuSeg/unlabel_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/MoNuSeg/unlabel_patches.py -------------------------------------------------------------------------------- /pre_process/MoNuSeg/xml_to_segmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/pre_process/MoNuSeg/xml_to_segmask.py -------------------------------------------------------------------------------- /pre_process/sample.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sample_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/sample_images.py -------------------------------------------------------------------------------- /sample_images_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/sample_images_general.py -------------------------------------------------------------------------------- /utils_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suhas-srinath/GenSelfDiff-HIS/HEAD/utils_general.py --------------------------------------------------------------------------------