v0.0.21 - First Alpha Release
Pre-release
Pre-release
anthony-khong
released this
06 Aug 06:40
·
177 commits
to develop
since this release
Initial alpha release documented here on cljdoc.
The release includes an uberjar that should provide a Geni REPL (i.e. a Clojure spark-shell
) within seconds. Download the uberjar, and simply try out the REPL with java -jar geni-repl-uberjar-0.0.21.jar
! An nREPL server is automatically started with an .nrepl-port
file, so that common Clojure text editors should be able to jack in automatically.
The initial namespace automatically requires:
(require '[zero-one.geni.core :as g]
'[zero-one.geni.ml :as ml])
so that functions such as g/read-csv!
and ml/logistic-regression
are immediately available.
The Spark session is available as a Clojure Future object, which can be dereferenced with @spark
. To see the full default spark config, invoke (g/spark-conf @spark)
!