ff98 commited on
Commit
ef8712b
·
1 Parent(s): 6ea15c9

model updated

Browse files
Files changed (1) hide show
  1. app.py +5 -13
app.py CHANGED
@@ -24,19 +24,11 @@ st.markdown(
24
  unsafe_allow_html=True
25
  )
26
 
27
- @st.cache_resource
28
- def load_models():
29
- # Load all models at once
30
- eff_net_model = tf.keras.models.load_model('EfficientNet_Models/efficientnetb3_binary_classifier_8.h5')
31
- eff_net_art_model = tf.keras.models.load_model('EfficientNet_Models/EfficientNet_fine_tune_art_model.h5')
32
- cnn_model = tf.keras.models.load_model('CNN_model_weight/model_weights.weights.h5')
33
- return eff_net_model, eff_net_art_model, cnn_model
34
-
35
- eff_net_model, eff_net_art_model, cnn_model = load_models()
36
-
37
- # eff_net_model = tf.keras.models.load_model('EfficientNet_Models/efficientnetb3_binary_classifier_8.h5')
38
- # eff_net_art_model = tf.keras.models.load_model('EfficientNet_Models/EfficientNet_fine_tune_art_model.h5')
39
- # cnn_model = 'CNN_model_weight/model_weights.weights.h5'
40
 
41
  # CNN model
42
 
 
24
  unsafe_allow_html=True
25
  )
26
 
27
+
28
+
29
+ eff_net_model = tf.keras.models.load_model('EfficientNet_Models/efficientnetb3_binary_classifier_8.h5')
30
+ eff_net_art_model = tf.keras.models.load_model('EfficientNet_Models/EfficientNet_fine_tune_art_model.h5')
31
+ cnn_model = 'CNN_model_weight/model_weights.weights.h5'
 
 
 
 
 
 
 
 
32
 
33
  # CNN model
34