-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Remove sd optional kwarg from distributions #5583
Conversation
Codecov Report
@@ Coverage Diff @@
## main #5583 +/- ##
==========================================
+ Coverage 87.60% 87.66% +0.06%
==========================================
Files 76 76
Lines 13745 13712 -33
==========================================
- Hits 12041 12021 -20
+ Misses 1704 1691 -13
|
Should I replace |
Yes please, totally eliminate it from the codebase |
Do you mean, the complete test function which are using |
No. Keep the function, just rename it to |
Hello, I'm having trouble understanding what these lines below are doing: pymc/pymc/tests/test_sampling.py Lines 737 to 739 in 5eaa516
pymc/pymc/tests/test_transforms.py Lines 335 to 340 in 5eaa516
|
That one does not seem to involve the sd kwarg. Is it failing or are you asking because the variable has
That one you need to change that dict to have |
Hi @ricardoV94, @canyon289, Running pytest takes an excessive amount of time. Is it possible to do a quick test on local system before pushing to github to see if there are any errors? |
You shouldn't try to run the entire test suite on your local machine. Usually only tests that you added or that you know are directly related to changes you've made. |
Hi @ricardoV94, I only fixed the errors I was getting the previous time, and it passed all of the tests this time. However, I can still find some tests/methods/notebooks that use pymc/pymc/tests/test_shape_handling.py Lines 392 to 397 in 8cb71a5
https://github.com/pymc-devs/pymc/blob/main/docs/source/learn/examples/dimensionality.ipynb Should I rename them to sigma as well ? |
Yes 👍 |
… remaned it for consistency
…t_observed_with_column_vector
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Hello, @ricardoV94! I believe I am finished; please take a look. |
Release notes |
Yes, the release note mentions |
Yes certainly.
…On Tue, Mar 15, 2022, 21:08 Purna Chandra Mansingh ***@***.***> wrote:
Release notes
Yes, the release note mentions sd but I assumed it would be handled by
the Member. Is it possible for me to make changes to that?
—
Reply to this email directly, view it on GitHub
<#5583 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFETGEIT6SOIAWSI35B5MLVADU35ANCNFSM5QQI3ELQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you commented.Message ID:
***@***.***>
|
Under the Deprecations header for PyMC vNext, I'll add a point like "In favour of sigma, the deprecated sd has been removed.", right? |
Yes, exactly. |
Done 😃, I believe it's finished now. |
Is there anything I can do to resolve this conflict? |
|
Thanks @purna135! |
Thanks for this opportunity |
Closes #5576
Removed
sd
kwarg in favor ofsigma
from several continuous univariate distributions.