2022-06-22 13:00:40 +02:00
|
|
|
#!/bin/python3
|
2022-06-17 11:29:36 +02:00
|
|
|
import gym
|
2022-06-19 15:50:54 +02:00
|
|
|
from gym.envs.registration import register
|
2022-06-17 11:29:36 +02:00
|
|
|
import numpy as np
|
2022-06-22 13:00:40 +02:00
|
|
|
import os
|
2022-06-17 11:29:36 +02:00
|
|
|
import time
|
2022-06-20 23:12:42 +02:00
|
|
|
import datetime
|
2022-06-17 11:29:36 +02:00
|
|
|
|
|
|
|
from stable_baselines3 import SAC, PPO, A2C
|
|
|
|
from stable_baselines3.common.evaluation import evaluate_policy
|
2022-06-20 23:12:42 +02:00
|
|
|
from stable_baselines3.common.policies import ActorCriticCnnPolicy, ActorCriticPolicy, MultiInputActorCriticPolicy
|
2022-06-17 11:29:36 +02:00
|
|
|
|
2022-06-30 20:40:30 +02:00
|
|
|
from metastable_baselines.trl_pg import TRL_PG
|
2022-06-20 23:12:42 +02:00
|
|
|
import columbus
|
2022-06-19 15:50:54 +02:00
|
|
|
|
2022-06-22 13:00:40 +02:00
|
|
|
#root_path = os.getcwd()
|
|
|
|
root_path = '.'
|
2022-06-17 11:29:36 +02:00
|
|
|
|
2022-06-25 14:50:19 +02:00
|
|
|
|
2022-06-30 20:40:30 +02:00
|
|
|
def main(env_name='ColumbusCandyland_Aux10-v0', timesteps=10_000_000, showRes=True, saveModel=True, n_eval_episodes=0):
|
2022-06-20 23:12:42 +02:00
|
|
|
env = gym.make(env_name)
|
2022-06-30 20:40:30 +02:00
|
|
|
use_sde = True
|
2022-06-25 14:50:19 +02:00
|
|
|
ppo = PPO(
|
|
|
|
"MlpPolicy",
|
|
|
|
env,
|
|
|
|
verbose=0,
|
2022-06-29 12:46:57 +02:00
|
|
|
tensorboard_log=root_path+"/logs_tb/" +
|
|
|
|
env_name+"/ppo"+(['', '_sde'][use_sde])+"/",
|
2022-06-25 14:50:19 +02:00
|
|
|
learning_rate=3e-4,
|
|
|
|
gamma=0.99,
|
|
|
|
gae_lambda=0.95,
|
|
|
|
normalize_advantage=True,
|
2022-06-29 12:46:57 +02:00
|
|
|
ent_coef=0.02, # 0.1
|
2022-06-25 14:50:19 +02:00
|
|
|
vf_coef=0.5,
|
2022-06-29 12:46:57 +02:00
|
|
|
use_sde=use_sde, # False
|
|
|
|
clip_range=0.2,
|
2022-06-25 14:50:19 +02:00
|
|
|
)
|
|
|
|
trl_pg = TRL_PG(
|
2022-06-19 22:47:04 +02:00
|
|
|
"MlpPolicy",
|
|
|
|
env,
|
2022-06-21 15:15:38 +02:00
|
|
|
verbose=0,
|
2022-06-29 12:46:57 +02:00
|
|
|
tensorboard_log=root_path+"/logs_tb/"+env_name +
|
|
|
|
"/trl_pg"+(['', '_sde'][use_sde])+"/",
|
2022-06-25 14:50:19 +02:00
|
|
|
learning_rate=3e-4,
|
|
|
|
gamma=0.99,
|
|
|
|
gae_lambda=0.95,
|
|
|
|
normalize_advantage=True,
|
2022-06-29 12:46:57 +02:00
|
|
|
ent_coef=0.03, # 0.1
|
2022-06-25 14:50:19 +02:00
|
|
|
vf_coef=0.5,
|
2022-06-29 12:46:57 +02:00
|
|
|
use_sde=use_sde,
|
|
|
|
clip_range=2, # 0.2
|
2022-06-17 11:29:36 +02:00
|
|
|
)
|
|
|
|
|
2022-06-25 14:50:19 +02:00
|
|
|
print('TRL_PG:')
|
|
|
|
testModel(trl_pg, timesteps, showRes,
|
|
|
|
saveModel, n_eval_episodes)
|
2022-06-30 20:40:30 +02:00
|
|
|
# print('PPO:')
|
|
|
|
# testModel(ppo, timesteps, showRes,
|
2022-06-26 16:38:46 +02:00
|
|
|
# saveModel, n_eval_episodes)
|
2022-06-17 11:29:36 +02:00
|
|
|
|
|
|
|
|
2022-06-25 14:50:19 +02:00
|
|
|
def testModel(model, timesteps, showRes=False, saveModel=False, n_eval_episodes=16):
|
2022-06-17 11:29:36 +02:00
|
|
|
env = model.get_env()
|
2022-06-29 12:46:57 +02:00
|
|
|
try:
|
|
|
|
model.learn(timesteps)
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
print('[!] Training Terminated')
|
|
|
|
pass
|
2022-06-17 11:29:36 +02:00
|
|
|
|
2022-06-20 23:12:42 +02:00
|
|
|
if saveModel:
|
|
|
|
now = datetime.datetime.now().strftime('%d.%m.%Y-%H:%M')
|
2022-06-25 14:50:19 +02:00
|
|
|
loc = root_path+'/models/' + \
|
|
|
|
model.tensorboard_log.replace(
|
|
|
|
root_path+'/logs_tb/', '').replace('/', '_')+now+'.zip'
|
2022-06-29 12:46:57 +02:00
|
|
|
print(model.get_parameters())
|
2022-06-22 13:00:40 +02:00
|
|
|
model.save(loc)
|
2022-06-20 23:12:42 +02:00
|
|
|
|
2022-06-19 20:34:04 +02:00
|
|
|
if n_eval_episodes:
|
2022-06-25 14:50:19 +02:00
|
|
|
mean_reward, std_reward = evaluate_policy(
|
|
|
|
model, env, n_eval_episodes=n_eval_episodes, deterministic=False)
|
|
|
|
print('Reward: '+str(round(mean_reward, 3)) +
|
|
|
|
'±'+str(round(std_reward, 2)))
|
2022-06-17 11:29:36 +02:00
|
|
|
|
|
|
|
if showRes:
|
2022-06-19 20:34:04 +02:00
|
|
|
input('<ready?>')
|
2022-06-17 11:29:36 +02:00
|
|
|
obs = env.reset()
|
|
|
|
# Evaluate the agent
|
|
|
|
episode_reward = 0
|
2022-06-22 13:12:55 +02:00
|
|
|
while True:
|
2022-06-25 14:50:19 +02:00
|
|
|
time.sleep(1/30)
|
2022-06-17 11:29:36 +02:00
|
|
|
action, _ = model.predict(obs, deterministic=False)
|
|
|
|
obs, reward, done, info = env.step(action)
|
|
|
|
env.render()
|
|
|
|
episode_reward += reward
|
|
|
|
if done:
|
|
|
|
#print("Reward:", episode_reward)
|
|
|
|
episode_reward = 0.0
|
|
|
|
obs = env.reset()
|
|
|
|
env.reset()
|
|
|
|
|
2022-06-25 14:50:19 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2022-06-30 20:40:30 +02:00
|
|
|
# main('LunarLanderContinuous-v2')
|
|
|
|
# main('ColumbusJustState-v0')
|
|
|
|
# main('ColumbusStateWithBarriers-v0')
|
|
|
|
main('ColumbusEasierObstacles-v0')
|