See llms.txt for all machine-readable content.
This workflow exposes two webhooks to train and run inference for a 3-hidden-layer neural network built entirely with n8n Code and Merge nodes, persisting learned weights in workflow static data and returning class probabilities, predictions, and evaluation metrics.
/train with epochs, learning rate, and an optional dataset to train the network./predict containing one or more 8‑dimensional feature vectors (and optional trueClass labels).trueClass (when provided) and responds with the prediction results as JSON.POST /train and POST /predict./train (or rely on the default dataset) to initialize and persist weights in workflow static data./predict as JSON containing x: [8 numbers] (optionally add sampleId and trueClass: 1..4) and review the JSON response for probabilities, predictions, loss, and accuracy.