Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/varugasu/iris-tensorflow2-beta
https://github.com/varugasu/iris-tensorflow2-beta
iris iris-dataset machine-learning tensorflow tensorflow2
Last synced: about 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-25T00:20:23.000Z (over 1 year ago)
- Last Synced: 2023-12-20T12:49:52.744Z (about 1 year 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')
])
```