Giter Site home page Giter Site logo

aicd's Introduction

Aicd

An acid pattern MIDI generator Max for Live device based on a maximum likelihood n-gram model.

Aicd screenshot

Demo on YouTube

Download under releases or at maxforlive.com

Features

  • Generate variable length patterns (1-64 steps)
  • Save generated patterns as presets
  • Influence randomness through temperature dial
  • Choose velocity of unaccented steps (default 99, accented steps are always 127)
  • Fold/zoom sequencer view
  • View/edit pitch, velocity, slide, gate independently
  • Create clip
  • Set permanently updated output clip

Usage

Drag device into a MIDI track and hit the acid smiley button. Generated patterns enter Live's undo history. If you like a pattern, Shift-click one of the preset boxes to save it as a preset.

Default pitch

The untransposed C (no up/down) note is generated as MIDI note 36 (called C1 in Ableton, generating 32.7Hz). This is also what ABL3 and Phoscyon generate. For some other synths, you'll have to transpose an octave up.

Model

The model was generated by training on a large number of patterns in ABL3 format (not in this repo) using the approach described by Joav Goldberg here.

To generate a model:

  1. Run patterns.csx in a folder containing pattern files in ABL3 format, producing a single file input_patterns.txt which contains all patterns in a condensed format suitable for training.
  2. Use the TrainCharLm() method from model.csx to generate a model and write it to a file as JSON:
// dotnet script .\model.csx -i
var lm = TrainCharLm("input_patterns.txt", 18);
var json = JsonConvert.SerializeObject(lm);
File.WriteAllText("lm.js", "var lm = " + json);

aicd's People

Contributors

mganss avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.