文件名称:thundersvm:Ruby 的高性能并行 SVM
文件大小:19KB
文件格式:ZIP
更新时间:2024-06-18 09:42:15
Ruby
迅雷支持 高性能并行SVM-用于Ruby :fire: 使用 GPU 和多核 CPU 实现卓越性能 有关支持向量机的精彩介绍,请查看。 安装 将此行添加到您的应用程序的Gemfile中: gem 'thundersvm' 在 Mac 上,还要安装 OpenMP: brew install libomp 入门 准备数据 x = [ [ 1 , 2 ] , [ 3 , 4 ] , [ 5 , 6 ] , [ 7 , 8 ] ] y = [ 1 , 2 , 3 , 4 ] 训练模型 model = ThunderSVM :: Regressor . new model . fit ( x , y ) 使用ThunderSVM::Classifier进行分类,使用ThunderSVM::Model进行其他模型 作出预测 model . predict ( x ) 将模型保存到文件
【文件预览】:
thundersvm-master
----.gitignore(99B)
----README.md(4KB)
----CHANGELOG.md(390B)
----.github()
--------workflows()
----test()
--------support()
--------thundersvm_test.rb(2KB)
--------test_helper.rb(359B)
----Gemfile(39B)
----vendor()
--------LICENSE(11KB)
----thundersvm.gemspec(726B)
----LICENSE.txt(11KB)
----NOTICE.txt(594B)
----lib()
--------thundersvm.rb(746B)
--------thundersvm()
----Rakefile(669B)