-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Add initial distribution parameter types #5315
Conversation
Codecov Report
@@ Coverage Diff @@
## main #5315 +/- ##
==========================================
- Coverage 80.23% 79.43% -0.80%
==========================================
Files 89 89
Lines 14856 14857 +1
==========================================
- Hits 11919 11801 -118
- Misses 2937 3056 +119
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to not be mistakenly merged in the meantime
d6f63c4
to
d8f5a4d
Compare
sd: Optional[Union[float, np.ndarray]] = None, | ||
lower: Optional[Union[float, np.ndarray]] = None, | ||
upper: Optional[Union[float, np.ndarray]] = None, | ||
mu: Optional[DIST_PARAMETER_TYPES] = None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for previous comment @ricardoV94. Hows it looking now?
One question, are dist parameter always optional? If so I can move the optional flag to the definition
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No they are not always optional. Most times they are required actually
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hows it look now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 can we merge? Ill create an issue ticket for data umbrella sprint too have others add to the other parameters.
Thanks Ricardo
d8f5a4d
to
66deb25
Compare
Per comment #5298 (comment)
Let me know if I got it right @ricardoV94