-
-
Save marcosatanaka/c4c3a51fbe2f03d9206d91e3ad71a726 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Definindo função de avaliação utilizando métrica Rˆ2. Melhor score = 1.0 | |
def performance_metric(y_true, y_predict): | |
return r2_score(y_true, y_predict) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment