Java机器学习库ML之十一线性SVM
生活随笔
收集整理的這篇文章主要介紹了
Java机器学习库ML之十一线性SVM
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
線性SVM的原理就不多說了,最強大的就是libsvm庫(ml庫也是用這個),參考:http://blog.csdn.net/fjssharpsword/article/details/53883340
這里直接給出ML庫的示例代碼:
/*** This file is part of the Java Machine Learning Library* * The Java Machine Learning Library 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.* * The Java Machine Learning Library 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 the Java Machine Learning Library; if not, write to the Free Software* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA* * Copyright (c) 2006-2012, Thomas Abeel* * Project: http://java-ml.sourceforge.net/* */ package com.gddx;import java.io.File;import libsvm.SelfOptimizingLinearLibSVM; import net.sf.javaml.classification.Classifier; import net.sf.javaml.core.Dataset; import net.sf.javaml.core.Instance; import net.sf.javaml.tools.data.FileHandler;/*** This tutorial show how to use a the LibSVM classifier.* * @author Thomas Abeel* */ public class TutorialSelfOptimizingLibSVM {/*** Shows the default usage of the LibSVM algorithm.*/public static void main(String[] args) throws Exception {/* Load a data set */Dataset data = FileHandler.loadDataset(new File("D:\\tmp\\javaml-0.1.7-src\\UCI-small\\iris\\iris.data"), 4, ",");/** Contruct a LibSVM classifier with default settings.*/Classifier svm = new SelfOptimizingLinearLibSVM();svm.buildClassifier(data);/** Load a data set, this can be a different one, but we will use the* same one.*/Dataset dataForClassification = FileHandler.loadDataset(new File("D:\\tmp\\javaml-0.1.7-src\\UCI-small\\iris\\iris.data"), 4, ",");/* Counters for correct and wrong predictions. */int correct = 0, wrong = 0;/* Classify all instances and check with the correct class values */for (Instance inst : dataForClassification) {Object predictedClassValue = svm.classify(inst);Object realClassValue = inst.classValue();if (predictedClassValue.equals(realClassValue))correct++;elsewrong++;}System.out.println("Correct predictions " + correct);System.out.println("Wrong predictions " + wrong);}}發現一個linearsvm的網站http://www.linearsvm.com/,說可以處理超大數據集,可以試驗下。
對ML庫的序列學習就基本到此,總結三點:
1)還是python scikit-learn好用,其次是spark mlib庫,java ml還是有所缺的;
2)Java ML庫的源碼可以繼續研究,對于機器學習庫主要就是三個部分:數據處理、方法實現、模型評價;
3)Java ML庫的API可以參考:http://java-ml.sourceforge.net/api/0.1.7/,但是這個說明文檔實在是過于簡單。
總結
以上是生活随笔為你收集整理的Java机器学习库ML之十一线性SVM的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java机器学习库ML之九交叉验证法(C
- 下一篇: eclipse卸载插件小记