Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ScaleAndTranslate (0.83 sec)

  1. tensorflow/cc/gradients/image_grad_test.cc

                  Input translation, const string& kernel_type, bool antialias,
                  Output* x, Output* y) {
        *x = Const<T>(scope_, x_data);
        *y = ScaleAndTranslate(scope_, *x, y_shape, scale, translation,
                               ScaleAndTranslate::KernelType(kernel_type)
                                   .Antialias(antialias)
                                   .Antialias(antialias));
        TF_ASSERT_OK(scope_.status());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/image_grad.cc

      grad_outputs->push_back(NoGradient());
      grad_outputs->push_back(NoGradient());
      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    
    REGISTER_GRADIENT_OP("ScaleAndTranslate", ScaleAndTranslateGradHelper);
    
    Status CropAndResizeGradHelper(const Scope& scope, const Operation& op,
                                   const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 11 00:29:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top