README.md in onnxruntime-0.6.4 vs README.md in onnxruntime-0.6.5

- old
+ new

@@ -1,12 +1,12 @@ -# ONNX Runtime +# ONNX Runtime Ruby :fire: [ONNX Runtime](https://github.com/Microsoft/onnxruntime) - the high performance scoring engine for ML models - for Ruby Check out [an example](https://ankane.org/tensorflow-ruby) -[![Build Status](https://github.com/ankane/onnxruntime/workflows/build/badge.svg?branch=master)](https://github.com/ankane/onnxruntime/actions) +[![Build Status](https://github.com/ankane/onnxruntime-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/onnxruntime-ruby/actions) ## Installation Add this line to your application’s Gemfile: @@ -76,10 +76,11 @@ ## Run Options ```ruby model.predict(input_feed, { + output_names: nil, log_severity_level: 2, log_verbosity_level: 0, logid: nil, terminate: false, output_type: :ruby # :ruby or :numo @@ -109,25 +110,25 @@ OnnxRuntime.ffi_lib = "path/to/lib/libonnxruntime.so" # onnxruntime.dll for Windows ``` ## History -View the [changelog](https://github.com/ankane/onnxruntime/blob/master/CHANGELOG.md) +View the [changelog](https://github.com/ankane/onnxruntime-ruby/blob/master/CHANGELOG.md) ## Contributing Everyone is encouraged to help improve this project. Here are a few ways you can help: -- [Report bugs](https://github.com/ankane/onnxruntime/issues) -- Fix bugs and [submit pull requests](https://github.com/ankane/onnxruntime/pulls) +- [Report bugs](https://github.com/ankane/onnxruntime-ruby/issues) +- Fix bugs and [submit pull requests](https://github.com/ankane/onnxruntime-ruby/pulls) - Write, clarify, or fix documentation - Suggest or add new features To get started with development and testing: ```sh -git clone https://github.com/ankane/onnxruntime.git -cd onnxruntime +git clone https://github.com/ankane/onnxruntime-ruby.git +cd onnxruntime-ruby bundle install bundle exec rake vendor:all bundle exec rake test ```