Konverter
Konverter copied to clipboard
Convert simple Keras models to pure Python 🐍+ NumPy
Firstly, nice work on this project -- this looks really cool! I'm working on a computer vision project, and would love to use Konverter to convert some pre-trained models. As...
Some I'd like to work on including are: - [x] LeakyReLU - [ ] PReLU
Will probably not be worked on for a while due to supporting GRU. GRU is also faster since it has one less gate.
Some fairly common ones that should be supported: - Conv1D - Conv2D - Conv3D
[KonverterSupport](https://github.com/ShaneSmiskol/Konverter/blob/master/konverter/utils/konverter_support.py) and the [model_attributes.py](https://github.com/ShaneSmiskol/Konverter/blob/master/konverter/utils/model_attributes.py) file should be refactored to more cleanly work together. For example, better class variables in `KonverterSupport` that are more clearly named and grab their contents from...
Installing with pip forces the version of NumPy. This didn't work in my environment, which is still a bit experimental (TensorFlow on Apple Silicon). Would it be possible to only...