2021-10-16 08:49:48 +02:00

13 lines
211 B
Python

try:
from icenet import base_cnn, icenet
except Exception as ex:
print("Failed to import keras")
print(ex)
base_cnn = icenet = None
MODELS = {
'base_cnn': base_cnn,
'icenet': icenet
}