Encog.App.Analyst.Wizard.AnalystWizard.GenerateSOM C# (CSharp) 메소드

GenerateSOM() 개인적인 메소드

Generate a SOM machine learning method.
private GenerateSOM ( ) : void
리턴 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);
        }