We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1723f9 + dfe8184 commit 555eb31Copy full SHA for 555eb31
depthai_sdk/src/depthai_sdk/components/nn_component.py
@@ -240,7 +240,11 @@ def _parse_model(self, model):
240
self._parse_config(model)
241
else: # SDK supported model
242
models = getSupportedModels(printModels=False)
243
- zoo_models = blobconverter.zoo_list()
+
244
+ try:
245
+ zoo_models = blobconverter.zoo_list()
246
+ except Exception as e:
247
+ LOGGER.warning("No internet access, can't load models from depthai zoo.")
248
249
if str(model) in models:
250
model = models[str(model)] / 'config.json'
0 commit comments