- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_CheckpointReaderGetVariable (0.28 sec)
-
tensorflow/c/c_api_experimental.h
TF_CAPI_EXPORT extern int TF_CheckpointReaderHasTensor( TF_CheckpointReader* reader, const char* name); // Get the variable name at the given index TF_CAPI_EXPORT extern const char* TF_CheckpointReaderGetVariable( TF_CheckpointReader* reader, int index); // Get the number of variable in the checkpoint TF_CAPI_EXPORT extern int TF_CheckpointReaderSize(TF_CheckpointReader* reader); // Get the DataType of a variable
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 15.1K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.cc
int TF_CheckpointReaderHasTensor(TF_CheckpointReader* reader, const char* name) { return reader->HasTensor(name); } const char* TF_CheckpointReaderGetVariable(TF_CheckpointReader* reader, int index) { return reader->variable_list[index].c_str(); } int TF_CheckpointReaderSize(TF_CheckpointReader* reader) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 29.5K bytes - Viewed (0)