Skip to content
This repository was archived by the owner on Dec 31, 2020. It is now read-only.

Fixed HalfPlusTwo Test and updated Flink and Tensorflow. Updated Readme with installation instructions. #18

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,39 @@ Want to learn more? [See the wiki](https://github.com/cookieai/flink-tensorflow/

Help wanted! See [the project board](https://github.com/cookieai/flink-tensorflow/projects) and [the issues section](https://github.com/cookieai/flink-tensorflow/issues) for specifics. Feel free to join [the chat channel](https://gitter.im/flink-tensorflow/Lobby).

## Installation process for Maven and SBT (Local) :

- Clone repository (Run on Terminal)
```
git clone https://github.com/FlinkML/flink-tensorflow.git
```

- Publish it in local maven repository (Run on Terminal)
```
mvn clean install
```
Than follow :

### For SBT
Add dependency in build.sbt
```
libraryDependencies += "ai.cookie" %% "flink-tensorflow" % "0.1-SNAPSHOT"
```

**Note:** Make sure you have local maven resolver defined in build.sbt ```resolvers in ThisBuild ++= Seq(Resolver.mavenLocal)``` and ```scalaVersion in ThisBuild := "2.11.*"``` by default build has Scala 2.11 dependency. If you wants you can modify it in pom.xml and rebuild with different Scala version.


### For Maven
Add dependency in pom.xml
```
<dependency>
<groupId>ai.cookie</groupId>
<artifactId>flink-tensorflow_2.11</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
```


## Disclaimer
Apache®, Apache Flink™, Flink™, and the Apache feather logo are trademarks of [The Apache Software Foundation](http://apache.org).

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ under the License.

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tf.version>1.1.0</tf.version>
<flink.version>1.2.0</flink.version>
<tf.version>1.2.0-rc1</tf.version>
<flink.version>1.2.1</flink.version>
<asm.version>5.0.4</asm.version>
<slf4j.version>1.7.7</slf4j.version>
<log4j.version>1.2.17</log4j.version>
Expand Down