Back to Silas S. Brown's home page
Back to Clara Empricost page
Clara Empricost: How it Works
Clara Empricost works as follows:
- An overall plan for the piece is generated, in terms of phrases (e.g. AABBA, ABACA, etc). Structures like sonata form can be pre-programmed. (See sonata.h, canon.h, minuet.h, rondo.h and symphony.h)
- Each phrase is composed independently (although there are some common parameters such as how long it should be and what key it should start and finish in). The program writes all of these ``compose a phrase'' tasks to separate files on disk (each task to its own file).
- Multiple copies of the program can now work on the different phrases in parallel (assuming that they all have access to the same disk directory). They look for a phrase file, load it, work on it until finished or interrupted, and save their state back (see network.cpp). When all of the files have been completely processed, the result is put together and output to Manuscript Writer files (see mwr.h); these can then be converted to MIDI or whatever by the music program Manuscript Writer.
- Number of beats per bar
- Number of beats in the anacrusis (pick-up)
- Starting key
- Finishing key
- Number of chords that the phrase should contain
- Number of cadences in the phrase
- Whether the phrase should end on a perfect or an imperfect cadence
- Whether the phrase should start ``properly'' (i.e. with I or V-I)---this should be the case if the previous phrase ended in an imperfect cadence and is allowed to introduce a modulation at that point
- Whether the phrase is allowed to modulate, and whether it is allowed to introduce a modulation on the final cadence (one of these had better be set if the finishing key is any different from the starting key!)
- Whether passing notes are allowed
- Whether chromaticisms are allowed
Each phrase is made up of chords (see chord.h). When a chord is constructed, it is only partially specified; the initial specification is:
- The length of the chord in beats (usually 1, but longer at cadences)
- The chords written so far (which are used in determining what is acceptable next)
- Whether it is the final chord, or part of a cadence; and the strength of the beat that the chord falls on (the first beat of the bar is more important and this affects what is acceptable)
- Any notes that have already been decided on. This is used when loading a partially-completed work from a file, and could also be used to cause the program to harmonise a given melody (or bass line or whatever) rather than decide on its own, although some modification would be required.
In practice, what often happens is that the program quite quickly gets to a cadence point, then finds that there is no way to put a cadence on its current chord sequence, and has to do a lot of backtracking and re-trying until it finds a chord sequence that can lead to a cadence at that point.
The backtracking is optimised a little by noting that modulations can often cause problems, particularly if the cadence needs to be in some key that is unrelated to the current one. Therefore, if a chord has caused the phrase to modulate and it is found to be unacceptable, it will first try modulating to the phrase's destination key rather than whatever key it happened to modulate to before; if that doesn't solve the problem then it will try not modulating at all. Despite these optimisations, though, the backtracking is still very inefficient and it often takes a large amount of computer time to compose a work.
The parameters of a chord that have to be decided are as follows (see chord.h):
- The figure (tonic, supertonic, etc)
- For each part (soprano, alto, tenor, bass), the degree of the chord in that part (1, 3 or 5) and the octave it is in
Selecting chords at random without replacement can be likened to writing each possible chord on a card, giving a pack of 9072 cards, and evaluating the chords in order after shuffling the pack. Because shuffling the pack can be computationally expensive (particularly on the old DOS machines for which this program was originally written), it is only shuffled once for each phrase, and the selection of each chord starts at a random position in the shuffled pack. If longer phrases are allowed then perhaps the pack should be shuffled more often.
Since most of the rules are written in terms of such things as the inversion of the chord, the intervals between various parts, and so on, the program calculates these from the notes.
Suspensions, passing notes, auxiliary notes, pedal notes, ornaments and chromaticisms are added after the chord sequence has been completed, using additional rules to determine what is acceptable, but this time no backtracking is necessary because the acceptability of an ornament etc does not depend on what has happened previously (one could argue that actually it does, but not in this program). Instrumentation is chosen at random (within some restrictions) and octave doubling of the soprano and bass is also performed.
The rules themselves are arranged in order of how frequently they are violated by choosing at random (this was determined emperically); this is so that an unacceptable choice can be identified as such as quickly as possible. Basically, the rules are as follows (see William Lovelock's ``First Year Harmony'', ``Second Year Harmony'' and ``Third Year Harmony'' for full details).
- If this is the second chord in a modulation, check that the modulation works: It must be on a stronger beat than the previous chord, it must be a I (or a VI if the previous chord was a root position V), and if it's of the same figure as the pivot chord in a gradual modulation then it must be a different inversion.
- If this is a final chord and it's chord I, and the phrase is not supposed to end on chord I, reject it (otherwise you get too many perfect cadences).
- Perform a melody check on the soprano part.
A melody check is defined as follows:
- Make sure it doesn't go out of range
- If it's the final chord, then the soprano part must have the tonic (reject anything else)
- The leading note should rise to the tonic (but it's acceptable to repeat the leading note once before it does so)---reject anything else
- Reject a leap of an augmented interval
- Reject a leap of a seventh, or of a ninth or higher, even if there is one note intervening
- Reject any leap that does not land within the compass of the previous leap if the previous leap was an octave, a sixth, or a diminished fifth
- Octave leaps must also be preceded by notes within their compass
- If the soprano part has the same note from a weak beat to a strong beat then the chord's figure must change (reject if it doesn't)
- Reject bass parts that rise a third from weak to strong
- Reject leaps of diminished fourths and sevenths
- Avoid too many consecutive leaps (I've arbitrarily set ``too many'' to 3)
- A three-note descending or ascending scale passage in the bass part should be followed by further step in the same direction rather than a leap (it was unclear from the text whether a repetition of the same note is allowed; in this implementation I allowed it)
- The soprano and bass parts should avoid remaining around one note for too long. I interpreted this as: Reject pitches that have already been used more than once in the previous four notes
- If chromaticisms are to be added later, then the following rule is put in to help with progressions from chord II: If progressing to the tonic, force an upward resolution; if there is a subdominant of the scale in the chord then remain on the same note.
- If this is a final chord and the phrase needs to end on chord I, reject it if it isn't I
- Reject any chords whose notes do not match notes that were pre-defined (additionally, anything that has been pre-defined is not checked)---this is in case the code needs to be modified to harmonise a given melody or whatever
- Avoid certain chords: VII in root position, any chord in second inversion except I, IV or V, and any chord in second inversion at the beginning of a phrase.
- Check the melody of the alto part (as with the soprano part above)
- Reject chords that cause a phrase to not start ``properly'' (I or V-I) when its specification said it should
- Check the melody of the tenor part (as with the soprano part above)
- Check the melody of the bass part (as with the soprano part above)
- Check the following pairs of parts (in this
order): soprano/alto, alto/tenor, soprano/bass,
soprano/tenor, tenor/bass and alto/bass. For
each pair, the following things need to be
checked:
- Don't cross the parts
- Avoid parallel octaves and fifths
- Don't double the third, unless it's on a V-VI or VI-V by stepwise motion
- In the soprano and bass, avoid exposed octaves and fifths (i.e. ones that are approached by similar motion in both parts, with some exceptions)
- Avoid overlaps (i.e. a note in one part "jumps over" the previous note in another)
- Avoid chords where two or more of the parts are playing the same note as in the previous chord
- If the progression is IV-V or V-IV (both in root position), make the soprano, alto and tenor move contrary to the bass and go to the nearst note (i.e. reject all chords that don't do this)
- Avoid having a perfect fifth followed by a diminished fifth or vice versa between the bass and any other part
- Avoid doubling the leading note
- Avoid chords in which the alto doubles the bass if the chord is a diminished first inversion
- Avoid chords in which there is more than an octave between any two adjacent parts except tenor and bass
- Check that there is a third in the chord
- Check that there is a root in the chord
- If the chord is an inversion, or a chord III, then check that there is a fifth in the chord as well
- Check that the third is not doubled in a major triad other than a chord VI
- Check that the chord does not have the same figure as the previous one, unless the previous one was on a stronger beat or was the first chord in the phrase
- Second inversions cannot be approached by leap (in the bass part) from an inversion of another chord
- III must be followed by VI (reject anything else)
- Avoid II-I and I-II (in root position)
- Double the third if progressing IIb-V (i.e. reject anything that doesn't)
- Reject a second inversion if the previous chord was also a second inversion
- More rules about second inversions: A passing 6/4: 6/4 must be on a weak beat and must be Ic or Vc; a cadential 6/4 must be on a stronger beat, must be Ic or IVc and must not contain leaps in any of the parts. Reject all second inversions that cannot be explained as cadential or passing.
- If the chord is the final chord of a cadence, it must be weak to strong (unless the cadence is going to VI) and the cadence cannot be preceded by its final chord (except in the case of V-I-IV-I). Also reject if the first chord of the cadence has been anticipated by the previous chord.
- If the chord is not the final chord of a cadence then check that it does not form the cadential progression V-I (unless it's part of a modulation---if modulations are allowed then they can occur anywhere even if unspecified by the phrase specification). In retrospect, I think this is one reason why the modulations aren't always so good---the above rule should probably have been checked as well before allowing them.
- Avoid repetition of the same chord (figure and inversion) with only one chord intervening
- In the progression V-IV, the soprano should rise a third, going from the fifth of V to the root of IV (reject if it doesn't)
- If the previous chord is IIa and the key is minor, then this chord must be Va and on a weaker beat (reject if not)
- If the last chord was VIIb then avoid anything except I or Ib (or VI a in major key)
Note that there are few rules about musical idioms. The program tends to `discover' these for itself, since it is often the case that an idiom is almost the only solution.
Evaluation
While the output is harmonically correct, I thought it not sufficiently interesting to qualify as good music. The melodies are rarely lyrical, the cadences are predictable, and there are no climaxes or impressions. The instrumentation can sometimes be interesting, but this is very much dependent on the quality of the playback equipment in use. Bugs in the implementation can lead to small unintended deviations from the harmonic rules or the synchronisation of the parts, and this can add interest. While the above rules do not represent the entirety of Lovelock's work on harmony, I felt that any further implementation was unlikely to deliver much improvement. This is not a criticism of Lovelock himself of course---he clearly didn't intend his rules to be applied this mechanically; his 1970 trumpet concerto for example is nothing like what Clara Empricost would generate.In 1998, I submitted four movements generated by the program to Schwobb's ``Classical MIDI Archives'' website, using the name of the program, and publishing the fact that the music was written by a computer program. Since then, I've received occasional email from people who enjoyed the output more than I did; some wanted to use parts of it in their compositions.
All material © Silas S. Brown unless otherwise stated.