Skip to content
Snippets Groups Projects
Commit a3ebc162 authored by Sun Jin Kim's avatar Sun Jin Kim
Browse files

fix import ucb_learner calls

parent c4d6923d
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ from tqdm import trange ...@@ -18,7 +18,7 @@ from tqdm import trange
torch.manual_seed(0) torch.manual_seed(0)
# import agents and its functions # import agents and its functions
from MetaAugment import UCB1_JC_py as UCB1_JC from MetaAugment.autoaugment_learners import ucb_learner as UCB1_JC
from MetaAugment import Evo_learner as Evo from MetaAugment import Evo_learner as Evo
......
...@@ -24,7 +24,7 @@ import sys ...@@ -24,7 +24,7 @@ import sys
sys.path.insert(0, os.path.abspath('..')) sys.path.insert(0, os.path.abspath('..'))
# # import agents and its functions # # import agents and its functions
from MetaAugment import UCB1_JC_py as UCB1_JC from MetaAugment.autoaugment_learners import ucb_learner as UCB1_JC
from MetaAugment.autoaugment_learners import evo_learner from MetaAugment.autoaugment_learners import evo_learner
import MetaAugment.controller_networks as cn import MetaAugment.controller_networks as cn
import MetaAugment.autoaugment_learners as aal import MetaAugment.autoaugment_learners as aal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment