def inference(sess,preprocessed_image):
# Forward pass of the preprocessed image into the network defined in the net.py file
predictions = sess.run(net.o9,feed_dict={net.x:preprocessed_image})
return predictions
### MAIN ##############################################################################################################
评论列表
文章目录