2b4367f094327338ef85fbad0d4c5283c150596f,colorization/main.py,,,#,10

Before Change


            print(" Batch: {}/{}".format(batch, batches), end=" ")
            res = sess.run(opt_operations)
            global_step = res["global_step"]
            print("Cost:", res["cost"], "Global step", global_step, )
            summary_writer.add_summary(res["summary"], global_step)

        // Save the variables to disk
        save_path = saver.save(sess, checkpoint_paths, global_step)

After Change


            print_log("Batch: {}/{}".format(batch, batches), run_id)
            res = sess.run(opt_operations)
            global_step = res["global_step"]
            print_log("Cost: {} Global step: {}"
                      .format(res["cost"], global_step), run_id)
            summary_writer.add_summary(res["summary"], global_step)

        // Save the variables to disk
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 2

Instances


Project Name: baldassarreFe/deep-koalarization
Commit Name: 2b4367f094327338ef85fbad0d4c5283c150596f
Time: 2017-05-19
Author: baldassarre.fe@gmail.com
File Name: colorization/main.py
Class Name:
Method Name:


Project Name: AlexEMG/DeepLabCut
Commit Name: 0ef2bfb1adda578c45e9c56412f86c02b950c0a3
Time: 2020-06-18
Author: saveliy.m.yusufov@gmail.com
File Name: deeplabcut/utils/make_labeled_video.py
Class Name:
Method Name: CreateVideoSlow


Project Name: AlexEMG/DeepLabCut
Commit Name: 0ef2bfb1adda578c45e9c56412f86c02b950c0a3
Time: 2020-06-18
Author: saveliy.m.yusufov@gmail.com
File Name: deeplabcut/utils/make_labeled_video.py
Class Name:
Method Name: CreateVideo