deeplearning4j-deeplearning4j-0.7.2 源码编译

来源:互联网 发布:手机怎么修改mac地址 编辑:程序博客网 时间:2024/05/29 05:09

1.从github下载

https://github.com/deeplearning4j/deeplearning4j/releases

 

2.解压出来

打开eclipse,导入maven项目,选择解压后的根目录,就能导入完整的项目

 

3.跳过test

打开各个项目的pom.xml,补充或者加入

<build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
    </plugins>
  </build>

 

4.打开deeplearning4j-parent项目,也就是主项目

运行右键,run as -》maven install,即可编译成功!

0 0
原创粉丝点击