2019-06-06 14:21:15 +02:00
|
|
|
# PyDataVec : Python interface for DataVec
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pip install pydatavec
|
|
|
|
```
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2019-10-30 09:03:27 +01:00
|
|
|
Examples are in the [dl4j-examples repo](https://www.github.com/eclipse/deeplearning4j-examples)
|
2019-06-06 14:21:15 +02:00
|
|
|
|
|
|
|
Clone dl4j-examples:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://www.github.com/deeplearning4j.dl4j-examples.git
|
|
|
|
```
|
|
|
|
|
|
|
|
Run examples in `pydatavec-examples` directory
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cd pydatavec-examples
|
|
|
|
python basic.py
|
|
|
|
python iris.py
|
|
|
|
python reduction.py
|
|
|
|
```
|
|
|
|
|