日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

Java机器学习库ML之十一线性SVM

發布時間:2025/4/16 java 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。