Skip to content

Commit 63ea552

Browse files
authored
Merge pull request #28 from yongtang/docs
Update docs for installation
2 parents a2589ab + daa53b0 commit 63ea552

File tree

2 files changed

+54
-16
lines changed

2 files changed

+54
-16
lines changed

README.md

+33-16
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,56 @@
55
TensorFlow I/O is a collection of file systems and file formats that are not
66
available in TensorFlow's built-in support.
77

8-
## Developing
9-
10-
The TensorFlow I/O package (`tensorflow-io`) could be built from source:
11-
```sh
12-
$ docker run -it -v ${PWD}:/working_dir -w /working_dir tensorflow/tensorflow:custom-op
13-
$ # In docker
14-
$ ./configure.sh
15-
$ bazel build build_pip_pkg
16-
$ bazel-bin/build_pip_pkg artifacts
17-
```
18-
19-
A package file `artifacts/tensorflow_io-*.whl` will be generated after a build is successful.
8+
At the moment TensorFlow I/O supports 4 data sources:
9+
- `tensorflow_io.ignite`: Data source for Apache Ignite and Ignite File System (IGFS).
10+
- `tensorflow_io.kafka`: Apache Kafka stream-processing support.
11+
- `tensorflow_io.kinesis`: Amazon Kinesis data streams support.
12+
- `tensorflow_io.hadoop`: Hadoop SequenceFile format support.
2013

2114
## Installation
2215

23-
Once a package file `artifacts/tensorflow_io-*.whl` is ready, installation could be done through:
16+
The `tensorflow-io` package could be installed with pip directly:
2417
```
25-
$ pip install working_dir/artifacts/tensorflow_io-*.whl
18+
$ pip install tensorflow-io
2619
```
2720

28-
The related module could be imported with python:
21+
The related module such as Kafka could be imported with python:
2922
```
3023
$ python
3124
Python 2.7.6 (default, Nov 13 2018, 12:45:42)
3225
[GCC 4.8.4] on linux2
3326
Type "help", "copyright", "credits" or "license" for more information.
34-
>>> from tensorflow_io.kafka import KafkaDataset
27+
>>> import tensorflow as tf
28+
>>> import tensorflow_io.kafka as kafka
29+
>>>
30+
>>> dataset = kafka.KafkaDataset(["test:0:0:4"], group="test", eof=True)
31+
>>> iterator = dataset.make_initializable_iterator()
32+
>>> init_op = iterator.initializer
33+
>>> get_next = iterator.get_next()
34+
>>>
35+
>>> with tf.Session() as sess:
36+
... print(sess.run(init_op))
37+
... for i in range(5):
38+
... print(sess.run(get_next))
3539
>>>
3640
```
3741

3842
Note that python has to run outside of repo directory itself, otherwise python may not
3943
be able to find the correct path to the module.
4044

45+
## Developing
46+
47+
The TensorFlow I/O package (`tensorflow-io`) could be built from source:
48+
```sh
49+
$ docker run -it -v ${PWD}:/working_dir -w /working_dir tensorflow/tensorflow:custom-op
50+
$ # In docker
51+
$ ./configure.sh
52+
$ bazel build build_pip_pkg
53+
$ bazel-bin/build_pip_pkg artifacts
54+
```
55+
56+
A package file `artifacts/tensorflow_io-*.whl` will be generated after a build is successful.
57+
4158
## License
4259

4360
[Apache License 2.0](LICENSE)

RELEASE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Release 0.1.0
2+
3+
Initial release of TensorFlow I/O.
4+
5+
## Major Features
6+
* `tensorflow_io.ignite`: Data source for Apache Ignite and File System (IGFS).
7+
* `tensorflow_io.kafka`: Apache Kafka stream-processing support.
8+
* `tensorflow_io.kinesis`: Amazon Kinesis data streams support.
9+
* `tensorflow_io.hadoop`: Hadoop SequenceFile format support.
10+
11+
## Thanks to our Contributors
12+
13+
This release contains contributions from many people:
14+
15+
Anjali Sridhar, Anton Dmitriev, Artem Malykh, Brennan Saeta, Derek Murray,
16+
Gunhan Gulsoy, Jacques Pienaar, Jianwei Xie, Jiri Simsa, knight, Loo Rong Jie,
17+
Martin Wicke, Michael Case, Sergei Lebedev, Sourabh Bajaj, Yifei Feng,
18+
Yong Tang, Yuan (Terry) Tang, Yun Peng
19+
20+
We are also grateful to all who filed issues or helped resolve them, asked and
21+
answered questions, and were part of inspiring discussions.

0 commit comments

Comments
 (0)