An open API service indexing awesome lists of open source software.

https://github.com/explooosion/keras-dnn-iris

This is a demo with deep neural networks for iris data.
https://github.com/explooosion/keras-dnn-iris

Last synced: 2 months ago
JSON representation

This is a demo with deep neural networks for iris data.

Awesome Lists containing this project

README

          

# keras-dnn-iris
This is a demo with deep neural networks for iris data.

## Type

1. only dnn
2. dnn with train and test
3. dnn iris data from sklearn(internet)
4. dnn with cross validation

## Pre Install

```sh
pip install keras pandas numpy sklearn scikit-learn
```

or `conda`:

```sh
conda install keras pandas numpy sklearn scikit-learn
```

## Run

```python
python dnn.py
```

## Predict from exist model

```python
python dnn_load_model.py
```

## Predict from exist model only with weight

```python
python dnn_load_weight.py
```