X-Git-Url: https://code.communitydata.science/cdsc_reddit.git/blobdiff_plain/5a40465a629a1d7d95dbec9730d3950842bcb4f5..c19079136428953fbfea7f35ad9ffdfc4c574deb:/clustering/lsi_base.py diff --git a/clustering/lsi_base.py b/clustering/lsi_base.py index 14bbfc5..84dfa7b 100644 --- a/clustering/lsi_base.py +++ b/clustering/lsi_base.py @@ -29,7 +29,7 @@ class lsi_grid_sweep(grid_sweep): self.jobs = list(chain(*map(lambda gs: gs.jobs, self.subgrids))) class twoway_lsi_grid_sweep(twoway_grid_sweep): - def __init__(self, jobtype, subsweep, inpath, lsi_dimensions, outpath, args1, args2, save_step1): + def __init__(self, jobtype, subsweep, inpath, lsi_dimensions, outpath, args1, args2): self.jobtype = jobtype self.subsweep = subsweep inpath = Path(inpath) @@ -40,5 +40,5 @@ class twoway_lsi_grid_sweep(twoway_grid_sweep): lsi_nums = [int(p.stem) for p in lsi_paths] self.hasrun = False - self.subgrids = [self.subsweep(lsi_path, outpath, lsi_dim, args1, args2, save_step1) for lsi_dim, lsi_path in zip(lsi_nums, lsi_paths)] + self.subgrids = [self.subsweep(lsi_path, outpath, lsi_dim, args1, args2) for lsi_dim, lsi_path in zip(lsi_nums, lsi_paths)] self.jobs = list(chain(*map(lambda gs: gs.jobs, self.subgrids)))