Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
BeGeiger committed Oct 31, 2023
1 parent 364e378 commit da456ce
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
---
---

## 0.3.0 - 2023-10
### Added
- Support a sample-weigted KL-divergence loss in KL-NMF
- Support a sample-weighted sparsity regularization in KL-NMF
- Support fixing signature and sample biases in (multimodal) CorrNMF during inference

## 0.2.1 - 2023-10
### Fixed
- Improve CorrNMF model formulation (added signature biases)
- Improve multimodal exposure plot

## 0.2.0 - 2023-10
### Added
- Support fixing arbitrary many a priori known signatures during inference.
- Improved performance with just-in-time compiled update rules.
- Support fixing arbitrary many a priori known signatures during inference
- Improved performance with just-in-time compiled update rules

## 0.1.0 - 2023-10
### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "salamander-learn"
version = "0.2.1"
version = "0.3.0"
description = "Salamander is a non-negative matrix factorization framework for signature analysis"
license = "MIT"
authors = ["Benedikt Geiger"]
Expand Down
2 changes: 1 addition & 1 deletion src/salamander/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
from .nmf_framework.multimodal_corrnmf import MultimodalCorrNMF
from .nmf_framework.mvnmf import MvNMF

__version__ = "0.2.1"
__version__ = "0.3.0"
__all__ = ["CorrNMFDet", "KLNMF", "MvNMF", "MultimodalCorrNMF"]

0 comments on commit da456ce

Please sign in to comment.