-
Notifications
You must be signed in to change notification settings - Fork 96
Closed
Labels
Description
By running the following code, the memory usage goes up like crazy:
import ConfigSpace.hyperparameters as CSH
import numpy as np
rnd = np.random.RandomState(19937)
a = CSH.UniformIntegerHyperparameter('a', lower=1, upper=2147483647, log=True)
print(a)
print(rnd)
for i in range(1,10000):
a.get_neighbors(0.031249126501512327, rnd, number=8, std=0.05)tested on kisexe44 with the current master branch (0.4.19).