This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: istio-ingressgateway-ext-worker-0 | |
istio: ingressgateway | |
name: istio-ingressgateway-ext-worker-0 | |
namespace: istio-system | |
annotations: | |
metallb.universe.tf/allow-shared-ip: ing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gateways: | |
enabled: true | |
istio-ingressgateway: | |
type: ClusterIP #change to NodePort, ClusterIP or LoadBalancer if need be | |
ports: | |
- port: 80 | |
targetPort: 80 | |
name: http2 | |
- port: 443 | |
name: https |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import tensorflow as tf | |
def predictint(imvalue): | |
""" | |
This function returns the predicted integer. | |
The imput is the pixel values from the imageprepare() function. | |
""" | |
# Define the model (same as when creating the model file) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with tf.Session() as sess: | |
sess.run(init_op) | |
saver.restore(sess, "model.ckpt") | |
#print ("Model restored.") | |
prediction=tf.argmax(y,1) | |
return prediction.eval(feed_dict={x: [imvalue]}, session=sess) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with tf.Session() as sess: | |
sess.run(init_op) | |
saver.restore(sess, "model2.ckpt") | |
#print ("Model restored.") | |
prediction=tf.argmax(y_conv,1) | |
return prediction.eval(feed_dict={x: [imvalue],keep_prob: 1.0}, session=sess) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image, ImageFilter | |
def imageprepare(argv): | |
""" | |
This function returns the pixel values. | |
The imput is a png file location. | |
""" | |
im = Image.open(argv).convert('L') | |
width = float(im.size[0]) | |
height = float(im.size[1]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo pip install Pillow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
saver.restore(sess, "model.ckpt") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
save_path = saver.save(sess, “model.ckpt”) | |
print (“Model saved in file: “, save_path) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
saver = tf.train.Saver() |