Brandon Schabell

Results 6 comments of Brandon Schabell

@chrono-meter Hey, I'm happy to take over the Pypi package if you'd like. Changes to Python 3.10 broke urlpath and I'd be interested in fixing that and deploying a new...

I'm running into the same issue with Windows 10 and Python 3.6.7.

Would love to see this prioritized. Can't really run docker-in-docker on Kubernetes self-hosted runners without this.

Numpy's randint() function allows you to force an output type, as you've likely discovered. Their default size is None, which will return the int value itself. When we call np.random.randint(0,...

What I have done, which seems to work well, is to use a hyperopt loss function that optimizes a metric (for me, I've been looking at f2 scores, but you...

Alternatively, you could create an objective function with a composite loss. ```python def objective(x): model = sklearn.some_model(x).fit(data, loss='logloss') accuracy = model['acc'] precision = model['pre'] recall = model['rec'] loss = (1...