Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
animegan2-pytorch
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
git
animegan2-pytorch
Commits
1799501f
Commit
1799501f
authored
Nov 06, 2021
by
xhlulu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add hubconf for torchhub
parent
9b903138
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
hubconf.py
hubconf.py
+20
-0
No files found.
hubconf.py
0 → 100644
View file @
1799501f
import
torch
from
model
import
Generator
def
animegan2
(
pretrained
=
True
,
device
=
"cpu"
,
progress
=
True
,
check_hash
=
True
):
model
=
Generator
()
if
type
(
pretrained
)
==
str
:
ckpt_url
=
pretrained
pretrained
=
True
else
:
ckpt_url
=
"https://github.com/xhlulu/animegan2-pytorch/releases/download/weights/face_paint_512_v2_0.pt"
if
pretrained
is
True
:
state_dict
=
torch
.
hub
.
load_state_dict_from_url
(
ckpt_url
,
map_location
=
torch
.
device
(
device
),
progress
=
progress
,
check_hash
=
check_hash
,
)
model
.
load_state_dict
(
state_dict
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment