File size: 305 Bytes
dade7e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # FirstModel
It's just a test model :)
## Dataset
Fashion MNIST
## Arquitetura
Dense Neural Network
## Como usar
```python
from huggingface_hub import hf_hub_download
from tensorflow import keras
path = hf_hub_download("SamuelRx/FirstModel","my_keras_model.h5")
model = keras.models.load_model(path) |