Skip to content

Commit

Permalink
Fixed relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashen committed Jun 7, 2018
1 parent edfc757 commit c7bc9d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions sandbox/rocky/tf/algos/batch_polopt.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ def train(self, sess=None):
logger.log("Optimizing policy...")
self.optimize_policy(itr, samples_data)
logger.log("Saving snapshot...")
params = self.get_itr_snapshot(itr,
samples_data) # , **kwargs)
params = self.get_itr_snapshot(itr, samples_data)
if self.store_paths:
params["paths"] = samples_data["paths"]
logger.save_itr_params(itr, params)
Expand Down
2 changes: 1 addition & 1 deletion sandbox/rocky/tf/plotter/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from sandbox.rocky.tf.plotter.plotter import *
from sandbox.rocky.tf.plotter.plotter import Plotter

0 comments on commit c7bc9d6

Please sign in to comment.