-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from kywch/isaacgym
Sync isaacgym
- Loading branch information
Showing
11 changed files
with
357 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,12 @@ | ||
from .environment import env_creator | ||
|
||
try: | ||
import torch | ||
except ImportError: | ||
pass | ||
else: | ||
from .torch import Policy | ||
try: | ||
from .torch import Recurrent | ||
except: | ||
Recurrent = None | ||
|
||
''' | ||
try: | ||
import pufferlib.environments.morph.policy as torch | ||
except ImportError: | ||
pass | ||
else: | ||
from .policy import Policy | ||
from pufferlib.environments.morph.policy import Policy | ||
try: | ||
from .policy import Recurrent | ||
from pufferlib.environments.morph.policy import Recurrent | ||
except: | ||
Recurrent = None | ||
''' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.