Skip to content

Commit bc4a22b

Browse files
committed
initial functional version
1 parent 6475173 commit bc4a22b

31 files changed

+5557
-0
lines changed

__init__.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# import os
2+
# import sys
3+
4+
# repo_dir = os.path.dirname(os.path.realpath(__file__))
5+
# sys.path.append(os.path.join(repo_dir, "dnnlib"))
6+
# sys.path.append(os.path.join(repo_dir, "torch_utils"))
7+
8+
from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
9+
10+
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']

dnnlib/__init__.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Copyright (c) 2021, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
#
3+
# NVIDIA CORPORATION and its licensors retain all intellectual property
4+
# and proprietary rights in and to this software, related documentation
5+
# and any modifications thereto. Any use, reproduction, disclosure or
6+
# distribution of this software and related documentation without an express
7+
# license agreement from NVIDIA CORPORATION is strictly prohibited.
8+
9+
from .util import EasyDict, make_cache_dir_path

0 commit comments

Comments
 (0)