README.md in onnxruntime-0.1.0 vs README.md in onnxruntime-0.1.1
- old
+ new
@@ -1,13 +1,13 @@
# ONNX Runtime
:fire: [ONNX Runtime](https://github.com/Microsoft/onnxruntime) - the high performance scoring engine for ML models - for Ruby
+[![Build Status](https://travis-ci.org/ankane/onnxruntime.svg?branch=master)](https://travis-ci.org/ankane/onnxruntime) [![Build status](https://ci.appveyor.com/api/projects/status/f2bq6ruqjf4jx671/branch/master?svg=true)](https://ci.appveyor.com/project/ankane/onnxruntime/branch/master)
+
## Installation
-First, [install ONNX Runtime](#onnx-runtime-installation).
-
Add this line to your application’s Gemfile:
```ruby
gem 'onnxruntime'
```
@@ -52,35 +52,9 @@
```ruby
session = OnnxRuntime::InferenceSession.new("model.onnx")
session.run(nil, {x: [1, 2, 3]})
```
-
-## ONNX Runtime Installation
-
-ONNX Runtime provides [prebuilt libraries](https://github.com/microsoft/onnxruntime/releases).
-
-### Mac
-
-```sh
-wget https://github.com/microsoft/onnxruntime/releases/download/v0.5.0/onnxruntime-osx-x64-0.5.0.tgz
-tar xf onnxruntime-osx-x64-0.5.0.tgz
-cd onnxruntime-osx-x64-0.5.0
-cp lib/libonnxruntime.0.5.0.dylib /usr/local/lib/libonnxruntime.dylib
-```
-
-### Linux
-
-```sh
-wget https://github.com/microsoft/onnxruntime/releases/download/v0.5.0/onnxruntime-linux-x64-0.5.0.tgz
-tar xf onnxruntime-linux-x64-0.5.0.tgz
-cd onnxruntime-linux-x64-0.5.0.tgz
-cp lib/libonnxruntime.0.5.0.so /usr/local/lib/libonnxruntime.so
-```
-
-### Windows
-
-Download [ONNX Runtime](https://github.com/microsoft/onnxruntime/releases/download/v0.5.0/onnxruntime-win-x64-0.5.0.zip). Unzip and move `lib/onnxruntime.dll` to `C:\Windows\System32\onnxruntime.dll`.
## History
View the [changelog](https://github.com/ankane/onnxruntime/blob/master/CHANGELOG.md)