├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /classes 3 | /checkouts 4 | pom.xml 5 | pom.xml.asc 6 | *.jar 7 | *.class 8 | /.lein-* 9 | /.nrepl-port 10 | .hgignore 11 | .hg/ 12 | data/* 13 | model/* 14 | *~ 15 | *.params 16 | *.states 17 | *.json 18 | examples/module/data/* 19 | examples/module/target/* 20 | examples/rnn/data/char_lstm.zip 21 | examples/rnn/data/obama.txt 22 | examples/pre-trained-models/caltech-256/caltech-256-60-train.rec 23 | examples/pre-trained-models/caltech-256/caltech-256-60-val.rec 24 | examples/pre-trained-models/model/synset.txt 25 | examples/pre-trained-models/test-image.jpg 26 | examples/imclassification/data/* 27 | examples/gan/data/* 28 | examples/gan/results/* 29 | examples/cnn-text-classification/data/glove/* 30 | examples/cnn-text-classification/data/mr-data/* 31 | examples/multi-label/data/mnist.zip 32 | examples/multi-label/data/t10k-images-idx3-ubyte 33 | examples/multi-label/data/t10k-labels-idx1-ubyte 34 | examples/multi-label/data/train-images-idx3-ubyte 35 | examples/multi-label/data/train-labels-idx1-ubyte 36 | examples/visualization/test-vis/* 37 | examples/visualization/test-vis.pdf 38 | .DS_Store 39 | src/.DS_Store 40 | src/org/.DS_Store 41 | test/test-ndarray.clj 42 | test/test-symbol.clj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Clojure MXNet 2 | 3 | A clojure package to the MXNet Deep Learning library 4 | 5 | ## We've joined the Apache MXNet project! 6 | 7 | We are very happy to have joined the [Apache MXNet (Incubutating) project](https://github.com/apache/incubator-mxnet)! 8 | We look forward to growing MXNet and Clojure together there. 9 | 10 | Please head on over to that github repo and check out the Clojure package README in the [contrib/clojure-package](https://github.com/apache/incubator-mxnet/tree/master/contrib/clojure-package). 11 | 12 | If you would like to open an issue or PR, please do so at the main MXNet repo - thanks! 13 | 14 | ### Join us 15 | 16 | Are you interested in Deep Learning and Clojure? Great - Join us! 17 | 18 | There are a few ways to get involved. 19 | 20 | * Check out the current state of the Clojure package some contribution needs here [https://cwiki.apache.org/confluence/display/MXNET/Clojure+Package+Contribution+Needs](https://cwiki.apache.org/confluence/display/MXNET/Clojure+Package+Contribution+Needs) 21 | * Join the Clojurian Slack #mxnet channel 22 | * Join the [MXNet dev mailing list](https://lists.apache.org/list.html?dev@mxnet.apache.org) by sending an email to `dev-subscribe@mxnet.apache.org.`. 23 | * Join the MXNET Slack channel - You have to join the MXnet dev mailing list first, but after that says you would like to join the slack and someone will add you. 24 | * Join the [MXNet Discussion Forum](https://discuss.mxnet.io/) 25 | 26 | 27 | ## Special Thanks 28 | Special thanks to people that provided testing and feedback to make this possible 29 | 30 | - Chris Hodapp 31 | - Iñaki Arenaza & Magnet Coop 32 | - r0man 33 | - Ben Kamphaus 34 | - Sivaram Konanki 35 | - Rustam Gilaztdinov 36 | - Kamil Hryniewicz 37 | - Christian Weilbach 38 | - Burin Choomnuan 39 | - Avram Aelony 40 | - Jim Dunn 41 | - Kovas Boguta 42 | --------------------------------------------------------------------------------