496e3d795c1f33010899f34c2e171a76a3d8e75c,codes/2-basics_in_machine_learning/linear_svm/code/linear_SVM.py,,,#,70

Before Change



    // Displaying the desired values.
    if (step_idx+1) % FLAGS.log_step == 0:
        print("Step //%d, Loss= %f, training accuracy= %f, testing accuracy= %f " % (step_idx+1, loss_step, train_acc_step, test_acc_step))

if FLAGS.is_evaluation:
    [[w1], [w2]] = sess.run(W)
    [[b]] = sess.run(b)

After Change



    // Displaying the desired values.
    if step_idx % 100 ==0:
        print("Step //%d, training accuracy= %% %.2f, testing accuracy= %% %.2f " % (step_idx, float(100 * train_acc_step), float(100 * test_acc_step)))

if FLAGS.is_evaluation:
    [[w1], [w2]] = sess.run(W)
    [[b]] = sess.run(b)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 9

Instances


Project Name: astorfi/TensorFlow-World
Commit Name: 496e3d795c1f33010899f34c2e171a76a3d8e75c
Time: 2017-06-14
Author: amirsina.torfi@gmail.com
File Name: codes/2-basics_in_machine_learning/linear_svm/code/linear_SVM.py
Class Name:
Method Name:


Project Name: eriklindernoren/Keras-GAN
Commit Name: 5c18953a3da18402d3fcc9ff96d1e983d48c98cb
Time: 2018-04-16
Author: eriklindernoren@gmail.com
File Name: pix2pix/pix2pix.py
Class Name: Pix2Pix
Method Name: train


Project Name: hunkim/PyTorchZeroToAll
Commit Name: 55b880469ced115de9949d5d25ff835dabbb2caa
Time: 2017-11-08
Author: hunkim@gmail.com
File Name: 13_2_seq2seq_att.py
Class Name:
Method Name: