We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in class com.tencent.angel.ml.math2.matrix.MapMatrix
public class MapMatrix<Vec extends Vector> extends Matrix { protected HashMap<Long, Vec> mapMatrix; }
because mapMatrix map's keyType is Long, so this.mapMatrix.get(idx) will return null when ids is int type.
this.mapMatrix.get(idx)
The text was updated successfully, but these errors were encountered:
fix Angel-ML#7
09e6058
No branches or pull requests
in class com.tencent.angel.ml.math2.matrix.MapMatrix
because mapMatrix map's keyType is Long, so
this.mapMatrix.get(idx)
will return null when ids is int type.The text was updated successfully, but these errors were encountered: