You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: Feature names cannot have underscores ('_'), replacing with dashes ('-')Warning: Data is of class dgTMatrix. Coercing to dgCMatrix.
For now, I've added a note to the solution notebook
> Note:
>
> The `dgTMatrix` class represents sparse matrices in triplet format:
> - `i`, the row
> - `j`, the column
> - `x`, the value
>
> The `dgCMatrix`class represents sparse matrices in compressed column format:
> This format stores column-oriented data structures.
> It is more efficient for matrices with more non-zero elements,
> especially when operations involve columns.
The text was updated successfully, but these errors were encountered:
produces the warning
For now, I've added a note to the solution notebook
The text was updated successfully, but these errors were encountered: