From 4fb3b5bb962891f53600acb4d5c985b7a4821427 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Wed, 14 May 2025 09:24:53 +0000 Subject: [PATCH] Debug commit --- examples/export_ResNet18/resnet18.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/export_ResNet18/resnet18.py b/examples/export_ResNet18/resnet18.py index 81e3355..ecc2763 100644 --- a/examples/export_ResNet18/resnet18.py +++ b/examples/export_ResNet18/resnet18.py @@ -274,7 +274,8 @@ Load the .onnx model and perform some usual graph modifications : # Define the target path and filename file_url = "https://huggingface.co/EclipseAidge/resnet18/resolve/main/resnet18_imagenet_1k.onnx?download=true" file_path = Path(MODEL_NAME + "_imagenet_1k.onnx") - +dir(aidge_core.utils) +aidge_core.show_version() aidge_core.utils.download_file(file_path, file_url) model = aidge_onnx.load_onnx(file_path, verbose=False) -- GitLab