09fdab7c501105b31a5661e6f11fb8a6f8817158,src/rastervision/runner/experiment_runner.py,ExperimentRunner,run,#ExperimentRunner#Any#Any#Any#Any#Any#,10

Before Change



        // Print conflicating or alread fulfilled commands
        if dry_run:
            skipped_commands.extend(command_dag.skipped_commands)
            if skipped_commands:
                print()
                print("Skipped due to output conflicts:")
                for command in skipped_commands:

After Change


        // Print conflicating or alread fulfilled commands
        if dry_run:
            skipped_commands = command_dag.skipped_commands
            if skipped_commands:
                print()
                print("Skipped because output already exists:")
                for command in skipped_commands:
                    print(command.to_string())
                print()

        // Save experiment configs
        experiments_by_id = dict(map(lambda e: (e.id, e), experiments))
        seen_ids = set([])
        for command_def in command_dag.get_command_definitions():
            if command_def.experiment_id not in seen_ids:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: azavea/raster-vision
Commit Name: 09fdab7c501105b31a5661e6f11fb8a6f8817158
Time: 2018-10-02
Author: rdemanuele@gmail.com
File Name: src/rastervision/runner/experiment_runner.py
Class Name: ExperimentRunner
Method Name: run


Project Name: BYU-PCCL/holodeck
Commit Name: a985f8eb65c4460b4faafea17ae18528047f5c49
Time: 2019-01-15
Author: nickwalton00@gmail.com
File Name: holodeck/environments.py
Class Name: HolodeckEnvironment
Method Name: _add_agents


Project Name: BYU-PCCL/holodeck
Commit Name: 39ba8b526ea57f0c28d45e08160a85777bdc39b1
Time: 2019-01-23
Author: nickwalton00@gmail.com
File Name: holodeck/environments.py
Class Name: HolodeckEnvironment
Method Name: _add_agents