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
{{ message }}
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
@marsggbo the links are fixed by removing section reference, as sphinx does not support cross-file section reference in markdown.
Here I briefly explain mutables. You might be confused about the difference between mutable and mutator. NAS algorithms could use the same approach (i.e., same format) to express their own search space, but how to deal with search space are very different for different NAS algorithms. mutable mainly tackles the former part, it is a common interface (derivatives of mutable, e.g., LayerChoice, InputChoice) for specifying search space in model code, does not depend on any specific NAS algorithm. mutator mainly tackles the latter part. For a LayerChoice, NAS algorithms have different logic to handle it, for example DARTS connects all the choices into the model, ENAS sample one choice every minibatch. This can be seen as different interpretation of LayerChoice. That is why you can see DartsMutatorEnasMutator in source code, but there is no DartsMutable or EnasMutable.
https://nni.readthedocs.io/en/latest/NAS/NasReference.md#mutables is lost.
Could you explain more about mutables?
The text was updated successfully, but these errors were encountered: