-
Couldn't load subscription status.
- Fork 84
Description
Hi,
As I know, in python 3.5.X or python 2.X , 'dict' structure has random keys order. For example,
If I do this
a = {'one' : 1, 'two' : 2, 'three', 3}
a.keys()
['one', 'two', 'three'] <- this was what I expected
['three', 'one', 'two'] <- However, this parts are always different when python session renewed.
I saw this kind of code in 'augmentation_transforms_hp.py' at almost last sentence.
Is this Random ordering on purpose to perturb?
I found this when I tried to visualize the schedule with pba.ipynb. When I renew the session in Ipython notebook, it changed the schedule. For example,
('Brightness', 0.2, 3), ('Auto_contrast', 0.4, 3) .... <- when first tried
('sharpeness', 0.2, 3) ... <- same prob, mag, but the op changed.
Thank you!