271dddf15a9f07bb9647ecf5594e079e12f2e8d2,examples/securenn/network_d.py,ModelTrainer,provide_input,#ModelTrainer#,123

Before Change



    def provide_input(self) -> List[tf.Tensor]:
        with tf.name_scope("loading"):
            training_data = self.build_data_pipeline()

        with tf.name_scope("training"):
            parameters = self.build_training_graph(training_data)

After Change



    def provide_input(self) -> List[tf.Tensor]:
        with tf.name_scope("loading"):
            training_data = get_data_from_tfrecord("./data/train.tfrecord", self.BATCH_SIZE)

        with tf.name_scope("training"):
            parameters = self.build_training_graph(training_data)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 3

Instances


Project Name: mortendahl/tf-encrypted
Commit Name: 271dddf15a9f07bb9647ecf5594e079e12f2e8d2
Time: 2018-10-17
Author: 1278248+morgangiraud@users.noreply.github.com
File Name: examples/securenn/network_d.py
Class Name: ModelTrainer
Method Name: provide_input


Project Name: mortendahl/tf-encrypted
Commit Name: 271dddf15a9f07bb9647ecf5594e079e12f2e8d2
Time: 2018-10-17
Author: 1278248+morgangiraud@users.noreply.github.com
File Name: examples/securenn/network_c.py
Class Name: ModelTrainer
Method Name: provide_input


Project Name: mortendahl/tf-encrypted
Commit Name: 271dddf15a9f07bb9647ecf5594e079e12f2e8d2
Time: 2018-10-17
Author: 1278248+morgangiraud@users.noreply.github.com
File Name: examples/securenn/network_a.py
Class Name: ModelTrainer
Method Name: provide_input


Project Name: mortendahl/tf-encrypted
Commit Name: 271dddf15a9f07bb9647ecf5594e079e12f2e8d2
Time: 2018-10-17
Author: 1278248+morgangiraud@users.noreply.github.com
File Name: examples/securenn/network_b.py
Class Name: ModelTrainer
Method Name: provide_input