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: 2 months ago
JSON representation

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')
])
```