I am migrating from tf.keras.wrappers.scikit_learn to Scikeras. I have created a new fresh environment with python=3.7 (to be compatible with Tensorflow). Then I issue the command:
'pip install scikeras[tensorflow]' (ref. https://pypi.org/project/scikeras/)
but I get
'zsh: no matches found: scikeras[tensorflow]'
I therefore try with:
'pip install scikeras tensorflow'
which executes successfully.
When I execute
'import tensorflow'
in my notebook in an isolated cell, the kernel dies. (in another attempt I also tried 'pip install scikeras tensorflow==2.7 with the same result' ). I am using a M1 mac.
Has anyone managed to successfully install and use SciKeras?