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 bc10b01 commit 24b46ee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_small_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ def _run(

# step 0 Data loading
D, X = load_data(data_dir, n_sample)
listDtrain = process_multiSample.get_listDtrain(D)
list_D_chunked = process_multiSample.get_listD_chunked(D)
list_nchunk = [2,2]
listDtrain = process_multiSample.get_listDtrain(D,list_nchunk=list_nchunk)
list_D_chunked = process_multiSample.get_listD_chunked(D,list_nchunk=list_nchunk)
for ksample in range(0, len(list_D_chunked)):
random.seed(10)
ninduced = round(list_D_chunked[ksample]["X"].shape[0] * 0.35)
Expand Down

0 comments on commit 24b46ee

Please sign in to comment.