Skip to content

Commit

Permalink
change unphysical intensities threshold to 10^-3
Browse files Browse the repository at this point in the history
  • Loading branch information
mickypaganini authored Feb 8, 2017
1 parent 6732e64 commit ab2e082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def get_parser():
X, y = d['image'], d['signal']

# remove unphysical values
X[X < 2.7e-9] = 0
X[X < 1e-3] = 0

# we don't really need validation data as it's a bit meaningless for GANs,
# but since we have an auxiliary task, it can be helpful to debug mode
Expand Down

0 comments on commit ab2e082

Please sign in to comment.