Skip to content

Commit

Permalink
Update ibma.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioAPeraza committed May 23, 2024
1 parent 1b8ff10 commit 62e71b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nimare/meta/ibma.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def _preprocess_input(self, dataset):
super()._preprocess_input(dataset)

# Convert each group to a unique integer value.
labels = self.dataset.images["study_id"].to_list()
labels = dataset.images["study_id"].to_list()
label_to_int = {label: i for i, label in enumerate(set(labels))}
label_counts = Counter(labels)

Expand Down

0 comments on commit 62e71b7

Please sign in to comment.