test3 / model.py
basilboy's picture
Update model.py
b1855eb verified
raw
history blame
340 Bytes
# This file could be used for more complex model handling if needed.
# For simplicity, it's not used extensively in this basic example.
from utils import load_model
models = {
"hemolysis": load_model("hemolysis_model.pth"),
"non_fouling": load_model("non_fouling_model.pth"),
"solubility": load_model("solubility_model.pth")
}