Skip to content

Commit

Permalink
Update deeplc.py
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbinBouwmeester committed Nov 22, 2024
1 parent a451203 commit 8e171c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion deeplc/deeplc.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@
from psm_utils.io.peptide_record import peprec_to_proforma
from psm_utils.psm import PSM
from psm_utils.psm_list import PSMList
from tensorflow.keras.models import load_model

try:
from tensorflow.keras.models import load_model
except:
from tensorflow.python.keras.models import load_model
from tensorflow.python.eager import context

from deeplc._exceptions import CalibrationError
Expand Down

0 comments on commit 8e171c9

Please sign in to comment.