-
Notifications
You must be signed in to change notification settings - Fork 232
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] Support download inception state from url #233
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #233 +/- ##
==========================================
+ Coverage 76.71% 77.01% +0.30%
==========================================
Files 130 130
Lines 9421 9427 +6
Branches 1899 1901 +2
==========================================
+ Hits 7227 7260 +33
+ Misses 1728 1703 -25
+ Partials 466 464 -2
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
e01d796
to
18b5c81
Compare
@@ -37,7 +37,8 @@ | |||
pass_training_status=True) | |||
|
|||
# Note set your inception_pkl's path | |||
inception_pkl = 'work_dirs/inception_pkl/imagenet.pkl' | |||
inception_pkl = ('https://download.openmmlab.com/mmgen/evaluation/' | |||
'fid_inception_pkl/imagenet.pkl') |
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.
may rename to 'imagenet_128x128.pkl'
@@ -40,7 +40,8 @@ | |||
pass_training_status=True) | |||
|
|||
# Note set your inception_pkl's path | |||
inception_pkl = 'work_dirs/inception_pkl/imagenet.pkl' | |||
inception_pkl = ('https://download.openmmlab.com/mmgen/evaluation/' | |||
'fid_inception_pkl/imagenet.pkl') |
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.
the same as above
Later we may complete other inception pkls. |
* add RDN * Add docstring and test. * Tiny fix. * Tiny fix. * Add license. * Tiny Fix * Tiny Fix Co-authored-by: liyinshuo <[email protected]>
No description provided.