Commit 9060007 1 parent 613db16 commit 9060007 Copy full SHA for 9060007
File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
- ## [ 0.2.1] - xxxx-xx-xx
1
+ ## [ 0.2.1] - 2024-12-04
2
2
3
+ ### Added
4
+ - ` novae.utils.quantile_scaling ` for proteins expression
5
+
6
+ ### Fixed
7
+ - Fix autocompletion using ` __new__ ` to trick hugging_face inheritance
3
8
4
9
5
10
## [ 0.2.0] - 2024-12-03
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ def __repr__(self) -> str:
127
127
return utils .pretty_model_repr (info_dict )
128
128
129
129
def __new__ (cls ) -> "Novae" :
130
- return super ().__new__ (cls )
130
+ return super ().__new__ (cls ) # trick to enable auto-completion despite PyTorchModelHubMixin inheritance
131
131
132
132
@property
133
133
def datamodule (self ) -> NovaeDatamodule :
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " novae"
3
- version = " 0.2.0 "
3
+ version = " 0.2.1 "
4
4
description = " Graph-based foundation model for spatial transcriptomics data"
5
5
documentation = " https://mics-lab.github.io/novae/"
6
6
homepage = " https://mics-lab.github.io/novae/"
You can’t perform that action at this time.
0 commit comments