Alan Silva
Alan Silva
@9enki I didn't have any problems to compile you dummy repo on my mac (M1). However @Enet4, my project which is very simple, I don't even need `pixeldata`, although compiles...
Thanks @Enet4 that worked nicely. BTW, I'm a python guy and sorry if I'm using the wrong channel (if you know so, please tell me), but how do I do...
Dear Abdullah, In my experience, you're mixing up topology blocks of protein and ligand in the top file. There's a specific other and I believe the information about atom c6...
@Popkornium18 The point is that `poetry` doesn’t provide any hints about where the issue might be, which can leave people feeling lost. In reality, the issue is often quite simple...
@yawor > The only thing that keeps me from switching some of projects I work on to Hatch is that they don't (yet) support installing local dependencies as editable and...
I'm having the same problem. Is there any solution?
@jmnum Many thanks, I just tried that and it worked! I will create a PR. `.../keras/src/saving/saving_api.py` ```python if str(filepath).endswith((".h5", ".hdf5")): return legacy_h5_format.load_model_from_hdf5(filepath, custom_objects=None, compile=compile) ```
Now I have another model that's failing to load with `keras 3.2.0`. It's a similar issue reported [here](https://stackoverflow.com/questions/78187204/trying-to-export-teachable-machine-model-but-returning-error) The patch #19438 above did not solve this one. Running `load_model()` from...
The problem I see is that if you look at `keras 2.15`: https://github.com/keras-team/keras/blob/r2.15/keras/layers/convolutional/base_conv.py It has several references to `groups` but this is gone in the new implementation for `keras 3.x`:...
I gave a look again into my legacy models and found out that actually they are ok with Keras3 (after #19438). I've just found out that actually the issue now...