(w: Tensor)
| 119 | } |
| 120 | |
| 121 | apply(w: Tensor): Tensor { |
| 122 | return tidy( |
| 123 | () => tfc.div(w, tfc.add(epsilon(), calcL2Norms(w, this.axis)))); |
| 124 | } |
| 125 | |
| 126 | override getConfig(): serialization.ConfigDict { |
| 127 | return {axis: this.axis}; |
nothing calls this directly
no test coverage detected