**Describe the problem**. Specifying `classifier_activation=softmax` in ConvNeXt models does not work, instead it returns the model with a linear classifier layer. Inspecting source code: https://github.com/keras-team/keras/blob/e6784e4302c7b8cd116b74a784f4b78d60e83c26/keras/applications/convnext.py#L524-L526 Definition of `Head` function: https://github.com/keras-team/keras/blob/e6784e4302c7b8cd116b74a784f4b78d60e83c26/keras/applications/convnext.py#L327-L348 Find the Colab [gist here](https://colab.research.google.com/gist/Frightera/31d1c09bc6c882c35f15afa1310abb6b/convnext-classifier_activation.ipynb). If OK I can open a PR and fix it.