Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 140 for checkpoint2 (0.29 sec)

  1. tensorflow/cc/saved_model/fingerprinting_test.cc

      EXPECT_EQ(fingerprint_def.signature_def_hash(), 15570736222402453744U);
      EXPECT_EQ(fingerprint_def.saved_object_graph_hash(), 3678101440349108924U);
      // TODO(b/242348400): The checkpoint hash is non-deterministic, so we cannot
      // check its value here.
      EXPECT_GT(fingerprint_def.checkpoint_hash(), 0);
    }
    
    // Compare the fingerprints of two models saved by calling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDuplicateShapeDeterminingConstantsPass();
    
    // Creates a pass that creates a RestoreV2 op in the initializer function with
    // type "restore_op" that initializes variables from the checkpoint. It finds
    // tf.AssignVariableOp(tf.VarHandleOp, tf.Const) patterns in the initializer
    // function and replaces tf.Consts with the results of RestoreV2.
    std::unique_ptr<OperationPass<ModuleOp>> CreateInsertRestoreOpPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

    func::FuncOp GetInitializerFunction(ModuleOp module_op,
                                        StringRef initializer_type);
    
    // Checks if the module restores variables from a Checkpoint.
    bool IsRestoreGraph(ModuleOp module);
    
    }  // namespace tf_saved_model
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/checkpoint-restore/go-criu/v5/LICENSE

    = vendor/github.com/checkpoint-restore/go-criu/v5 licensed under: =
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 20 06:51:59 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

        auto* var_ptr = GetVariableFromSession(var_op, handle.device(), mgr);
        if (!var_ptr) {
          // If no value in session, then just skip this variable.
          // This can happen if the variable is not saved in checkpoint.
          // For example, when the variable is created on every call.
          continue;
        }
        tensorflow::core::RefCountPtr<tensorflow::Var> var(var_ptr);
        auto* tensor = var_ptr->tensor();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    	})
    	// Now test a successful checkpoint succeeds
    	setPodByNameFunc(fw, podNamespace, podName, expectedContainerName)
    	t.Run("checkpointing succeeds", func(t *testing.T) {
    		resp, err := http.Post(fw.testHTTPServer.URL+"/checkpoint/"+podNamespace+"/"+podName+"/"+expectedContainerName, "", nil)
    		if err != nil {
    			t.Errorf("Got error POSTing: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    		}
    	}
    
    	// For now, we leave cleanup of the *entire* directory up to the Handler
    	// (even though we should in theory be able to just wipe the whole directory)
    	// because the Handler stores its checkpoint file (amongst others) in here.
    	if err := s.rhandler.CleanupPluginDirectory(s.socketDir); err != nil {
    		klog.ErrorS(err, "Failed to cleanup the device plugin directory", "directory", s.socketDir)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_experimental.h

                                                          const char* errMsg);
    
    // TF_NewCheckpointReader() return the CheckpointReader that can be use to
    // investigate or load the variable from the checkpoint file
    typedef struct TF_CheckpointReader TF_CheckpointReader;
    TF_CAPI_EXPORT extern TF_CheckpointReader* TF_NewCheckpointReader(
        const char* filename, TF_Status* status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistry.java

         * <p>
         * This method effectively validates that all references bind (i.e. all rules are executable).
         * It should be called when the model registry is at some kind of logical checkpoint, in that it is reasonable
         * to expect that all rules have been discovered.
         * <p>
         * However, it does not prevent rules from being added after being called.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        because the tensors are loaded asynchronously.
      }];
    
      let arguments = (ins
        Arg<TF_StrTensor, [{Must have a single element.  The prefix of a V2 checkpoint.}]>:$prefix,
        Arg<TF_StrTensor, [{shape {N}.  The names of the tensors to be restored. This is tensor name in the model.}]>:$tensor_names,
        Arg<TF_StrTensor, [{shape {N}.  The slice specs of the tensors to be restored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top