Skip to content

Commit

Permalink
Fix transfer learning
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbinBouwmeester committed Apr 13, 2024
1 parent 2dbc76f commit 83a132d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [2.2.34] - 2024-04-13

- Fix issue transfer learning single model mode

# [2.2.33] - 2024-04-13

- Make single model mode available and the default
Expand Down
2 changes: 1 addition & 1 deletion deeplc/deeplc.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def __init__(
self.model = path_model
else:
if single_model_mode:
self.model = DEFAULT_MODELS[0]
self.model = [DEFAULT_MODELS[0]]
else:
self.model = DEFAULT_MODELS

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "deeplc"
version = "2.2.33"
version = "2.2.34"
description = "DeepLC: Retention time prediction for (modified) peptides using Deep Learning."
readme = "README.md"
license = { file = "LICENSE" }
Expand Down

0 comments on commit 83a132d

Please sign in to comment.