Skip to content

Commit

Permalink
Fix missing unused variable,
Browse files Browse the repository at this point in the history
See issue santi-pdp#6 in origin repo
  • Loading branch information
cHemingway committed Jul 7, 2019
1 parent 6697874 commit a2958fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion segan/models/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, opts, name='SEGAN',
super(SEGAN, self).__init__(name)
self.save_path = opts.save_path
self.preemph = opts.preemph
self.reg_loss = getattr(F, opts.reg_loss)
# self.reg_loss = getattr(F, opts.reg_loss)
if generator is None:
# Build G and D
self.G = Generator(1,
Expand Down

0 comments on commit a2958fa

Please sign in to comment.