Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Lee Stott 2026-07-06 15:53:43 +01:00 committed by GitHub
parent 86d1f9c661
commit 63b09830a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -512,8 +512,9 @@
"vgg = keras.applications.VGG16()\n",
"_weights_path = os.path.join(os.path.expanduser(\"~\"), \".keras\", \"models\",\n",
" \"vgg16_weights_tf_dim_ordering_tf_kernels.h5\")\n",
"if _sha256(_weights_path) != VGG16_WEIGHTS_SHA256:\n",
" warnings.warn(\"VGG16 weights SHA-256 mismatch - verify file integrity before use\")\n",
if _sha256(_weights_path) != VGG16_WEIGHTS_SHA256:
warnings.warn("VGG16 weights SHA-256 mismatch - verify file integrity before use")
raise ValueError("Aborting because VGG16 weights failed integrity check")
"inp = keras.applications.vgg16.preprocess_input(x_sample[:1])\n",
"\n",
"res = vgg(inp)\n",