Skip to content

Commit

Permalink
v6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
behrica committed Nov 6, 2024
1 parent 1d510c7 commit b5810fc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 25 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ConstantChangeLog

## unreleased
## 6.2.0
- fixed issue #1
- support tidy-text data as input

Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
(def lib 'org.scicloj/scicloj.ml.xgboost)
; alternatively, use MAJOR.MINOR.COMMITS:
;; (def version (format "7.0.%s" (b/git-count-revs nil)))
(def version "6.1.0")
(def version "6.2.0")
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
;;(def jar-file (format "target/%s-%s.jar" (name lib) version))
Expand Down
23 changes: 0 additions & 23 deletions exp/exp.clj
Original file line number Diff line number Diff line change
Expand Up @@ -99,26 +99,3 @@
"multi:softmax")))


(require '[tech.v3.datatype :as dt]
'[tech.v3.datatype.list :as dt-list])


(def l (dt/make-list :float32))
(.add l 1.0)
;;=> true
l
;;=> [1.0]


(def l-1 (dt-list/wrap-container (dt/make-container :jvm-heap :float32 0)))
(.add l-1 1.0)
;;=> true
l-1
;;=> [1.0]


(def l-2 (dt-list/wrap-container (dt/make-container :native-heap :float32 0)))
(.ensureCapacity l-2 1)
;;=> Execution error (IndexOutOfBoundsException) at tech.v3.datatype.native_buffer.DoubleNativeBuf/writeDouble (native_buffer.clj:424).
;; idx (0) >= n-elems (0)
;;

0 comments on commit b5810fc

Please sign in to comment.