gigasquid closed pull request #13393: Fixes #13388 Adds Clojure to MXNet installation docs URL: https://github.com/apache/incubator-mxnet/pull/13393
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/docs/install/index.md b/docs/install/index.md index 6791a6ebd4b..37ab7cc7610 100644 --- a/docs/install/index.md +++ b/docs/install/index.md @@ -52,6 +52,7 @@ Indicate your preferred configuration. Then, follow the customized commands to i <div class="btn-group opt-group" role="group"> <button type="button" class="btn btn-default opt active languages">Python</button> <button type="button" class="btn btn-default opt languages">Scala</button> + <button type="button" class="btn btn-default opt languages">Clojure</button> <button type="button" class="btn btn-default opt languages">R</button> <button type="button" class="btn btn-default opt languages">Julia</button> <button type="button" class="btn btn-default opt languages">Perl</button> @@ -430,6 +431,39 @@ You can use the Maven packages defined in the following `dependency` to include </div> <!-- End of scala --> +<div class="clojure"> +<div class="gpu"> +<br/> +You can use the Maven packages defined in the following `dependency` to include MXNet in your Clojure project. To maximize leverage, the Clojure package has been built on the existing Scala package. Please refer to the <a href="scala_setup.html">MXNet-Scala setup guide</a> for a detailed set of instructions to help you with the setup process that is required to use the Clojure dependency. + +<a href="https://mvnrepository.com/artifact/org.apache.mxnet.contrib.clojure/clojure-mxnet-linux-gpu"><img src="https://img.shields.io/badge/org.apache.mxnet-linux gpu-green.svg" alt="maven badge"/></a> + +```html +<dependency> + <groupId>org.apache.mxnet.contrib.clojure</groupId> + <artifactId>clojure-mxnet-linux-gpu</artifactId> +</dependency> +``` +<br> +</div> <!-- End of gpu --> + +<div class="cpu"> +<br/> +You can use the Maven packages defined in the following `dependency` to include MXNet in your Clojure project. To maximize leverage, the Clojure package has been built on the existing Scala package. Please refer to the <a href="scala_setup.html">MXNet-Scala setup guide</a> for a detailed set of instructions to help you with the setup process that is required to use the Clojure dependency. + +<a href="https://mvnrepository.com/artifact/org.apache.mxnet.contrib.clojure/clojure-mxnet-linux-cpu"><img src="https://img.shields.io/badge/org.apache.mxnet-linux cpu-green.svg" alt="maven badge"/></a> + +```html +<dependency> + <groupId>org.apache.mxnet.contrib.clojure</groupId> + <artifactId>clojure-mxnet-linux-cpu</artifactId> +</dependency> +``` +<br> +</div> <!-- End of cpu --> +</div> <!-- End of clojure --> + + <div class="julia"> <div class="cpu gpu"> </br> @@ -673,6 +707,30 @@ Not available at this time. <br> +<div class="clojure"> +<div class="cpu"> +</br> +You can use the Maven packages defined in the following `dependency` to include MXNet in your Clojure project. To maximize leverage, the Clojure package has been built on the existing Scala package. Please refer to the <a href="scala_setup.html">MXNet-Scala setup guide</a> for a detailed set of instructions to help you with the setup process that is required to use the Clojure dependency. + +<a href="https://mvnrepository.com/artifact/org.apache.mxnet.contrib.clojure/clojure-mxnet-osx-cpu"><img src="https://img.shields.io/badge/org.apache.mxnet-mac cpu-green.svg" alt="maven badge"/></a> + +```html +<dependency> + <groupId>org.apache.mxnet.contrib.clojure</groupId> + <artifactId>clojure-mxnet-osx-cpu</artifactId> +</dependency> +``` +<br> +</div> <!-- End of cpu --> +<div class="gpu"> + +Not available at this time. <br> + +</div> <!-- End of gpu --> +</div> <!-- End of clojure --> + + + <div class="julia"> <div class="cpu gpu"> </br> @@ -968,6 +1026,14 @@ MXNet-Scala for Windows is not yet available. </div> <!-- End of cpu gpu --> </div> <!-- End of scala --> +<div class="clojure"> +<div class="cpu gpu"> +<br/> +MXNet-Clojure for Windows is not yet available. +<br/> +</div> <!-- End of cpu gpu --> +</div> <!-- End of clojure --> + <div class="julia"> <div class="cpu gpu"> </br> ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
