4ec258a2261a943910a34be1b7d53a646f089367,luminoth/train.py,,run,#Any#Any#Any#Any#Any#Any#Any#Any#Any#,19
Before Change
// Load pretrained weights needs to be called before defining the train
// op. After it, variables for the optimizer are created.
with tf.control_dependencies([tf.global_variables_initializer()]):
with tf.control_dependencies([model.load_pretrained_weights()]):
init_op = tf.no_op(name="global_init_load_pretrained")
else:
init_op = tf.no_op()
// Create custom Scaffold to make sure we run our own init_op when model
After Change
scaffold = tf.train.Scaffold(
// Initialize global variables.
init_op=tf .global_variables_initializer() if is_chief else tf.no_op(),
// Queue-related variables need a special initializer.
local_init_op=tf.local_variables_initializer(),
summary_op=summary_op,
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances Project Name: tryolabs/luminoth
Commit Name: 4ec258a2261a943910a34be1b7d53a646f089367
Time: 2018-04-16
Author: joaquin.alori@gmail.com
File Name: luminoth/train.py
Class Name:
Method Name: run
Project Name: GPflow/GPflow
Commit Name: d1ac7b831ad36cd0e4bdd7980819f83208345148
Time: 2018-02-07
Author: alex.ialongo@gmail.com
File Name: gpflow/expectations.py
Class Name:
Method Name: _expectation
Project Name: microsoft/nni
Commit Name: 9d468d2c742491af2d2f506c648ddc95ffea6a64
Time: 2019-10-20
Author: lanny@mail.hfut.edu.cn
File Name: src/sdk/pynni/nni/compression/tensorflow/builtin_pruners.py
Class Name: SensitivityPruner
Method Name: calc_mask