Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 512 for output1 (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

        graph_def: graph_pb2.GraphDef,
    ) -> graph_pb2.GraphDef:
      """Restores the output tensor names of the converted model.
    
      During the conversion, the output tensor names of the original model are
      embedded in the `tf_saved_model.index_path` attribute of the RetVal nodes and
      might become the name of Retval nodes as well (with an index suffix if there
      are multiple output tensors from one node). Since Retval nodes are not used in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         * offers a convenient way of connecting together task inputs and outputs. (For a deeper understanding of
         * the topic see the <a href="https://docs.gradle.org/current/userguide/lazy_configuration.html">Lazy Configuration</a>
         * section of the Gradle manual.)</p>
         *
         * <p>
         * Task inputs and outputs often take the form of {@link Provider providers} or {@link Property properties},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                        final List<String> outputStrings = split(sides.get(1), ",");
                        outputs = new String[outputStrings.size()];
                        for (int i = 0; i < outputs.length; i++) {
                            outputs[i] = unescape(outputStrings.get(i)).trim();
                        }
    
                        if (inputs.length > 0 && outputs.length > 0) {
                            id++;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    `UP-TO-DATE`:: *Task's outputs did not change.*
    * Task has outputs and inputs but they have not changed. See <<incremental_build.adoc#incremental_build,Incremental Build>>.
    * Task has actions, but the task tells Gradle it did not change its outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                contextualLabel == 'Type \'MyTask\' property \'doubleIterableOptions.*.*.notAnnotated\' is missing an input or output annotation'
                details == 'A property without annotation isn\'t considered during up-to-date checking'
                solutions == [
                    'Add an input or output annotation',
                    'Mark it as @Internal',
                ]
                additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

        ss << "\n\t" << it.first << " -> "
           << DataTypeString(it.second.imported_dtype) << " "
           << it.second.shape.DebugString();
      }
      ss << "\noutputs:";
      for (auto& output : outputs) ss << " " << output;
      ss << "\ncontrol_outputs:";
      for (auto& output : control_outputs) ss << " " << output;
      ss << "\nprune_unused_nodes: " << prune_unused_nodes;
      ss << "\nconvert_legacy_fed_inputs: " << convert_legacy_fed_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      GraphDef pruned_graph_def;
      if (specs.prune_unused_nodes) {
        std::vector<std::string> terminal_nodes;
        terminal_nodes.reserve(specs.outputs.size() + specs.inputs.size());
        for (const auto& output : specs.outputs) {
          terminal_nodes.push_back(std::string(ParseTensorName(output).node()));
        }
        for (const auto& control_output : specs.control_outputs) {
          terminal_nodes.push_back(std::string(control_output));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

          location, concat_dim_type, concat_dimension_attr);
    
      // Correctly set output shapes of concat op output if output shape is
      // statically known. Since the shape of TPUExecute op must be the same
      // across logical devices, we refer to the shape of 0th logical device
      // computation output.
      mlir::Type output_type;
      auto input_type = mlir::cast<mlir::TensorType>(inputs[0].getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/loader.cc

                 const std::vector<string>& output_tensor_names,
                 const std::vector<string>& target_node_names,
                 std::vector<Tensor>* outputs) override {
        return wrapped_->Run(inputs, output_tensor_names, target_node_names,
                             outputs);
      }
    
      Status Create(const RunOptions& run_options, const GraphDef& graph) override {
        return absl::UnimplementedError("Session::Create()");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            TaskWithOutputFile  | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [] as List
            TaskWithInputFiles  | 'inputs'  | [null] as Object[]
            TaskWithOutputDir   | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [] as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
Back to top