You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are couple of hurdles in implementing a transfer learning scenario (where tf model is actually modified) using TF#.
[SOLVED] There is no way to serialized TF model back to file using TF C-API (also TF#).
It seems impossible to load checkpoint models using C-API (also TF#) because the graph saved with checkpoint models is saved in meta_graph format for which straightforward API is currently missing to load/save.
When using frozen model, there are no training ops like optimizations or loss operations. Also, frozen model don't have variables because those are converted into constant while the model is frozen. So, frozen models can't be retrained.
When using un-frozen model (saved with simple_save method in python), training operations must be included in the graph so that training can happen from TensorFlowTransform.
The text was updated successfully, but these errors were encountered:
zeahmed
changed the title
Develop a POC for training tensorflow model using TF#.
Implement model Transfer learning functionality in TensorFlowTransform.
Sep 27, 2018
zeahmed
changed the title
Implement model Transfer learning functionality in TensorFlowTransform.
Implement transfer learning functionality in TensorFlowTransform.
Sep 27, 2018
There are couple of hurdles in implementing a transfer learning scenario (where tf model is actually modified) using TF#.
The text was updated successfully, but these errors were encountered: