-
Notifications
You must be signed in to change notification settings - Fork 18
build: bump ccrestoration to v0.2.1 #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reviewer's Guide by SourceryThis PR updates the ccrestoration dependency to version 0.2.1 and adds support for new model types (SRCNN and HAT) in the model options. The changes include adding new model configurations and reordering the model type list. Class diagram for updated ModelOptionsclassDiagram
class ModelOptions {
+String label
+String value
}
ModelOptions : +DAT_light_3x
ModelOptions : +DAT_light_4x
ModelOptions : +DAT_APISR_GAN_generator_4x
ModelOptions : +SRCNN_2x
ModelOptions : +SRCNN_3x
ModelOptions : +SRCNN_4x
ModelOptions : +HAT_S_2x
ModelOptions : +HAT_S_3x
ModelOptions : +HAT_S_4x
ModelOptions : +HAT_2x
ModelOptions : +HAT_3x
ModelOptions : +HAT_4x
ModelOptions : +HAT_Real_GAN_sharper_4x
ModelOptions : +HAT_Real_GAN_4x
ModelOptions : +HAT_ImageNet_pretrain_2x
ModelOptions : +HAT_ImageNet_pretrain_3x
ModelOptions : +HAT_ImageNet_pretrain_4x
ModelOptions : +HAT_L_ImageNet_pretrain_2x
ModelOptions : +HAT_L_ImageNet_pretrain_3x
ModelOptions : +HAT_L_ImageNet_pretrain_4x
note for ModelOptions "New models SRCNN and HAT added"
Class diagram for updated gen_pretrained_model_name.pyclassDiagram
class ModelType {
+RealESRGAN
+DAT
+HAT
+RealCUGAN
+EDSR
+SwinIR
+SCUNet
+SRCNN
}
note for ModelType "Reordered and added new model types: SRCNN and HAT"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @routineLife1 - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
# Conflicts: # scripts/ModelOptions.ts
Summary by Sourcery
Add new model options and update the pretrained model generation script to include additional model types. Bump the ccrestoration dependency to version 0.2.1.
New Features:
Enhancements:
Build: