Is anyone able to export tensorflowJS_converter to WASM with a very simple example webpage? I will do any major testing. I don’t need it to convert every possible model and layer, just a few of the basics. I realize this is a long shot, and would probably make a huge file, but the advantage of having tfjs_converter on a static webpage would be huge from a teaching TFJS point of view.
Hi @Jeremy_Ellis,
The TFJS-converter
doesn’t directly convert models to .wasm
. Instead, convert your model to the TFJS format (typically a .json
file), and set the backend to WebAssembly (tf.setBackend('wasm');
) before loading the model.
Let me know if my understanding is correct or i have missed anything.
Thank You!!