autodl-projects/lib/models/cell_searchs/_test_module.py

10 lines
171 B
Python
Raw Normal View History

2019-11-08 15:36:31 +01:00
import torch
from search_model_enas_utils import Controller
def main():
controller = Controller(6, 4)
predictions = controller()
if __name__ == '__main__':
main()