Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/Training-on-Amazon-Web-Service.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ linux executables which use visual observations.
7. Test the instance setup from Python using:

```python
from unityagents import UnityEnvironment
from mlagents.envs import UnityEnvironment

env = UnityEnvironment(<your_env>)
```
Expand All @@ -207,4 +207,4 @@ linux executables which use visual observations.
//cd into your ml-agents/python folder
chmod +x <your_env>.x86_64
python learn.py <your_env> --train
```
```
2 changes: 1 addition & 1 deletion docs/Training-on-Microsoft-Azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ To verify that all steps worked correctly:
7. Test the instance setup from Python using:

```python
from unityagents import UnityEnvironment
from mlagents.envs import UnityEnvironment

env = UnityEnvironment(<your_env>)
```
Expand Down
2 changes: 1 addition & 1 deletion ml-agents/mlagents/trainers/bc/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from mlagents.trainers.bc.models import BehavioralCloningModel
from mlagents.trainers.policy import Policy

logger = logging.getLogger("unityagents")
logger = logging.getLogger("mlagents.trainers")


class BCPolicy(Policy):
Expand Down
2 changes: 1 addition & 1 deletion ml-agents/mlagents/trainers/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from mlagents.trainers import UnityException
from mlagents.trainers.models import LearningModel

logger = logging.getLogger("unityagents")
logger = logging.getLogger("mlagents.trainers")


class UnityPolicyException(UnityException):
Expand Down
2 changes: 1 addition & 1 deletion ml-agents/mlagents/trainers/ppo/policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from mlagents.trainers.ppo.models import PPOModel
from mlagents.trainers.policy import Policy

logger = logging.getLogger("unityagents")
logger = logging.getLogger("mlagents.trainers")


class PPOPolicy(Policy):
Expand Down