Update model.py
Browse filesmulti model handling
model.py
CHANGED
|
@@ -2,4 +2,8 @@
|
|
| 2 |
# For simplicity, it's not used extensively in this basic example.
|
| 3 |
from utils import load_model
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
# For simplicity, it's not used extensively in this basic example.
|
| 3 |
from utils import load_model
|
| 4 |
|
| 5 |
+
models = {
|
| 6 |
+
"hemolysis": load_model("hemolysis"),
|
| 7 |
+
"non_fouling": load_model("non_fouling"),
|
| 8 |
+
"solubility": load_model("solubility")
|
| 9 |
+
}
|