From 85d4ece789dd916b7276912a105c602ef4c7512c Mon Sep 17 00:00:00 2001 From: wchen342 Date: Thu, 8 Mar 2018 16:50:05 -0500 Subject: [PATCH] Add comments --- src_single/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src_single/config.py b/src_single/config.py index 0e58baf..a800c2d 100644 --- a/src_single/config.py +++ b/src_single/config.py @@ -3,12 +3,12 @@ class Config(object): # global options - data_format = 'NCHW' - sn = False - proj_d = False - wgan = False + data_format = 'NCHW' # DO NOT CHANGE THIS SPECTRAL_NORM_UPDATE_OPS = "spectral_norm_update_ops" - pre_calculated_dist_map = True + sn = False # Whether uses Spectral Normalization(https://arxiv.org/abs/1802.05957) + proj_d = False # Whether uses projection discriminator(https://arxiv.org/abs/1802.05637) + wgan = False # WGAN or DRAGAN(only effective if sn is False) + pre_calculated_dist_map = True # Whether calculate distance maps on the fly @staticmethod def set_from_dict(d):