| # 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) |