Skip to content

Commit cf26c0d

Browse files
committed
naming
1 parent c876013 commit cf26c0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HRM/hrm.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)