Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing ACL_bench imports #1

Merged
merged 1 commit into from
Mar 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions TeachMyAgent/teachers/algos/truncated_self_paced.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import numpy as np
import torch
import scipy.linalg as scpla
from ACL_bench.teachers.algos.AbstractTeacher import AbstractTeacher
from ACL_bench.teachers.utils.gaussian_torch_distribution import GaussianTorchDistribution
from TeachMyAgent.teachers.algos.AbstractTeacher import AbstractTeacher
from TeachMyAgent.teachers.utils.gaussian_torch_distribution import GaussianTorchDistribution
from scipy.optimize import minimize, NonlinearConstraint, Bounds
from scipy.stats import multivariate_normal
import itertools
Expand Down
2 changes: 1 addition & 1 deletion TeachMyAgent/teachers/teacher_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from TeachMyAgent.teachers.algos.covar_gmm import CovarGMM
from TeachMyAgent.teachers.algos.adr import ADR
from TeachMyAgent.teachers.algos.self_paced_teacher import SelfPacedTeacher
from ACL_bench.teachers.algos.truncated_self_paced import SelfPacedTeacher as TruncatedSelfPacedTeacher
from TeachMyAgent.teachers.algos.truncated_self_paced import SelfPacedTeacher as TruncatedSelfPacedTeacher
from TeachMyAgent.teachers.algos.goal_gan import GoalGAN
from TeachMyAgent.teachers.algos.setter_solver import SetterSolver
from TeachMyAgent.teachers.algos.random_teacher import RandomTeacher
Expand Down