Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for var0 (0.04 sec)

  1. api/openapi-spec/v3/apis__apps__v1_openapi.json

            "properties": {
              "containerName": {
                "description": "Container name: required for volumes, optional for env vars",
                "type": "string"
              },
              "divisor": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Update '*var' according to the Ftrl-proximal scheme.";
    
      let description = [{
    accum_new = accum + grad * grad
    grad_with_shrinkage = grad + 2 * l2_shrinkage * var
    linear += grad_with_shrinkage +
        (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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top