79627659

Date: 2025-05-18 17:11:21
Score: 1
Natty:
Report link

you need to allow any number of keyword arguments, **kwargs in your custom function.
e.g.

def f2_score(y_true, y_pred,**kwargs):
  return fbeta_score(y_true, y_pred, beta=2)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jose_Peeterson