Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for load_model (0.11 sec)

  1. tensorflow/c/experimental/gradients/grad_test_helper.cc

    namespace internal {
    
    void CompareNumericalAndAutodiffGradients(
        Model model, Model grad_model, AbstractContext* ctx,
        absl::Span<AbstractTensorHandle* const> inputs, bool use_function,
        double abs_error) {
      auto num_inputs = inputs.size();
      std::vector<AbstractTensorHandle*> outputs(num_inputs);
      auto s = RunModel(grad_model, ctx, inputs, absl::MakeSpan(outputs),
                        /*use_function=*/use_function);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. RELEASE.md

    ### Breaking Changes
    
    
    `tf.keras`:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                action()
            }
        }
    
        override fun <T : Any> loadOrCreateModel(creator: () -> T): T {
            if (isLoaded) {
                runLoadedSideEffects()
                return loadModel().uncheckedCast()
            }
    
            return runWorkThatContributesToCacheEntry {
                val model = creator()
                saveModel(model)
                model
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

        std::vector<int>& used_tensors, bool quantized = false) {
      std::unique_ptr<ModelT> quant_model =
          CreateMutableModelFromFile(quantized_model);
      std::unique_ptr<ModelT> float_model =
          CreateMutableModelFromFile(expected_model);
    
      for (int i = 0; i < possible_tensors->size(); i++) {
        // Skip if the tensor is already used for match.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top