Spaces:
Running
Running
Update pages/Entorno de Ejecución.py
Browse files
pages/Entorno de Ejecución.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
import streamlit as st
|
2 |
import tensorflow as tf
|
3 |
-
from keras.models import load_model
|
4 |
-
#from tensorflow.keras.backend import clear_session
|
5 |
-
#import cv2
|
6 |
import os
|
7 |
|
8 |
st.set_page_config(
|
@@ -29,7 +27,7 @@ with col_a:
|
|
29 |
# Join the path to the models folder
|
30 |
DIR = os.path.join(root_dir, "models")
|
31 |
|
32 |
-
threshold = .
|
33 |
|
34 |
models = os.listdir(DIR)
|
35 |
|
|
|
1 |
import streamlit as st
|
2 |
import tensorflow as tf
|
3 |
+
from tensorflow.keras.models import load_model
|
|
|
|
|
4 |
import os
|
5 |
|
6 |
st.set_page_config(
|
|
|
27 |
# Join the path to the models folder
|
28 |
DIR = os.path.join(root_dir, "models")
|
29 |
|
30 |
+
threshold = .75
|
31 |
|
32 |
models = os.listdir(DIR)
|
33 |
|