Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for load_model (0.1 sec)

  1. 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)
  2. 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)
  3. 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