this is the full error log when trying deep diamond 15 on a barebones project running the following code:
(ns mycotensor.deep-diamond-test
(:require
;; deep diamond
[uncomplicate.diamond.native :as udn]
[uncomplicate.diamond.tensor :as udt]
[uncomplicate.diamond.dnn :as dnn]
[uncomplicate.neanderthal.core :as unc]
[uncomplicate.neanderthal.native :as unn])
(:gen-class))
(def net-spec
[(dnn/convo [32] [3 3] :relu)
(dnn/convo [64] [3 3] :relu)
(dnn/pooling [2 2] :max)
(dnn/dropout)
(dnn/dense [128] :relu)
(dnn/dropout)
(dnn/dense [10] :softmax)])
(defonce net-bp
(dnn/network (udt/desc [128 1 28 28] :float :nchw)
net-spec))
(defonce net (dnn/init! (net-bp :adam)))
any ideas would be appreciated