update ENAS

This commit is contained in:
D-X-Y
2019-11-09 01:36:31 +11:00
parent 1da5b49018
commit 34ba8053de
7 changed files with 533 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
import torch
from search_model_enas_utils import Controller
def main():
controller = Controller(6, 4)
predictions = controller()
if __name__ == '__main__':
main()