-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from vsbogd/merge-opencog-to-singnet
Merge opencog -> singnet
- Loading branch information
Showing
98 changed files
with
2,667 additions
and
2,946 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,71 @@ | ||
# | ||
# This file is used by the guile bindings for the cogserver if no other | ||
# config file is specified. That is, it is used when you say: | ||
# cogserver.conf | ||
# OpenCog CogServer configuration file. | ||
# | ||
# (use-modules (opencog cogserver)) | ||
# (start-cogserver) | ||
# | ||
# It can be treated as an example configuration for a production OpenCog | ||
# server. | ||
# This file is usually installed either as `/etc/cogserver.conf` or as | ||
# `/usr/local/etc/cogserver.conf` and is used by the cogserver if no | ||
# other config file is specified. | ||
# | ||
# ------------------------------------------------------------ | ||
# Cogserver configuration. The cogserver listens to TCP/IPv4 port 17001 | ||
# by default. Change this to over-ride. | ||
# SERVER_PORT = 17001 | ||
LOG_FILE = /tmp/cogserver.log | ||
|
||
# Other possible log levels are "error", "warn", "info", "debug" and "fine" | ||
# ------------------------------------------------------------ | ||
# Logging configuration. | ||
LOG_FILE = /tmp/cogserver.log | ||
# Possible log levels are "error", "warn", "info", "debug" and "fine" | ||
# LOG_LEVEL = debug | ||
LOG_LEVEL = info | ||
LOG_TO_STDOUT = false | ||
# SERVER_CYCLE_DURATION = 100 | ||
|
||
# Use this command PROMPT when telnet/terminal doesn't support ANSI | ||
# PROMPT = "opencog> " | ||
# Prompt with ANSI color codes | ||
# ------------------------------------------------------------ | ||
# CogServer shell prompt styles. The shell prompt is displayed after | ||
# connecting to the cogserver TCP/IP port, e.g. by saying | ||
# `telnet localhost 17001`. | ||
# | ||
# Option enabling ANSI color codes on terminal output. True by default. | ||
# ANSI_ENABLED = true | ||
# | ||
# Prompt with ANSI color codes. | ||
# ANSI_PROMPT = "[0;32mopencog[1;32m> [0m" | ||
# Use this guile PROMPT when telnet/terminal doesn't support ANSI | ||
# SCM_PROMPT = "guile> " | ||
# Prompt with ANSI color codes | ||
# | ||
# This prompt is used when the telnet/terminal doesn't support ANSI. | ||
# PROMPT = "opencog> " | ||
# | ||
# Prompt for the guile scheme shell exposed by the cogserver. | ||
# ANSI_SCM_PROMPT = "[0;34mguile[1;34m> [0m" | ||
# Global option so that modules know whether they should output ANSI color | ||
# codes | ||
# ANSI_ENABLED = true | ||
|
||
# These are automatically loaded; they do not need to be specified. | ||
# | ||
# The guile prompt when telnet/terminal doesn't support ANSI. | ||
# SCM_PROMPT = "guile> " | ||
# | ||
# ------------------------------------------------------------ | ||
# Cogserver dynamically-loadable modules. | ||
# | ||
# The core, basic modules are loaded by default. The `builtinreqs` | ||
# provide the most basic support for the cogserver network shell. | ||
# The `scheme-shell` and `py-shell` provide scheme and python shells, | ||
# respectively, for the cogserver. | ||
# | ||
# For OSX, the .so suffix will be auto-converted to .dylib | ||
# MODULES = opencog/modules/libbuiltinreqs.so, | ||
# opencog/modules/libscheme-shell.so, | ||
# opencog/modules/libpy-shell.so, | ||
# | ||
# Optional modules, not enabled by default | ||
# ------------------------------------------------------------ | ||
# Cogserver agents module. The agents module is loaded by default. | ||
# It has several configurable paramters. This does something. (What?) | ||
# SERVER_CYCLE_DURATION = 100 | ||
# | ||
# ------------------------------------------------------------ | ||
# Optional modules, not enabled by default. | ||
# These are not provided by the cogserver; these are external | ||
# components, and are mentioned here only for backward-compatibility. | ||
# | ||
# opencog/modules/libatomspacepublishermodule.so | ||
# opencog/modules/libdimensionalembedding.so | ||
|
||
# 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" | ||
|
||
# | ||
# Parameters for ZeroMQ AtomSpace Event Publisher | ||
# ZMQ_EVENT_USE_PUBLIC_IP = TRUE | ||
# ZMQ_EVENT_PORT = 5563 | ||
# ------------------------------------------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.