Skip to content

Commit

Permalink
a user-only example config
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmpercussion committed Aug 22, 2024
1 parent f91d7e2 commit 2446570
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions configs/user-only-example.toml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2446570

Please sign in to comment.