-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.py
34 lines (30 loc) · 1 KB
/
model.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from flask import Flask, render_template,request
from flask import Flask, flash, request, redirect, url_for
from scipy.misc import imsave, imread, imresize
import numpy as np
import keras.models
import re
import sys
import os
import random
from PIL import Image
import io
from werkzeug.utils import secure_filename
global model, graph
import numpy as np
import keras.models
from keras.models import model_from_json
from scipy.misc import imread, imresize,imshow
import tensorflow as tf
from keras.preprocessing import image
def load():
#InceptionResNetV2
with open('InceptionResNetV2_architecture.json', 'r') as f:
model = model_from_json(f.read())
model.load_weights('InceptionResNetV2_weights.h5')
preprocess_input=keras.applications.inception_resnet_v2.preprocess_input
decode_predictions=keras.applications.inception_resnet_v2.decode_predictions
model_name="InceptionResNetV2"
return model,preprocess_input,decode_predictions,model_name