Function log10

  • Plot of log10 and its gradient

    Calculates:

    output = log(input) * 0.4342944819032518
    

    Gradient:

    inputGrad = outputGrad / (input * 2.302585092994046)
    

    Parameters

    • input: Tensor

      the input tensor of any shape

    Returns Tensor

    the output tensor

Generated using TypeDoc