📄 supportvectormachineapply.java
字号:
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/**
* Title: XELOPES Data Mining Library
* Description: The XELOPES library is an open platform-independent and data-source-independent library for Embedded Data Mining.
* Copyright: Copyright (c) 2002 Prudential Systems Software GmbH
* Company: ZSoft (www.zsoft.ru), Prudsys (www.prudsys.com)
* @author Carsten Weisse
* @author Michael Thess
* @version 1.0
*/
package com.prudsys.pdm.Examples;
import java.io.FileReader;
import com.prudsys.pdm.Core.Category;
import com.prudsys.pdm.Core.MiningDataSpecification;
import com.prudsys.pdm.Core.MiningModel;
import com.prudsys.pdm.Input.MiningFilterStream;
import com.prudsys.pdm.Input.MiningInputStream;
import com.prudsys.pdm.Input.MiningVector;
import com.prudsys.pdm.Input.Records.Csv.MiningCsvStream;
import com.prudsys.pdm.Models.Regression.RegressionDeviationAssessment;
import com.prudsys.pdm.Models.Regression.SVM.SupportVectorMiningModel;
import com.prudsys.pdm.Models.Supervised.SupervisedMiningSettings;
/**
* Applies an SVM which is read from the PMML file 'SupportVectorMachineModel.xml'
* to a data set.
*/
public class SupportVectorMachineApply extends BasisExample {
/**
* Empty constructor.
*/
public SupportVectorMachineApply() {
}
/**
* Run the example of this class.
*
* @throws Exception error while example is running
*/
public void runExample() throws Exception {
// Read decision tree model from PMML file:
MiningModel model = new SupportVectorMiningModel();
FileReader reader = new FileReader("data/pmml/SupportVectorMachineModel.xml");
model.readPmml(reader);
MiningDataSpecification modelMetaData = model.getMiningSettings().getDataSpecification();
String targetAttributeName =
((SupervisedMiningSettings) model.getMiningSettings()).getTarget().getName();
System.out.println("-------------> PMML model read successfully");
// Open data source and get metadata:
MiningInputStream inputData0 = new MiningCsvStream( "data/csv/iris.csv");
inputData0.open();
// Transform input data (dynamically) if required:
MiningInputStream inputData = inputData0;
if ( modelMetaData.isTransformed() )
inputData = new MiningFilterStream(inputData0, modelMetaData.getMiningTransformationActivity());
MiningDataSpecification inputMetaData = inputData.getMetaData();
// Show relation header:
System.out.println("Prediction:");
for (int i = 0; i < inputMetaData.getAttributesNumber(); i++) {
System.out.print(inputMetaData.getMiningAttribute(i).getName() + " ");
};
// Show regression results:
System.out.println();
int i = 0;
double deviation = 0.0;
while (inputData.next()) {
MiningVector vector = inputData.read();
double predicted = model.applyModelFunction(vector);
double real = vector.getValue(targetAttributeName);
if ( Category.isMissingValue(real) ) real = predicted;
double dev = predicted - real;
deviation = deviation + dev*dev;
System.out.println(" " + ++i +": " + vector + " -> " + predicted);
};
System.out.println("deviation = " + Math.sqrt(deviation));
// Same using regression assessment class:
RegressionDeviationAssessment rda = new RegressionDeviationAssessment();
rda.setMiningModel(model);
rda.setAssessmentData(inputData);
inputData.reset();
System.out.println("deviation (assessment class) = " + rda.calculateAssessment() );
}
/**
* Example of applying an SVM model for regression.
*
* @param args arguments (ignored)
*/
public static void main(String[] args) {
try {
new SupportVectorMachineApply().runExample();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -