@@ -18,7 +18,7 @@ Supported platforms:
1818
1919See the file ` project/Dependencies.scala ` for adding your own platform.
2020
21- Officially TensorFrames supports Spark 2.3 + and Scala 2.11.
21+ Officially TensorFrames supports Spark 2.4 + and Scala 2.11.
2222
2323See the [ user guide] ( https://github.com/databricks/tensorframes/wiki/TensorFrames-user-guide ) for
2424 extensive information about the API.
@@ -30,11 +30,11 @@ TensorFrames is available as a
3030
3131## Requirements
3232
33- - A working version of Apache Spark (2.3 or greater)
33+ - A working version of Apache Spark (2.4 or greater)
3434
3535 - Java 8+
3636
37- - (Optional) python 2.7+/3.4 + if you want to use the python interface.
37+ - (Optional) python 2.7+/3.6 + if you want to use the python interface.
3838
3939 - (Optional) the python TensorFlow package if you want to use the python interface. See the
4040 [ official instructions] ( https://www.tensorflow.org/install/ )
@@ -54,7 +54,7 @@ Additionally, for developement, you need the following dependencies:
5454Assuming that ` SPARK_HOME ` is set, you can use PySpark like any other Spark package.
5555
5656``` bash
57- $SPARK_HOME /bin/pyspark --packages databricks:tensorframes:0.5 .0-s_2.11
57+ $SPARK_HOME /bin/pyspark --packages databricks:tensorframes:0.6 .0-s_2.11
5858```
5959
6060Here is a small program that uses TensorFlow to add 3 to an existing column.
@@ -151,7 +151,7 @@ The scala support is a bit more limited than python. In scala, operations can be
151151You simply use the published package:
152152
153153``` bash
154- $SPARK_HOME /bin/spark-shell --packages databricks:tensorframes:0.5 .0-s_2.11
154+ $SPARK_HOME /bin/spark-shell --packages databricks:tensorframes:0.6 .0-s_2.11
155155```
156156
157157Here is the same program as before:
@@ -204,14 +204,14 @@ build/sbt distribution/spDist
204204Assuming that SPARK_HOME is set and that you are in the root directory of the project:
205205
206206``` bash
207- $SPARK_HOME /bin/spark-shell --jars $PWD /target/testing/scala-2.11/tensorframes-assembly-0.5 .1-SNAPSHOT.jar
207+ $SPARK_HOME /bin/spark-shell --jars $PWD /target/testing/scala-2.11/tensorframes-assembly-0.6 .1-SNAPSHOT.jar
208208```
209209
210210If you want to run the python version:
211211
212212``` bash
213- PYTHONPATH=$PWD /target/testing/scala-2.11/tensorframes-assembly-0.5 .1-SNAPSHOT.jar \
214- $SPARK_HOME /bin/pyspark --jars $PWD /target/testing/scala-2.11/tensorframes-assembly-0.5 .1-SNAPSHOT.jar
213+ PYTHONPATH=$PWD /target/testing/scala-2.11/tensorframes-assembly-0.6 .1-SNAPSHOT.jar \
214+ $SPARK_HOME /bin/pyspark --jars $PWD /target/testing/scala-2.11/tensorframes-assembly-0.6 .1-SNAPSHOT.jar
215215```
216216
217217## Acknowledgements
0 commit comments