bb6fbcd93b38969d424fcc5dbf720d603d775658,molecules/data-extractor.py,,,#,128

Before Change


  parser = argparse.ArgumentParser(
      formatter_class=argparse.ArgumentDefaultsHelpFormatter)

  parser.add_argument(
      "--work-dir",
      type=str,
      default=os.path.join(
        tempfile.gettempdir(), "cloudml-samples", "molecules"),
      help="Directory for staging and working files. "
           "This can be a Google Cloud Storage path.")

  parser.add_argument(
      "--data-sources",
      type=str,

After Change


  parser = argparse.ArgumentParser(
      formatter_class=argparse.ArgumentDefaultsHelpFormatter)

  parser.add_argument(
      "--work-dir",
      required=True,
      help="Directory for staging and working files. "
           "This can be a Google Cloud Storage path.")

  parser.add_argument(
      "--data-sources",
      nargs="+",
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 9

Instances


Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: bb6fbcd93b38969d424fcc5dbf720d603d775658
Time: 2019-06-04
Author: davido262@gmail.com
File Name: molecules/data-extractor.py
Class Name:
Method Name:


Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: bb6fbcd93b38969d424fcc5dbf720d603d775658
Time: 2019-06-04
Author: davido262@gmail.com
File Name: molecules/preprocess.py
Class Name:
Method Name:


Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: bb6fbcd93b38969d424fcc5dbf720d603d775658
Time: 2019-06-04
Author: davido262@gmail.com
File Name: molecules/trainer/task.py
Class Name:
Method Name:


Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: bb6fbcd93b38969d424fcc5dbf720d603d775658
Time: 2019-06-04
Author: davido262@gmail.com
File Name: molecules/predict.py
Class Name:
Method Name: