Why does the validation data directly use compute_metrics_for_classification(y_valid, y_valid_pred) but the test data use submit_predictions_for_test_set(y_test_pred)? It seems that we can also use compute_metrics_for_classification(y_test, y_test_pred).
Why does the validation data directly use
compute_metrics_for_classification(y_valid, y_valid_pred)but the test data usesubmit_predictions_for_test_set(y_test_pred)? It seems that we can also usecompute_metrics_for_classification(y_test, y_test_pred).