is there any current support for hw-aware NAS techniques? #3761
-
What would you like to be added: Why is this needed: Without this feature, how does current nni work: Components that may involve changes: Brief description of your proposal if any: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@kaoutar55 hardware-aware NAS is an interesting research topic. There are different ways to support hardware-aware NAS.
|
Beta Was this translation helpful? Give feedback.
@kaoutar55 hardware-aware NAS is an interesting research topic. There are different ways to support hardware-aware NAS.
Adding hardware related metric into performance value of each sampled model. For example, adding inference latency on a given hardware to the model's accuracy, and report the combined performance value (using nni.report_final_result) to tuning algorithm. This is the simplest way and it is natively supported by NNI.
The search space is specifically tailored for a hardware (for example, using hardware friendly operators only). These are mainly handled by new hardware-aware NAS algorithms. NNI will cover this kind of algorithms in future release. We also encourage users…