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.
- Host: GitHub
- URL: https://github.com/explooosion/keras-dnn-iris
- Owner: explooosion
- Created: 2018-11-13T18:00:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-14T08:25:56.000Z (almost 7 years ago)
- Last Synced: 2025-01-24T22:11:45.772Z (over 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```