Skip to content
New issue

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

Updating a typo in TF doc #715

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jan 4, 2024

  1. Updating a typo in TF doc

    Updated the line from if (y_pred_rank - y_true_rank != 1) or y_pred_shape[-1] == 1: to
    if (y_pred_rank - y_true_rank == 1) or y_pred_shape[-1] == 1:
    as the current behavior will squeeze the y_pred tensor even when it’s the same rank and shape as the y_pred tensor.
    Fixes #62718
    
    Please have a look at this and do the needful. Thank you!
    sushreebarsa authored Jan 4, 2024
    Configuration menu
    Copy the full SHA
    2c605ce View commit details
    Browse the repository at this point in the history