-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add experimental dims
module with objects that follow dim-based semantics (like xarray)
#7820
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
base: main
Are you sure you want to change the base?
Conversation
day_of_conception = datetime.date(2025, 6, 17) | ||
day_of_last_bug = datetime.date(2025, 6, 17) | ||
today = datetime.date.today() | ||
days_with_bugs = (day_of_last_bug - day_of_conception).days |
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.
wtf 😆
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.
This has two purposes: distract reviewers so they don't focus on the critical changes, and prove that OSS libraries can't be fun.
1cfde5b
to
f571e5d
Compare
Can this index using labels? |
f571e5d
to
56402aa
Compare
I don't know what Is Like in xarray, you can do You cannot do The new PyTensor objects have dims but not coords. It's not trivial to encode coord based operations in our backends. |
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
3eb6738
to
67a0eda
Compare
67a0eda
to
3234468
Compare
…h specific lazy imports
Also remove commented out code
3234468
to
d4017fb
Compare
We should make this the 6.0 release. |
I agree, but would perhaps wait until we beta-tested it to the point it no longer feels too experimental |
dims
module with objects that follow dim-based semantics (like xarray)
9129df4
to
833e18e
Compare
833e18e
to
f1f7478
Compare
* Use RV Op name when provided * More robust detection of observed data variables (after pymc-devs#7656 arbitrary graphs are allowed) * Remove self loops explicitly (closes pymc-devs#7722)
f1f7478
to
56c05f1
Compare
This builds on top of PyTensor xtensor module, to introduce distributions and model objects that follow xarray-like semantics. Example model:
Equivalently, with the traditional API:
More details in the new core notebook