Views
No views yet
tensorflow.keras.applications.efficientnet.preprocess_input (not /255.0 normalisation)| Metric | Value |
|---|---|
| Quadratic Weighted Kappa (QWK) | 0.7987 |
| Grade 3 (severe) recall | 0.690 |
| Grade 0 recall | 0.952 |
| Grade 4 recall | 0.455 |
efficientnetb0_finetuned_patched.keras) has a locally-patched
quantization_config metadata key. The model was originally saved from a
Google Colab training environment whose Keras build supported a
quantization_config parameter on Dense layers and wrote it into the
saved config.json. The latest stable Keras release on PyPI (tried at
3.12.3 and 3.12.4, both current at time of writing) does not recognise
that key on load, causing a deserialization failure. The fix strips the
quantization_config key from the Dense layer's config inside a copy of
the .keras archive (a .keras file is a zip archive) — this does not
alter model weights or architecture in any way, only a metadata key
required for the file to load successfully in current Keras versions.docs/experiments.md
in the source repository.