Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,482 for draining (0.54 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      std::vector<Operation*> work_list_;
      absl::flat_hash_set<Operation*> quantized_;
    
      // The vector contains all the quantization parameters propagated from the
      // defining operations of the value, or from the quantization aware training.
      std::vector<QuantState> states_;
    
      // The map contains all the quantization parameters which are required to
      // satisfy the same operands and results constraint. The keys of this map are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. security/pkg/pki/testdata/cert-chain-trailing-line.pem

    sschepens <******@****.***> 1717506007 -0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

      name: "training/LossScaleOptimizer/SGD/update_95/ResourceApplyKerasMomentum/ReadVariableOp_1"
      op: "ReadVariableOp"
      input: "training_lossscaleoptimizer_sgd_update_resourceapplykerasmomentum_readvariableop_1_resource"
      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
    }
    node {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/keras_imagenet_main_graph_mode.pbtxt

        }
      }
      attr {
        key: "shape"
        value {
          shape {
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: "training/SGD/iter"
        }
      }
    }
    node {
      name: "training/SGD/bn2a_branch1/beta/momentum"
      op: "VarHandleOp"
      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "container"
        value {
          s: ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.1M bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_update_embedding_enqueue_op_inputs.cc

      });
      return failure(walk_result.wasInterrupted());
    }
    
    // Updates the operand of TPU embedding enqueue ops depending on whether
    // the graph is in training mode or in non-training mode.
    // If SendTPUEmbeddingGradients op is present, this means that graph is in
    // training mode. As so, correctly feed in `then` branch value of SelectV2
    // operand as inputs to the TPU embedding enqueue ops.
    LogicalResult UpdateEmbeddingEnqueueOpInput(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/base/OptionalTest.java

      public void testIsPresent_yes() {
        assertTrue(Optional.of("training").isPresent());
      }
    
      public void testGet_absent() {
        Optional<String> optional = Optional.absent();
        try {
          optional.get();
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      public void testGet_present() {
        assertEquals("training", Optional.of("training").get());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl

    before table before procedure before 0 .cls-1 { fill: #02303a; } Gradle DSL Reference Community Community Home Community Forums Community Plugins Training News Newsletter Blog Twitter Develocity github Docs User Manual DSL Reference Release Notes Javadoc News Blog Newsletter Twitter Products Build Scan™ Build Cache Develocity Docs Get Help Forums GitHub Training Services Stay UP-TO-DATE on new features and news By entering your email, you agree to our Terms and Privacy Policy, including receipt of emails....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 16:51:07 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/restored_resource.h

    // https://github.com/tensorflow/tensorflow/blob/fda326e542ca67534e8411edb180e8760a4828b7/tensorflow/python/training/tracking/tracking.py#L285
    // and are expected to implement "_create_resource", "_initialize", and
    // "_destroy_resource" functions:
    // https://github.com/tensorflow/tensorflow/blob/139ba9c5284799beafdd1d7f895127cf00e7c48f/tensorflow/python/training/tracking/tracking.py#L262-L281
    class RestoredResource : TensorHandleConvertible {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/function/function.h

      // Currently we don't use core_selector for training use cases.
      bool tpu_use_core_selector = false;
    
      // If true, use BundledTransferToTpuOp to transfer variables and input tensors
      // to TPU.
      bool tpu_use_bundled_transfer = false;
    
      // If true, lower an TF op that's placed on TPU device to be executed with
      // tfrt_fallback.execute.
      // Currently for training use cases we need to lower the op to corert.execute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 04:50:20 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.h

    // Applies post-training dynamic-range quantization to the model.
    absl::StatusOr<ExportedModel> QuantizeDynamicRangePtq(
        absl::string_view saved_model_path,
        const std::vector<std::string>& signature_keys,
        const std::unordered_set<std::string>& tags,
        const QuantizationOptions& quantization_options);
    
    // Applies post-training static-range weight-only quantization to the model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 15:31:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top