Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for epilson (0.23 sec)

  1. tensorflow/c/eager/gradient_checker.cc

      for (int i = 0; i < num_elems; i++) {
        // Get relative epsilon value
        float epsilon = theta_data[i] == 0 ? 1e-4 : std::abs(theta_data[i] * 1e-4);
        AbstractTensorHandlePtr two_eps;
        {
          AbstractTensorHandle* two_eps_raw = nullptr;
          TF_RETURN_IF_ERROR(TestScalarTensorHandle<float, TF_FLOAT>(
              ctx, 2 * epsilon, &two_eps_raw));
          two_eps.reset(two_eps_raw);
        }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  2. RELEASE.md

          with `UpdateEmbeddingCallback` the behavior of the layer would be same as
          `keras.layers.Embedding`.
    *  `keras.optimizers.Adam`
        * Added the option to set adaptive epsilon to match implementations with Jax
          and PyTorch equivalents.
    
    ### Breaking Changes
    
    * <DOCUMENT BREAKING CHANGES HERE>
    * <THIS SECTION SHOULD CONTAIN API, ABI AND BEHAVIORAL BREAKING CHANGES>
    
    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