Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 2
    $\begingroup$ Your idea is already here: tensorflow.org/api_docs/python/tf/keras/layers/Normalization :) This performs standardization, so if one requires a different normalization (like min-max scaling) is possible to create a custom pre-processing layer with weights that would be learned before training, then fixed, and finally saved along the model's weights $\endgroup$ Commented Sep 18, 2023 at 12:04
  • 2
    $\begingroup$ Ahaa I didn't know about that one, it seems like a better fit for this purpose rather than the BatchNormalization. $\endgroup$ Commented Sep 19, 2023 at 8:16
  • $\begingroup$ Thank you both very much for these helpful thoughts and alternative approaches. $\endgroup$ Commented Sep 20, 2023 at 18:52