Skip to content

Commit fbd5e4a

Browse files
committed
Update steady-state end-to-end
1 parent e2d187d commit fbd5e4a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/github_analysis/freq_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
\from os import remove
1+
from os import remove
22
import pickle
33
import glob
44

src/github_analysis/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def main(args):
4949
buildModelTime = time.time()
5050
logging.info("G2V Model Built: " + str(buildModelTime - generateGraphsTime) + " seconds")
5151

52-
red.reduce_dim(workers=args.n_workers, output_path=args.results_path + str(iter) + "/", input_path=embeddings_path, random_state=args.random_state)
52+
red.reduce_dim(workers=args.n_workers, output_path=args.results_path, input_path=embeddings_path, random_state=args.random_state)
5353
reduceTime = time.time()
5454
logging.info("Dims Reduced: " + str(reduceTime - buildModelTime) + " seconds")
5555

src/github_analysis/motif_finder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
\"""
1+
"""
22
Sample usage (from project root dir): python src/github_analysis/motif_finder.py 0
33
44
Functions for implementing the following algo, suggested by Trevor Campbell:

0 commit comments

Comments
 (0)