Closed rncogburn closed 7 months ago
scikit-optimize/skopt/space/space.py line 134
elif isinstance(low, numbers.Real) and isinstance(high, numbers.Real): return Real(float(low), float(high), *args, tranform=transform)
should instead be
elif isinstance(low, numbers.Real) and isinstance(high, numbers.Real): return Real(float(low), float(high), *args, transform=transform)
scikit-optimize/skopt/space/space.py line 134
should instead be