Skip to content

Commit

Permalink
Adding ineritDoc and @OverRide
Browse files Browse the repository at this point in the history
  • Loading branch information
markbookk committed Apr 21, 2021
1 parent 728725c commit 46c4b8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1527,6 +1527,8 @@ public NDArray oneHot(int depth, float onValue, float offValue, DataType dataTyp
return manager.invoke("_npx_one_hot", this, params).toType(dataType, false);
}

/** {@inheritDoc} */
@Override
public NDArray batchDot(NDArray other) {
return manager.invoke("_npx_batch_dot", new NDArray[] {this, other}, null);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1413,6 +1413,7 @@ public NDArray oneHot(int depth, float onValue, float offValue, DataType dataTyp
throw new UnsupportedOperationException("Not implemented");
}

/** {@inheritDoc} */
@Override
public NDArray batchDot(NDArray other) {
throw new UnsupportedOperationException("Not implemented");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,7 @@ public NDArray oneHot(int depth, float onValue, float offValue, DataType dataTyp
}
}

/** {@inheritDoc} */
@Override
public NDArray batchDot(NDArray other) {
throw new UnsupportedOperationException("Not implemented");
Expand Down

0 comments on commit 46c4b8b

Please sign in to comment.