f4503bb3a3be014b452f54d8e2d187bb6419f627,tests/test_graph.py,,test_conv_deeper_stub,#,13

Before Change




def test_conv_deeper_stub():
    model = get_conv_model()
    graph = Graph(model, False)
    layer_num = graph.n_layers
    graph.to_conv_deeper_model(5, 3)

    assert graph.n_layers == layer_num + 4

After Change




def test_conv_deeper_stub():
    graph = get_conv_dense_model()
    layer_num = graph.n_layers
    graph.to_conv_deeper_model(5, 3)

    assert graph.n_layers == layer_num + 4
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 3

Instances


Project Name: keras-team/autokeras
Commit Name: f4503bb3a3be014b452f54d8e2d187bb6419f627
Time: 2018-08-01
Author: jhfjhfj1@gmail.com
File Name: tests/test_graph.py
Class Name:
Method Name: test_conv_deeper_stub


Project Name: jhfjhfj1/autokeras
Commit Name: f4503bb3a3be014b452f54d8e2d187bb6419f627
Time: 2018-08-01
Author: jhfjhfj1@gmail.com
File Name: tests/test_graph.py
Class Name:
Method Name: test_conv_deeper