forked from opencog/opencog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopencog3.conf
67 lines (61 loc) · 2.34 KB
/
opencog3.conf
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# This file provides an example configuration for a production OpenCog
# server. Particularly noteworthy is the list of automatically loaded
# modules.
#
SERVER_PORT = 17003
LOG_FILE = /tmp/cogserver3.log
# Other possible log levels are "error", "warn", "info", "debug" and "fine"
# LOG_LEVEL = debug
LOG_LEVEL = info
LOG_TO_STDOUT = false
SERVER_CYCLE_DURATION = 100
IDLE_CYCLES_PER_TICK = 3
STARTING_STI_FUNDS = 10000
STARTING_LTI_FUNDS = 10000
STI_FUNDS_BUFFER = 10000
LTI_FUNDS_BUFFER = 10000
MIN_STI = -400
PROMPT = "opencog> "
MODULES = libbuiltinreqs.so,
libpersist.so,
libquery.so,
libscheme-shell.so,
libwsd.so
SCM_PRELOAD = scm/type_constructors.scm,
scm/persistence.scm,
scm/utilities.scm,
scm/file-utils.scm,
scm/debug.scm,
nlp/scm/type-definitions.scm,
nlp/scm/config.scm,
nlp/scm/file-utils.scm,
nlp/scm/nlp-utils.scm,
nlp/scm/disjunct-list.scm,
nlp/scm/processing-utils.scm
# nlp/triples/preps.scm,
# nlp/triples/prep-maps.scm,
# nlp/triples/rule-tools.scm,
# nlp/triples/prep-rules.scm,
# nlp/triples/rules.scm,
# nlp/triples/triples-pipeline.scm
# IMPORTANT!
# Database login credentials. Change these to reflect your actual setup!
#
# The sense-similarity tables hold precomputed values for the similarity
# of word WordNet-3.0 senses. These tables are referenced in
# nlp/wsd/SenseSimilaritySQL.cc These will *eventually* be replaced by
# a persistent opencog table of sense similarities. For now, they remain
# in use.
#
SENSE_SIMILARITY_DB_NAME = "lexat"
SENSE_SIMILARITY_DB_USERNAME = "linas"
SENSE_SIMILARITY_DB_PASSWD = "asdf"
#
# PLN settings
PLN_RECORD_TRAILS = true
# PLN_LOG_LEVEL = 2
PLN_LOG_LEVEL = -5
PLN_FW_VARS_IN_ATOMSPACE = true
PLN_PRINT_REAL_ATOMS = true
PLN_FITNESS_EVALUATOR = "best"