-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
每次识别都会重新加载模型 #10
Comments
同求,需要吧 tf.constant(input_images) 改成 tf.var... 但是不会呀 |
已经处理好了, def test(images, keep_prob):
调用模型 def input_image(image_path, image_height, image_width): tf.placeholder(tf.float32, [None, image_height, image_width, 1]) # 特征向量 |
我在用你的程序做验证码识别,每次识别都会重新加载模型,有什么办法只让模型加载一次吗?
The text was updated successfully, but these errors were encountered: