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
I have a model that was developed and trained in TFJS and I want to use it in my java application.
I managed to convert it to keras and then to a SavedModel but I am wondering if there is a way to just load the TFJS model directly and spare the clunky conversion process that involves several additional steps and python.
Is such a thing even possible?
The text was updated successfully, but these errors were encountered:
Looks like you should be able to go directly to a TF Saved Model with the converter, but I don't think the TFJS file format is documented so we couldn't support it.
Unfortunately not. At the moment it looks like tfjs uses something Keras-like as it's JSON format, but we don't have all the Python bits necessary to load in Keras models that aren't exported in SavedModel format.
I have a model that was developed and trained in TFJS and I want to use it in my java application.
I managed to convert it to keras and then to a SavedModel but I am wondering if there is a way to just load the TFJS model directly and spare the clunky conversion process that involves several additional steps and python.
Is such a thing even possible?
The text was updated successfully, but these errors were encountered: