Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
### What this PR does: Fixes a bug in `examples/milvus_model/hello_model.py` where indexing a sparse matrix with `x[0]` caused a `NotImplementedError`. ### Changes made: - Updated the sparse matrix indexing from `x[0]` to `x[:, [0]]` to use explicit 2D indexing, which is supported. Signed-off-by: jinjuan zhou <[email protected]> Co-authored-by: jinjuan zhou <[email protected]>
- Loading branch information