c0c9519ce3c1f2d2cee8acbbad91d854eb544b23,scripts/run_deepvariant.py,,make_examples_command,#Any#Any#Any#Any#,200
Before Change
if FLAGS.logging_dir is not None:
runtime_directory = os.path.join(FLAGS.logging_dir,
"make_examples_runtime_by_region")
os.makedirs(runtime_directory)
profile_by_region = os.path.join(
runtime_directory,
"make_examples_runtime@{}.tsv".format(FLAGS.num_shards))
command.extend(["--profile_by_region", ""{}"".format(profile_by_region)])
After Change
if FLAGS.logging_dir is not None:
runtime_directory = os.path.join(FLAGS.logging_dir,
"make_examples_runtime_by_region")
if not os.path.isdir(runtime_directory):
logging.info("Creating a make_examples runtime by region directory in %s",
runtime_directory)
os.makedirs(runtime_directory)
profile_by_region = os.path.join(
runtime_directory,
"make_examples_runtime@{}.tsv".format(FLAGS.num_shards))
command.extend(["--profile_by_region", ""{}"".format(profile_by_region)])
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: google/deepvariant
Commit Name: c0c9519ce3c1f2d2cee8acbbad91d854eb544b23
Time: 2020-12-03
Author: marianattestad@google.com
File Name: scripts/run_deepvariant.py
Class Name:
Method Name: make_examples_command
Project Name: uber/ludwig
Commit Name: 9b5a7f68e47ad891ed56fbb507bdd4fee43bc7b9
Time: 2020-11-05
Author: gostanfordtennis@gmail.com
File Name: ludwig/datasets/mixins/process.py
Class Name: MultifileJoinProcessMixin
Method Name: process_downloaded_dataset
Project Name: uber/ludwig
Commit Name: 67fec7ab1908972c3e21c333f283d3af7d118e80
Time: 2019-09-30
Author: piero@uber.com
File Name: ludwig/models/model.py
Class Name: Model
Method Name: train