Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rubyclass (0.16 sec)

  1. RELEASE.md

            please use `optimizer._learning_rate`.
        *   **You implemented a custom optimizer based on the old optimizer.**
            Please set your optimizer to subclass
            `tf.keras.optimizer.legacy.XXX`. If you want to migrate to the new
            optimizer and find it does not support your optimizer, please file
            an issue in the Keras GitHub repo.
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. tensorflow/c/eager/abstract_function.h

    class AbstractFunction : public core::RefCounted {
     protected:
      enum AbstractFunctionKind { kGraph, kMlir };
      explicit AbstractFunction(AbstractFunctionKind kind) : kind_(kind) {}
    
     public:
      // Returns which subclass is this instance of.
      AbstractFunctionKind getKind() const { return kind_; }
    
      // Returns the AbstractFunction as a FunctionDef.
      virtual Status GetFunctionDef(const FunctionDef**) = 0;
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Mar 04 19:49:06 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top