Hi,
I’ve built some custom neural networks in Julia (especially, Flux.jl).
However, for some reason, I wanna use the same neural networks in Python.
In this case, it may be possible to rewrite the neural networks code in Python,
but it is apparently time-consuming work, and
I have to modify codes twice every time when I decide to change some parts of networks.
Are there any good ideas to maintain a custom neural network code wisely?
The answer might be different for building and using neural networks, and also different than for non-NN code.
In general, you want to choose one language for your main language, for the heavy lifting. That could be Julia (historically C and/or C++ and Fortran). You can basically do everything, including neural networks in Julia only.