onnxruntime:在Ruby中运行ONNX模型

时间:2024-05-25 09:48:38
【文件属性】:

文件名称:onnxruntime:在Ruby中运行ONNX模型

文件大小:51KB

文件格式:ZIP

更新时间:2024-05-25 09:48:38

Ruby

ONNX运行时 :fire: -ML模型的高性能评分引擎 看看 安装 将此行添加到应用程序的Gemfile中: gem 'onnxruntime' 入门 加载模型并做出预测 model = OnnxRuntime :: Model . new ( "model.onnx" ) model . predict ( { x : [ 1 , 2 , 3 ] } ) 从下载预训练的模型 获取输入 model . inputs 获取输出 model . outputs 获取元数据 model . metadata 从字符串加载模型 byte_str = StringIO . new ( "..." ) model = OnnxRuntime :: Model . new ( byte_str ) 获取特定的输出 model . predict ( { x : [ 1 , 2 , 3 ] }


【文件预览】:
onnxruntime-master
----onnxruntime.gemspec(568B)
----vendor()
--------ThirdPartyNotices.txt(218KB)
--------LICENSE(1KB)
----Rakefile(2KB)
----.github()
--------workflows()
----test()
--------onnxruntime_test.rb(10KB)
--------test_helper.rb(333B)
--------support()
----Gemfile(123B)
----.gitignore(110B)
----CHANGELOG.md(2KB)
----lib()
--------onnxruntime.rb(606B)
--------onnxruntime()
----README.md(3KB)
----LICENSE.txt(1KB)
----datasets()
--------sigmoid.onnx(103B)
--------logreg_iris.onnx(670B)
--------mul_1.onnx(130B)

网友评论