You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("-rp", "--results_path", help="The folder to output results of the analysis. e.g. embeddings and plots", default="./results/")
101
-
parser.add_argument("-nw", "--n_workers", help="The number of workers to use when running the analysis.", default=8, type=int)
102
-
parser.add_argument("-dp", "--data_path", help="The path to the commits.feather file. e.g. /home/user/RStudio-Data-Repository/clean_data/commits.feather", default="./results/")
103
-
parser.add_argument("-np", "--n_projects", help="The number of projects to sample from the dataset.", default=1000, type=int)
104
-
parser.add_argument("-mc", "--min_commits", help="The minimum number of commits for a project to be included in the sample.", default=None, type=int)
105
-
parser.add_argument("-mcount", "--min_count", help="The min_count parameter for the graph2vec model.", default=5, type=int)
106
-
parser.add_argument("-nps", "--n_personas", help="The number of personas to extract from each cluster.", default=5, type=int)
107
-
parser.add_argument("-nn", "--n_neurons", help="The number of neurons to use for Graph2Vec (project level)", default=128, type=int)
108
-
parser.add_argument("-emb", "--embeddings_file_path", help="The file to read the embeddings from. Supplying this parameter skips training of the model.", default=None)
109
-
parser.add_argument("-rs", "--random_state", help="The random state to initalize all random states.", default=1, type=int)
85
+
parser.add_argument("-rp", "--results_path",help="The folder to output results of the analysis. e.g. embeddings and plots", default="./results/")
86
+
parser.add_argument("-nw", "--n_workers",help="The number of workers to use when running the analysis.", default=8, type=int)
87
+
parser.add_argument("-dp", "--data_path",help="The path to the commits.feather file. e.g. /home/user/RStudio-Data-Repository/clean_data/commits.feather", default="./results/")
88
+
parser.add_argument("-np", "--n_projects",help="The number of projects to sample from the dataset.", default=1000, type=int)
89
+
parser.add_argument("-mc", "--min_commits",help="The minimum number of commits for a project to be included in the sample.", default=None, type=int)
90
+
parser.add_argument("-mcount", "--min_count",help="The min_count parameter for the graph2vec model.", default=5, type=int)
91
+
parser.add_argument("-nps", "--n_personas",help="The number of personas to extract from each cluster.", default=5, type=int)
92
+
parser.add_argument("-nn", "--n_neurons",help="The number of neurons to use for Graph2Vec (project level)", default=128, type=int)
93
+
parser.add_argument("-ni", "--n_iter", help="The number of iteration to use to run the WeisfeilerLehmanMachine", default=10, type=int)
94
+
parser.add_argument("-rs", "--random_state",help="The random state to initalize all random states.", default=1, type=int)
110
95
111
96
args=parser.parse_args()
112
97
@@ -149,4 +134,4 @@ def main(args):
149
134
# left join `ghtorrent-bq.ght.commit_parents` cp on (cp.commit_id = c.id)
0 commit comments