Commit 23b841cf authored by pkufool's avatar pkufool
Browse files

Fix error

parent d55f5481
......@@ -287,7 +287,7 @@ def mutual_information_recursion(
assert 0 <= t_begin <= t_end <= T
# The following statements are for efficiency
px, py = px.is_contiguous(), py.is_contiguous()
px, py = px.contiguous(), py.contiguous()
pxy_grads = [None, None]
scores = MutualInformationRecursionFunction.apply(px, py, pxy_grads,
......
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