zygmuntz / hyperband

Tuning hyperparams fast with Hyperband
http://fastml.com/tuning-hyperparams-fast-with-hyperband/
Other
593 stars 75 forks source link

Merge @mikecunha's additions #16

Open KOLANICH opened 6 years ago

shlicshlac commented 4 years ago

Why did you propose typecasting dict.items() calls to lists everywhere?

KOLANICH commented 4 years ago
  1. I am not the original author of the code
  2. It is a modification 2to3 does. The automatic way to port python 2 code to python 3 is to run 2to3. It is not very intelligent, so it wraps the funcs returning iterators in python 3 that have been returning lists in python 2 into lists.