Spaces:
Sleeping
Sleeping
add flags
Browse files
app.py
CHANGED
|
@@ -15,6 +15,7 @@ import cv2
|
|
| 15 |
from tqdm import tqdm
|
| 16 |
|
| 17 |
|
|
|
|
| 18 |
class Sampling(tf.keras.layers.Layer):
|
| 19 |
def call(self, inputs):
|
| 20 |
mean, log_var = inputs
|
|
@@ -24,7 +25,6 @@ class Sampling(tf.keras.layers.Layer):
|
|
| 24 |
custom_objects = {'Sampling': Sampling}
|
| 25 |
|
| 26 |
|
| 27 |
-
|
| 28 |
'''
|
| 29 |
|
| 30 |
Pre-trained models - Instructions about training you can find in another file
|
|
|
|
| 15 |
from tqdm import tqdm
|
| 16 |
|
| 17 |
|
| 18 |
+
TF_ENABLE_ONEDNN_OPTS=0
|
| 19 |
class Sampling(tf.keras.layers.Layer):
|
| 20 |
def call(self, inputs):
|
| 21 |
mean, log_var = inputs
|
|
|
|
| 25 |
custom_objects = {'Sampling': Sampling}
|
| 26 |
|
| 27 |
|
|
|
|
| 28 |
'''
|
| 29 |
|
| 30 |
Pre-trained models - Instructions about training you can find in another file
|