Skip to content

Commit 649e147

Browse files
committed
lein run to list all available engine
1 parent b15ffa4 commit 649e147

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.org

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,15 @@ clj-djl is available as a Maven artifact from Clojars.
1111
With Leiningen/Boot:
1212

1313
#+begin_src clojure
14-
[clj-djl "0.1.1"]
14+
[clj-djl "0.1.2"]
15+
#+end_src
16+
17+
To list all available engine:
18+
19+
#+begin_src shell
20+
git clone https://github.com/kimim/clj-djl
21+
cd clj-djl
22+
lein run
1523
#+end_src
1624

1725
** Examples

project.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-djl/clj-djl "0.1.1"
1+
(defproject clj-djl/clj-djl "0.1.2"
22
:description "A clojure lib wraps deep java learning(DJL.ai)"
33
:url "http://github.com/kimim/clj-djl"
44
:license {:name "Apache License, Version 2.0"
@@ -9,4 +9,5 @@
99
[ai.djl/model-zoo "0.7.0"]
1010
[ai.djl/basicdataset "0.7.0"]
1111
[ai.djl.mxnet/mxnet-engine "0.7.0"]]
12+
:main ^:skip-aot clj-djl.core
1213
:repl-options {:init-ns clj-djl.core})

0 commit comments

Comments
 (0)