I want to sample random architectures from the defined Search Spaces such as DARTS and ENAS.
Is it possible to sample the entire PyTorch object representing the whole architecture? If not, is it possible to sample all the possible cells from the search spaces? Can you provide some code examples for doing this?
I found some code examples from ENAS and DARTS but the model returned include all the "layer choices" that I assume the Trainer would select then generate the final architecture, but I am more interested in just sample random architectures from the search spaces, I mean, the full architectures without these "decisions to be made" included. Can you pleaseeee help me with that?