Skip to content

Commit 9917873

Browse files
committed
Bump sbt to 1.5.0; Update docs
1 parent aaa2d38 commit 9917873

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ language: scala
22
install:
33
- |
44
# update this only when sbt-the-bash-script needs to be updated
5-
export SBT_LAUNCHER=1.5.0-RC2
5+
export SBT_LAUNCHER=1.5.0
66
export SBT_OPTS="-Dfile.encoding=UTF-8"
77
curl -L --silent "https://github.com/sbt/sbt/releases/download/v$SBT_LAUNCHER/sbt-$SBT_LAUNCHER.tgz" > $HOME/sbt.tgz
88
tar zxf $HOME/sbt.tgz -C $HOME

FineGrainedAPI.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ Note that in real use backends should be closed to prevent native memory leaks
4545

4646
This API is expressed via traits, with version-named methods. For example, Abs, the absolute value operator (defined here for operator set 6):
4747

48-
\* Up to roughly the intersection of supported ops in ONNX Runtime and ONNX.js
49-
5048
```scala
5149
import scala.{specialized => sp}
5250
import spire.math._

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,14 @@ Currently at ONNX 1.8.0 (Backward compatible to at least 1.2.0 for the full mode
8989

9090
### Fine-grained API
9191
A complete\*, versioned, numerically generic, type-safe / typeful API to ONNX(Open Neural Network eXchange, an open format to represent deep learning and classical machine learning models), derived from the Protobuf definitions and the operator schemas (defined in C++).
92+
9293
We also provide implementations for each operator in terms of a generic core operator method to be implemented by the backend.
9394
For more details on the low-level fine-grained API see [here](FineGrainedAPI.md)
9495

9596
The preferred high-level fine-grained API, most suitable for the end user, is [NDScala](https://github.com/SciScala/NDScala)
9697

98+
\* Up to roughly the intersection of supported ops in ONNX Runtime and ONNX.js
99+
97100
#### Training
98101
Automatic differentiation to enable training is under consideration (ONNX currently provides facilities for training as a tech preview only).
99102

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.0-RC2
1+
sbt.version=1.5.0

0 commit comments

Comments
 (0)