Skip to content

Commit 4a80f7a

Browse files
author
Yang Liu
committed
update
1 parent daf6bee commit 4a80f7a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

analyze.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# -*- coding: utf-8 -*-
22

3-
import itertools
4-
import numpy as np
3+
import os
4+
55
import matplotlib.pyplot as plt
6-
from sklearn.metrics import confusion_matrix
6+
import numpy as np
77
from keras.preprocessing import image
8-
import os
8+
from sklearn.metrics import confusion_matrix
9+
from tqdm import tqdm
10+
911
from utils import load_model
10-
from console_progressbar import ProgressBar
1112

1213

1314
def decode_predictions(preds, top=5):
@@ -29,8 +30,8 @@ def predict(img_dir, model):
2930

3031
y_pred = []
3132
y_test = []
32-
pb = ProgressBar(total=100, prefix='Predict data', suffix='', decimals=3, length=50, fill='=')
33-
for img_path in img_files:
33+
34+
for img_path in tqdm(img_files):
3435
# print(img_path)
3536
img = image.load_img(img_path, target_size=(224, 224))
3637
x = image.img_to_array(img)
@@ -39,11 +40,10 @@ def predict(img_dir, model):
3940
pred_label = decoded[0][0][0]
4041
# print(pred_label)
4142
y_pred.append(pred_label)
42-
tokens = img_path.split('\\')
43+
tokens = img_path.split(os.pathsep)
4344
class_id = int(tokens[-2])
4445
# print(str(class_id))
4546
y_test.append(class_id)
46-
pb.print_progress_bar(len(y_pred) * 100 / len(img_files))
4747

4848
return y_pred, y_test
4949

@@ -67,7 +67,7 @@ def plot_confusion_matrix(cm, classes,
6767
plt.imshow(cm, interpolation='nearest', cmap=cmap)
6868
plt.title(title)
6969
plt.colorbar()
70-
#tick_marks = np.arange(len(classes))
70+
# tick_marks = np.arange(len(classes))
7171
# plt.xticks(tick_marks, classes, rotation=45)
7272
# plt.yticks(tick_marks, classes)
7373

0 commit comments

Comments
 (0)