mirror of https://github.com/XingangPan/DragGAN
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
525 B
Python
21 lines
525 B
Python
# Copyright (c) SenseTime Research. All rights reserved.
|
|
|
|
# Copyright (c) 2019, NVIDIA Corporation. All rights reserved.
|
|
#
|
|
# This work is made available under the Nvidia Source Code License-NC.
|
|
# To view a copy of this license, visit
|
|
# https://nvlabs.github.io/stylegan2/license.html
|
|
|
|
from . import autosummary
|
|
from . import network
|
|
from . import optimizer
|
|
from . import tfutil
|
|
from . import custom_ops
|
|
|
|
from .tfutil import *
|
|
from .network import Network
|
|
|
|
from .optimizer import Optimizer
|
|
|
|
from .custom_ops import get_plugin
|