tensorflow_transform/tf_metadata/schema_utils_test_cases.py [670:696]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          'ascii_proto':
              """
              feature {
                name: "value"
                type: FLOAT
              }
              tensor_representation_group {
                key: ""
                value {
                  tensor_representation {
                    key: "x"
                    value {
                      ragged_tensor {
                        feature_path { step: "value" }
                        partition { uniform_row_length: 4}
                      }
                    }
                  }
                }
              }
            """,
          'feature_spec': {
              'x':
                  tf.io.RaggedFeature(
                      tf.float32,
                      value_key='value',
                      partitions=[
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tensorflow_transform/tf_metadata/schema_utils_test_cases.py [746:781]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          'ascii_proto':
              """
              feature {
                name: "value"
                type: FLOAT
              }
              feature {
                name: "row_length_1"
                type: INT
              }
              feature {
                name: "row_length_2"
                type: INT
              }
              tensor_representation_group {
                key: ""
                value {
                  tensor_representation {
                    key: "x"
                    value {
                      ragged_tensor {
                        feature_path { step: "value" }
                        partition { row_length: "row_length_1"}
                        partition { row_length: "row_length_2"}
                      }
                    }
                  }
                }
              }
            """,
          'feature_spec': {
              'x':
                  tf.io.RaggedFeature(
                      tf.float32,
                      value_key='value',
                      partitions=[
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



