301f593e6d80712315ec965996cdccb9a20b54c0,examples/pretrained_cnn/tutorial_models_squeezenetv1.py,,,#,13

Before Change



_ = sess.run(probs, feed_dict={x: [img1]})[0]  // 1st time takes time to compile
start_time = time.time()
prob = sess.run(probs, feed_dict={x: [img1]})[0]
print("  End time : %.5ss" % (time.time() - start_time))
preds = (np.argsort(prob)[::-1])[0:5]
for p in preds:

After Change


img1 = img1.astype(np.float32)[np.newaxis, ...]

start_time = time.time()
output = squeezenet(img1, is_train=False)
prob = tf.nn.softmax(output)[0].numpy()
print("  End time : %.5ss" % (time.time() - start_time))
preds = (np.argsort(prob)[::-1])[0:5]
for p in preds:
    print(class_names[p], prob[p])
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: tensorlayer/tensorlayer
Commit Name: 301f593e6d80712315ec965996cdccb9a20b54c0
Time: 2019-04-24
Author: rundi_wu@pku.edu.cn
File Name: examples/pretrained_cnn/tutorial_models_squeezenetv1.py
Class Name:
Method Name:


Project Name: tensorlayer/tensorlayer
Commit Name: 13ed139f539684bf39919963241bf37ab2967d77
Time: 2019-04-23
Author: rundi_wu@pku.edu.cn
File Name: examples/pretrained_cnn/tutorial_models_mobilenetv1.py
Class Name:
Method Name:


Project Name: microsoft/nni
Commit Name: 4e2d8cd89163c0fd4b4e14e4f3d13b58d7e3b29f
Time: 2020-10-18
Author: 40699903+liuzhe-lz@users.noreply.github.com
File Name: examples/nas/naive-tf/train.py
Class Name:
Method Name: accuracy