Encog.App.Analyst.Wizard.AnalystWizard.GenerateSOM C# (CSharp) Method

GenerateSOM() private method

Generate a SOM machine learning method.
private GenerateSOM ( ) : void
return void
        private void GenerateSOM()
        {
            _script.Properties.SetProperty(
                ScriptProperties.MlConfigType, MLMethodFactory.TypeSOM);
            _script.Properties.SetProperty(
                ScriptProperties.MlConfigArchitecture, "?->?");

            _script.Properties.SetProperty(ScriptProperties.MlTrainType,
                                          MLTrainFactory.TypeSOMNeighborhood);
            _script.Properties.SetProperty(
                ScriptProperties.MlTrainArguments,
                "ITERATIONS=1000,NEIGHBORHOOD=rbf1d,RBF_TYPE=gaussian");

            // ScriptProperties.ML_TRAIN_arguments
            _script.Properties.SetProperty(
                ScriptProperties.MlTrainTargetError, DefaultTrainError);
        }