Skip to content

Commit 342ebbb

Browse files
authored
Merge pull request #5 from compomics/deeplc-compatibility
Deeplc/tensorflow compatibility
2 parents e014cec + 495355b commit 342ebbb

7 files changed

+3
-3
lines changed

im2deep/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""IM2Deep: Deep learning framework for peptide collisional cross section prediction."""
22

3-
__version__ = "0.1.9"
3+
__version__ = "0.2.0"

im2deep/im2deep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def predict_ccs(
3131
if model_name == "tims":
3232
path_model = Path(__file__).parent / "models" / "TIMS"
3333

34-
path_model_list = list(path_model.glob("*.hdf5"))
34+
path_model_list = list(path_model.glob("*.keras"))
3535
if use_single_model:
3636
LOGGER.debug("Using model {}".format(path_model_list[2]))
3737
path_model_list = [path_model_list[2]]
16.3 MB
Binary file not shown.
-7.44 MB
Binary file not shown.
7.4 MB
Binary file not shown.
10.4 MB
Binary file not shown.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dynamic = ["version"]
2020
requires-python = ">=3.8"
2121
dependencies = [
2222
"click",
23-
"deeplc==2.2.38",
23+
"deeplc",
2424
"psm_utils",
2525
"pandas",
2626
"numpy",

0 commit comments

Comments
 (0)