mirak
September 7, 2021, 11:19am
1
Hi,
I just finished the assignment for course 2 week 3, and I would like to know if someone can provide me with the full implementation of the StyleGAN (the training loop),
thanks in advance,
2 Likes
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
#
# This work is licensed under the Creative Commons Attribution-NonCommercial
# 4.0 International License. To view a copy of this license, visit
# http://creativecommons.org/licenses/by-nc/4.0/ or send a letter to
# Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
"""Main training script."""
import os
import numpy as np
import tensorflow as tf
import dnnlib
import dnnlib.tflib as tflib
from dnnlib.tflib.autosummary import autosummary
import config
import train
from training import dataset
from training import misc
This file has been truncated. show original
here is the training loop that was published in the paper
aray
September 8, 2021, 12:57am
3
Here is a very simple StyleGAN2 implementation with a lot of comments:
4 Likes
fzhurd
September 8, 2021, 3:16am
4
Here is another simple StyleGAN with PyTorch example
3 Likes