Skip to content

Commit

Permalink
Merge pull request #2 from scicloj/unpackTribuoDeps
Browse files Browse the repository at this point in the history
Unpack tribuo deps
  • Loading branch information
behrica authored Jun 29, 2024
2 parents d17edba + 6f2bae5 commit 2744f3f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.clj-kondo/
.cpcache/
.lsp/
/.Rprofile
/.nrepl-port
/target/
26 changes: 17 additions & 9 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
scicloj/metamorph.ml {:mvn/version "0.8.2"}
cheshire/cheshire {:mvn/version "5.12.0"}
techascent/tech.ml.dataset {:mvn/version "7.029"}
com.oracle.labs.olcut/olcut-config-edn {:mvn/version "5.3.0"}
org.tribuo/tribuo-all {:mvn/version "4.2.0" :extension "pom"}}
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
scicloj/metamorph.ml {:mvn/version "0.8.2"}
cheshire/cheshire {:mvn/version "5.12.0"}
techascent/tech.ml.dataset {:mvn/version "7.029"}
;; tribuo core deps
org.tribuo/tribuo-classification-core {:mvn/version "4.2.0"}
org.tribuo/tribuo-regression-core {:mvn/version "4.2.0"}
com.oracle.labs.olcut/olcut-core {:mvn/version "5.2.0"}
com.oracle.labs.olcut/olcut-config-json {:mvn/version "5.2.0"}}

:aliases
{:test
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}}
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}
same/ish {:mvn/version "0.1.6"}
;; the unit tests needs this
org.tribuo/tribuo-regression-sgd {:mvn/version "4.2.0"}
org.tribuo/tribuo-classification-tree {:mvn/version "4.2.0"}}}


:build {:deps {io.github.clojure/tools.build
{:mvn/version "0.9.6"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
Expand Down
3 changes: 3 additions & 0 deletions doc/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Introduction to scicloj/scicloj.ml.tribuo

TODO: write [great documentation](http://jacobian.org/writing/what-to-write/)

0 comments on commit 2744f3f

Please sign in to comment.