Skip to content

Commit d5a265d

Browse files
committed
some cleaning up
1 parent 1eccc43 commit d5a265d

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,13 @@ Apache Wayang (incubating) aims at freeing data engineers and software developer
4040
- [Postgres](http://www.postgresql.org)
4141
- [SQLite](https://www.sqlite.org/)
4242
- [Apache Kafka](https://kafka.apache.org)
43+
- [Tensorflow](https://www.tensorflow.org/)
4344

4445
Apache Wayang (incubating) can be used via the following APIs:
45-
- Java native
4646
- Java scala-like
4747
- Scala
48-
- SQL (limited support of simple select-project queries for now)
48+
- SQL
49+
- Java native (recommended only for low level)
4950

5051
## Quick Guide for Running Wayang
5152

@@ -61,8 +62,8 @@ You first have to build the binaries as shown [here](guides/tutorial.md).
6162
Once you have the binaries built, follow these steps to install Wayang:
6263

6364
```shell
64-
tar -xvf wayang-1.0.0-snapshot.tar.gz
65-
cd wayang-1.0.0-SNAPSHOT
65+
tar -xvf wayang-1.0.1-SNAPSHOT.tar.gz
66+
cd wayang-1.0.1-SNAPSHOT
6667
```
6768

6869
In linux

RELEASE_NOTES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Based on this release the projects wants to continue the path towards becoming a
77
Apache TLP.
88

99
This release supports the following new features:
10-
- Support for Tensorflow Java as a platform (Note: this platform is not compatible with Apple's M1 chip)
10+
- Support for Tensorflow Java as a platform (Note: this platform is compatible with Apple's Silicon's chip only with the right arm-based java version)
1111
- Support for Kafka source/sink
1212
- Python API
1313
- MultiContext for federated data processing

wayang-platforms/wayang-tensorflow/src/test/java/org/apache/wayang/tensorflow/model/TensorflowModelTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import org.tensorflow.types.TFloat32;
3636
import org.tensorflow.types.TInt32;
3737
public class TensorflowModelTest {
38-
@Ignore
38+
@Test
3939
public void test() {
4040
FloatNdArray x = NdArrays.ofFloats(Shape.of(6, 4))
4141
.set(NdArrays.vectorOf(5.1f, 3.5f, 1.4f, 0.2f), 0)

wayang-tests-integration/src/test/java/org/apache/wayang/tests/TensorflowIntegrationIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class TensorflowIntegrationIT {
6868

6969
public static String[] LABELS = new String[]{"Iris-setosa", "Iris-versicolor", "Iris-virginica"};
7070

71-
@Ignore
71+
@Test
7272
public void test() {
7373
/* training features */
7474
CollectionSource<float[]> trainXSource = new CollectionSource<>(trainX, float[].class);

0 commit comments

Comments
 (0)