Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdenker committed Sep 27, 2024
1 parent 39f90f9 commit d7986cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bsrem_saga.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,13 @@ def subset_objective(self, x, subset_num):

class BSREM(BSREMSkeleton):
''' SAGA implementation using sirf.STIR objective functions'''
def __init__(self, data, obj_funs, initial, average_sensitivity, **kwargs):
def __init__(self, data, obj_funs, initial, **kwargs):
'''
construct Algorithm with lists of data and, objective functions, initial estimate
and optionally Algorithm parameters
'''
self.obj_funs = obj_funs
super().__init__(data, initial,average_sensitivity, **kwargs)
super().__init__(data, initial, **kwargs)

def subset_sensitivity(self, subset_num):
''' Compute sensitivity for a particular subset'''
Expand Down

0 comments on commit d7986cc

Please sign in to comment.