ESRGAN-tensorflow
ESRGAN-tensorflow copied to clipboard
ESRGAN for Godot
I'm the developer of Tensorflow for Godot. https://github.com/godot-extended-libraries/godot-tensorflow-workspace
Do you know how difficult to make this model a Tensorflow2.0alpha lite model?
I am also looking at https://github.com/tensorlayer/srgan ,but it's not opensource.
Also, https://github.com/brade31919/SRGAN-tensorflow.
hello! As i think, it's not difficult to make tihs model (ESRGAN) and others (e.g SRGAN, etc...) too!
In tensorflow 2.0, most of previous APIs (legacy APIs, e..g) tf.layers ) are re/moved, ported into tf.keras.
So, maybe, you can just use the keras implementation w/ some modifications!
the SRGAN implementation, above the link, uses tf.layers for building the network. which means, maybe, you need to port their codes fitting into tf 2.0.
if you have more questions, please feel free to leave a comment here!
thanks in advance!