Exemplo n.º 1
0
def mean(y, x, axis=DEFAULT, dtype=DEFAULT, keepdims=DEFAULT):
    n = tangent.astype(tangent.array_size(x, axis), x)
    d[x] = tangent.astype(
        tangent.unreduce(d[y], numpy.shape(x), axis, keepdims), x) / n
Exemplo n.º 2
0
def aastype(z, array, y):
    d[array] = tangent.astype(d[z], array)
Exemplo n.º 3
0
def sum(y, x, axis=DEFAULT, dtype=DEFAULT, keepdims=DEFAULT):
    d[x] = tangent.astype(
        tangent.unreduce(d[y], numpy.shape(x), axis, keepdims), x)
Exemplo n.º 4
0
def tastype(z, x, y):
    d[z] = tangent.astype(d[x], d[y])
Exemplo n.º 5
0
def aarray(ans, x):
    d[x] = tangent.astype(d[ans], x)
Exemplo n.º 6
0
def mean(y, x, axis=None, dtype=None, keepdims=False):
    n = tangent.astype(tangent.array_size(x, axis), x)
    d[x] = tangent.astype(
        tangent.unreduce(d[y], numpy.shape(x), axis, keepdims), x) / n
Exemplo n.º 7
0
def sum(y, x, axis=None, dtype=None, keepdims=False):
    d[x] = tangent.astype(
        tangent.unreduce(d[y], numpy.shape(x), axis, keepdims), x)