Skip to content

Commit

Permalink
use int instead of float in defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanklut committed Apr 19, 2024
1 parent 874804c commit 440ddbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configs/extra_defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@

_C.INPUT.NOISE = CN()
_C.INPUT.NOISE.PROBABILITY = 0.5
_C.INPUT.NOISE.MIN_STD = 0.0
_C.INPUT.NOISE.MAX_STD = 50.0
_C.INPUT.NOISE.MIN_STD = 0
_C.INPUT.NOISE.MAX_STD = 50

_C.INPUT.BRIGHTNESS = CN()
_C.INPUT.BRIGHTNESS.PROBABILITY = 0.5
Expand Down

0 comments on commit 440ddbb

Please sign in to comment.