SIGN IN SIGN UP
apache / mxnet UNCLAIMED

Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more

<!--- Licensed to the Apache Software Foundation (ASF) under one -->
<!--- or more contributor license agreements. See the NOTICE file -->
<!--- distributed with this work for additional information -->
<!--- regarding copyright ownership. The ASF licenses this file -->
<!--- to you under the Apache License, Version 2.0 (the -->
<!--- "License"); you may not use this file except in compliance -->
<!--- with the License. You may obtain a copy of the License at -->
<!--- http://www.apache.org/licenses/LICENSE-2.0 -->
<!--- Unless required by applicable law or agreed to in writing, -->
<!--- software distributed under the License is distributed on an -->
<!--- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -->
<!--- KIND, either express or implied. See the License for the -->
<!--- specific language governing permissions and limitations -->
<!--- under the License. -->
Clojure Contrib Package (#11205) * Initial commit for clojure package - src code * examples for clojure package * Add cloverage code coverage plugin. Clean up dependencies in namespaces to make it compatible with the plugin * add bug fix from Kamil Hryniewicz * add basic optimizer test * add Kamil to thanks * add Christian Weilbach * add set -e to scripts * added documentation about the current process of building and deploying * unit tests for util * add tests for generator - Also fix parameter names to lowercase * make the test-validate use a spec in util-test * update to 1.2.1 scala version * add generator test fix & enhancements from Burin * add test for eval-metric * add callback unit test * switch project default to linux-cpu for CI - add thanks for Avram * remove reference to the clojars snapshot * @kurman feedback newline/scripts - add newline to gitignore - add -vx options to scripts * feedback from @kurman - use scala instead of $ * move gitignore back into clojure-package * feedback from @kurman - lowercase testing.md * feedback from @kurman use generate code alias for better clarity Supported APIs * feedback from @kurman - cnn text example * Add clojure package testing to CI * bug fix from jimdunn - skip validation in fit when eval-data is nil * Change CI to use locally installed scala jars instead of nexus * clean ci & bump clojure-package version to be inline with scala pacakge version -remove makefile modification and use script instead * update cat image link since the other one is broken * change cat link to one in the repo * Update README - remove AWS reference - put in system specific build instructions with jars - clean up * missing minus sign in example - contributed by jimdunn * feedback from @lanking520 * feedback from @lanking520 - specify that branch checkout is optional * feedback from @yzhliu - update README ml.dmlc -> org.apache
2018-07-01 00:10:15 -04:00
## Help with Testing
If you want to give the repo a spin and help make it stable and ready for prime time that would be awesome.
Here is what you can do.
* Clone the project
* Edit the project.clj file and uncomment the line that is for your system (OSX, Linux CPU, or Linux GPU)
* Run `lein deps` (this might take a bit - the jars are big!)
* Run `lein test` - there should be no errors. The tests are all cpu
* Run `lein install` to install the clojure-package locally
* Go to the module examples `cd examples/module`
* Either run `lein run` or `lein run :gpu`
If you find any problems, please log on issue.
Thanks!
## Want to explore more?
The examples/tutorial is a good REPL walkthrough
The examples/pre-trained-modules is nice too
The examples/gan is just plain fun :)