Fixes from Opus 4.6 review (C1-C6, I1, I3, I4, I8):
C1: static lastOutputs → per-instance lastOutputsForDelta member
C2: add_example() now on audio thread only (owns iml); worker reads
from mutex-protected staging area (stagedFeatures/stagedLabels)
C3: Worker reads stagedWeightsForWorker (not iml.get_weights()),
eliminating concurrent read/write on iml's MLP
C4: Worker spins on weightsPending before writing pendingWeights,
preventing double-write race
C5: RAND and CLEAR now enqueue Randomize/Clear jobs through worker
instead of directly mutating iml on the audio thread
C6: OSC callbacks stage JSON into oscStagedJson + atomic flag;
audio thread applies in process() (no recv-thread mutation)
Also fixed:
- I4: Separate pendingJob field (enqueueJob no longer overwrites currentJob)
- I8: Removed redundant swapReady atomic
- noiseLevel, cachedNovelty, cachedConfidence now std::atomic<float>
- Worker syncs examples back to iml after training via load_examples()
959 lines
40 KiB
C++
959 lines
40 KiB
C++
#include "plugin.hpp"
|
||
#include "osc_server.hpp"
|
||
#include <nisps/nisps.hpp>
|
||
#include <osdialog.h>
|
||
#include <thread>
|
||
#include <atomic>
|
||
#include <mutex>
|
||
#include <condition_variable>
|
||
#include <functional>
|
||
#include <fstream>
|
||
|
||
static constexpr int NUM_ML_INPUTS = 2;
|
||
static constexpr int NUM_ML_OUTPUTS = 12;
|
||
static constexpr int MAX_ML_INPUTS = 8;
|
||
|
||
// ── Background job types ──────────────────────────────────────────────
|
||
enum class JobType { Train, Perturb, Randomize, Clear };
|
||
struct Job {
|
||
JobType type;
|
||
float noiseLevel;
|
||
float spread;
|
||
};
|
||
|
||
// ── MEMLNaut Module ───────────────────────────────────────────────────
|
||
struct MEMLNaut : Module {
|
||
enum ParamId {
|
||
PARAM_SPREAD,
|
||
PARAM_RATE,
|
||
PARAM_RAND,
|
||
PARAM_THUMBS_UP,
|
||
PARAM_THUMBS_DOWN,
|
||
PARAM_LEARN,
|
||
PARAM_CLEAR,
|
||
PARAM_ATTEN_1, // 12 attenuverters
|
||
PARAM_ATTEN_LAST = PARAM_ATTEN_1 + NUM_ML_OUTPUTS - 1,
|
||
PARAMS_LEN
|
||
};
|
||
enum InputId {
|
||
INPUT_X,
|
||
INPUT_Y,
|
||
// IN 3–8 reserved for configurable inputs (future)
|
||
INPUT_SPREAD_CV,
|
||
INPUT_LEARN_GATE,
|
||
INPUT_TRIG_POS,
|
||
INPUT_TRIG_NEG,
|
||
INPUTS_LEN
|
||
};
|
||
enum OutputId {
|
||
OUTPUT_1, OUTPUT_2, OUTPUT_3, OUTPUT_4,
|
||
OUTPUT_5, OUTPUT_6, OUTPUT_7, OUTPUT_8,
|
||
OUTPUT_9, OUTPUT_10, OUTPUT_11, OUTPUT_12,
|
||
OUTPUT_MEAN,
|
||
OUTPUT_STD,
|
||
OUTPUT_DELTA,
|
||
OUTPUT_NOVELTY,
|
||
OUTPUT_CONFIDENCE,
|
||
OUTPUTS_LEN
|
||
};
|
||
enum LightId {
|
||
LIGHT_LEARN,
|
||
LIGHT_TRAINING,
|
||
LIGHT_OUT_1, // 12 output LEDs
|
||
LIGHT_OUT_LAST = LIGHT_OUT_1 + NUM_ML_OUTPUTS - 1,
|
||
LIGHTS_LEN
|
||
};
|
||
|
||
// ── ML Engine (double-buffered) ─────────────────────────────────
|
||
// THREADING INVARIANT: Only the audio thread touches `iml`.
|
||
// The worker thread operates exclusively on `imlShadow`.
|
||
// Communication is through atomic-flagged staging buffers:
|
||
// Audio → Worker: exampleStaging (mutex-protected)
|
||
// Worker → Audio: pendingWeights (atomic flag)
|
||
// OSC → Audio: oscStaging (atomic flag)
|
||
nisps::IML<float> iml{NUM_ML_INPUTS, NUM_ML_OUTPUTS, {16, 24, 16}};
|
||
nisps::IML<float> imlShadow{NUM_ML_INPUTS, NUM_ML_OUTPUTS, {16, 24, 16}};
|
||
|
||
// Worker → Audio: staged weights ready for swap
|
||
nisps::MLP<float>::mlp_weights pendingWeights;
|
||
std::atomic<bool> weightsPending{false};
|
||
|
||
// Audio → Worker: staged weight snapshot for the worker to start from
|
||
nisps::MLP<float>::mlp_weights stagedWeightsForWorker;
|
||
std::vector<std::vector<float>> stagedFeatures;
|
||
std::vector<std::vector<float>> stagedLabels;
|
||
std::mutex stagingMutex; // protects stagedWeightsForWorker, stagedFeatures, stagedLabels
|
||
|
||
// ── State ─────────────────────────────────────────────────────────
|
||
std::atomic<float> noiseLevel{0.1f};
|
||
float cachedOutputs[NUM_ML_OUTPUTS] = {};
|
||
float prevOutputs[NUM_ML_OUTPUTS] = {};
|
||
float slewOutputs[NUM_ML_OUTPUTS] = {};
|
||
float lastInferenceOutputs[NUM_ML_OUTPUTS] = {}; // for linear interpolation
|
||
float lastOutputsForDelta[NUM_ML_OUTPUTS] = {}; // per-instance (NOT static)
|
||
float crossfadeProgress = 1.f; // 1 = no crossfade active
|
||
float slewMs = 10.f;
|
||
int sampleCounter = 0;
|
||
bool outputRangeUnipolar[NUM_ML_OUTPUTS] = {}; // true = 0-10V, false = ±5V
|
||
bool inputRangeUnipolar[MAX_ML_INPUTS] = {}; // true = 0-10V, false = ±5V
|
||
float clearHoldTime = 0.f;
|
||
std::atomic<float> cachedNovelty{10.f}; // default: everything novel (10V)
|
||
std::atomic<float> cachedConfidence{0.f}; // default: no confidence (0V)
|
||
float lastInputs[MAX_ML_INPUTS] = {};
|
||
|
||
// OSC → Audio: staged data from OSC recv thread
|
||
std::string oscStagedJson;
|
||
std::atomic<bool> oscJsonPending{false};
|
||
|
||
// ── OSC bridge ────────────────────────────────────────────────────
|
||
std::unique_ptr<memlnaut::OscServer> oscServer;
|
||
bool oscEnabled = false;
|
||
int oscPort = 9000;
|
||
int oscSendCounter = 0;
|
||
static constexpr int OSC_SEND_INTERVAL_SAMPLES = 4410; // ~100ms at 44.1kHz
|
||
|
||
void startOsc() {
|
||
if (oscServer && oscServer->isRunning()) return;
|
||
oscServer = std::make_unique<memlnaut::OscServer>();
|
||
|
||
// Stage received data for audio thread to apply (no direct mutation)
|
||
oscServer->onState([this](const std::string& json) {
|
||
if (!oscJsonPending.load()) {
|
||
oscStagedJson = json;
|
||
oscJsonPending.store(true);
|
||
}
|
||
});
|
||
|
||
oscServer->onWeights([this](const std::string& json) {
|
||
if (!oscJsonPending.load()) {
|
||
oscStagedJson = json;
|
||
oscJsonPending.store(true);
|
||
}
|
||
});
|
||
|
||
if (!oscServer->start(oscPort)) {
|
||
oscServer.reset();
|
||
oscEnabled = false;
|
||
} else {
|
||
oscEnabled = true;
|
||
}
|
||
}
|
||
|
||
void stopOsc() {
|
||
if (oscServer) {
|
||
oscServer->stop();
|
||
oscServer.reset();
|
||
}
|
||
oscEnabled = false;
|
||
}
|
||
|
||
// ── Triggers ──────────────────────────────────────────────────────
|
||
dsp::BooleanTrigger randTrigger;
|
||
dsp::BooleanTrigger thumbsUpTrigger;
|
||
dsp::BooleanTrigger thumbsDownTrigger;
|
||
dsp::SchmittTrigger trigPosTrigger;
|
||
dsp::SchmittTrigger trigNegTrigger;
|
||
|
||
// ── Background thread ─────────────────────────────────────────────
|
||
std::thread workerThread;
|
||
std::mutex jobMutex;
|
||
std::condition_variable jobCv;
|
||
std::atomic<bool> shouldStop{false};
|
||
std::atomic<bool> isTraining{false};
|
||
Job currentJob{};
|
||
Job pendingJob{};
|
||
bool hasJob = false;
|
||
bool hasPending = false;
|
||
|
||
MEMLNaut() {
|
||
config(PARAMS_LEN, INPUTS_LEN, OUTPUTS_LEN, LIGHTS_LEN);
|
||
|
||
// Knobs
|
||
configParam(PARAM_SPREAD, 0.f, 1.f, 0.6f, "Spread", "%", 0.f, 100.f);
|
||
configParam(PARAM_RATE, 0.f, 1.f, 0.5f, "Inference rate");
|
||
|
||
// Buttons
|
||
configButton(PARAM_RAND, "Randomize weights");
|
||
configButton(PARAM_THUMBS_UP, "Thumbs up (+)");
|
||
configButton(PARAM_THUMBS_DOWN, "Thumbs down (−)");
|
||
configSwitch(PARAM_LEARN, 0.f, 1.f, 0.f, "Learn enable", {"Off", "On"});
|
||
configButton(PARAM_CLEAR, "Clear (long-press)");
|
||
|
||
// Attenuverters
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
configParam(PARAM_ATTEN_1 + i, -1.f, 1.f, 1.f,
|
||
string::f("Out %d attenuverter", i + 1), "%", 0.f, 100.f);
|
||
}
|
||
|
||
// Inputs
|
||
configInput(INPUT_X, "X");
|
||
configInput(INPUT_Y, "Y");
|
||
configInput(INPUT_SPREAD_CV, "Spread CV");
|
||
configInput(INPUT_LEARN_GATE, "Learn gate");
|
||
configInput(INPUT_TRIG_POS, "+ trigger");
|
||
configInput(INPUT_TRIG_NEG, "− trigger");
|
||
|
||
// Outputs
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
configOutput(OUTPUT_1 + i, string::f("Out %d", i + 1));
|
||
}
|
||
configOutput(OUTPUT_MEAN, "Mean");
|
||
configOutput(OUTPUT_STD, "Std deviation");
|
||
configOutput(OUTPUT_DELTA, "Delta (rate of change)");
|
||
configOutput(OUTPUT_NOVELTY, "Novelty");
|
||
configOutput(OUTPUT_CONFIDENCE, "Confidence");
|
||
|
||
// Init ranges to unipolar
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) outputRangeUnipolar[i] = true;
|
||
for (int i = 0; i < MAX_ML_INPUTS; i++) inputRangeUnipolar[i] = true;
|
||
|
||
// Randomize with default spread
|
||
iml.set_mode(nisps::IML<float>::Mode::Training);
|
||
iml.randomise_weights(0.6f);
|
||
iml.set_mode(nisps::IML<float>::Mode::Inference);
|
||
|
||
// Start worker thread
|
||
workerThread = std::thread(&MEMLNaut::workerLoop, this);
|
||
}
|
||
|
||
~MEMLNaut() {
|
||
stopOsc();
|
||
shouldStop.store(true);
|
||
jobCv.notify_one();
|
||
if (workerThread.joinable()) {
|
||
workerThread.join();
|
||
}
|
||
}
|
||
|
||
// ── Background worker ─────────────────────────────────────────────
|
||
void workerLoop() {
|
||
while (!shouldStop.load()) {
|
||
Job job;
|
||
{
|
||
std::unique_lock<std::mutex> lock(jobMutex);
|
||
jobCv.wait(lock, [&] { return hasJob || shouldStop.load(); });
|
||
if (shouldStop.load()) break;
|
||
job = currentJob;
|
||
hasJob = false;
|
||
}
|
||
|
||
isTraining.store(true);
|
||
|
||
// Load staged weights + examples into shadow (safe: staging is mutex-protected)
|
||
{
|
||
std::lock_guard<std::mutex> lock(stagingMutex);
|
||
imlShadow.set_weights(stagedWeightsForWorker);
|
||
imlShadow.load_examples(stagedFeatures, stagedLabels);
|
||
}
|
||
|
||
if (job.type == JobType::Train) {
|
||
imlShadow.set_mode(nisps::IML<float>::Mode::Training);
|
||
imlShadow.set_mode(nisps::IML<float>::Mode::Inference);
|
||
} else if (job.type == JobType::Perturb) {
|
||
imlShadow.move_weights(job.noiseLevel, job.spread);
|
||
} else if (job.type == JobType::Randomize) {
|
||
imlShadow.set_mode(nisps::IML<float>::Mode::Training);
|
||
imlShadow.randomise_weights(job.spread);
|
||
imlShadow.set_mode(nisps::IML<float>::Mode::Inference);
|
||
} else if (job.type == JobType::Clear) {
|
||
imlShadow.set_mode(nisps::IML<float>::Mode::Training);
|
||
imlShadow.clear_dataset();
|
||
imlShadow.randomise_weights(job.spread);
|
||
imlShadow.set_mode(nisps::IML<float>::Mode::Inference);
|
||
noiseLevel.store(0.1f);
|
||
}
|
||
|
||
// Wait for audio thread to consume previous weights before staging new ones
|
||
while (weightsPending.load() && !shouldStop.load()) {
|
||
std::this_thread::sleep_for(std::chrono::microseconds(100));
|
||
}
|
||
if (shouldStop.load()) break;
|
||
|
||
pendingWeights = imlShadow.get_weights();
|
||
weightsPending.store(true);
|
||
|
||
// Compute novelty/confidence on shadow's dataset (safe: no concurrent access)
|
||
if (imlShadow.get_example_count() > 0) {
|
||
float inputs[MAX_ML_INPUTS];
|
||
for (int i = 0; i < NUM_ML_INPUTS; i++) inputs[i] = lastInputs[i];
|
||
float dist = imlShadow.nearest_example_distance(inputs, NUM_ML_INPUTS);
|
||
cachedNovelty.store(std::min(dist * 10.f, 10.f));
|
||
cachedConfidence.store(std::max(0.f, 10.f - dist * 10.f));
|
||
} else {
|
||
cachedNovelty.store(10.f);
|
||
cachedConfidence.store(0.f);
|
||
}
|
||
|
||
isTraining.store(false);
|
||
|
||
// Check for pending work
|
||
{
|
||
std::unique_lock<std::mutex> lock(jobMutex);
|
||
if (hasPending) {
|
||
currentJob = pendingJob;
|
||
hasPending = false;
|
||
hasJob = true;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
void enqueueJob(JobType type, float noise = 0.f, float spread = 0.f) {
|
||
std::unique_lock<std::mutex> lock(jobMutex);
|
||
if (hasJob || isTraining.load()) {
|
||
// Queue as pending (max depth 1, latest wins)
|
||
pendingJob = {type, noise, spread};
|
||
hasPending = true;
|
||
} else {
|
||
currentJob = {type, noise, spread};
|
||
hasJob = true;
|
||
jobCv.notify_one();
|
||
}
|
||
}
|
||
|
||
// ── Helper: read spread with CV modulation ────────────────────────
|
||
float getSpread() {
|
||
float spread = params[PARAM_SPREAD].getValue();
|
||
if (inputs[INPUT_SPREAD_CV].isConnected()) {
|
||
spread += inputs[INPUT_SPREAD_CV].getVoltage() / 10.f;
|
||
}
|
||
return clamp(spread, 0.f, 1.f);
|
||
}
|
||
|
||
// ── Helper: is learning enabled ───────────────────────────────────
|
||
bool isLearnEnabled() {
|
||
bool toggle = params[PARAM_LEARN].getValue() > 0.5f;
|
||
bool gate = inputs[INPUT_LEARN_GATE].isConnected() &&
|
||
inputs[INPUT_LEARN_GATE].getVoltage() > 1.f;
|
||
return toggle || gate;
|
||
}
|
||
|
||
// ── Helper: normalize input CV ────────────────────────────────────
|
||
float normalizeInput(int inputId, int rangeIdx) {
|
||
float v = inputs[inputId].getVoltage();
|
||
if (inputRangeUnipolar[rangeIdx]) {
|
||
return clamp(v / 10.f, 0.f, 1.f);
|
||
} else {
|
||
return clamp((v + 5.f) / 10.f, 0.f, 1.f);
|
||
}
|
||
}
|
||
|
||
// ── Helper: scale output to CV ────────────────────────────────────
|
||
float outputToVoltage(float val01, int outIdx) {
|
||
float atten = params[PARAM_ATTEN_1 + outIdx].getValue();
|
||
if (outputRangeUnipolar[outIdx]) {
|
||
return val01 * 10.f * atten;
|
||
} else {
|
||
return (val01 - 0.5f) * 10.f * atten;
|
||
}
|
||
}
|
||
|
||
// ── Process ───────────────────────────────────────────────────────
|
||
void process(const ProcessArgs& args) override {
|
||
float spread = getSpread();
|
||
bool learn = isLearnEnabled();
|
||
|
||
// ── Learn LED ─────────────────────────────────────────────────
|
||
lights[LIGHT_LEARN].setBrightness(learn ? 1.f : 0.f);
|
||
lights[LIGHT_TRAINING].setBrightness(isTraining.load() ? 1.f : 0.f);
|
||
|
||
// ── Apply staged OSC data ─────────────────────────────────────
|
||
if (oscJsonPending.load()) {
|
||
json_error_t error;
|
||
json_t* root = json_loads(oscStagedJson.c_str(), 0, &error);
|
||
if (root) {
|
||
dataFromJson(root);
|
||
json_decref(root);
|
||
}
|
||
oscJsonPending.store(false);
|
||
}
|
||
|
||
// ── Apply new weights from background thread ─────────────────
|
||
if (weightsPending.load()) {
|
||
iml.set_weights(pendingWeights);
|
||
weightsPending.store(false);
|
||
// Also sync examples from shadow → main (for future training rounds)
|
||
auto newFeats = imlShadow.get_example_features();
|
||
auto newLabels = imlShadow.get_example_labels();
|
||
iml.load_examples(newFeats, newLabels);
|
||
// Start crossfade
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
prevOutputs[i] = cachedOutputs[i];
|
||
}
|
||
crossfadeProgress = 0.f;
|
||
}
|
||
|
||
// ── Helper: stage current iml state for worker thread ─────────
|
||
auto stageForWorker = [&]() {
|
||
std::lock_guard<std::mutex> lock(stagingMutex);
|
||
stagedWeightsForWorker = iml.get_weights();
|
||
stagedFeatures = iml.get_example_features();
|
||
stagedLabels = iml.get_example_labels();
|
||
};
|
||
|
||
// ── Handle RAND button → enqueue Randomize job ────────────────
|
||
if (randTrigger.process(params[PARAM_RAND].getValue() > 0.f)) {
|
||
stageForWorker();
|
||
enqueueJob(JobType::Randomize, 0.f, spread);
|
||
}
|
||
|
||
// ── Handle CLEAR button (long-press ~1s) → enqueue Clear job ─
|
||
if (params[PARAM_CLEAR].getValue() > 0.f) {
|
||
clearHoldTime += args.sampleTime;
|
||
if (clearHoldTime >= 1.f) {
|
||
stageForWorker();
|
||
enqueueJob(JobType::Clear, 0.f, spread);
|
||
clearHoldTime = 0.f;
|
||
}
|
||
} else {
|
||
clearHoldTime = 0.f;
|
||
}
|
||
|
||
// ── Handle RL feedback (only when learning) ───────────────────
|
||
if (learn) {
|
||
bool thumbsUp = thumbsUpTrigger.process(
|
||
params[PARAM_THUMBS_UP].getValue() > 0.f);
|
||
bool trigPos = trigPosTrigger.process(
|
||
inputs[INPUT_TRIG_POS].getVoltage());
|
||
if (thumbsUp || trigPos) {
|
||
// Add example to iml's dataset (audio thread owns iml)
|
||
const float* curOuts = iml.get_outputs();
|
||
float curInputs[2] = {
|
||
normalizeInput(INPUT_X, 0),
|
||
normalizeInput(INPUT_Y, 1)
|
||
};
|
||
iml.set_mode(nisps::IML<float>::Mode::Training);
|
||
iml.add_example(curInputs, 2, curOuts, NUM_ML_OUTPUTS);
|
||
iml.set_mode(nisps::IML<float>::Mode::Inference);
|
||
// Stage and enqueue training
|
||
stageForWorker();
|
||
enqueueJob(JobType::Train);
|
||
noiseLevel.store(noiseLevel.load() * 0.97f);
|
||
}
|
||
|
||
bool thumbsDown = thumbsDownTrigger.process(
|
||
params[PARAM_THUMBS_DOWN].getValue() > 0.f);
|
||
bool trigNeg = trigNegTrigger.process(
|
||
inputs[INPUT_TRIG_NEG].getVoltage());
|
||
if (thumbsDown || trigNeg) {
|
||
float noiseCap = 0.3f * (1.f - spread) + 0.05f * spread;
|
||
float nl = std::min(noiseLevel.load() * 1.5f, noiseCap);
|
||
noiseLevel.store(nl);
|
||
stageForWorker();
|
||
enqueueJob(JobType::Perturb, nl, spread);
|
||
}
|
||
}
|
||
|
||
// ── Inference rate decimation ─────────────────────────────────
|
||
float rate = params[PARAM_RATE].getValue();
|
||
// Map 0→1 to period: 256 samples (block rate) → 1 sample (audio rate)
|
||
// Exponential mapping for perceptual linearity
|
||
int period = std::max(1, (int)(256.f * std::pow(1.f / 256.f, rate)));
|
||
sampleCounter++;
|
||
|
||
bool runInference = (sampleCounter >= period);
|
||
if (runInference) {
|
||
sampleCounter = 0;
|
||
|
||
// Read and normalize inputs
|
||
float x = normalizeInput(INPUT_X, 0);
|
||
float y = normalizeInput(INPUT_Y, 1);
|
||
lastInputs[0] = x;
|
||
lastInputs[1] = y;
|
||
|
||
iml.set_input(0, x);
|
||
iml.set_input(1, y);
|
||
iml.process();
|
||
|
||
const float* outs = iml.get_outputs();
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
cachedOutputs[i] = outs[i];
|
||
}
|
||
}
|
||
|
||
// ── Crossfade after weight swap ───────────────────────────────
|
||
float effectiveOutputs[NUM_ML_OUTPUTS];
|
||
if (crossfadeProgress < 1.f) {
|
||
float slewSamples = std::max(1.f, slewMs * 0.001f * args.sampleRate);
|
||
crossfadeProgress += 1.f / slewSamples;
|
||
if (crossfadeProgress > 1.f) crossfadeProgress = 1.f;
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
effectiveOutputs[i] = prevOutputs[i] + crossfadeProgress * (cachedOutputs[i] - prevOutputs[i]);
|
||
}
|
||
} else {
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
effectiveOutputs[i] = cachedOutputs[i];
|
||
}
|
||
}
|
||
|
||
// ── Interpolate between inference steps (slew) ────────────────
|
||
if (!runInference && period > 1) {
|
||
float alpha = (float)sampleCounter / (float)period;
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
slewOutputs[i] += alpha * (effectiveOutputs[i] - slewOutputs[i]);
|
||
}
|
||
} else {
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
slewOutputs[i] = effectiveOutputs[i];
|
||
}
|
||
}
|
||
|
||
// ── Write raw outputs with attenuverters ──────────────────────
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
outputs[OUTPUT_1 + i].setVoltage(outputToVoltage(slewOutputs[i], i));
|
||
lights[LIGHT_OUT_1 + i].setBrightness(slewOutputs[i]);
|
||
}
|
||
|
||
// ── Derived outputs ───────────────────────────────────────────
|
||
// Mean
|
||
float mean = 0.f;
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) mean += slewOutputs[i];
|
||
mean /= NUM_ML_OUTPUTS;
|
||
outputs[OUTPUT_MEAN].setVoltage(mean * 10.f);
|
||
|
||
// STD
|
||
float variance = 0.f;
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
float d = slewOutputs[i] - mean;
|
||
variance += d * d;
|
||
}
|
||
float stddev = std::sqrt(variance / NUM_ML_OUTPUTS);
|
||
outputs[OUTPUT_STD].setVoltage(stddev * 10.f);
|
||
|
||
// Delta (L2 norm of change)
|
||
float delta = 0.f;
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
float d = slewOutputs[i] - lastOutputsForDelta[i];
|
||
delta += d * d;
|
||
lastOutputsForDelta[i] = slewOutputs[i];
|
||
}
|
||
outputs[OUTPUT_DELTA].setVoltage(std::sqrt(delta) * 10.f);
|
||
|
||
// Novelty + Confidence (computed on background thread, cached)
|
||
outputs[OUTPUT_NOVELTY].setVoltage(cachedNovelty.load());
|
||
outputs[OUTPUT_CONFIDENCE].setVoltage(cachedConfidence.load());
|
||
|
||
// ── OSC send (throttled to ~100ms) ───────────────────────────
|
||
if (oscServer && oscServer->isRunning()) {
|
||
oscSendCounter++;
|
||
if (oscSendCounter >= OSC_SEND_INTERVAL_SAMPLES) {
|
||
oscSendCounter = 0;
|
||
oscServer->sendOutputs(slewOutputs, NUM_ML_OUTPUTS);
|
||
oscServer->sendInputs(lastInputs, NUM_ML_INPUTS);
|
||
}
|
||
}
|
||
}
|
||
|
||
// ── Serialization ─────────────────────────────────────────────────
|
||
json_t* dataToJson() override {
|
||
json_t* root = json_object();
|
||
json_object_set_new(root, "version", json_integer(1));
|
||
json_object_set_new(root, "noiseLevel", json_real(noiseLevel));
|
||
json_object_set_new(root, "slewMs", json_real(slewMs));
|
||
json_object_set_new(root, "oscEnabled", json_boolean(oscEnabled));
|
||
json_object_set_new(root, "oscPort", json_integer(oscPort));
|
||
|
||
// Output ranges
|
||
json_t* outRanges = json_array();
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
json_array_append_new(outRanges, json_boolean(outputRangeUnipolar[i]));
|
||
}
|
||
json_object_set_new(root, "outputRangeUnipolar", outRanges);
|
||
|
||
// Input ranges
|
||
json_t* inRanges = json_array();
|
||
for (int i = 0; i < MAX_ML_INPUTS; i++) {
|
||
json_array_append_new(inRanges, json_boolean(inputRangeUnipolar[i]));
|
||
}
|
||
json_object_set_new(root, "inputRangeUnipolar", inRanges);
|
||
|
||
// MLP weights (3D: layer → node → weight)
|
||
auto weights = iml.get_weights();
|
||
json_t* jWeights = json_array();
|
||
for (auto& layer : weights) {
|
||
json_t* jLayer = json_array();
|
||
for (auto& node : layer) {
|
||
json_t* jNode = json_array();
|
||
for (float w : node) {
|
||
json_array_append_new(jNode, json_real(w));
|
||
}
|
||
json_array_append_new(jLayer, jNode);
|
||
}
|
||
json_array_append_new(jWeights, jLayer);
|
||
}
|
||
json_object_set_new(root, "weights", jWeights);
|
||
|
||
// Training examples
|
||
auto features = iml.get_example_features();
|
||
auto labels = iml.get_example_labels();
|
||
json_t* jExamples = json_object();
|
||
json_t* jFeatures = json_array();
|
||
for (auto& f : features) {
|
||
json_t* jF = json_array();
|
||
for (float v : f) json_array_append_new(jF, json_real(v));
|
||
json_array_append_new(jFeatures, jF);
|
||
}
|
||
json_t* jLabels = json_array();
|
||
for (auto& l : labels) {
|
||
json_t* jL = json_array();
|
||
for (float v : l) json_array_append_new(jL, json_real(v));
|
||
json_array_append_new(jLabels, jL);
|
||
}
|
||
json_object_set_new(jExamples, "features", jFeatures);
|
||
json_object_set_new(jExamples, "labels", jLabels);
|
||
json_object_set_new(root, "examples", jExamples);
|
||
|
||
// MLP config (for validation on load)
|
||
json_t* jConfig = json_object();
|
||
json_t* jLayers = json_array();
|
||
// [3, 16, 24, 16, 12] for default config
|
||
json_array_append_new(jLayers, json_integer(NUM_ML_INPUTS + 1)); // +bias
|
||
for (int h : {16, 24, 16}) json_array_append_new(jLayers, json_integer(h));
|
||
json_array_append_new(jLayers, json_integer(NUM_ML_OUTPUTS));
|
||
json_object_set_new(jConfig, "layers", jLayers);
|
||
json_object_set_new(root, "mlpConfig", jConfig);
|
||
|
||
return root;
|
||
}
|
||
|
||
void dataFromJson(json_t* root) override {
|
||
json_t* j;
|
||
if ((j = json_object_get(root, "noiseLevel")))
|
||
noiseLevel = json_real_value(j);
|
||
if ((j = json_object_get(root, "slewMs")))
|
||
slewMs = json_real_value(j);
|
||
|
||
// OSC
|
||
if ((j = json_object_get(root, "oscPort")))
|
||
oscPort = json_integer_value(j);
|
||
if ((j = json_object_get(root, "oscEnabled"))) {
|
||
if (json_boolean_value(j))
|
||
startOsc();
|
||
else
|
||
stopOsc();
|
||
}
|
||
|
||
// Output ranges
|
||
json_t* outRanges = json_object_get(root, "outputRangeUnipolar");
|
||
if (outRanges) {
|
||
for (int i = 0; i < NUM_ML_OUTPUTS && i < (int)json_array_size(outRanges); i++) {
|
||
outputRangeUnipolar[i] = json_boolean_value(json_array_get(outRanges, i));
|
||
}
|
||
}
|
||
|
||
// Input ranges
|
||
json_t* inRanges = json_object_get(root, "inputRangeUnipolar");
|
||
if (inRanges) {
|
||
for (int i = 0; i < MAX_ML_INPUTS && i < (int)json_array_size(inRanges); i++) {
|
||
inputRangeUnipolar[i] = json_boolean_value(json_array_get(inRanges, i));
|
||
}
|
||
}
|
||
|
||
// MLP weights
|
||
json_t* jWeights = json_object_get(root, "weights");
|
||
if (jWeights && json_is_array(jWeights)) {
|
||
nisps::MLP<float>::mlp_weights weights;
|
||
for (size_t li = 0; li < json_array_size(jWeights); li++) {
|
||
json_t* jLayer = json_array_get(jWeights, li);
|
||
std::vector<std::vector<float>> layer;
|
||
for (size_t ni = 0; ni < json_array_size(jLayer); ni++) {
|
||
json_t* jNode = json_array_get(jLayer, ni);
|
||
std::vector<float> node;
|
||
for (size_t wi = 0; wi < json_array_size(jNode); wi++) {
|
||
node.push_back(json_real_value(json_array_get(jNode, wi)));
|
||
}
|
||
layer.push_back(node);
|
||
}
|
||
weights.push_back(layer);
|
||
}
|
||
iml.set_weights(weights);
|
||
}
|
||
|
||
// Training examples
|
||
json_t* jExamples = json_object_get(root, "examples");
|
||
if (jExamples) {
|
||
json_t* jFeatures = json_object_get(jExamples, "features");
|
||
json_t* jLabels = json_object_get(jExamples, "labels");
|
||
if (jFeatures && jLabels) {
|
||
std::vector<std::vector<float>> features, labels;
|
||
for (size_t i = 0; i < json_array_size(jFeatures); i++) {
|
||
json_t* jF = json_array_get(jFeatures, i);
|
||
std::vector<float> f;
|
||
for (size_t fi = 0; fi < json_array_size(jF); fi++)
|
||
f.push_back(json_real_value(json_array_get(jF, fi)));
|
||
features.push_back(f);
|
||
}
|
||
for (size_t i = 0; i < json_array_size(jLabels); i++) {
|
||
json_t* jL = json_array_get(jLabels, i);
|
||
std::vector<float> l;
|
||
for (size_t li = 0; li < json_array_size(jL); li++)
|
||
l.push_back(json_real_value(json_array_get(jL, li)));
|
||
labels.push_back(l);
|
||
}
|
||
iml.load_examples(features, labels);
|
||
}
|
||
}
|
||
}
|
||
};
|
||
|
||
// ── NanoVG Bar Graph Display ──────────────────────────────────────────
|
||
struct MEMLNautDisplay : LedDisplay {
|
||
MEMLNaut* module = nullptr;
|
||
|
||
void drawLayer(const DrawArgs& args, int layer) override {
|
||
if (layer != 1 || !module) return;
|
||
|
||
nvgSave(args.vg);
|
||
|
||
float w = box.size.x;
|
||
float h = box.size.y;
|
||
float barW = (w - 4.f) / NUM_ML_OUTPUTS;
|
||
float margin = 2.f;
|
||
|
||
// Background
|
||
nvgBeginPath(args.vg);
|
||
nvgRect(args.vg, 0, 0, w, h);
|
||
nvgFillColor(args.vg, nvgRGB(0x10, 0x10, 0x18));
|
||
nvgFill(args.vg);
|
||
|
||
// Output bars
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
float val = module->slewOutputs[i];
|
||
float barH = val * (h - 16.f);
|
||
|
||
// Color: hue based on output index
|
||
float hue = (float)i / NUM_ML_OUTPUTS;
|
||
NVGcolor color = nvgHSLA(hue, 0.7f, 0.5f, 200);
|
||
|
||
nvgBeginPath(args.vg);
|
||
nvgRect(args.vg, margin + i * barW, h - 8.f - barH, barW - 1.f, barH);
|
||
nvgFillColor(args.vg, color);
|
||
nvgFill(args.vg);
|
||
}
|
||
|
||
// Status text
|
||
nvgFontSize(args.vg, 8.f);
|
||
nvgFillColor(args.vg, nvgRGB(0xa0, 0xa0, 0xa0));
|
||
nvgTextAlign(args.vg, NVG_ALIGN_LEFT | NVG_ALIGN_TOP);
|
||
|
||
char buf[64];
|
||
snprintf(buf, sizeof(buf), "N:%.3f", module->noiseLevel);
|
||
nvgText(args.vg, 2.f, 1.f, buf, nullptr);
|
||
|
||
if (module->isTraining.load()) {
|
||
nvgFillColor(args.vg, nvgRGB(0xff, 0xa0, 0x00));
|
||
nvgText(args.vg, w - 24.f, 1.f, "TRAIN", nullptr);
|
||
}
|
||
|
||
nvgRestore(args.vg);
|
||
}
|
||
};
|
||
|
||
// ── Widget ────────────────────────────────────────────────────────────
|
||
struct MEMLNautWidget : ModuleWidget {
|
||
MEMLNautWidget(MEMLNaut* module) {
|
||
setModule(module);
|
||
setPanel(createPanel(asset::plugin(pluginInstance, "res/MEMLNaut.svg")));
|
||
|
||
float col1 = 8.f; // left column
|
||
float col2 = 20.f; // center-left
|
||
float col3 = 32.f; // center-right
|
||
// float col4 = 44.f; // right column (for wide panel)
|
||
float y = 14.f;
|
||
|
||
// ── Display ───────────────────────────────────────────────────
|
||
MEMLNautDisplay* display = createWidget<MEMLNautDisplay>(mm2px(Vec(2.f, y)));
|
||
display->box.size = mm2px(Vec(36.f, 18.f));
|
||
display->module = module;
|
||
addChild(display);
|
||
y += 22.f;
|
||
|
||
// ── SPREAD + RATE knobs ───────────────────────────────────────
|
||
addParam(createParamCentered<RoundBlackKnob>(mm2px(Vec(col1, y)), module, MEMLNaut::PARAM_SPREAD));
|
||
addInput(createInputCentered<PJ301MPort>(mm2px(Vec(col2, y)), module, MEMLNaut::INPUT_SPREAD_CV));
|
||
addParam(createParamCentered<RoundBlackKnob>(mm2px(Vec(col3, y)), module, MEMLNaut::PARAM_RATE));
|
||
y += 10.f;
|
||
|
||
// ── Buttons row: + − LEARN RAND CLEAR ────────────────────────
|
||
addParam(createParamCentered<VCVButton>(mm2px(Vec(col1 - 2.f, y)), module, MEMLNaut::PARAM_THUMBS_UP));
|
||
addParam(createParamCentered<VCVButton>(mm2px(Vec(col1 + 6.f, y)), module, MEMLNaut::PARAM_THUMBS_DOWN));
|
||
addParam(createParamCentered<CKSS>(mm2px(Vec(col2 + 2.f, y)), module, MEMLNaut::PARAM_LEARN));
|
||
addChild(createLightCentered<SmallLight<GreenLight>>(mm2px(Vec(col2 + 2.f, y - 4.f)), module, MEMLNaut::LIGHT_LEARN));
|
||
addParam(createParamCentered<VCVButton>(mm2px(Vec(col3, y)), module, MEMLNaut::PARAM_RAND));
|
||
addParam(createParamCentered<VCVButton>(mm2px(Vec(col3 + 8.f, y)), module, MEMLNaut::PARAM_CLEAR));
|
||
addChild(createLightCentered<SmallLight<YellowLight>>(mm2px(Vec(col3 + 8.f, y - 4.f)), module, MEMLNaut::LIGHT_TRAINING));
|
||
y += 10.f;
|
||
|
||
// ── Trigger / gate inputs ─────────────────────────────────────
|
||
addInput(createInputCentered<PJ301MPort>(mm2px(Vec(col1, y)), module, MEMLNaut::INPUT_X));
|
||
addInput(createInputCentered<PJ301MPort>(mm2px(Vec(col2, y)), module, MEMLNaut::INPUT_Y));
|
||
addInput(createInputCentered<PJ301MPort>(mm2px(Vec(col3, y)), module, MEMLNaut::INPUT_LEARN_GATE));
|
||
y += 8.f;
|
||
addInput(createInputCentered<PJ301MPort>(mm2px(Vec(col1, y)), module, MEMLNaut::INPUT_TRIG_POS));
|
||
addInput(createInputCentered<PJ301MPort>(mm2px(Vec(col2, y)), module, MEMLNaut::INPUT_TRIG_NEG));
|
||
y += 10.f;
|
||
|
||
// ── Outputs: 3 columns of 4, with attenuverter + LED + jack ──
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
int col = i % 3;
|
||
int row = i / 3;
|
||
float ox = 6.f + col * 13.f;
|
||
float oy = y + row * 9.f;
|
||
|
||
addParam(createParamCentered<Trimpot>(mm2px(Vec(ox, oy)), module, MEMLNaut::PARAM_ATTEN_1 + i));
|
||
addChild(createLightCentered<SmallLight<WhiteLight>>(mm2px(Vec(ox + 4.5f, oy)), module, MEMLNaut::LIGHT_OUT_1 + i));
|
||
addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(ox + 9.f, oy)), module, MEMLNaut::OUTPUT_1 + i));
|
||
}
|
||
y += 4 * 9.f + 2.f;
|
||
|
||
// ── Derived outputs ───────────────────────────────────────────
|
||
float dox = 4.f;
|
||
addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(dox, y)), module, MEMLNaut::OUTPUT_MEAN));
|
||
addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(dox + 8.f, y)), module, MEMLNaut::OUTPUT_STD));
|
||
addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(dox + 16.f, y)), module, MEMLNaut::OUTPUT_DELTA));
|
||
addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(dox + 24.f, y)), module, MEMLNaut::OUTPUT_NOVELTY));
|
||
addOutput(createOutputCentered<PJ301MPort>(mm2px(Vec(dox + 32.f, y)), module, MEMLNaut::OUTPUT_CONFIDENCE));
|
||
}
|
||
|
||
void appendContextMenu(Menu* menu) override {
|
||
MEMLNaut* module = dynamic_cast<MEMLNaut*>(this->module);
|
||
if (!module) return;
|
||
|
||
menu->addChild(new MenuSeparator);
|
||
menu->addChild(createMenuLabel("Output ranges"));
|
||
|
||
for (int i = 0; i < NUM_ML_OUTPUTS; i++) {
|
||
menu->addChild(createCheckMenuItem(
|
||
string::f("Out %d: Bipolar (±5V)", i + 1), "",
|
||
[=]() { return !module->outputRangeUnipolar[i]; },
|
||
[=]() { module->outputRangeUnipolar[i] = !module->outputRangeUnipolar[i]; }
|
||
));
|
||
}
|
||
|
||
menu->addChild(new MenuSeparator);
|
||
menu->addChild(createMenuLabel("Input ranges"));
|
||
|
||
std::string inputNames[] = {"X", "Y"};
|
||
for (int i = 0; i < NUM_ML_INPUTS; i++) {
|
||
menu->addChild(createCheckMenuItem(
|
||
string::f("Input %s: Bipolar (±5V)", inputNames[i].c_str()), "",
|
||
[=]() { return !module->inputRangeUnipolar[i]; },
|
||
[=]() { module->inputRangeUnipolar[i] = !module->inputRangeUnipolar[i]; }
|
||
));
|
||
}
|
||
|
||
menu->addChild(new MenuSeparator);
|
||
menu->addChild(createMenuLabel("Slew"));
|
||
|
||
menu->addChild(createSubmenuItem("Output slew", string::f("%.0f ms", module->slewMs), [=](Menu* childMenu) {
|
||
for (float ms : {0.f, 5.f, 10.f, 20.f, 50.f, 100.f}) {
|
||
childMenu->addChild(createCheckMenuItem(
|
||
string::f("%.0f ms", ms), "",
|
||
[=]() { return module->slewMs == ms; },
|
||
[=]() { module->slewMs = ms; }
|
||
));
|
||
}
|
||
}));
|
||
|
||
// ── Preset save/load ──────────────────────────────────────────
|
||
menu->addChild(new MenuSeparator);
|
||
menu->addChild(createMenuLabel("Presets (.nisps)"));
|
||
|
||
menu->addChild(createMenuItem("Save .nisps preset...", "", [=]() {
|
||
osdialog_filters* filters = osdialog_filters_parse("NISPS preset:nisps");
|
||
char* path = osdialog_file(OSDIALOG_SAVE, nullptr, "preset.nisps", filters);
|
||
osdialog_filters_free(filters);
|
||
if (!path) return;
|
||
|
||
json_t* root = module->dataToJson();
|
||
// Also save all param values
|
||
json_t* jParams = json_array();
|
||
for (int i = 0; i < MEMLNaut::PARAMS_LEN; i++) {
|
||
json_array_append_new(jParams, json_real(module->params[i].getValue()));
|
||
}
|
||
json_object_set_new(root, "params", jParams);
|
||
|
||
char* jsonStr = json_dumps(root, JSON_INDENT(2));
|
||
json_decref(root);
|
||
|
||
std::ofstream file(path);
|
||
if (file.is_open()) {
|
||
file << jsonStr;
|
||
file.close();
|
||
}
|
||
free(jsonStr);
|
||
free(path);
|
||
}));
|
||
|
||
menu->addChild(createMenuItem("Load .nisps preset...", "", [=]() {
|
||
osdialog_filters* filters = osdialog_filters_parse("NISPS preset:nisps");
|
||
char* path = osdialog_file(OSDIALOG_OPEN, nullptr, nullptr, filters);
|
||
osdialog_filters_free(filters);
|
||
if (!path) return;
|
||
|
||
std::ifstream file(path);
|
||
free(path);
|
||
if (!file.is_open()) return;
|
||
|
||
std::string content((std::istreambuf_iterator<char>(file)),
|
||
std::istreambuf_iterator<char>());
|
||
file.close();
|
||
|
||
json_error_t error;
|
||
json_t* root = json_loads(content.c_str(), 0, &error);
|
||
if (!root) return;
|
||
|
||
// Validate version
|
||
json_t* jVersion = json_object_get(root, "version");
|
||
if (!jVersion || json_integer_value(jVersion) < 1) {
|
||
json_decref(root);
|
||
return;
|
||
}
|
||
|
||
module->dataFromJson(root);
|
||
|
||
// Restore param values if present
|
||
json_t* jParams = json_object_get(root, "params");
|
||
if (jParams && json_is_array(jParams)) {
|
||
for (size_t i = 0; i < json_array_size(jParams) && i < MEMLNaut::PARAMS_LEN; i++) {
|
||
module->params[i].setValue(json_real_value(json_array_get(jParams, i)));
|
||
}
|
||
}
|
||
|
||
json_decref(root);
|
||
}));
|
||
|
||
// ── OSC bridge ───────────────────────────────────────────────
|
||
menu->addChild(new MenuSeparator);
|
||
menu->addChild(createMenuLabel("OSC Bridge"));
|
||
|
||
menu->addChild(createCheckMenuItem(
|
||
string::f("Enable OSC server (port %d)", module->oscPort), "",
|
||
[=]() { return module->oscEnabled; },
|
||
[=]() {
|
||
if (module->oscEnabled) {
|
||
module->stopOsc();
|
||
} else {
|
||
module->startOsc();
|
||
}
|
||
}
|
||
));
|
||
|
||
menu->addChild(createSubmenuItem("OSC listen port", string::f("%d", module->oscPort), [=](Menu* childMenu) {
|
||
for (int port : {9000, 9001, 9002, 8000, 7000}) {
|
||
childMenu->addChild(createCheckMenuItem(
|
||
string::f("%d", port), "",
|
||
[=]() { return module->oscPort == port; },
|
||
[=]() {
|
||
bool wasRunning = module->oscEnabled;
|
||
if (wasRunning) module->stopOsc();
|
||
module->oscPort = port;
|
||
if (wasRunning) module->startOsc();
|
||
}
|
||
));
|
||
}
|
||
}));
|
||
}
|
||
};
|
||
|
||
Model* modelMEMLNaut = createModel<MEMLNaut, MEMLNautWidget>("MEMLNaut");
|