d6c1b86594ef9a97e9f503547ab6567f89508486,tests/integration_tests/test_experiment.py,,test_experiment_attention,#Any#,253
Before Change
)
for attention in ["bahdanau", "luong"]:
run_experiment(input_features, output_features.substitute(
attention=attention), data_csv=rel_path)
def test_experiment_sequence_combiner(csv_filename):
After Change
input_features = [
sequence_feature(encoder="rnn", cell_type="lstm", max_len=10)
]
output_features = [
sequence_feature(
max_len=10,
cell_type="lstm",
decoder="generator",
attention="bahdanau"
)
]
// Generate test data
rel_path = generate_data(input_features, output_features, csv_filename)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: uber/ludwig
Commit Name: d6c1b86594ef9a97e9f503547ab6567f89508486
Time: 2019-05-01
Author: smiryala@uber.com
File Name: tests/integration_tests/test_experiment.py
Class Name:
Method Name: test_experiment_attention
Project Name: uber/ludwig
Commit Name: d6c1b86594ef9a97e9f503547ab6567f89508486
Time: 2019-05-01
Author: smiryala@uber.com
File Name: tests/integration_tests/test_experiment.py
Class Name:
Method Name: test_visual_question_answering
Project Name: uber/ludwig
Commit Name: d6c1b86594ef9a97e9f503547ab6567f89508486
Time: 2019-05-01
Author: smiryala@uber.com
File Name: tests/integration_tests/test_experiment.py
Class Name:
Method Name: test_experiment_model_resume