tensorfuse icon indicating copy to clipboard operation
tensorfuse copied to clipboard

Common interface for Theano, CGT, and TensorFlow

Results 1 tensorfuse issues
Sort by recently updated
recently updated
newest added

Nice idea! I'm not so sure about the current implementation pattern, though. Take `tensor.nnet`: ``` python from ..config import is_theano, is_cgt if is_theano(): import theano.tensor.nnet else: import cgt import cgt.nn...