Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for input_model (0.18 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

    }
    
    class QuantizeModelTest : public testing::Test {
     protected:
      QuantizeModelTest() {
        input_model_ = ReadModel(internal::kConvModelWith0Plus10Weights);
        readonly_model_ = input_model_->GetModel();
        model_ = UnPackFlatBufferModel(*readonly_model_);
      }
    
      std::unique_ptr<FlatBufferModel> input_model_;
      const Model* readonly_model_;
      tflite::ModelT model_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            inputModel = injectProfileActivations(inputModel, interpolatedActivations);
    
            // profile injection
            inputModel = profileInjector.injectProfiles(inputModel, activePomProfiles, request, problems);
            inputModel = profileInjector.injectProfiles(inputModel, activeExternalProfiles, request, problems);
    
            return inputModel;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            profileActivationContext.setProjectProperties(inputModel.getDelegate().getProperties());
            problems.setSource(inputModel);
            List<Profile> activePomProfiles =
                    profileSelector.getActiveProfiles(inputModel.getProfiles(), profileActivationContext, problems);
    
            // model normalization
            problems.setSource(inputModel);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        return false;
      }
      const Node* switch_node = (*it)->src();
    
      // Check if the Switch is driven by LoopCond.
      const Node* maybe_loop_cond;
      TF_RETURN_IF_ERROR(switch_node->input_node(1, &maybe_loop_cond));
      if (!maybe_loop_cond->IsLoopCond()) {
        return false;
      }
    
      // Check if the Identity is driving any const nodes through a control edge.
      bool driving_any_consts =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top