Neuroglycerin / neukrill-net-tools

Tools coded as part of the NDSB competition.
MIT License
0 stars 0 forks source link

Inconsistent class ordering #136

Closed scottclowe closed 9 years ago

scottclowe commented 9 years ago

Basically the issue is settings.image_fnames['train'].keys() != settings.classes The keys() method should never be used because we have regular dictionaries, not OrderedDicts. The keys should be in the same order every time, but that is not a safe assumption.

scottclowe commented 9 years ago

Actually this is only a problem for #134. Don't think it makes problems anywhere else.