Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,6 +16,7 @@ class FixedDropout(tf.keras.layers.Layer):
|
|
| 16 |
training = K.learning_phase()
|
| 17 |
return K.in_train_phase(K.dropout(inputs, self.rate), inputs, training=training)
|
| 18 |
|
|
|
|
| 19 |
class ImageClassifierApp:
|
| 20 |
def __init__(self, model_path):
|
| 21 |
self.model_path = model_path
|
|
|
|
| 16 |
training = K.learning_phase()
|
| 17 |
return K.in_train_phase(K.dropout(inputs, self.rate), inputs, training=training)
|
| 18 |
|
| 19 |
+
|
| 20 |
class ImageClassifierApp:
|
| 21 |
def __init__(self, model_path):
|
| 22 |
self.model_path = model_path
|