You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run with the following command: python run.py --realtime
Observe the agent's environment. For me, after each reset, the room's layout is always different (sometimes the door to the next level is on the right, sometimes it is straight ahead).
In the output of the command, I see the following:
WARNING:gym_unity:New seed 0 will apply on next reset.
INFO:mlagents_envs:Academy reset with parameters: floor-number -> 0, tower-seed -> 0
However, this is the output of UnitySDK.log:
Log
Academy resetting
Log
Seed: 9
Log
Seed: 69
Log
Academy resetting
Log
Seed: 98
I have verified that the same happens with seed(1) as well.
The text was updated successfully, but these errors were encountered:
For me, it is always floor 0 and seed 0 after each reset. The first run is a completely random seed because you didn't reset it before running (there is no env.reset() before while True: episode_reward = run_episode(env))
So I didn't encounter any bug here.
My Unity log outputs this:
3/7/2019 7:40:39 PM
Log
Academy resetting
Log
Seed: 26
Log
Seed: 33
Log
Academy resetting
Log
Seed: 0
Log
Academy resetting
Log
Seed: 0
Which seems totally correct. Are you sure you're running v1.2?
Hello.
Try running this piece of code:
Run with the following command:
python run.py --realtime
Observe the agent's environment. For me, after each reset, the room's layout is always different (sometimes the door to the next level is on the right, sometimes it is straight ahead).
In the output of the command, I see the following:
However, this is the output of UnitySDK.log:
I have verified that the same happens with
seed(1)
as well.The text was updated successfully, but these errors were encountered: