64位系統如何安裝libsvm

2021-07-11 20:31:33 字數 679 閱讀 1912

在64位作業系統上安裝libsvm十分簡單,不用進行32位一樣的複雜安裝過程。過程主要如下:

3)開啟matlab,(我的是matlabr2015b版本)主頁→設定路徑→新增資料夾(你解壓的資料夾裡的乙個資料夾windows即e:\program files\libsvm-3.21\windows)→儲存後關閉即可。

4)在matlab工作介面,將當前工作目錄切換至e:\program files\libsvm-3.21\windows

5)完成前4步其實就已經完成了90%辣~,接下來在matlab命令視窗輸入如下命令:

[heart_scale_label,heart_scale_inst]=libsvmread('heart_scale');

model = svmtrain(heart_scale_label,heart_scale_inst, '-c 1 -g 0.07');

[predict_label, accuracy, dec_values] =svmpredict(heart_scale_label, heart_scale_inst, model); % test the trainingdata

若出現accuracy = 86.6667% (234/270) (classification)表示已經安裝成功~歐耶~~~~

ps這僅僅是乙個菜鳥小白的安裝初次經歷~~~大神路過歡迎指錯~~~~

64位系統安裝pl sql developer

在網上搜尋了半天,主要原因是oci.dll是64位的,而pl sql developer只支援32位的,在使用64位oci.dll檔案時出錯.解決方案如下 檔案到instantclient解壓目錄.2.非登入狀態下進入pl sql developer,進入首選項,在connection中設定 ora...

VirtualBox安裝64位系統

2010 04 29 到引導區報錯 this kernel requires an x86 64 cpu,but only detected an i686 cpu.求助無所不知的google大神 原來virtualbox安裝64bit的系統需要滿足以下條件 64bit的cpu 64bit的作業系統...

libsvm在64位linux下matlab編譯

現在寫一下在matlab中從安裝libsvm到使用。1,安裝 系統版本 redhat 6.0 matlab版本 2010b.1 首先將matlab當前目錄設為libsvm matlab所在目錄,並且保證makefile檔案中matlabdir路徑為matlab安裝所在路徑,例如 matlabdir ...