We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6ba4b5 commit ce226f8Copy full SHA for ce226f8
ntm/ntm.py
@@ -416,6 +416,11 @@ def bprop(params, manual_grad):
416
print deltas[k]
417
failed_keys.append(k)
418
else:
419
+ print "compare deltas PASSED for key:", k
420
+ print "baseline"
421
+ print auto_deltas[k]
422
+ print "candidate"
423
+ print deltas[k]
424
passed_keys.append(k)
425
if len(failed_keys) > 0:
426
print "FAILED KEYS:"
run_model.py
@@ -12,7 +12,7 @@
12
import pdb
13
14
# Comment next line to remove determinism
15
-np.random.seed(0)
+# np.random.seed(0)
16
17
# Uncomment below for debugging numerical issues
18
# warnings.simplefilter("error")
0 commit comments