Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for get_graph (0.34 sec)

  1. tensorflow/cc/saved_model/loader_util.h

    #ifndef TENSORFLOW_CC_SAVED_MODEL_LOADER_UTIL_H_
    #define TENSORFLOW_CC_SAVED_MODEL_LOADER_UTIL_H_
    
    #include <string>
    
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    namespace internal {
    
    // A SavedModel may store the name of the initialization op to run in the
    // in the SignatureDef (v2) or a collection (v1). If an init_op collection
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 12 20:05:11 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessScenarioPageGenerator.java

                    end();
                    body();
                        h2().text("Flaky report for " + history.getDisplayName()).end();
                        getGraphs(history).forEach(graph -> graph.render(this));
                    end();
                end();
            }
            };
            // @formatter:on
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.h

    // "signatures_map", which is keyed by the "signature" key
    // (https://github.com/tensorflow/tensorflow/blob/372918decee7f558b3c194b04f77c20dcc679a31/tensorflow/core/protobuf/meta_graph.proto#L89),
    // and maps to the SignatureDefFunction node in the SavedObjectGraph.
    struct PartiallyRevivedObjects {
      gtl::FlatMap<int, std::unique_ptr<Variable>> variables;
      gtl::FlatMap<int, std::unique_ptr<Asset>> assets;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 23:21:36 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

            dependsOn(task3, [task4])
            dependsOn(transform1, [task4])
    
            when:
            collector.collectNodes([task1, task2, task3, task4, transform1])
            def graph = collector.getGraph()
            def nodes = graph.getNodes(PlannedNodeGraph.DetailLevel.LEVEL1_TASKS) as List<TestPlannedNode>
            then:
            nodes.size() == 4
            nodes*.nodeIdentity*.nodeType =~ [NodeType.TASK]
            verifyAll {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace mlir::quant {
    
    // Converts arguments of the @main function that are bound to
    // `tf_saved_model::AssetOp`s into regular tensor args. Returns `AsestFileDef`s
    // that associates the arg with the asset.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 01:45:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionGraphRenderer.java

    import java.util.List;
    import java.util.stream.IntStream;
    
    import static java.util.stream.Collectors.toList;
    
    public interface PerformanceExecutionGraphRenderer {
        default List<ExecutionGraph> getGraphs(PerformanceTestHistory history) {
            List<PerformanceTestExecution> executions = history.getExecutions()
                .stream()
                .filter(this::sameCommit)
                .filter(this::hasTwoDataLines)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/signature_def_function.h

    // the input/output names of the SignatureDef:
    // https://github.com/tensorflow/tensorflow/blob/9bcefa44cd335c1db4a703a13da09f29ae1bbdb2/tensorflow/core/protobuf/meta_graph.proto#L318-L321
    class SignatureDefFunction {
     public:
      virtual ~SignatureDefFunction() = default;
    
      // Creates a "Call" Op used to execute the function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/bundle_v2.h

    #include <memory>
    #include <string>
    
    #include "absl/container/flat_hash_set.h"
    #include "tensorflow/core/framework/graph_debug_info.pb.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    #include "tensorflow/core/protobuf/trackable_object_graph.pb.h"
    #include "tensorflow/core/util/tensor_bundle/tensor_bundle.h"
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:32:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

    syntax = "proto3";
    
    package tensorflow.quantization;
    
    import "tensorflow/core/framework/graph.proto";
    import "tensorflow/core/protobuf/meta_graph.proto";
    import "tensorflow/core/protobuf/saver.proto";
    
    option cc_enable_arenas = true;
    
    // Represents an exported TensorFlow model. It consists of a GraphDef and extra
    // metadata required for building a SavedModel. This message is primarily used
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/saved_model_api.h

      // Retrieve a SignatureDefFunction from a SavedModel, using the key of the
      // SignatureDef map:
      // https://github.com/tensorflow/tensorflow/blob/69b08900b1e991d84bce31f3b404f5ed768f339f/tensorflow/core/protobuf/meta_graph.proto#L89
      virtual Status GetSignatureDefFunction(const std::string& signature_def_key,
                                             SignatureDefFunction** function) = 0;
    
      virtual SavedModelV2Bundle* GetBundle() = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 04 17:05:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top