Create ReadMe.md
Browse files
ReadMe.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# FirstModel
|
| 2 |
+
|
| 3 |
+
It's just a test model :)
|
| 4 |
+
|
| 5 |
+
## Dataset
|
| 6 |
+
Fashion MNIST
|
| 7 |
+
|
| 8 |
+
## Arquitetura
|
| 9 |
+
Dense Neural Network
|
| 10 |
+
|
| 11 |
+
## Como usar
|
| 12 |
+
|
| 13 |
+
```python
|
| 14 |
+
from huggingface_hub import hf_hub_download
|
| 15 |
+
from tensorflow import keras
|
| 16 |
+
|
| 17 |
+
path = hf_hub_download("SamuelRx/FirstModel","my_keras_model.h5")
|
| 18 |
+
model = keras.models.load_model(path)
|