Update classification.py
Browse files- classification.py +1 -1
classification.py
CHANGED
@@ -6,7 +6,7 @@ import tensorflow as tf
|
|
6 |
import streamlit as st
|
7 |
# with tf.device('/cpu:0'):
|
8 |
# Load the saved model
|
9 |
-
model = tf.keras.models.load_model('
|
10 |
|
11 |
class_names = {0: '1099_Div', 1: '1099_Int', 2: 'Non_Form', 3: 'w_2', 4: 'w_3'}
|
12 |
# print(class_names)
|
|
|
6 |
import streamlit as st
|
7 |
# with tf.device('/cpu:0'):
|
8 |
# Load the saved model
|
9 |
+
model = tf.keras.models.load_model('best_resnet152_model.h5')
|
10 |
|
11 |
class_names = {0: '1099_Div', 1: '1099_Int', 2: 'Non_Form', 3: 'w_2', 4: 'w_3'}
|
12 |
# print(class_names)
|