* Restore badges for PyPi and Apache license; and edit links. Removed badge for build status as build status for Deeplearning4j overall is not meaningful here. Java-Python coffee image removed as we (probably) don't want to be pointing to the old repo. Apache LICENSE file added for pydatavec as it was not previously included. Signed-off-by: Philip Khor <philip.khor@skymind.my> * move badges to top for consistency Signed-off-by: Philip Khor <philip.khor@skymind.my> * some typos Signed-off-by: Philip Khor <philip.khor@skymind.my> * Add gitter chat link to be consistent with jumpy README Signed-off-by: Philip Khor <philip.khor@skymind.my>
32 lines
881 B
Markdown
32 lines
881 B
Markdown
# PyDataVec : Python interface for DataVec
|
|
|
|
[](https://gitter.im/deeplearning4j/deeplearning4j?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
[](LICENSE)
|
|
[](https://badge.fury.io/py/pydatavec)
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pip install pydatavec
|
|
```
|
|
|
|
## Examples
|
|
|
|
Examples are in the [dl4j-examples repo](https://www.github.com/eclipse/deeplearning4j-examples)
|
|
|
|
Clone dl4j-examples:
|
|
|
|
```bash
|
|
git clone https://www.github.com/eclipse/deeplearning4j-examples.git
|
|
```
|
|
|
|
Run examples in `pydatavec-examples` directory
|
|
|
|
```bash
|
|
cd deeplearning4j-examples/pydatavec-examples
|
|
python basic.py
|
|
python iris.py
|
|
python reduction.py
|
|
```
|
|
|