tensorflow-core/tensorflow-core-api/src/main/java/org/tensorflow/op/core/Constant.java [1115:1121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static Constant<TString> tensorOf(Scope scope, String[][] data) {
    NdArray<String> src = NdArrays.ofObjects(String.class, StdArrays.shapeOf(data));
    StdArrays.copyTo(data, src);
    try (TString value = TString.tensorOf(src)) {
      return create(scope, value);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tensorflow-core/tensorflow-core-api/src/main/java/org/tensorflow/op/core/Constant.java [1130:1136]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static Constant<TString> tensorOf(Scope scope, String[][][] data) {
    NdArray<String> src = NdArrays.ofObjects(String.class, StdArrays.shapeOf(data));
    StdArrays.copyTo(data, src);
    try (TString value = TString.tensorOf(src)) {
      return create(scope, value);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



