This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import numpy | |
import theano | |
import theano.gof | |
class Debug(theano.gof.Op): | |
view_map = {0: [0]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16c17,18 | |
--- | |
> import re | |
> | |
517c519,521 | |
< scan_ops=None, profile=None): | |
--- | |
> scan_ops=None, profile=None, include_nan_info=False, | |
> include_inf_info=False, recursion_rules='ALWAYS', | |
> print_test_value=False): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39c39,41 | |
< done=None): | |
--- | |
> done=None, include_nan_info=False, | |
> include_inf_info=False, recursion_rules='ALWAYS', | |
> print_test_value=False): | |
151c153,156 | |
< profile=p) | |
--- | |
> profile=p, include_nan_info=include_nan_info, |