-
Notifications
You must be signed in to change notification settings - Fork 1
/
EvoMain.py
109 lines (96 loc) · 3.52 KB
/
EvoMain.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
from osim.env import RunEnv
import torch
import numpy as np
import time
import random
import multiprocessing
import time
from multiprocessing.managers import BaseManager
import copy_reg, copy, pickle
from torch.autograd import Variable
from Preprocessing import Preprocessing
from EvolutionaryLearning.NeuralGeneticAlgorithm import NeuralGeneticAlgorithm
def Simulation(proxy_agent,index, return_dict, episodes, vis=False):
print('starting simulation')
env = RunEnv(visualize=vis)
observation = env.reset(difficulty=0)
rewards = np.zeros(episodes)
totalreward = 0
for episode in range(0, episodes):
action = env.action_space.sample()
observation, reward, done, info = env.step(action)
observation = np.array(observation)
Preprocess = Preprocessing(observation, delta=0.01)
prevState = Preprocess.GetState(observation)
for i in range(1,1000):
observation, reward, done, info = env.step(action)
observation = np.array(observation)
#means it didn't go the full simulation
if done and i < 1000:
reward = 0
state = Preprocess.GetState(observation)
s,a,r,sp = Preprocess.ConvertToTensor(prevState,action, reward, state)
totalreward += reward
if done:
env.reset(difficulty = 0, seed = None) #resets the environment if done is true
print("reseting environment" + str(episode))
rewards[episode] = totalreward
totalreward = 0
break
action = proxy_agent(Variable(s, volatile=True))
action = action.data.numpy()
prevState = state;
return_dict[index] = np.sum(rewards) / episodes
return np.sum(rewards) / episodes
def init(l):
global lock
lock = l
class MyManager(BaseManager): pass
def Manager():
m = MyManager()
m.start()
return m
MyManager.register('NeuralGeneticAlgorithm', NeuralGeneticAlgorithm)
def pickle_NN(nn):
print("Pickling a nn")
return NeuralGeneticAlgorithm, (NeuralGeneticAlgorithm.generateScore,)
def update(proxy_agent, index, fitness):
print("we are in update")
proxy_agent.generateScore(fitness, index)
if __name__ == '__main__':
manager = Manager()
l = multiprocessing.Lock()
episodes = 1
pop = 100
d = 'population'
generations=20
sim = lambda a, i, d: Simulation(a,i, d, episodes)
NeuroNN = NeuralGeneticAlgorithm(sim, population=pop, mutation=1e-1, toKeep=10)
NeuroNN.generateInitialPopulation( hiddenlayer=150,state=54,action=18,directory=d)
for i in range(0, generations):
pool = multiprocessing.Pool(initializer=init, initargs=(l,))
if (i == 0):
print 'Number of Processes: ', pool._processes
NeuroNN.generateScores()
NeuroNN.selectParents(dev=3);
print("Current Mean Performance: " + str(NeuroNN.getMeanPerformance()))
NeuroNN.performCrossOver()
NeuroNN.performMutation()
NeuroNN.savePopulation()
NeuroNN.generateScores()
strongest = NeuroNN.getStrongest(dev=3)
i = 0
for s in strongest:
net = s['net']
torch.save(net.state_dict(), './strongest/net' + str(i))
i += 1
i = 0
strongest = NeuroNN.population
for s in strongest:
print(s)
net = s['net']
torch.load('./strongest/net' + str(i))
Simulation(net,i,{}, 1,vis=True)
i += 1
#torch.save(net.state_dict(), './strongest/net' + str(i))
print("cool beans")