-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
41 lines (41 loc) · 2.27 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
(defproject jah524/prism "0.9.1"
:description "A handy neural network library for natural language processing written in pure Clojure"
:url "https://github.com/Jah524/prism"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts ["-Xmx12G" "-Xms1028m" "-server"]
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.9.521"]
[net.mikera/vectorz-clj "0.47.0"]
[net.mikera/core.matrix "0.62.0"]
[clj-time "0.14.2"]
[com.taoensso/nippy "2.13.0"]
[org.clojure/data.json "0.2.6"]
[org.clojure/core.async "0.4.474"]
[incanter "1.5.7"]
[com.googlecode.efficient-java-matrix-library/core "0.26"]
[thinktopic/think.tsne "0.1.1"]
[http-kit "2.1.16"]
[compojure "1.5.1"]
[ring "1.5.0"]
[org.clojure/tools.cli "0.3.5"]
[cljs-ajax "0.5.9"]
]
:plugins [[lein-cljsbuild "1.1.1"]]
:uberjar-name "prism.jar"
:cljsbuild {:builds [{:id "tsne"
:source-paths ["src/server/cljs/tsne"]
:compiler {:output-to "resources/public/js/tsne.js"
:output-dir "resources/public/js/tsne"
:optimizations :advanced
:externs ["server/externs/jquery-1.9.js"
"server/externs/vue.js"
"server/externs/plotly.js"]}}
{:id "word-probability-given-context"
:source-paths ["src/server/cljs/word_probability_given_context"]
:compiler {:output-to "resources/public/js/word-probability-given-context.js"
:output-dir "resources/public/js/word-probability-given-context"
:optimizations :advanced
:externs ["server/externs/jquery-1.9.js"
"server/externs/vue.js"
"server/externs/plotly.js"]}}]})