We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
l_t[0].plot_score_distribution(figsize=params.figsize)
returns
AttributeError with the following message: AttributeError: 'Rectangle' object has no property 'normed'
On more digging, it seems that "normed" property has been deprecated and needs to be replaced.
The text was updated successfully, but these errors were encountered:
Culprit line:
triage/src/triage/component/postmodeling/contrast/model_evaluator.py
Lines 367 to 371 in e47f07a
From the docs:
normed : bool, optional Deprecated; use the density keyword argument instead.
Sorry, something went wrong.
normed -> density (Fixes #734) (#747)
62a07ad
* normed -> density * Bumped versions of PyYAML and codecov
nanounanue
Successfully merging a pull request may close this issue.
returns
On more digging, it seems that "normed" property has been deprecated and needs to be replaced.
The text was updated successfully, but these errors were encountered: