summaryrefslogtreecommitdiff
path: root/examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers
diff options
context:
space:
mode:
authorErwin Coumans <erwincoumans@google.com>2019-02-11 08:51:07 -0800
committerErwin Coumans <erwincoumans@google.com>2019-02-11 08:51:07 -0800
commit1bd201eb434b189c3da09df8554441bc73c2dfa6 (patch)
tree0b6401c427ed642fcd68326fa65664db5f51035b /examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers
parent12e647868965d00046903396f088eaa810efd4bf (diff)
downloadbullet3-1bd201eb434b189c3da09df8554441bc73c2dfa6.tar.gz
fixes in PyBullet deep_mimic to allow running in pip version
Diffstat (limited to 'examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers')
-rw-r--r--examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers/mpi_solver.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers/mpi_solver.py b/examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers/mpi_solver.py
index 46c0963fa..f2d18051c 100644
--- a/examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers/mpi_solver.py
+++ b/examples/pybullet/gym/pybullet_envs/deep_mimic/learning/solvers/mpi_solver.py
@@ -1,12 +1,12 @@
from mpi4py import MPI
import tensorflow as tf
import numpy as np
-import learning.tf_util as TFUtil
+import pybullet_envs.deep_mimic.learning.tf_util as TFUtil
import pybullet_utils.math_util as MathUtil
import pybullet_utils.mpi_util as MPIUtil
from pybullet_utils.logger import Logger
-from learning.solvers.solver import Solver
+from pybullet_envs.deep_mimic.learning.solvers.solver import Solver
class MPISolver(Solver):
CHECK_SYNC_ITERS = 1000