nhuet

Results 10 issues of nhuet

It seems that sharing weights is not possible anymore afterwards in keras 3. We should instead share layers as explained [here](https://github.com/keras-team/keras/issues/18419#issuecomment-1731867106). But I have a usecase where I need to...

type:feature
stat:awaiting keras-eng

When trying to import openap, we get: ``` /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/openap/__init__.py:3: in from .extra import filters /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/openap/extra/filters.py:3: in from scipy.signal import gaussian ``` It seems that `gaussian` must now be imported from...

When using keras-nightly which is now a preview of the keras 3.0 to come, tensorboard fails to represent the conceptual graph of a functional keras model. I know that tensorboard...

plugin:graph

When a multi-agent solver deals with a single agent fully observable domain, it only works if the state is also a dictionary of agent's state, which is not enforced by...

Currently in some c++ solvers, there is a `watchdog` argument which is a function to do that. We will call it `callback` from now. If returning `None` or `False`, the...

Simply importing ConfigSpace in an environment with numpy 2.0 installed results in an error: ``` >>> import ConfigSpace Traceback (most recent call last): File "", line 1, in File "/home/nolwen/Projects/configspace-test/venv/lib/python3.10/site-packages/ConfigSpace/__init__.py",...

- make Solver derive from Hyperparametrizable - add hyperparameters definition to most solvers - add utilities to create optuna studies with only a few lines

- scipy: was always installed even though optional because not put in the proper extras - d-o: - is now mandatory (to manage hyperparameters) - is updated - doc and...

Starting from 3.9, - using List, Type, Set, ... from typing is deprecated in favor of list, type, set, ... which can now be followed by [] - all classes...