antoinedemathelin

Results 30 comments of antoinedemathelin

Hi @juliog23, I think the error can be resolved by installing scikeras, can you please try: ``` pip install scikeras ```

If the error is still not resolved, you can watch the installed package versions with: ``` pip list ``` or ``` conda list ``` To verify that you have the...

Hi @juliog23, The module `keras.wrappers`has been removed in tensorflow 2.15, so its normal you don't find it. You have the last version of adapt (0.4.4) so the bug doesn't come...

Hi @Griffunus, This error is not an Adapt error, it is raised by scikeras. But here is a way to fix it: Just change this line: ```python keras_model = KerasRegressor(build_fn=create_model,...

Yes sorry @kagrawala-RU , TrAdaBoost requires something that can be turned into a numpy array as Xs, Xt, ys, yt inputs. Modifying that would be a nightmare, as multiple operations...

Hi @kerrycobb, Sorry, but it seems that you are using python version 3.12. However, adapt is not currently working for this version. See [python versions for adapt](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%7C%203.11-blue). You can create...

Ok, thank you @kerrycobb, My guess is that the error comes from the last Tensorflow release. With Tensorflow 2.15, there should be no error, even with Adapt 0.4.4. Adapt 0.4.3...

Hi @artem-math-1, Thank you for reporting the issue! Adapt is currently not working with tensorflow 2.16. Colab still uses tensorflow 2.15 by default, however, `scikeras`, one dependency from adapt 0.4.4...

Hi @rack570, Can you please tell me which version of python you are using ?

It seems that the bug comes from the setup.py file when reading the README with pathlib. I tried to fix that. Can you please try: `pip install git+https://github.com/antoinedemathelin/adapt.git` and tell...