Update README.md
Browse files
README.md
CHANGED
@@ -150,11 +150,12 @@ Test data results:
|
|
150 |
With Keras 3 / Tensorflow 2.19 and over:
|
151 |
|
152 |
```python
|
153 |
-
|
|
|
154 |
```
|
155 |
|
156 |
-
Resizing and rescaling layer are already implemented. You simply need to provide your
|
157 |
-
array (0-255).
|
158 |
|
159 |
## The Team Behind this Dataset
|
160 |
|
|
|
150 |
With Keras 3 / Tensorflow 2.19 and over:
|
151 |
|
152 |
```python
|
153 |
+
import keras
|
154 |
+
model = keras.saving.load_model("hf://corentinm7/MyoQuant-SDH-Model")
|
155 |
```
|
156 |
|
157 |
+
Resizing and rescaling layer are already implemented inside the model. You simply need to provide your input images as numpy float32
|
158 |
+
array (0-255) of any shape (None, None, 3) (3 channels - RGB).
|
159 |
|
160 |
## The Team Behind this Dataset
|
161 |
|