Skip to content

Commit

Permalink
times 16
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgorgo committed Oct 29, 2016
1 parent 2f52d5d commit 88328e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evaluate_atlases.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def score_map(map_filename, atlas_data, labels):
"fake_map_id": None}, ignore_index=True)

from joblib import Parallel, delayed
out = Parallel(n_jobs=2)(delayed(score_map)(data_location + "/images/fake_maps/%04d/%04d.nii.gz"%(image_id, fake_map_id),
out = Parallel(n_jobs=16)(delayed(score_map)(data_location + "/images/fake_maps/%04d/%04d.nii.gz"%(image_id, fake_map_id),
atlas_data,
labels) for fake_map_id in range(n_fake_maps))
comparisons_df = comparisons_df.append(pd.DataFrame({"within_parcel_variance": list(np.array(out)[:, 0]),
Expand Down

0 comments on commit 88328e3

Please sign in to comment.