Update min IG stopping criterion
This commit is contained in:
@@ -80,7 +80,7 @@ class NextBestView(MultiViewPolicy):
|
||||
i = np.argmax(utilities)
|
||||
nbv, gain = views[i], gains[i]
|
||||
|
||||
if gain < self.min_gain:
|
||||
if gain < self.min_gain and len(self.views) > self.T:
|
||||
self.done = True
|
||||
|
||||
self.x_d = nbv
|
||||
|
Reference in New Issue
Block a user