initialize
initialize(ILearningConfig config, boolean debug)
initialize method workflow
The initialize method is called once when the runtime server starts. If there are any operations that do not need to be repeated, but may impede performance during runtime, such as loading static data from a database table, they should be performed by this method.
*
config - an ILearningConfig object defines all the configuration properties relevant to learning.
*
debug - a boolean. If true, indicates the logging level verbosity for the runtime environment system is set to debug. For best results, select this value before writing to a log.
If the initialize method fails for any reason, it throws an LearningException.
Return value
None.