-
Notifications
You must be signed in to change notification settings - Fork 372
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
feat: add get_normalized_expression to more models #3121
base: main
Are you sure you want to change the base?
Conversation
…xpr' into Ori-Additional-Models-Get-Norm-Expr
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3121 +/- ##
==========================================
- Coverage 89.43% 82.66% -6.78%
==========================================
Files 185 185
Lines 16182 16206 +24
==========================================
- Hits 14473 13397 -1076
- Misses 1709 2809 +1100
|
@@ -33,7 +33,7 @@ | |||
B = 10 | |||
|
|||
|
|||
class CellAssign(UnsupervisedTrainingMixin, BaseModelClass): | |||
class CellAssign(UnsupervisedTrainingMixin, BaseModelClass, RNASeqMixin, VAEMixin): |
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.
Is CellAssign intended for these functions? I would remove it here.
src/scvi/module/_mrdeconv.py
Outdated
z = self.V_encoder(*encoder_input) | ||
# z = self.gamma_encoder(*encoder_input) | ||
|
||
return { |
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 doesn't really make sense. Please remove VAEmixin from DestVI
add this down stream analysis function to several models which don't have it yet