-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
301 lines (255 loc) · 11.4 KB
/
main.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
############################################################################################
# Libraries
############################################################################################
import random
import matplotlib.pyplot as plt
import scipy
from numpy.random import choice
from scipy.io.wavfile import read as wavread
import copy
import time
import numpy as np
import math
############################################################################################
############################################################################################
# General info of algorithm
############################################################################################
# Number of primary population
NumberOfPrimaryPopulation = 20
# Number of Generations
NumberOfGenerations = 20
# Mutation Probability
MutationProbability = 0.1
# Sample rate
SampleRate = 44100
# Length of the song in seconds
SongLength = 5.94
# Song 1 Name
SongName1 = 'upanddown1.wav'
# Song 2 Name
SongName2 = 'upanddown2.wav'
# Song 3 Name
SongName3 = 'upanddown3.wav'
# Song 4 Name
SongName4 = 'upanddown4.wav'
# Song 5 Name
SongName5 = 'upanddown5.wav'
# Song 6 Name
SongName6 = 'despair2.wav'
# Song 7 Name
SongName7 = 'despair3.wav'
# Domain
Domain = 32768 + 32767
############################################################################################
############################################################################################
# Song Decoder
############################################################################################
def SongDecoder(SongName):
DataOfSong = []
[_, y] = wavread(SongName)
for i in range(0, int(SongLength*SampleRate)):
y1, y2 = [y[i][0], y[i][1]]
res = int((y1 + y2) / 2)
DataOfSong.append(res)
return DataOfSong
############################################################################################
############################################################################################
# Data of Songs
############################################################################################
SongData1 = SongDecoder(SongName1)
SongData2 = SongDecoder(SongName2)
SongData3 = SongDecoder(SongName3)
SongData4 = SongDecoder(SongName4)
SongData5 = SongDecoder(SongName5)
SongData6 = SongDecoder(SongName6)
SongData7 = SongDecoder(SongName7)
############################################################################################
############################################################################################
# Find the local minimum and maximum
############################################################################################
domainOfAllSongs = []
domainOfAllSongs.append(min(SongData1))
domainOfAllSongs.append(max(SongData1))
domainOfAllSongs.append(min(SongData2))
domainOfAllSongs.append(max(SongData2))
domainOfAllSongs.append(min(SongData3))
domainOfAllSongs.append(max(SongData3))
domainOfAllSongs.append(min(SongData4))
domainOfAllSongs.append(max(SongData4))
domainOfAllSongs.append(min(SongData5))
domainOfAllSongs.append(max(SongData5))
domainOfAllSongs.append(min(SongData6))
domainOfAllSongs.append(max(SongData6))
domainOfAllSongs.append(min(SongData7))
domainOfAllSongs.append(max(SongData7))
MinOfDomain = min(domainOfAllSongs)
MaxOfDomain = max(domainOfAllSongs)
Domain = MaxOfDomain - MinOfDomain
print(MinOfDomain, MaxOfDomain, Domain)
############################################################################################
############################################################################################
# Random Primary Population
############################################################################################
print("-----------------------------------------")
print("Primary Population")
print("-----------------------------------------")
PrimaryPopulation = []
for i in range(0, NumberOfPrimaryPopulation):
PrimaryPopulation.append([])
print(i)
for _ in range(0, int(SongLength*SampleRate)):
PrimaryPopulation[i].append(random.randint(MinOfDomain, MaxOfDomain))
############################################################################################
############################################################################################
# Percent of similarity of two songs
############################################################################################
def SimilarityOfSongs(DataOfSong1, DataOfSong2):
SimilarityScore = []
# 1-(DataOfSong1[i][0] - DataOfSong2[i][0])/Domain
for i in range(0, int(SongLength*SampleRate)):
res = abs(DataOfSong1[i] - DataOfSong2[i])
SimilarityScore.append(1 - res / Domain)
return sum(SimilarityScore)/len(SimilarityScore)
############################################################################################
############################################################################################
# Fitness function
############################################################################################
def Fitness(Population):
print("-----------------------------------------")
print("Fitness Function")
print("-----------------------------------------")
Scores = []
res = 0
for i in range(0, len(Population)):
res = res + SimilarityOfSongs(SongData1, Population[i])
res = res + SimilarityOfSongs(SongData2, Population[i])
res = res + SimilarityOfSongs(SongData3, Population[i])
res = res + SimilarityOfSongs(SongData4, Population[i])
res = res + SimilarityOfSongs(SongData5, Population[i])
res = res + SimilarityOfSongs(SongData6, Population[i])
res = res + SimilarityOfSongs(SongData7, Population[i])
Scores.append(res/7)
res = 0
return Scores
############################################################################################
############################################################################################
# Roulette wheel
############################################################################################
def RouletteWheel(Population):
print("-----------------------------------------")
print("Roulette Wheel")
print("-----------------------------------------")
NewPopulation = []
Scores = Fitness(Population)
ScoreSum = sum(Scores)
NormalizedScores = []
for i in range(0, len(Population)):
NormalizedScores.append(Scores[i]/ScoreSum)
res = 1 - sum(NormalizedScores)
index = len(NormalizedScores)-1
NormalizedScores[index] = NormalizedScores[index] + res
q = list(range(0, len(Population)))
for i in range(0, NumberOfPrimaryPopulation):
draw = choice(q, 1, p=NormalizedScores)
NewPopulation.append(Population[draw[0]])
return NewPopulation
############################################################################################
############################################################################################
# Mutation
############################################################################################
def RSMMutation(Population):
print("-----------------------------------------")
print("Mutation")
print("-----------------------------------------")
for i in range(0, NumberOfPrimaryPopulation):
choose = random.uniform(0, 1)
if choose <= MutationProbability:
a = random.randint(0, int(SongLength*SampleRate))
b = random.randint(0, int(SongLength*SampleRate)-1)
while a == b:
b = random.randint(0, int(SongLength * SampleRate)-1)
if a > b:
while a > b:
n1 = Population[i][a]
n2 = Population[i][b]
Population[i][b] = n1
Population[i][a] = n2
a = a - 1
b = b + 1
else:
while a < b:
n1 = Population[i][a]
n2 = Population[i][b]
Population[i][b] = n1
Population[i][a] = n2
a = a + 1
b = b - 1
return Population
############################################################################################
############################################################################################
# Mixing
############################################################################################
def Mixing(Person1, Person2):
child1 = []
child2 = []
for i in range(0, len(Person1)):
child1.append((Person1[i]+(2*Person2[i]))/3)
child2.append((Person2[i] + (2 * Person1[i])) / 3)
return [Person1, Person2, child1, child2]
############################################################################################
############################################################################################
# Mating
############################################################################################
def Mating(Population):
i = 0
NewPopulation = []
PopulationForMating = RouletteWheel(Population)
while i < (NumberOfPrimaryPopulation - 1):
n1 = PopulationForMating[i]
n2 = PopulationForMating[i + 1]
res = Mixing(n1, n2)
NewPopulation.append(res[0])
NewPopulation.append(res[1])
NewPopulation.append(res[2])
NewPopulation.append(res[3])
i = i + 2
return NewPopulation
############################################################################################
############################################################################################
# Test
############################################################################################
FitnessAvrage = []
FitnessMaximum = []
IndexOfBest = 0
print("##########################################################")
print("Welcome")
print("##########################################################")
Population = copy.deepcopy(PrimaryPopulation)
for i in range(0, NumberOfGenerations):
print("##########################################################")
print("Generation number ", i+1)
print("##########################################################")
Population2 = Mating(Population)
Population3 = RSMMutation(Population2)
Population4 = RouletteWheel(Population3)
Population = copy.deepcopy(Population4)
Scores = Fitness(Population)
IndexOfBest = Scores.index(max(Scores))
FitnessAvrage.append(sum(Scores)/len(Scores))
FitnessMaximum.append(max(Scores))
############################################################################################
############################################################################################
# Produce the song
############################################################################################
data = Population[IndexOfBest]
scipy.io.wavfile.write('sample.wav', SampleRate, IndexOfBest.astype(np.int16))
############################################################################################
############################################################################################
# Plot
############################################################################################
plt.plot(FitnessAvrage)
plt.plot(FitnessMaximum)
plt.show()
############################################################################################
# heuristic to see the similarity of learning data and choose base on that to give songs value with fuzzy logic
# find max and min of learning songs and learn and generat primary population based on that.