提交 104d3703 authored 作者: Frederic Bastien's avatar Frederic Bastien

fix typo and clean up import.

上级 2d87330b
...@@ -6,11 +6,10 @@ To read about different sparse formats, see U{http://www-users.cs.umn.edu/~saad/ ...@@ -6,11 +6,10 @@ To read about different sparse formats, see U{http://www-users.cs.umn.edu/~saad/
@todo: Automatic methods for determining best sparse format? @todo: Automatic methods for determining best sparse format?
""" """
import sys, operator import sys
import numpy, theano import numpy, theano
import scipy.sparse import scipy.sparse
from theano.printing import Print
from theano import gof from theano import gof
from theano import tensor from theano import tensor
...@@ -619,7 +618,7 @@ class AddSD(gof.op.Op): ...@@ -619,7 +618,7 @@ class AddSD(gof.op.Op):
def grad(self, (x, y), (gz,)): def grad(self, (x, y), (gz,)):
assert _is_sparse_variable(x) and _is_dense_variable(y) assert _is_sparse_variable(x) and _is_dense_variable(y)
assert _is_dense_variable(gz) assert _is_dense_variable(gz)
return sp_one_like(x) * gz, gz return sp_ones_like(x) * gz, gz
add_s_d = AddSD() add_s_d = AddSD()
def add(x,y): def add(x,y):
""" """
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论