Skip to content

Commit

Permalink
use latest tribuo
Browse files Browse the repository at this point in the history
  • Loading branch information
behrica committed Sep 27, 2024
1 parent 69a1b4c commit c23b904
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## unreleased

## 0.1.3
- use tribuo 4.3.1

## 0.1.2
- unpack tribuo-all

Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[deps-deploy.deps-deploy :as dd]))

(def lib 'org.scicloj/scicloj.ml.tribuo)
(def version "0.1.2")
(def version "0.1.3")
#_ ; alternatively, use MAJOR.MINOR.COMMITS:
(def version (format "1.0.%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
Expand Down
12 changes: 6 additions & 6 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
scicloj/metamorph.ml {:mvn/version "0.8.2"}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.scicloj/metamorph.ml {:mvn/version "0.9.0"}
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"}
org.tribuo/tribuo-classification-core {:mvn/version "4.3.1"}
org.tribuo/tribuo-regression-core {:mvn/version "4.3.1"}
com.oracle.labs.olcut/olcut-core {:mvn/version "5.2.0"}
com.oracle.labs.olcut/olcut-config-json {:mvn/version "5.2.0"}}

Expand All @@ -16,8 +16,8 @@
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"}}}
org.tribuo/tribuo-regression-sgd {:mvn/version "4.3.1"}
org.tribuo/tribuo-classification-tree {:mvn/version "4.3.1"}}}


:build {:deps {io.github.clojure/tools.build
Expand Down
2 changes: 1 addition & 1 deletion test/scicloj/ml/tribuo_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
:evaluation-handler-fn
(fn [eval-result]
eval-result)})]
(t/is (= 0.7804878048780488
(t/is (= 0.8048780487804879
(->> evaluations
flatten
(map #(-> % :test-transform :metric))
Expand Down

0 comments on commit c23b904

Please sign in to comment.