Exemplo n.º 1
0
        protected override void OverrideModel(IMLSpecifications.LearningType learningType)
        {
            switch (learningType)
            {
            case IMLSpecifications.LearningType.Classification:
                m_Model = new RapidlibModel(RapidlibModel.ModelType.kNN);
                break;

            case IMLSpecifications.LearningType.Regression:
                m_Model = new RapidlibModel(RapidlibModel.ModelType.NeuralNetwork);
                break;

            default:
                break;
            }
        }
 protected override void OverrideModel(IMLSpecifications.LearningType learningType)
 {
     m_Model = new RapidlibModel(RapidlibModel.ModelType.NeuralNetwork);
 }