Skip to content

Commit 55d14ce

Browse files
authored
- typo fix
1 parent 2b6138b commit 55d14ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pysipfenn/core/pysipfenn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def makePredictions(self,
354354
t0 = perf_counter()
355355
model = models[net]
356356
model.eval()
357-
if 'OnnxDropoutDynamic()' in {str(module) for module in list(m._modules.values())}:
357+
if 'OnnxDropoutDynamic()' in {str(module) for module in list(model._modules.values())}:
358358
tempOut = model(dataIn, None)
359359
else:
360360
tempOut = model(dataIn)

0 commit comments

Comments
 (0)