Skip to content

Commit

Permalink
Update test_small_run.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yiwang12 authored Nov 12, 2024
1 parent b4d2ec4 commit c21e1cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_small_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _run(
random.seed(10)
ninduced = round(list_D_chunked[ksample]["X"].shape[0] * 0.35)
D_tmp = list_D_chunked[ksample]
D[ksample]["Z"] = D_tmp["X"][random.sample(range(0, D_tmp["X"].shape[0] - 1), ninduced), :]
D_tmp[ksample]["Z"] = D_tmp["X"][random.sample(range(0, D_tmp["X"].shape[0] - 1), ninduced), :]

# step 1 initialize model
fit = process_multiSample.ini_multiSample(list_D_chunked, n_loadings, "nb", chol=False)
Expand Down

0 comments on commit c21e1cc

Please sign in to comment.