Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Model (0.14 sec)

  1. tensorflow/c/experimental/gradients/math_grad_test.cc

        Model MatMulModel =
            [transpose_a, transpose_b](
                AbstractContext* ctx,
                absl::Span<AbstractTensorHandle* const> inputs,
                absl::Span<AbstractTensorHandle*> outputs) -> Status {
          return ops::MatMul(ctx, inputs[0], inputs[1], &outputs[0], transpose_a,
                             transpose_b, "MatMul");
        };
    C++
    - Registered: Tue Mar 26 12:39:09 GMT 2024
    - Last Modified: Thu Apr 13 17:32:14 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/grappler/grappler.cc

        const TP_OptimizerConfigs tp_configs, const char* device_type) {
      ConfigList configs;
      // disable_model_pruning is turned off by default.
      if (tp_configs.disable_model_pruning == TF_TriState_On)
        configs.disable_model_pruning = true;
      else
        configs.disable_model_pruning = false;
      // The other configs are turned on by default.
      CONFIG_TOGGLE(implementation_selector);
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 15K bytes
    - Viewed (1)
Back to top