Skip to content

Commit 09afeda

Browse files
authored
Merge pull request #2 from relaypro-open/normalize-models-path
Use standard models path
2 parents 8466576 + f849d3d commit 09afeda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/ortex.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ defmodule Ortex do
1313
1414
## Examples
1515
16-
iex> Ortex.load("./python/resnet50.onnx")
17-
iex> Ortex.load("./python/resnet50.onnx", [:cuda, :cpu])
18-
iex> Ortex.load("./python/resnet50.onnx", [:cpu], 0)
16+
iex> Ortex.load("./models/resnet50.onnx")
17+
iex> Ortex.load("./models/resnet50.onnx", [:cuda, :cpu])
18+
iex> Ortex.load("./models/resnet50.onnx", [:cpu], 0)
1919
2020
"""
2121
defdelegate load(path, eps \\ [:cpu], opt \\ 3), to: Ortex.Model

0 commit comments

Comments
 (0)