idantene / MG-MAS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MG-MAS

MG-MAS (music generation - multi agent system) is developed as a project for the Computational Creativity and Multi-Agen Systems lecture in fall 2016. The developers are international students who are taking a stay abroad at the University of Helsinki:

  • Idan Tene
  • Lukas Vozda
  • Nikolaus Risslegger

The project tries to generate pleasent sounding pieces of music and its main targets are

  • Plan A: write a program which creates automatically awesome music, get famous, get rich, don't have to work the entire life
  • Plan B: at least 5 credits.

Requirements

The code is built to run on Python 3.5.2 (or higher) and uses the following libraries:

  • creamas (Creative Multi Agent Systems library)
  • keras (Machine Learning library, depends in turn on Numpy, Theano, Scipy, etc)
  • h5py (Library to handle HDF5 files)
  • music21 (MIDI file and music parsing library)

In certain circumstances also follwing libraries have to be installed (these should be automatically installed with keras):

  • numpy
  • scipy
  • theano

In addition, sometimes changing the definition file for keras is required (so it uses Theano and not TensorFlow). Please check with version fits at best for your machine. To achieve this, open ~/.keras/keras.json (if it isn't there, you can create it). The contents of keras.json should like like so:

{
    "image_dim_ordering": "tf",
    "epsilon": 1e-07,
    "floatx": "float32",
    "backend": "theano"
}

How to run the code

Simply download all the python files and the weights folder, and run the MG.py :) You can change the number of rounds in the code file, and remove several agents if the process is taking too long. (We mean, you have 18 agents in total, 10 of them are LSTM and are CPU-hungry... so... yeah, feel free to do so)

python3 MG.py

MAS

The code introduces 3 types of agents and uses a simple IRV voting method for each round. There are 2 types of productive agents (one based entirely on Markov Chains and another on LSTMs for note generation and Markov Chains for duration generation), and 1 judging agent (uses LSTM). The agents have been pretrained and so the data is loaded (via pickle\hdf5 files) for a faster simulation. Each generative agent evaluates his creation to the best of his ability, and incroporates the judge's agents into his evaluation as well. Thus, the judging agent's vote is being taken into account at least twice - once during the voting stage and once during the agent's self evaluation. This also leads to agents learning from their own generations before submitting their final work. Further more, the generative agents have their own memory bank, and so implement some sense of novelty. The winning artifact is then being taught to all agents (including the judge agents).

Files and Structure

The projects consists of following classes which are explained in following section.

###Markov Chain (mg_mas.py) Generate two Markov chains, one for the pitches, a second for the durations, analyzing the same songs but independent to each other. Merge the two chains into a set of Music21 notes. Put some repetitions (intro, chords, outro or similar) to the generated piece to let it sound a bit structurated. Create several tracks, calculate the liklihood and export the piece with the hightest result. The class consists of a dictionary, probabilities and cdfs for the pitch and the durations respectively. To seperate the tones (which might be chords, single tones and rests) and durations a quite nasty piece has to be used:

@staticmethod
def toState(chordNote):
    if chordNote.isNote:
        return chordNote.nameWithOctave, chordNote.duration.quarterLength
    elif chordNote.isChord:
        return tuple([note.nameWithOctave for note in chordNote]), chordNote.duration.quarterLength
    elif chordNote.isRest:
        return "Rest", chordNote.duration.quarterLength
    else:
        return MidiMarkovChain.EOL

During the init process those variables are filled with the values calculated of the given musicial datasets, those functions are based on the provided example for the exercises during the lecture. As splitted into the two parts those functions are adapted for working with the note objects or the durations.

def calculate_cdf(self):
    def calc_cdf(dictionary, cdfs):
        ...

def calculate_probability(self):
    def calc_prob(dictionary, probs, updates):
        ...

The creating of the new piece of music happens in the generate_piece method where new durations and tones are generated.

def generate(self, length=40, start_note=None, start_duration=None):
    ...
while len(gen) < length and prev_note != MidiMarkovChain.EOL:
    rnd = random.random()  # Random number from 0 to 1
        cdf_note, cdf_dur = self.note_cdfs[prev_note], self.duration_cdfs[prev_duration]
        cp_note, cp_dur = cdf_note[0][1], cdf_dur[0][1]
        i = 0
        # Go through the cdf_note until the cumulative probability is higher than the random number 'rnd'.
        while cp_note < rnd:
            i += 1
            cp_note = cdf_note[i][1]
            if cdf_note[i][0] == MidiMarkovChain.EOL:
                return gen, dur  # EOL reached
            gen.append(cdf_note[i][0][-1])  # Add only new addition to gen (no overlap)
            if cdf_note[i][0] in self.note_cdfs.keys():
                prev_note = cdf_note[i][0]  # Update previous state
        # same for duration

**Likelihood ** function is used to calculate novelty of an artifact by an agent. It takes generated note and check whether they are in a markov transition state table, if they are not there they are penalized or optionally, exception can be raised:

score = 1.0
if cur_state_notes not in self.note_dict:
                    if penalize_missing_keys:  # Penalize if needed
                        score *= missing_factor
                    else:  # Exception if needed
                        raise LookupError("Can't find '" + str(cur_state) + "' in Markov State Transition table (order " +
                                          str(self.order) + ")")
                elif next_state_notes not in self.note_dict[cur_state_notes]:
                    if penalize_missing_keys:
                        score *= missing_factor
                    else:  # Exception if needed
                        raise LookupError("Can't find '" + str(cur_state_notes) + " -> " + str(next_state_notes) +
                                          "' in Markov State Transition table (order " + str(self.order) + ")")
                else: # Psuedo-Likelihood
                    score *= self.note_probs[cur_state_notes][next_state_notes] / max(self.note_probs[cur_state_notes].values())
return score

The try to put structure into the generation One thought was to modify the creation a bit towards an actual rhythm. Simplest way would be to generate loops and let them appear more often (f.e. A-B-A-B-B-C). But the dark side of putting that much control into the generation is, that the program cannot be that creative by itself. Therefore that idea was rejected soon. The last scraps of that idea are found in the function getSongWithRepeatings(merged_notes).

Duration Markov Chain - DurationMC.py

Due to the problem that MidliLSTM.py didn't produce different lengths of the tones we had to implement a workaround to get different length. Basically it has the same logic as the "big brother" NotesMC.py - but less complexity due the zipping and unzipping of the notes and duration can be ignored. The learn (and also others) function might be easier to understand without the in- and out-wrapping:

def learn(self, part, update=False, log=False):
    for i in range(len(part) - self.order - 1):
        cur_state = tuple(part[i: i + self.order])  # Get current state
        next_state = tuple(part[i + 1: i + self.order + 1])  # Get next state
        if cur_state not in self.duration_dict:  # New state for transition dictionary
            self.duration_dict[cur_state] = dict()
        if next_state not in self.duration_dict[cur_state]:  # New next state for transition dictionary
            self.duration_dict[cur_state][next_state] = 1
        else:
            self.duration_dict[cur_state][next_state] += 1  # Exists :)
        if cur_state not in self.duration_updates:  # Add to update list
            self.duration_updates.append(cur_state)

###Long short-term memory generation - MidiLSTM.py After the not satisfying results of the Markov Chains we thought it might be a good idea to generate the train an agent during using deep long short-term memory (LSTM) networks.

The whole calculation is time and/or resources-consuming, but differs on the given input. An average training with takes about 15-120 seconds each epoch, but that's also after we've given up on the deep networks and used shallow (one LSTM layer). We'd need more GPU, CPU and time to train the networks properly.

The LSTM NN is fed 64 notes at a time, and outputs a single note. It uses a dropout layer to prevent overfitting and eventually softmax over all the possible notes to select the most probable one. If we'd use the deep structure, we'd ideally have 3 LSTM layers feeding each other until a final output is given (trying to train this network took ~5000s per SAMPLE! So we dropped the idea). It is trained with a categorical cross-entropy loss function.

###Long short-term Memory judging - JudgeLSTM.py An attempt at neural-network-based evaluation function for midi files. Final result gives a probability for each "genre" from the following list:

0. corpus.getComposer('bach')
1. corpus.getComposer('beethoven')
2. corpus.getComposer('essenFolksong')
3. corpus.getComposer('monteverdi')
4. corpus.getComposer('oneills1850')
5. corpus.getComposer('palestrina')
6. corpus.getComposer('ryansMammoth')
7. corpus.getComposer('trecento')

The probabilities can then be used as evaluating all the different aspects of creativity (actually implemented in some fashion in the code).

  • value: Does this NN consider the midi stream to be > 0.5 for any "genre"?
  • novelty: How far is the score given by the NN to the agent's idea of his genre? (i.e. the loss function?)
  • surprisingness: Incorporating the agents data, if he hasn't seen anything from genre 4 but got the highest score there, then quite surprising? etc...

This network does not take into account the length\duration, but can be extended to such quite easily.

The structure for this network is quite similar to the predictive LSTM one, except it outputs a probability distribution over the above 8 composers.

###Agents.py File consisting of our three major agent's classes: MarkovMidiAgent, MarkovLSTMAgent, JudgeAgent and their function. MarkovMidiAgent generates music based on Markov Chain, MarkovLSTMAgent generates music using neural networks to learn and JudgeAgent does not produce anything, just evaluate artifacts.

###List Memory ListMemory.py

A helper class for the Agent class, which provides a simple list memory in which all seen artifacts are stored into a list. It works as a FIFO-stack, if an artifact is already in the memory it will be ignored - if the memory is full but the new artifact has to be memorized, the oldest artifact will be removed.

Agents use this ListMemory in a Novelty function to compute whether the artifact is new in comparison to artifacts that were already seen.

def memorize(self, artifact):
 if artifact in self._artifacts:
	 return

  self._artifacts.insert(0, artifact)
  if len(self._artifacts) > self.capacity:
	  self._artifacts = self._artifacts[:self.capacity]

Obstacles

During teaching the computer to generate some lovely tunes we headed into bigger and smaller problems:

  • Lukas nearly died during a nasty sneezer - we already planned the final words ("please, that must be worth 5 credits")
  • Idan's parenthesis key stopped working. The programming was like a knight fights just with one hand.
  • Nikolaus brought some beers after two hours swearing in German language
  • Yeah, and the generated music was not as good as hoped.

The fool with a great tool is still a fool :) So we avoided using Sphinx.

Results

Firstly, the first outputs haven't conviced us that our generated music will find many sympathizers. The tracks may have some chords which sound familar but the whole creation has no passion - like creating tension and their dissolution. Chords and rests are so unlikely to happen in the output caused of the few successive occurs in the input: if a more rests would exist they are combined to one longer one - therefore the Markov chain slightly ignores them.

So, songs without any feelings, no rests (also a chord is a small mircacle) - and alltogether sounds like a five year old child found a piano and hits into the keys. What we could do better - composing the songs starting with the basic chors (for exampe the often used I-V-vi-IV combination) and adding afterwards fitting notes and their durations. Not to use any bars (rhythmic beats) also minimizes the chance of getting a well-hearted song. But to introduce this (and of course many others) would cost quite a bit time and explode the workload.

Second, as we figured out, the best value for the length of the Markov chain is around 6.

About


Languages

Language:Python 100.0%Language:Groff 0.0%