https://github.com/varugasu/iris-tensorflow2-beta
https://github.com/varugasu/iris-tensorflow2-beta
iris iris-dataset machine-learning tensorflow tensorflow2
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/varugasu/iris-tensorflow2-beta
- Owner: varugasu
- License: mit
- Created: 2019-06-20T20:35:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-25T00:20:23.000Z (about 2 years ago)
- Last Synced: 2024-12-27T06:09:53.774Z (4 months ago)
- Topics: iris, iris-dataset, machine-learning, tensorflow, tensorflow2
- Language: Jupyter Notebook
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Iris with Tensorflow2-Beta
## Model:
```python
tf.keras.models.Sequential([
tf.keras.layers.Dense(15, input_shape=(4,)),
tf.keras.layers.Dense(3,activation='softmax')
])
```