Download tensorflow-1.4.0.jar file

Introduction

You can download tensorflow-1.4.0.jar in this page.

License

Open Source

Type List

tensorflow-1.4.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.tensorflow/tensorflow/pom.properties
META-INF/maven/org.tensorflow/tensorflow/pom.xml

Pom

tensorflow-1.4.0.pom file content.

<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <modelVersion>4.0.0</modelVersion>
  <description>TensorFlow for Java: A software library for machine intelligence.</description>
  <parent>
    <groupId>org.tensorflow</groupId>
    <artifactId>parentpom</artifactId>
    <version>1.4.0</version>
    <relativePath>../</relativePath>
  </parent>
  <artifactId>tensorflow</artifactId>
  <packaging>jar</packaging>

  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>libtensorflow</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>libtensorflow_jni</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <version>3.0.2</version>
        <executions>
          <execution>
            <id>default-jar</id>
            <configuration>
              <archive>
                <manifestEntries>
                  <Class-Path>libtensorflow.jar libtensorflow_jni.jar</Class-Path>
                </manifestEntries>
              </archive>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.tensorflow</groupId>
   <artifactId>tensorflow</artifactId>
   <version>1.4.0</version>
</dependency>

Download

If you think the following tensorflow-1.4.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download tensorflow-1.4.0.jar file




PreviousNext

Related