Skip to content

Commit

Permalink
Merge pull request #5 from compomics/deeplc-compatibility
Browse files Browse the repository at this point in the history
Deeplc/tensorflow compatibility
  • Loading branch information
rodvrees authored Sep 14, 2024
2 parents e014cec + 495355b commit 342ebbb
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion im2deep/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""IM2Deep: Deep learning framework for peptide collisional cross section prediction."""

__version__ = "0.1.9"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion im2deep/im2deep.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def predict_ccs(
if model_name == "tims":
path_model = Path(__file__).parent / "models" / "TIMS"

path_model_list = list(path_model.glob("*.hdf5"))
path_model_list = list(path_model.glob("*.keras"))
if use_single_model:
LOGGER.debug("Using model {}".format(path_model_list[2]))
path_model_list = [path_model_list[2]]
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"click",
"deeplc==2.2.38",
"deeplc",
"psm_utils",
"pandas",
"numpy",
Expand Down

0 comments on commit 342ebbb

Please sign in to comment.