test3 / model.py
basilboy's picture
Update model.py
3fffa64 verified
raw
history blame contribute delete
310 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"),
"non_fouling": load_model("non_fouling"),
"solubility": load_model("solubility")
}