-
Notifications
You must be signed in to change notification settings - Fork 18
/
project.clj
78 lines (77 loc) · 4.06 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
(defproject clortex "0.1.1-SNAPSHOT"
:description "** Clortex: Implementation in Clojure of Jeff Hawkins' Hierarchical Temporal Memory
& Cortical Learning Algorithm.
**Warning: Pre-alpha code.**
This project has just begun as is under daily development. Anything and everything is likely to change drastically without a moment's notice.
"
:url "https://github.com/fergalbyrne/clortex"
:license {:name "GPLv3"
:url "http://www.gnu.org/licenses/gpl.html"}
:profiles {:dev {:dependencies [[midje "1.6.0"]
[criterium "0.4.3"]]}}
:jvm-opts ^:replace ["-Xmx4g" "-XX:+TieredCompilation" #_"-XX:-TieredStopAtLevel=1" #_"-XX:+PrintCompilation"]
:repl-options {
:init (println "Init")
:repl-options {:nrepl-middleware [lighttable.nrepl.handler/lighttable-ops]}
}
:dependencies [[incanter/incanter-core "1.5.5"]
[incanter/incanter-io "1.5.5"]
[org.clojure/data.csv "0.1.2"]
[org.clojure/data.json "0.2.1"]
[clj-time "0.6.0"]
#_[enlive "1.1.5"]
#_[clojure-opennlp "0.3.2"]
#_[clojurewerkz/buffy "1.0.0-beta1"]
[com.datomic/datomic-free "0.9.4714"]
#_[com.stuartsierra/component "0.2.1"]
#_[com.stuartsierra/flow "0.1.0"]
[org.clojure/clojure "1.6.0"]
[expectations "2.0.6"]
[quil "2.2.2"]
[adi "0.1.5"]
[lein-light-nrepl "0.0.18"]]
:plugins [[lein-marginalia "0.7.1"]]
:documentation {:files {"doc/index"
{:input "test/clortex/core_test.clj"
:title "clortex"
:sub-title "Clojure Library for Jeff Hawkins' Hierarchical Temporal Memory"
:author "Fergal Byrne"
:email "[email protected]"
:tracking "UA-44409012-2"}
"doc/rdse"
{:input "test/clortex/rdse_test.clj"
:title "Random Distributed Scalar Encoder"
:sub-title "Experiments on improving the Scalar Encoder"
:author "Fergal Byrne"
:email "[email protected]"
:tracking "UA-44409012-2"}
"doc/encoders"
{:input "test/clortex/domain/encoders/encoder_test.clj"
:title "clortex encoders"
:sub-title "Encoding Values into CLA SDRs"
:author "Fergal Byrne"
:email "[email protected]"
:tracking "UA-44409012-2"}
"doc/patch"
{:input "test/clortex/domain/patch/patch_test.clj"
:title "clortex patch"
:sub-title "Primary Implementation of CLA"
:author "Fergal Byrne"
:email "[email protected]"
:tracking "UA-44409012-2"}
"doc/neuron"
{:input "test/clortex/domain/neuron_test.clj"
:title "clortex neurons"
:sub-title "Primary Implementation of CLA"
:author "Fergal Byrne"
:email "[email protected]"
:tracking "UA-44409012-2"}
"doc/sensors"
{:input "test/clortex/domain/sensors/sensor_test.clj"
:title "clortex sensors"
:sub-title "Bringing Data into the CLA"
:author "Fergal Byrne"
:email "[email protected]"
:tracking "UA-44409012-2"}
}}
:eval-in-leiningen true)