Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for linear_1 (0.14 sec)

  1. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                  "tooltip": false,
                  "viz": false
                },
                "insertNulls": false,
                "lineInterpolation": "linear",
                "lineWidth": 1,
                "pointSize": 5,
                "scaleDistribution": {
                  "type": "linear"
                },
                "showPoints": "never",
                "spanNulls": false,
                "stacking": {
                  "group": "A",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    xt","axisLabel":"","axisPlacement":"auto","barAlignment":0,"drawStyle":"line","fillOpacity":10,"gradientMode":"none","hideFrom":{"legend":false,"tooltip":false,"viz":false},"insertNulls":false,"lineInterpolation":"linear","lineWidth":1,"pointSize":5,"scaleDistribution":{"type":"linear"},"showPoints":"never","spanNulls":false,"stacking":{"group":"A","mode":"none"},"thresholdsStyle":{"mode":"off"}},"mappings":[],"thresholds":{"mode":"absolute","steps":[{"color":"green","value":null},{"color":"red"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    That is for rows we have grad for, we update var, accum and linear as follows:
    accum_new = accum + grad * grad
    linear += grad - (accum_new^(-lr_power) - accum^(-lr_power)) / lr * var
    quadratic = 1.0 / (accum_new^(lr_power) * lr) + 2 * l2
    var = (sign(linear) * l1 - linear) / quadratic if |linear| > l1 else 0.0
    accum = accum_new
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. RELEASE.md

        It significantly reduces the peak memory required and latency incurred
        during restore.
    *   Added a new library for library of matrix-free (iterative) solvers for
        linear equations, linear least-squares, eigenvalues and singular values in
        tensorflow/contrib/solvers. Initial version has lanczos bidiagonalization,
        conjugate gradients and CGLS.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_EluOp: TFL_Op<"elu", [
        Pure,
        SameOperandsAndResultShape,
        TFL_SameFirstOperandAndFirstResultElementType]> {
      let summary = "Exponential Linear Unit operator";
      let description = [{
        Computes the exponential linear
          f(x) -> exp(x) - 1 for x < 0, x for x >= 0.
        element-wise.
      }];
    
      let arguments = (ins TFL_TensorOf<[F32, I8]>:$x);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top