-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[Feature] Add configs for AOT-GAN #681
Conversation
Codecov Report
@@ Coverage Diff @@
## master #681 +/- ##
==========================================
+ Coverage 83.50% 83.51% +0.01%
==========================================
Files 222 222
Lines 12813 12813
Branches 2094 2094
==========================================
+ Hits 10699 10701 +2
+ Misses 1784 1783 -1
+ Partials 330 329 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
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.
Hi @quincylin1 , would you mind also providing the weights converted from the official weights?
load_from = None | ||
resume_from = None | ||
workflow = [('train', 10000)] | ||
exp_name = 'AOT-GAN_512x512_places' |
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.
We have a naming convention for the models. Would you mind use the convention below?
{model}_[model setting]_{backbone}_[refiner]_[norm setting]_[misc]_[gpu x batch_per_gpu]_{schedule}_{dataset}
An example can also be found here
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.
Hi @quincylin1 , would you mind also providing the weights converted from the official weights?
The checkpoint can be named as follows:
{config_name}_{date}-{hash}.pth
For the hash, you can use tools/publish_model.py
to generate.
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.
We have a naming convention for the models. Would you mind use the convention below?
{model}_[model setting]_{backbone}_[refiner]_[norm setting]_[misc]_[gpu x batch_per_gpu]_{schedule}_{dataset}
An example can also be found here
@ckkelvinchan just wondering if this name is ok for this config: AOT-GAN_512x512_4x12_places.py
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.
Yeah I think it works.
assert torch.is_tensor(output) | ||
assert output.shape == (1, 3, 256, 256) |
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.
Is it a bug from previous PR? @Yshuo-Li
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.
By the way, can @wangruohui or @Yshuo-Li help with the checkpoint uploading? @quincylin1 Are you able to provide us with the
Thanks! |
Hi @ckkelvinchan, slightly confused here, what do you mean by weights converted from the official weights? |
I remembered you have tried loading the official weights to your model and obtained same performance? |
Hello @quincylin1 , Any updates on the model weights? |
Name: AOT-GAN_512x512_4x12_places | ||
Results: | ||
- Dataset: PLACES | ||
Metrics: {} |
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.
Please check it again.
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.
Fixed
* add aot config * fixed aot config * modified colorjitter in config * rename config and fix unittest * renamed exp * fix conflicts * fix eval_result * add aot gan raedme * fix * add detailed table * add chinese readme * fix * add aot-gan in readme * add results * add results * Update test_losses.py Co-authored-by: wangruohui <12756472+wangruohui@users.noreply.github.com>
* add aot config * fixed aot config * modified colorjitter in config * rename config and fix unittest * renamed exp * fix conflicts * fix eval_result * add aot gan raedme * fix * add detailed table * add chinese readme * fix * add aot-gan in readme * add results * add results * Update test_losses.py Co-authored-by: wangruohui <12756472+wangruohui@users.noreply.github.com>
* add aot config * fixed aot config * modified colorjitter in config * rename config and fix unittest * renamed exp * fix conflicts * fix eval_result * add aot gan raedme * fix * add detailed table * add chinese readme * fix * add aot-gan in readme * add results * add results * Update test_losses.py Co-authored-by: wangruohui <12756472+wangruohui@users.noreply.github.com>
* add aot config * fixed aot config * modified colorjitter in config * rename config and fix unittest * renamed exp * fix conflicts * fix eval_result * add aot gan raedme * fix * add detailed table * add chinese readme * fix * add aot-gan in readme * add results * add results * Update test_losses.py Co-authored-by: wangruohui <12756472+wangruohui@users.noreply.github.com>
* add aot config * fixed aot config * modified colorjitter in config * rename config and fix unittest * renamed exp * fix conflicts * fix eval_result * add aot gan raedme * fix * add detailed table * add chinese readme * fix * add aot-gan in readme * add results * add results * Update test_losses.py Co-authored-by: wangruohui <12756472+wangruohui@users.noreply.github.com>
added aotgan config