8a600f790ba68880e9a76a5eda33a3f4fccd22c4,luminoth/eval.py,,evaluate,#Any#Any#Any#Any#Any#Any#Any#,22

Before Change


    
    Evaluate models using dataset.
    
    custom_config = load_config(config_files)
    // If the config file is empty, our config will be the base_config for the
    // default model.
    try:
        model_type = custom_config["model"]["type"]

After Change


    // If the config file is empty, our config will be the base_config for the
    // default model.
    try:
        config = get_config(config_files, override_params=override_params)
    except KeyError:
        raise KeyError("model.type should be set on the custom config.")

    config.train.job_dir = job_dir or config.train.job_dir
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: tryolabs/luminoth
Commit Name: 8a600f790ba68880e9a76a5eda33a3f4fccd22c4
Time: 2017-11-17
Author: javirey@gmail.com
File Name: luminoth/eval.py
Class Name:
Method Name: evaluate


Project Name: tryolabs/luminoth
Commit Name: 8a600f790ba68880e9a76a5eda33a3f4fccd22c4
Time: 2017-11-17
Author: javirey@gmail.com
File Name: luminoth/train_test.py
Class Name: TrainTest
Method Name: testTrain


Project Name: tryolabs/luminoth
Commit Name: 8a600f790ba68880e9a76a5eda33a3f4fccd22c4
Time: 2017-11-17
Author: javirey@gmail.com
File Name: luminoth/train_test.py
Class Name: TrainTest
Method Name: testTrainSave