Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shape_size (0.56 sec)

  1. tensorflow/c/c_api.cc

          LIST_CASE(b, TF_ATTR_BOOL);
          LIST_CASE(type, TF_ATTR_TYPE);
          LIST_CASE(
              shape, TF_ATTR_SHAPE, metadata.total_size = 0;
              for (int i = 0; i < attr->list().shape_size(); ++i) {
                const auto& s = attr->list().shape(i);
                metadata.total_size += s.unknown_rank() ? 0 : s.dim_size();
              });
          LIST_CASE(tensor, TF_ATTR_TENSOR);
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue May 13 06:30:43 UTC 2025
    - 102.3K bytes
    - Viewed (0)
  2. RELEASE.md

            (SavedModelEstimator).
        *   Adds leaf index modes as an argument.
        *   Allow a different output shape from the input in
            tf.contrib.image.transform.
        *   Change the state_size order of the StackedRNNCell to be natural order.
            To keep the existing behavior, user can add reverse_state_order=True
            when constructing the StackedRNNCells.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
Back to top