-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.conf
More file actions
42 lines (33 loc) · 1.56 KB
/
settings.conf
File metadata and controls
42 lines (33 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#===============================================================================
# settings.conf
#===============================================================================
# User-configurable settings for MLCompose program.
#
# Settings are divided into sections, with section names given in square
# brackets. Assignment to variables can be done with either a '=' or ':' sign.
# Values should follow python syntax. Strings should be enclosed with either
# single or double quotes, with an optional prepended 'r' (without the quotes)
# for raw strings. Booleans are set to True for values of 'True', 'On', or
# 'Yes' or False with values of 'False', 'Off', or 'No' (without the quotes,
# and case insensitive). Numbers containing a period ('.') are assigned as
# floats, and numbers with no period are assigned as integers.
#===============================================================================
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[mode]
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
verbose = False
debug = False
analysis = False
train = False
import_model = False
compose = False
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[files]
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
example_file1 = "../example.txt"
example_file2 = "example2.dat"
stats_file = "stats.txt"
log_file = "~/mlcompose.log"
model_file = "default.mod"
mlcompose_files = None
# vi:syntax=python