Skip to content

Commit

Permalink
Rename sac utils
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzhao9 committed Jun 20, 2024
1 parent 14e33ff commit ec6cd8a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion torchbenchmark/models/pytorch_unet/install.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from utils.python_utils import pip_install_requirements

if __name__ == '__main__':
pip_install_requirements()
pip_install_requirements(requirements_txt="pytorch_unet/requirements.txt")
2 changes: 1 addition & 1 deletion torchbenchmark/models/soft_actor_critic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .envs import load_gym
from .sac import SACAgent
from .replay import PrioritizedReplayBuffer, ReplayBuffer
from .utils import hard_update, soft_update
from .sac_utils import hard_update, soft_update


def learn_standard(
Expand Down

0 comments on commit ec6cd8a

Please sign in to comment.