Skip to content

Commit ba9ebec

Browse files
committed
fixed tab
1 parent b6a294c commit ba9ebec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libmultilabel/linear/tree.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ def _train_node(y: sparse.csr_matrix,
223223
node.model = linear.train_1vsrest(
224224
meta_y, x, options, False
225225
)
226-
node.model.weights = sparse.csr_matrix(node.model.weights)
226+
227+
node.model.weights = sparse.csr_matrix(node.model.weights)
227228

228229

229230
def _flatten_model(root: Node) -> tuple[linear.FlatModel, np.ndarray]:

0 commit comments

Comments
 (0)