Commit 5881dcb8 authored by Kohaku-Blueleaf's avatar Kohaku-Blueleaf

remove debug print

parent a2b83050
...@@ -12,7 +12,6 @@ class ModuleTypeNorm(network.ModuleType): ...@@ -12,7 +12,6 @@ class ModuleTypeNorm(network.ModuleType):
class NetworkModuleNorm(network.NetworkModule): class NetworkModuleNorm(network.NetworkModule):
def __init__(self, net: network.Network, weights: network.NetworkWeights): def __init__(self, net: network.Network, weights: network.NetworkWeights):
super().__init__(net, weights) super().__init__(net, weights)
print("NetworkModuleNorm")
self.w_norm = weights.w.get("w_norm") self.w_norm = weights.w.get("w_norm")
self.b_norm = weights.w.get("b_norm") self.b_norm = weights.w.get("b_norm")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment