Eddie Bergman
Eddie Bergman
Okay, at this point I think it's a cvxopt/lapack issue as essentially the failures are stochastic, they seem to fail randomly on windows on different versions, sometimes succeeding for no...
Hi @ysig, So I think it's finally done: [tests](https://github.com/eddiebergman/GraKeL/actions/runs/3189884902/jobs/5204236700), [wheels](https://github.com/eddiebergman/GraKeL/actions/runs/3189884886/jobs/5204237981) #### Tests I skip the lovasz tests on windows specifically and also inserted some code to raise a warning when...
Hi @ysig, I [added something](https://github.com/pypa/gh-action-pypi-publish) from Pypa that does it now, I went with the easiest manual solution. Here's the [action code for reference ](https://github.com/eddiebergman/GraKeL/blob/64fb6533164fb3cf40e676c1fe0d2c90db6f519e/.github/workflows/release.yaml#L130-L147) On the actions tab, you...
Small update: You can see in this [workflow](https://github.com/eddiebergman/GraKeL/actions/runs/3201746512/jobs/5230481666) in the last step "Upload Release" that it seems to be working as intended. It fails for me as I have no...
Thanks for pointing it out! I think the only thing required would be to add some lines here where we also include the more modern python versions and then create...
Just an example script: ```python from dataclasses import dataclass from textwrap import indent as _indent import mfpbench from ConfigSpace import ConfigurationSpace from ConfigSpace.hyperparameters import ( CategoricalHyperparameter, Constant, FloatHyperparameter, Hyperparameter, IntegerHyperparameter,...
Current hack: ```python def remove_hyperparameter(name: str, space: ConfigurationSpace) -> None: """Removes a hyperparameter from a configuration space Essentially undoes the operations done by adding a hyperparamter and then runs the...
True, good spot and thank you!
I just added the following two assertions for now until I can figure out how to do it properly: ```python assert name not in space._conditionals, "Can't handle conditionals" assert not...
Turns out the above hack is _stochastic_? The `_check_default_configuration` seems to randomly fail 1/4 of the time. I just get the error: ```python mfpbench/yahpo/benchmark.py:94: in __init__ remove_hyperparameter("OpenML_task_id", space) mfpbench/util.py:79: in...