Generative Adversarial Training with DUGAN#170
Open
alexander-huang-commits wants to merge 6 commits intoCambridgeCIA:mainfrom
Open
Generative Adversarial Training with DUGAN#170alexander-huang-commits wants to merge 6 commits intoCambridgeCIA:mainfrom
alexander-huang-commits wants to merge 6 commits intoCambridgeCIA:mainfrom
Conversation
Member
|
Thanks a lot! I may do some commits to this branch to change some names and relocate some files, mostly cosmetic, is that ok? Also: is LPD_SIRT basically the standard LPD? |
Author
Yes, feel free to rearrange or edit any of the files! I have a separate local save of this work so don't worry about it. Also, yes LPD_SIRT is just LPD initialized with SIRT using 50 iterations instead of FBP. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
SUMMARY:
DUGAN is an adversarial training network based off of https://arxiv.org/abs/2108.10772. The training script is written in a way to allow for different neural network architectures and data augmentation techniques (in DUGAN's case, it is cutmix) to be directly be integrated without rewriting the structure of the scripts.
CHANGES:
-There are only new files no deleted files
-Added Training script for DUGAN
-Added Cutmix data augmentation
-Added Unet with fixed convolution before input
-Added REDCNN https://arxiv.org/pdf/1702.00288
-Added modifications of LPD and ItNet