File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def forward(
124124
125125 # network as they proposed - following figure 4
126126
127- def evaluate_network (
127+ def evaluate_network_ (
128128 network : Module ,
129129 network_index
130130 ):
@@ -156,13 +156,13 @@ def evaluate_network(
156156 if not divisible_by (iteration , evaluate_network_at ):
157157 continue
158158
159- evaluate_network (network , network_index )
159+ evaluate_network_ (network , network_index )
160160
161161 # 1-step gradient learning
162162
163163 for network_index , network in enumerate (self .networks ):
164164
165- evaluate_network (network , network_index )
165+ evaluate_network_ (network , network_index )
166166
167167 # to output prediction, using the hiddens from the highest hierarchy
168168
You can’t perform that action at this time.
0 commit comments