automl / jahs_bench_201

The first collection of surrogate benchmarks for Joint Architecture and Hyperparameter Search.
https://automl.github.io/jahs_bench_201/
MIT License
13 stars 7 forks source link

fix(api): Now correctly loads tables #17

Closed eddiebergman closed 1 year ago

eddiebergman commented 1 year ago

Also saves memory and speeds up loading by using an iterator instead of loading all tables into memory at once.

@NeoChaos12 note on the keyword del. It's un-intuitive but it actually just decrements the reference count on the object, it won't collect it until the garbage collector comes along. Doesn't really matter here but I've encountered bugs because of this so thought you should know about it.