Skip to content

Commit

Permalink
ensure trained_model is a Path before calling .suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofelder committed Nov 14, 2024
1 parent 95abb3b commit 9372bc0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cellfinder/core/classify/classify.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
from datetime import datetime
from pathlib import Path
from typing import Any, Callable, Dict, List, Optional, Tuple

import keras
Expand Down Expand Up @@ -68,7 +69,7 @@ def main(
workers=workers,
)

if trained_model and trained_model.suffix == ".h5":
if trained_model and Path(trained_model).suffix == ".h5":
print(
"Weights provided in place of the model, "
"loading weights into default model."
Expand Down

0 comments on commit 9372bc0

Please sign in to comment.