Auto Scheduler tune mobilenet v2

Hi, everyone!

I want to evaluate auto scheduler with mobilenetV2, how can I implement this?

The doc uses relay.testing to deploy different networks. However, relay.testing does not contain mobilenetV2.

What I’m concerned is that the Auto Scheduler depends on the the relay workload definition to perform some optimization on graph level which cannot be implemented by custom model definition by myself.

you could load tflite mobilenetv2 model, which is used during our development of auto scheduler.

TVM does not rely on any specific model definition. You can load mobilenet_v2 from mxnet following this example for load it from tflite following this example

OK, I’ll try, thank you.