Hi there,
I am wondering what is the correct procedure to compile a keras/mxnet model to wasm executable(on cpu)?
I tried to compile it using the following command:
target_device = "llvm -mcpu=core"
target_host = "llvm -target=wasm32-unknown-unknown-wasm -system-lib"
with relay.build_config(opt_level=3):
graph, lib, params = relay.build(
func, target="llvm", target_host=target_host, params=params)
But it throws an error at the end saying " AttributeError: Invalid config option, cannot recognize ‘target’. Candidates are: "
Any insight here?
Many thanks in advance!