-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathproject.clj
21 lines (19 loc) · 927 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject mnist-classification "0.9.23-SNAPSHOT"
:description "An example of using experiment/classification on mnist."
:dependencies [[org.clojure/clojure "1.9.0-alpha17"]
[thinktopic/experiment "0.9.22"]
[org.clojure/tools.cli "0.3.5"]
[thinktopic/think.tsne "0.1.1"]
;;If you need cuda 8...
[org.bytedeco.javacpp-presets/cuda "8.0-1.2"]
;;If you need cuda 7.5...
;[org.bytedeco.javacpp-presets/cuda "7.5-1.2"]
]
:main mnist-classification.main
:aot [mnist-classification.main]
:jvm-opts ["-Xmx2000m"]
:uberjar-name "classify-example.jar"
:clean-targets ^{:protect false} [:target-path
"figwheel_server.log"
"resources/public/out/"
"resources/public/js/app.js"])