-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
38 lines (30 loc) · 1.01 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import src.app_predicts as cifar10
import matplotlib.pyplot as plt
import imageio
def main():
# Variaveis
flag = 'exit'
kb_input = ''
img_path = ''
img_plt = ''
img = ''
# Carregando modelo de rede neural
model = cifar10.load_model()
# Loop de execução
while kb_input != flag:
img_path = str(input('Insira o caminho da imagem que deseja realizar a predição:\n'))
while img_path == '':
img_path = str(input('Caminho inválido! Digite novamente:\n'))
# Convertendo imagem para o padrão da rede neural
img = cifar10.convert_img(img_path)
# Realizando predição
predict = cifar10.classify(img,model)
# Mostrando resultados
img_plt = imageio.imread(img_path)
plt.imshow(img_plt)
plt.title(cifar10.wich_class(predict))
plt.show()
# Verificando
kb_input = str(input('Deseja tentar com outra imagem? Caso não, digite "exit":\n'))
if __name__ == '__main__':
main()