From 2446570e931914cd4a6b7b5d52427f4aaf2e9e7b Mon Sep 17 00:00:00 2001 From: Charles Martin Date: Thu, 22 Aug 2024 13:42:55 +1000 Subject: [PATCH] a user-only example config --- configs/user-only-example.toml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 configs/user-only-example.toml diff --git a/configs/user-only-example.toml b/configs/user-only-example.toml new file mode 100644 index 0000000..c687026 --- /dev/null +++ b/configs/user-only-example.toml @@ -0,0 +1,32 @@ +# The configuration file for IMPSY: Interactive Musical Prediction System + +# Metadata about this configuration +title = "Testing a user-only configuration" +owner = "Charles Martin" +description = "" + +# Basic config +log_input = true +log_predictions = false +verbose = true + +# Interaction Configuration +[interaction] +mode = "useronly" # Can be: "callresponse", "polyphony", "battle", "useronly" +threshold = 0.1 # number of seconds before switching in call-response mode +input_thru = false # sends inputs directly to outputs (e.g., if input interface is different than output synth) + +# Model configuration +[model] +dimension = 17 +# file = "" # No model file! Uses untrained model. +size = "s" # Can be one of: xs, s, m, l, xl +sigmatemp = 0.01 +pitemp = 1 +timescale = 1 + +[osc] +server_ip = "0.0.0.0" # Address of IMPSY +server_port = 6000 # Port IMPSY listens on +client_ip = "0.0.0.0" # Address of the output device +client_port = 6001 # Port of the output device