175747717c34502a0d13dfe709853f074ee5be90,magenta/models/shared/events_rnn_graph_test.py,EventSequenceRNNGraphTest,testBuildGraphWithAttention,#EventSequenceRNNGraphTest#,59

Before Change



  def testBuildGraphWithAttention(self):
    self.config.hparams.attn_length = 10
    g = events_rnn_graph.build_graph(
        "train", self.config,
        sequence_example_file_paths=[self._sequence_file.name])
    self.assertTrue(isinstance(g, tf.Graph))


if __name__ == "__main__":

After Change



  def testBuildGraphWithAttention(self):
    self.config.hparams.attn_length = 10
    with tf.Graph().as_default():
      events_rnn_graph.get_build_graph_fn(
          "train", self.config,
          sequence_example_file_paths=[self._sequence_file.name])()


if __name__ == "__main__":
  tf.test.main()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 10

Instances


Project Name: tensorflow/magenta
Commit Name: 175747717c34502a0d13dfe709853f074ee5be90
Time: 2017-12-12
Author: iansimon@users.noreply.github.com
File Name: magenta/models/shared/events_rnn_graph_test.py
Class Name: EventSequenceRNNGraphTest
Method Name: testBuildGraphWithAttention


Project Name: tensorflow/magenta
Commit Name: 175747717c34502a0d13dfe709853f074ee5be90
Time: 2017-12-12
Author: iansimon@users.noreply.github.com
File Name: magenta/models/shared/events_rnn_graph_test.py
Class Name: EventSequenceRNNGraphTest
Method Name: testBuildEvalGraph


Project Name: tensorflow/magenta
Commit Name: 175747717c34502a0d13dfe709853f074ee5be90
Time: 2017-12-12
Author: iansimon@users.noreply.github.com
File Name: magenta/models/shared/events_rnn_graph_test.py
Class Name: EventSequenceRNNGraphTest
Method Name: testBuildTrainGraph