Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reuse (2.73 sec)

  1. tensorflow/c/eager/custom_device_test.cc

      std::unique_ptr<TFE_Op, decltype(&TFE_DeleteOp)> reused_op(
          TFE_NewOp(context.get(), "Identity", status.get()), TFE_DeleteOp);
      TFE_OpReset(reused_op.get(), "Identity", custom_device_name, status.get());
      ASSERT_TRUE(TF_GetCode(status.get()) == TF_OK) << TF_Message(status.get());
      ASSERT_EQ(tensorflow::string(TFE_OpGetDevice(reused_op.get(), status.get())),
                tensorflow::string(custom_device_name));
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 27 23:39:24 GMT 2020
    - 18.4K bytes
    - Viewed (0)
  2. RELEASE.md

        *   Added Adafactor optimizer `tf.keras.optimizers.Adafactor`.
        *   Added `warmstart_embedding_matrix` to `tf.keras.utils`.
            This utility can be used to warmstart an embeddings matrix so you
            reuse previously-learned word embeddings when working with a new set
            of words which may include previously unseen words (the embedding
            vectors for unseen words will be randomly initialized).
    
    *   `tf.Variable`:
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top