-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathneuronSeq2.py
1118 lines (944 loc) · 41.5 KB
/
neuronSeq2.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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import numpy as np
import time
import threading
import rtmidi
import math
import mido
import jack
#global variables
#neuron parameters
ACTIVATION_FUNCTION_PARAMETER = 0
THRESHOLD_PARAMETER = 1
MIDI_NOTE_PARAMETER = 2
MIDI_VELOCITY_PARAMETER = 3
MIDI_DURATION_PARAMETER = 4
WEIGHT_0_1_PARAMETER = 5
WEIGHT_1_0_PARAMETER = 6
ACT_BUFFER_SIZE_PARAMETER = 7
#neuron parameter names
NEURON_PARAMETER_NAMES = []
NEURON_PARAMETER_NAMES.append("Activation Function")
NEURON_PARAMETER_NAMES.append("Threshold")
NEURON_PARAMETER_NAMES.append("MIDI Note")
NEURON_PARAMETER_NAMES.append("MIDI Velocity")
NEURON_PARAMETER_NAMES.append("MIDI Duration")
NEURON_PARAMETER_NAMES.append("Weight 0->1")
NEURON_PARAMETER_NAMES.append("Weight 1->0")
#neuron activation functions
NEURON_ACTIVATION_FUNCTION_LINEAR = 0
NEURON_ACTIVATION_FUNCTION_SIGMOID = 1
NEURON_ACTIVATION_FUNCTION_TANH = 2
NEURON_ACTIVATION_FUNCTION_RELU = 3
NEURON_ACTIVATION_FUNCTION_SOFTMAX = 4
#neuron activation function names
NEURON_ACTIVATION_FUNCTION_NAME_LINEAR = "Linear"
NEURON_ACTIVATION_FUNCTION_NAME_SIGMOID = "Sigmoid"
NEURON_ACTIVATION_FUNCTION_NAME_TANH = "Tanh"
NEURON_ACTIVATION_FUNCTION_NAME_RELU = "ReLU"
NEURON_ACTIVATION_FUNCTION_NAME_SOFTMAX = "Softmax"
#MIDI drum note numbers
KICK = 36
SNARE = 38
CLOSED_HIHAT = 42
OPEN_HIHAT = 46
CRASH = 49
RIDE = 51
TOM1 = 48
TOM2 = 45
TOM3 = 43
TOM4 = 41
X_AXIS_LENGTH = 2**24
#midi output
MIDI_OUTPUT_PORT_NAME = "NeuronSeq"
MIDI_OUTPUT_PORT_NAME_DEFAULT = "NeuronSeq"
#get midi output ports from rtmidi
midi_output = rtmidi.MidiOut()
available_midi_output_ports = midi_output.get_port_count()
midi_output_port_name = MIDI_OUTPUT_PORT_NAME_DEFAULT
#try opening default port
if available_midi_output_ports:
midi_output.open_port(0)
else:
#open virtual port
midi_output.open_virtual_port(midi_output_port_name)
class Auron(threading.Thread):
def __init__(self, id="Auron", device_index=0):
threading.Thread.__init__(self)
self.lenX = X_AXIS_LENGTH
self.activation = 0.0
self.Y = np.zeros(1024)
self.activation_index = 0
self.id = id
self.channel = 0
self.note = 0
self.velocity = 0
self.duration = 0.0
self.threshold = 1.0
self.open_audio_input_stream()
self.running = True
def open_audio_input_stream(self):
try:
self.audio_input_stream = jack.Client(self.id)
self.audio_input_stream.inports.register('input')
self.audio_input_stream.blocksize = 1024
self.audio_input_stream.activate()
except jack.JackError:
print("Error opening audio input stream")
return None
return self.audio_input_stream
def get_id(self):
return self.id
def run(self):
while self.running:
self.activation = self.Y[self.activation_index]
self.activation_index += 1
if self.activation_index >= len(self.Y):
self.activation_index = 0
self.get_next_audio_buffer()
return
def stop(self):
self.running=False
return
def get_next_audio_buffer(self):
#read audio buffer into Y
try:
self.Y = self.audio_input_stream.inports[0].get_array()
except jack.JackError:
print("Error reading audio buffer")
return None
return self.Y
#NNote is a neuron that outputs a midi events
#TODO: add parameter for len(X).
class NNote:
def __init__(self, channel=0, note=0, velocity=0, duration=0.0, lenX=X_AXIS_LENGTH, id="NNote"):
self.lenX = lenX
self.note = note
self.velocity = velocity
self.duration = duration
self.activation = 0.0
self.activation_function = NEURON_ACTIVATION_FUNCTION_LINEAR
self.activation_function_name = NEURON_ACTIVATION_FUNCTION_NAME_LINEAR
self.id = id
self.activation_index=0
self.X = []
self.Y = []
self.create_activation_X_axis()
self.create_activation_Y_axis()
self.threshold = 1.0
self.note_thread = None
self.channel = channel
#self.midi_msg = rtmidi.midi_message()
return
def set_activation_buffer_size(self, lenX):
self.lenX = lenX
self.create_activation_X_axis()
self.create_activation_Y_axis()
return
def set_note(self, note):
self.note = note
return
def set_channel(self, channel):
self.channel = channel
return
def set_velocity(self, velocity):
self.velocity = velocity
return
def set_duration(self, duration):
self.duration = duration
return
def set_threshold(self, threshold):
self.threshold = threshold
return
def get_threshold(self):
return self.threshold
def set_activation_function(self, activation_function):
self.activation_function = activation_function
if activation_function==NEURON_ACTIVATION_FUNCTION_LINEAR:
self.activation_function_name = NEURON_ACTIVATION_FUNCTION_NAME_LINEAR
#recalculate Y axis
self.create_activation_Y_axis()
elif activation_function==NEURON_ACTIVATION_FUNCTION_SIGMOID:
self.activation_function_name = NEURON_ACTIVATION_FUNCTION_NAME_SIGMOID
#recalculate Y axis
self.create_activation_Y_axis()
elif activation_function==NEURON_ACTIVATION_FUNCTION_TANH:
self.activation_function_name = NEURON_ACTIVATION_FUNCTION_NAME_TANH
#recalculate Y axis
self.create_activation_Y_axis()
elif activation_function==NEURON_ACTIVATION_FUNCTION_RELU:
self.activation_function_name = NEURON_ACTIVATION_FUNCTION_NAME_RELU
#recalculate Y axis
self.create_activation_Y_axis()
elif activation_function==NEURON_ACTIVATION_FUNCTION_SOFTMAX:
self.activation_function_name = NEURON_ACTIVATION_FUNCTION_NAME_SOFTMAX
#recalculate Y axis
self.create_activation_Y_axis()
return
def get_activation_function_name(self):
return self.activation_function_name
def get_activation_function(self):
return self.activation_function
#activation function
def create_activation_X_axis(self):
self.X = np.arange(0, 1, 1/self.lenX)
return
def create_activation_Y_axis(self):
if self.activation_function==NEURON_ACTIVATION_FUNCTION_LINEAR:
self.Y = self.X
elif self.activation_function==NEURON_ACTIVATION_FUNCTION_SIGMOID:
temp_X = (self.X-0.5)*24
self.Y = (1 / (1 + np.exp(-temp_X)))
elif self.activation_function==NEURON_ACTIVATION_FUNCTION_TANH:
self.Y = np.tanh(self.X)
elif self.activation_function==NEURON_ACTIVATION_FUNCTION_RELU:
self.Y = np.maximum(self.X, 0)
elif self.activation_function==NEURON_ACTIVATION_FUNCTION_SOFTMAX:
self.Y = np.exp(self.X) / np.sum(np.exp(self.X))
return
def create_midi_event(self):
#create midi event
midi_event = mido.Message('note_on', note=self.note, velocity=self.velocity, channel=self.channel)
return midi_event
def create_midi_event_off(self):
#create midi event
midi_event = mido.Message('note_off', note=self.note, velocity=self.velocity, channel=self.channel)
return midi_event
def note_thread_start(self):
#start thread
self.note_thread = threading.Thread(target=self.execute_note_thread)
self.note_thread.start()
return
def get_id(self):
return self.id
def execute_note_thread(self):
#create midi event
midi_event = self.create_midi_event()
#send midi event
midi_output.send_message(midi_event.bytes())
#sleep for duration
time.sleep(self.duration)
#create midi event
midi_event = self.create_midi_event_off()
#send midi event
midi_output.send_message(midi_event.bytes())
return
def advance_activation_index(self):
self.activation_index += 1
if self.activation_index >= len(self.X):
self.activation_index = len(self.X)-1
return self.Y[self.activation_index]
class Connection(threading.Thread):
def __init__(self, name, nnote1, nnnote2, weight_0_to_1=0.0, weight_1_to_0=0.0):
threading.Thread.__init__(self)
self.weights = [weight_0_to_1, weight_1_to_0]
self.nnotes = [nnote1, nnnote2]
self.name = name
self.source = nnote1
self.destination = nnnote2
self.weight_0_to_1 = weight_0_to_1
self.weight_1_to_0 = weight_1_to_0
self.running = True
return
def set_weight(self, weight_idx, weight_value):
self.weights[weight_idx] = weight_value
self.weight_0_to_1 = self.weights[0]
self.weight_1_to_0 = self.weights[1]
return
def get_weight(self, weight_idx):
return self.weights[weight_idx]
def get_weights(self):
return self.weights
def set_nnote(self, nnote_idx, nnote):
self.nnotes[nnote_idx] = nnote
return
def get_nnote(self, nnote_idx):
return self.nnotes[nnote_idx]
def get_nnotes(self):
return self.nnotes
def get_id(self):
return self.name
def run(self):
while self.running:
if type(self.source) is Auron and type(self.destination) is Auron:
return
if type(self.source) is NNote and type(self.destination) is NNote:
self.destination.activation += self.source.advance_activation_index()*self.weight_0_to_1
self.source.activation += self.destination.advance_activation_index()*self.weight_1_to_0
if self.source.activation >= self.source.Y[-1]:
self.source.activation = 0.0
self.source.activation_index = 0
self.source.note_thread_start()
if self.destination.activation >= self.destination.Y[-1]:
self.destination.activation = 0.0
self.destination.activation_index = 0
self.destination.note_thread_start()
if type(self.source) is NNote and type(self.destination) is Auron:
print("NNote to Auron")
self.source.activation += self.destination.activation*self.weight_0_to_1
if self.source.activation >= self.source.Y[-1]:
self.source.activation = 0.0
self.source.activation_index = 0
self.source.note_thread_start()
if type(self.source) is Auron and type(self.destination) is NNote:
print("Auron to NNote")
self.destination.activation += self.source.activation*self.weight_1_to_0
if self.destination.activation >= self.destination.Y[-1]:
self.destination.activation = 0.0
self.destination.activation_index = 0
self.destination.note_thread_start()
time.sleep(0.001)
return
def stop(self):
self.running=False
return
class NeuronSeq:
"""NeuronSeq holds a list of NNotes and Connections between them.
It also provides methods for changing parameters of NNotes and Connections.
"""
def __init__(self):
self.connections = []
self.nnotes = []
self.modulators = []
return
def neuron_list_string(self):
neuron_list_string = ""
for nnote in self.nnotes:
neuron_list_string += nnote.id + " "+ str(nnote.note) + ", "
neuron_list_string += "\n"
for connection in self.connections:
neuron_list_string += connection.name + ": " + connection.nnotes[0].id + " " + connection.nnotes[1].id + ", "
return neuron_list_string
def set_velocity(nnote, velocity):
nnote.velocity = velocity
return
def set_duration(nnote, duration):
nnote.duration = duration
return
def set_threshold(nnote, threshold):
nnote.threshold = threshold
return
def set_weight_0_to_1(connection, weight):
connection.weight_0_to_1 = weight
connection.weights[0] = weight
return
def set_weight_1_to_0(connection, weight):
connection.weight_1_to_0 = weight
connection.weights[1] = weight
return
def get_nnotes(self):
return self.nnotes
def get_connections(self):
return self.connections
def set_threshold(self, connection_idx, nnote_idx, threshold):
self.connections[connection_idx].get_nnote(nnote_idx).set_threshold(threshold)
return
def get_threshold(self, connection_idx, nnote_idx):
return self.connections[connection_idx].get_nnote(nnote_idx).get_threshold()
def set_midi_note(self, connection_idx, nnote_idx, note):
self.connections[connection_idx].get_nnote(nnote_idx).set_note(note)
return
def get_midi_note(self, connection_idx, nnote_idx):
return self.connections[connection_idx].get_nnote(nnote_idx).note
def set_midi_velocity(self, connection_idx, nnote_idx, velocity):
self.connections[connection_idx].get_nnote(nnote_idx).set_velocity(velocity)
return
def get_midi_velocity(self, connection_idx, nnote_idx):
return self.connections[connection_idx].get_nnote(nnote_idx).velocity
def set_midi_duration(self, connection_idx, nnote_idx, duration):
self.connections[connection_idx].get_nnote(nnote_idx).set_duration(duration)
return
def get_midi_duration(self, connection_idx, nnote_idx):
return self.connections[connection_idx].get_nnote(nnote_idx).duration
def set_weight_0_to_1(self, connection_idx, weight):
self.connections[connection_idx].set_weight(0, weight)
return
def get_weight_0_to_1(self, connection_idx):
return self.connections[connection_idx].get_weight(0)
def set_weight_1_to_0(self, connection_idx, weight):
self.connections[connection_idx].set_weight(1, weight)
return
def get_weight_1_to_0(self, connection_idx):
return self.connections[connection_idx].get_weight(1)
def change_parameter(self, connection_idx, nnote_idx, parameter_idx, parameter_value):
if parameter_idx==ACTIVATION_FUNCTION_PARAMETER:
self.connections[connection_idx].get_nnote(nnote_idx).set_activation_function(parameter_value)
print ("Activation Function set to", self.connections[connection_idx].get_nnote(nnote_idx).get_activation_function_name())
if parameter_idx==THRESHOLD_PARAMETER:
self.connections[connection_idx].get_nnote(nnote_idx).set_threshold(parameter_value)
print ("Threshold set to", self.connections[connection_idx].get_nnote(nnote_idx).get_threshold())
elif parameter_idx==MIDI_NOTE_PARAMETER:
self.connections[connection_idx].get_nnote(nnote_idx).set_note(parameter_value)
print ("MIDI Note set to", self.connections[connection_idx].get_nnote(nnote_idx).note)
elif parameter_idx==MIDI_VELOCITY_PARAMETER:
self.connections[connection_idx].get_nnote(nnote_idx).set_velocity(parameter_value)
print ("MIDI Velocity set to", self.connections[connection_idx].get_nnote(nnote_idx).velocity)
elif parameter_idx==MIDI_DURATION_PARAMETER:
self.connections[connection_idx].get_nnote(nnote_idx).set_duration(parameter_value)
print ("Duration set to", self.connections[connection_idx].get_nnote(nnote_idx).duration)
elif parameter_idx==WEIGHT_0_1_PARAMETER:
self.connections[connection_idx].set_weight(0, parameter_value)
print ("Weight 0->1 set to", self.connections[connection_idx].get_weight(0))
elif parameter_idx==WEIGHT_1_0_PARAMETER:
self.connections[connection_idx].set_weight(1, parameter_value)
print ("Weight 1->0 set to", self.connections[connection_idx].get_weight(1))
elif parameter_idx==ACT_BUFFER_SIZE_PARAMETER:
self.connections[connection_idx].get_nnote(nnote_idx).set_activation_buffer_size(parameter_value)
print ("Activation buffer size set to", self.connections[connection_idx].get_nnote(nnote_idx).lenX)
return
def get_parameter(self, connection_idx, nnote_idx, parameter_idx):
if parameter_idx==THRESHOLD_PARAMETER:
return self.connections[connection_idx].get_nnote(nnote_idx).get_threshold()
elif parameter_idx==MIDI_NOTE_PARAMETER:
return self.connections[connection_idx].get_nnote(nnote_idx).note
elif parameter_idx==MIDI_VELOCITY_PARAMETER:
return self.connections[connection_idx].get_nnote(nnote_idx).velocity
elif parameter_idx==MIDI_DURATION_PARAMETER:
return self.connections[connection_idx].get_nnote(nnote_idx).duration
elif parameter_idx==WEIGHT_0_1_PARAMETER:
return self.connections[connection_idx].get_weight(0)
elif parameter_idx==WEIGHT_1_0_PARAMETER:
return self.connections[connection_idx].get_weight(1)
return
def create_auron(self, id="Auron", device_index=0):
auron = Auron(id, device_index)
self.nnotes.append(auron)
#start auron thread
auron.start()
return auron
def create_nnote(self, channel=0, note=0, velocity=0, duration=0.0, lenX=X_AXIS_LENGTH, id="NNote"):
nnote = NNote()
nnote.lenX = lenX
nnote.create_activation_X_axis()
nnote.create_activation_Y_axis()
nnote.set_note(note)
nnote.set_velocity(velocity)
nnote.set_duration(duration)
nnote.set_threshold(1.0)
nnote.id = id
nnote.channel = channel
self.nnotes.append(nnote)
return nnote
def create_connection(self, name, nnote1_idx, nnote2_idx, weight_0_to_1=0.0, weight_1_to_0=0.0):
connection = Connection(name, self.nnotes[nnote1_idx], self.nnotes[nnote2_idx], weight_0_to_1, weight_1_to_0)
self.connections.append(connection)
#start connection thread
connection.start()
return connection
def get_connection_name(self, connection_idx):
return self.connections[connection_idx].name
def get_neuron_graph_data_act_func(self):
neuron_graph_data = []
for nnote in self.nnotes:
neuron_graph_data.append(nnote.X)
neuron_graph_data.append(nnote.Y)
return neuron_graph_data
def stop(self):
for connection in self.connections:
connection.stop()
connection.join()
for modulator in self.modulators:
modulator.stop()
modulator.join()
for nnote in self.nnotes:
if type(nnote) is Auron:
nnote.stop()
nnote.join()
return
def get_angle(angle, add_to_angle):
new_angle = angle+add_to_angle
return new_angle%360
class DistanceVector():
def __init__(self, nx_point):
self.nx_point = nx_point
#calculate angle in radians
self.angle = math.atan2(0, 0) - math.atan2(self.nx_point[1], self.nx_point[0])
#convert to degrees
self.angle = math.degrees(self.angle)
self.vector_length = math.sqrt(self.nx_point[0]**2 + self.nx_point[1]**2)
self.update_nx_point()
def change_angle(self, add_to_angle):
self.angle = get_angle(self.angle, add_to_angle)
return self.update_nx_point()
def set_coordinates(self, nx_point):
self.nx_point = nx_point
self.vector_length = math.sqrt(self.nx_point[0]**2 + self.nx_point[1]**2)
self.angle = math.atan2(0, 0) - math.atan2(self.nx_point[1], self.nx_point[0])
self.angle = math.degrees(self.angle)
return self
def get_vector_length(self):
return self.vector_length
def set_vector_length(self, vector_length):
self.vector_length = vector_length
return self.update_vector_length()
def update_vector_length(self):
x, y = self.nx_point
#𝑥′=𝑥cos𝜃−𝑦sin𝜃
#𝑦′=𝑥sin𝜃+𝑦cos𝜃
#set vector length
new_x = x*self.vector_length
new_y = y*self.vector_length
self.nx_point = (new_x, new_y)
return self
def update_nx_point(self):
x, y = self.nx_point
#𝑥′=𝑥cos𝜃−𝑦sin𝜃
#𝑦′=𝑥sin𝜃+𝑦cos𝜃
#rotate point around origin
new_x = x*math.cos(math.radians(self.angle)) - y*math.sin(math.radians(self.angle))
new_y = x*math.sin(math.radians(self.angle)) + y*math.cos(math.radians(self.angle))
self.vector_length = math.sqrt(new_x**2 + new_y**2)
self.nx_point = (new_x, new_y)
return self
def get_coordinates(self):
return self.nx_point
def get_vector_length(self):
return self.vector_length
# Define rotation functions
def rotate_graph(distance_vector, add_to_angle):
distance_vector = distance_vector.change_angle(add_to_angle)
return distance_vector
class CCModulator(threading.Thread):
def __init__(self, neuronSeq, cc_number):
threading.Thread.__init__(self)
self.name = "CCModulator"
self.neuronSeq = neuronSeq
self.cc_number = cc_number
self.lenY = 1000
self.X = []
self.Y = []
self.create_modulation_Y_axis()
self.activation_index = 0
self.running = True
self.weight = 0.0
def set_weight(self, weight):
self.weight = weight
return
def modulate(self, modulator_value):
modulator_value = int(modulator_value*self.weight*127)
if modulator_value < 0:
modulator_value = 0
if modulator_value > 127:
modulator_value = 127
#modulate parameter
midi_output.send_message([0xB0, self.cc_number, modulator_value])
return
def create_modulation_Y_axis(self):
self.X = np.arange(0, 1, 1/self.lenY)
self.Y = np.sin(self.X*2*np.pi)
return
def run(self):
while self.running:
#modulate parameter
self.activation_index = (self.activation_index+1)%self.lenY
y = self.Y[self.activation_index]
self.modulate(y)
outstr = ""
for nnote in self.neuronSeq.get_nnotes():
outstr += nnote.id + ": " + str(nnote.note) + ", " + str(nnote.velocity) + ", " + str(nnote.duration) + ", " + str(nnote.activation) + ", " + str(nnote.activation_index) + "\n"
for connection in self.neuronSeq.get_connections():
outstr += connection.name + ": " + str(connection.get_weight(0)) + ", " + str(connection.get_weight(1)) + "\n"
#self.output.config(text=outstr)
time.sleep(0.001)
return
def stop(self):
self.running=False
return
class NNoteVelocitySineModulator(threading.Thread):
def __init__(self, nnote, master_window, neuronSeq):
threading.Thread.__init__(self)
self.name = "NNoteVelocitySineModulator"
self.neuronSeq = neuronSeq
self.output = master_window.nn_conn_label
self.nnote = nnote
self.lenY = 1000
self.X = []
self.Y = []
self.create_modulation_Y_axis()
self.activation_index = 0
self.running = True
self.weight = 0.0
def set_weight(self, weight):
self.weight = weight
return
def modulate(self, modulator_value):
modulator_value = int(modulator_value*self.weight*127)
#modulate parameter
self.nnote.set_velocity(modulator_value)
return
def create_modulation_Y_axis(self):
frequency = 2
self.X = np.arange(0, 1, 1/self.lenY)
self.Y = np.sin(self.X*2*np.pi*frequency)
return
def run(self):
while self.running:
#modulate parameter
self.activation_index = (self.activation_index+1)%self.lenY
y = self.Y[self.activation_index]
self.modulate(y)
outstr = ""
for nnote in self.neuronSeq.get_nnotes():
outstr += nnote.id + ": " + str(nnote.note) + ", " + str(nnote.velocity) + ", " + str(nnote.duration) + ", " + str(nnote.activation) + ", " + str(nnote.activation_index) + "\n"
for connection in self.neuronSeq.get_connections():
outstr += connection.name + ": " + str(connection.get_weight(0)) + ", " + str(connection.get_weight(1)) + "\n"
#self.output.config(text=outstr)
time.sleep(0.001)
return
def stop(self):
self.running=False
return
#doomed to fail for no way to send right note_off's
class NNoteNoteSineModulator(threading.Thread):
def __init__(self, nnote, master_window, neuronSeq):
threading.Thread.__init__(self)
self.name = "NNoteNoteSineModulator"
self.neuronSeq = neuronSeq
self.output = master_window.nn_conn_label
self.nnote = nnote
self.lenY = 1000
self.X = []
self.Y = []
self.create_modulation_Y_axis()
self.activation_index = 0
self.running = True
self.weight = 0.0
def set_weight(self, weight):
self.weight = weight
return
def modulate(self, modulator_value):
modulator_value = int(modulator_value*self.weight*127)
if modulator_value < 0:
modulator_value = 0
if modulator_value > 127:
modulator_value = 127
#modulate parameter
self.nnote.set_note(modulator_value)
return
def create_modulation_Y_axis(self):
self.X = np.arange(0, 1, 1/self.lenY)
self.Y = np.sin(self.X*2*np.pi)
return
def run(self):
while self.running:
self.activation_index = (self.activation_index+1)%self.lenY
#modulate parameter
y = self.Y[self.activation_index]
self.modulate(y)
outstr = ""
for nnote in self.neuronSeq.get_nnotes():
outstr += nnote.id + ": " + str(nnote.note) + ", " + str(nnote.velocity) + ", " + str(nnote.duration) + ", " + str(nnote.activation) + ", " + str(nnote.activation_index) + "\n"
for connection in self.neuronSeq.get_connections():
outstr += connection.name + ": " + str(connection.get_weight(0)) + ", " + str(connection.get_weight(1)) + "\n"
#self.output.config(text=outstr)
time.sleep(0.001)
return
def stop(self):
self.running=False
return
class NNoteDurationSineModulator(threading.Thread):
def __init__(self, nnote, master_window, neuronSeq):
threading.Thread.__init__(self)
self.name = "NNoteDurationSineModulator"
self.neuronSeq = neuronSeq
self.output = master_window.nn_conn_label
self.nnote = nnote
self.lenY = 1000
self.X = []
self.Y = []
self.create_modulation_Y_axis()
self.activation_index = 0
self.running = True
self.weight = 0.0
def set_weight(self, weight):
self.weight = weight
return
def modulate(self, modulator_value):
modulator_value = modulator_value*self.weight
#modulate parameter
self.nnote.set_duration(modulator_value)
return
def create_modulation_Y_axis(self):
frequency = 2
self.X = np.arange(0, 1, 1/self.lenY)
self.Y = np.sin(self.X*2*np.pi*frequency)
return
def run(self):
while self.running:
self.activation_index = (self.activation_index+1)%self.lenY
#modulate parameter
y = self.Y[self.activation_index]
self.modulate(y)
outstr = ""
for nnote in self.neuronSeq.get_nnotes():
outstr += nnote.id + ": " + str(nnote.note) + ", " + str(nnote.velocity) + ", " + str(nnote.duration) + ", " + str(nnote.activation) + ", " + str(nnote.activation_index) + "\n"
for connection in self.neuronSeq.get_connections():
outstr += connection.name + ": " + str(connection.get_weight(0)) + ", " + str(connection.get_weight(1)) + "\n"
#self.output.config(text=outstr)
time.sleep(0.001)
return
def stop(self):
self.running=False
return
class ConnectionWeight0To1SineModulator(threading.Thread):
def __init__(self, connection, master_window, neuronSeq):
threading.Thread.__init__(self)
self.name = "ConnectionWeight0To1SineModulator"
self.neuronSeq = neuronSeq
self.output = master_window.nn_conn_label
self.connection = connection
self.lenY = 1000
self.X = []
self.Y = []
self.create_modulation_Y_axis()
self.activation_index = 0
self.running = True
self.weight = 0.0
def set_weight(self, weight):
self.weight = weight
return
def modulate(self, modulator_value):
modulator_value = modulator_value*self.weight
#modulate parameter
self.connection.set_weight(0, modulator_value)
return
def create_modulation_Y_axis(self):
frequency = 2
self.X = np.arange(0, 1, 1/self.lenY)
self.Y = np.sin(self.X*2*np.pi*frequency)
return
def run(self):
while self.running:
self.activation_index = (self.activation_index+1)%self.lenY
#modulate parameter
y = self.Y[self.activation_index]
self.modulate(y)
outstr = ""
for nnote in self.neuronSeq.get_nnotes():
outstr += nnote.id + ": " + str(nnote.note) + ", " + str(nnote.velocity) + ", " + str(nnote.duration) + ", " + str(nnote.activation) + ", " + str(nnote.activation_index) + "\n"
for connection in self.neuronSeq.get_connections():
outstr += connection.name + ": " + str(connection.get_weight(0)) + ", " + str(connection.get_weight(1)) + "\n"
#self.output.config(text=outstr)
time.sleep(0.001)
return
def stop(self):
self.running=False
return
class ConnectionWeight1To0SineModulator(threading.Thread):
def __init__(self, connection, master_window, neuronSeq):
threading.Thread.__init__(self)
self.name = "ConnectionWeight1To0SineModulator"
self.neuronSeq = neuronSeq
self.connection = connection
self.output = master_window.nn_conn_label
self.lenY = 1000
self.X = []
self.Y = []
self.create_modulation_Y_axis()
self.activation_index = 0
self.running = True
self.weight = 0.0
def set_weight(self, weight):
self.weight = weight
return
def modulate(self, modulator_value):
modulator_value = modulator_value*self.weight
#modulate parameter
self.connection.set_weight(1, modulator_value)
return
def create_modulation_Y_axis(self):
frequency = 2
self.X = np.arange(0, 1, 1/self.lenY)
self.Y = np.sin(self.X*2*np.pi*frequency)
return
def run(self):
while self.running:
#modulate parameter
self.activation_index = (self.activation_index+1)%self.lenY
y = self.Y[self.activation_index]
self.modulate(y)
outstr = ""
for nnote in self.neuronSeq.get_nnotes():
outstr += nnote.id + ": " + str(nnote.note) + ", " + str(nnote.velocity) + ", " + str(nnote.duration) + ", " + str(nnote.activation) + ", " + str(nnote.activation_index) + "\n"
for connection in self.neuronSeq.get_connections():
outstr += connection.name + ": " + str(connection.get_weight(0)) + ", " + str(connection.get_weight(1)) + "\n"
#self.output.config(text=outstr)
time.sleep(0.001)
return
def stop(self):
self.running=False
return
# network graph class
class NetworkGraph():
def __init__(self, neuronSeq):
self.neuronSeq = neuronSeq
self.DVpos = {}
self.updateDVpos()
self.maxX = 0.001
self.maxY = 0.001
def set_vector_length(self, vector_length):
for nnote in self.neuronSeq.get_nnotes():
self.DVpos[nnote.get_id()].set_vector_length(vector_length)
for connection in self.neuronSeq.get_connections():
self.DVpos[connection.get_id()] = (self.DVpos[self.neuronSeq.get_nnotes()[0].get_id()], self.DVpos[self.neuronSeq.get_nnotes()[1].get_id()])
return
def updateDVpos(self):
#update DVpos
for nnote in self.neuronSeq.get_nnotes():
self.DVpos[nnote.get_id()] = DistanceVector((self.DVpos[nnote.get_id()].get_coordinates()))
for connection in self.neuronSeq.get_connections():
self.DVpos[connection.get_id()] = (self.DVpos[self.neuronSeq.get_nnotes()[0].get_id()], self.DVpos[self.neuronSeq.get_nnotes()[1].get_id()])
return self.DVpos
def add_auron(self, id="Auron", device_index=0):
#create the neuron/nnote object
new_auron = self.neuronSeq.create_auron(id, device_index)
x1, y1 = np.random.uniform(-32.0, 32.0), np.random.uniform(-32.0, 32.0)
self.DVpos[new_auron.get_id()] = DistanceVector((x1, y1))
return new_auron, self.DVpos[new_auron.get_id()]
def add_nnote(self, midi_channel=0, note=0, velocity=0, duration=0.0, lenX=X_AXIS_LENGTH ,id="NNote"):
#create the neuron/note object
new_nnote = self.neuronSeq.create_nnote(midi_channel, note, velocity, duration, lenX, id)
x1, y1 = np.random.uniform(-32.0, 32.0), np.random.uniform(-32.0, 32.0)
self.DVpos[new_nnote.get_id()] = DistanceVector((x1, y1))
return new_nnote, self.DVpos[new_nnote.get_id()]
def add_connection(self, name, nnote1_idx, nnote2_idx, weight_0_to_1=0.0, weight_1_to_0=0.0):
#create the connection object
new_connection = self.neuronSeq.create_connection(name, nnote1_idx, nnote2_idx, weight_0_to_1, weight_1_to_0)
self.DVpos[new_connection.get_id()] = (DistanceVector(self.DVpos[new_connection.get_nnotes()[0].get_id()].get_coordinates()), DistanceVector(self.DVpos[new_connection.get_nnotes()[1].get_id()].get_coordinates()))
return new_connection, self.DVpos[new_connection.get_id()]
def update_nnote(self, nnote_idx, midi_channel=0, midi_note=0, velocity=0, duration=0.0, lenX=X_AXIS_LENGTH, id="NNote"):
#change nnote parameters
old_nnote = self.neuronSeq.get_nnotes()[nnote_idx]
old_nnote.set_note(midi_note)
old_nnote.set_channel(midi_channel)
old_nnote.set_velocity(velocity)
old_nnote.set_duration(duration)
old_nnote.set_activation_buffer_size(lenX)
old_nnote.id = id
print("update nnote")
return old_nnote, self.DVpos[old_nnote.get_id()]
def update_connection(self, connection_idx, name, nnote1_idx, nnote2_idx, weight_0_to_1=0.0, weight_1_to_0=0.0):
#change connection parameters
old_connection = self.neuronSeq.get_connections()[connection_idx]
old_connection.name = name
old_connection.set_nnote(0, self.neuronSeq.get_nnotes()[nnote1_idx])
old_connection.set_nnote(1, self.neuronSeq.get_nnotes()[nnote2_idx])
old_connection.set_weight(0, weight_0_to_1)
old_connection.set_weight(1, weight_1_to_0)
return old_connection, self.DVpos[old_connection.get_id()]
def serial_connect(self, note_range, weight):
#connect all nnotes in note_range in serial order
for i in range(len(note_range)-1):
self.add_connection("Connection"+str(i), note_range[i], note_range[i+1], weight, weight)
for nnote in self.neuronSeq.get_nnotes():
self.DVpos[nnote.get_id()] = DistanceVector((self.DVpos[nnote.get_id()].get_coordinates()))
for connection in self.neuronSeq.get_connections():
self.DVpos[connection.get_id()] = (self.DVpos[self.neuronSeq.get_nnotes()[0].get_id()], self.DVpos[self.neuronSeq.get_nnotes()[1].get_id()])
return
def delete_nnote(self, nnote_idx):
#delete nnote from neuronSeq
old_nnote = self.neuronSeq.get_nnotes()[nnote_idx]
self.neuronSeq.get_nnotes().remove(old_nnote)
#delete nnote from DVpos
del self.DVpos[old_nnote.get_id()]
#delete connections
for connection in self.neuronSeq.get_connections():
if connection.get_nnote(0)==old_nnote or connection.get_nnote(1)==old_nnote:
connection_idx = self.neuronSeq.get_connections().index(connection)
self.delete_connection(connection_idx)