lanking520 commented on a change in pull request #13404: Java added to install page URL: https://github.com/apache/incubator-mxnet/pull/13404#discussion_r236461519
########## File path: docs/install/index.md ########## @@ -430,6 +432,44 @@ You can use the Maven packages defined in the following `dependency` to include </div> <!-- End of scala --> + +<div class="java"> +<div class="gpu"> +<br/> +You can use the Maven packages defined in the following `dependency` to include MXNet in your Java project. The Java API is provided as a subset of the Scala API and is intended for inference only. Please refer to the <a href="java_setup.html">MXNet-Java setup guide</a> for a detailed set of instructions to help you with the setup process. + +<a href="https://repository.apache.org/#nexus-search;gav~org.apache.mxnet~~1.3.1-SNAPSHOT~~"><img src="https://img.shields.io/badge/org.apache.mxnet-linux gpu-green.svg" alt="maven badge"/></a> + +```html +<dependency> + <groupId>org.apache.mxnet</groupId> + <artifactId>mxnet-full_2.11-linux-x86_64-gpu</artifactId> + <scope>system</scope> + <systemPath>/system/path/to/jar/mxnet-full_2.11-linux-x86_64-gpu-1.3.1-SNAPSHOT.jar</systemPath> +</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 Java project. The Java API is provided as a subset of the Scala API and is intended for inference only. Please refer to the <a href="java_setup.html">MXNet-Java setup guide</a> for a detailed set of instructions to help you with the setup process. + +<a href="https://repository.apache.org/#nexus-search;gav~org.apache.mxnet~~1.3.1-SNAPSHOT~~"><img src="https://img.shields.io/badge/org.apache.mxnet-linux cpu-green.svg" alt="maven badge"/></a> + +```html +<dependency> + <groupId>org.apache.mxnet</groupId> + <artifactId>mxnet-full_2.11-linux-x86_64-cpu</artifactId> + <scope>system</scope> Review comment: same applies here ---------------------------------------------------------------- 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
