-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
40 lines (38 loc) · 1.79 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
(defproject techascent/tech.ml "6.019-1-SNAPSHOT"
:description "Basic machine learning toolkit. `tech.v3.ml` is the root
namespace and provides train/predict pathways based on datasets and
an options map. Please see the xgboost article for a quick runthough
of how to use this library."
:url "http://github.com/techascent/tech.ml-base"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.2"]
[techascent/tech.ml.dataset "6.022"]
[ml.dmlc/xgboost4j_2.12 "1.3.1"]
[ml.dmlc/xgboost4j-spark_2.12 "1.3.1"]
[org.bytedeco/openblas "0.3.10-1.5.4"]
[org.apache.hadoop/hadoop-common "3.3.0"
:exclusions [org.apache.commons/commons-math3
org.slf4j/slf4j-log4j12]]
[org.bytedeco/openblas-platform "0.3.10-1.5.4"]
[pppmap/pppmap "0.2.1"]]
:profiles
{:codox
{:dependencies [[codox-theme-rdash "0.1.2"]]
:plugins [[lein-codox "0.10.7"]]
:codox {:project {:name "tech.ml"}
:metadata {:doc/format :markdown}
:namespaces [tech.v3.ml
tech.v3.ml.metrics
tech.v3.ml.loss
tech.v3.ml.gridsearch
tech.v3.libs.xgboost
tech.v3.libs.smile.classification
tech.v3.libs.smile.regression]
:themes [:rdash]
:source-paths ["src"]
:output-path "docs"
:doc-paths ["topics"]
:source-uri "https://github.com/techascent/tech.ml/blob/master/{filepath}#L{line}"}}}
:aliases {"codox" ["with-profile" "codox,dev" "codox"]}
:java-source-paths ["java"])