Skip to content

Commit

Permalink
Update train.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzzystar authored Mar 12, 2019
1 parent 910a244 commit 3c99f1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@
D_wass_valid = D_wass_valid.cpu()

# Record costs
D_cost_train_epoch.append(D_cost_train.data.numpy()
D_wass_train_epoch.append(D_wass_train.data.numpy()
D_cost_valid_epoch.append(D_cost_valid.data.numpy()
D_wass_valid_epoch.append(D_wass_valid.data.numpy()
D_cost_train_epoch.append(D_cost_train.data.numpy())
D_wass_train_epoch.append(D_wass_train.data.numpy())
D_cost_valid_epoch.append(D_cost_valid.data.numpy())
D_wass_valid_epoch.append(D_wass_valid.data.numpy())

#############################
# (3) Train Generator
Expand Down

0 comments on commit 3c99f1d

Please sign in to comment.