-
Notifications
You must be signed in to change notification settings - Fork 82
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
Feature/quadratic solve #433
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
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 is starting to look good! thanks a lot Michal
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #433 +/- ##
==========================================
+ Coverage 90.37% 90.46% +0.09%
==========================================
Files 56 57 +1
Lines 6265 6273 +8
Branches 892 893 +1
==========================================
+ Hits 5662 5675 +13
+ Misses 459 454 -5
Partials 144 144
|
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.
LGTM, thanks!
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"We provide the Average FOSCTTM to align `X` (chromatinaccessibility domain) to `Y` (gene expression domain) for each implementation:" | ||
"We provide the Average FOSCTTM to align `X` (chromatin accessibility domain) to `Y` (gene expression domain) for each implementation:" |
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 the catch!
@@ -24,23 +24,54 @@ class Loss(NamedTuple): # noqa: D101 | |||
is_linear: bool | |||
|
|||
|
|||
class GWLoss(NamedTuple): # noqa: D101 | |||
class GWLoss(NamedTuple): |
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
* Add `solve` function for quadratic problems * Update docs * Fix typo in notebook * Fix implicit diff passing in LR Sinkhorn * Fix typo * Clean `GWLoss` docs
closes #432