@@ -93,14 +93,15 @@ public class HybridizationParameters {
9393
9494 /**
9595 * True iff this {@link Function}'s {@link decoratorsType} has parameter jit_compile and deprecated name experimental_compile. For
96- * more information, you can see this <a href="https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/function">URL</a>.
96+ * more information, you can see this
97+ * <a href="https://tensorflow.org/versions/r2.9/api_docs/python/tf/function#experimental_compile">URL</a>.
9798 */
9899 private boolean jitCompileParamExists ;
99100
100101 /**
101102 * True iff this {@link Function}'s {@link decoratorsType} has parameter reduce_retracing and deprecated name
102103 * experimental_relax_shapes. For more information, you can see this
103- * <a href="https://www. tensorflow.org/versions/r2.9/api_docs/python/tf/function">URL</a>.
104+ * <a href="https://tensorflow.org/versions/r2.9/api_docs/python/tf/function#experimental_relax_shapes ">URL</a>.
104105 */
105106 private boolean reduceRetracingParamExists ;
106107
@@ -245,24 +246,26 @@ public boolean hasReduceRetracingParam() {
245246 }
246247
247248 /**
248- * True iff this {@link Function}'s {@link decoratorsType} has parameter experimental_compile.
249+ * True iff this {@link Function}'s {@link decoratorsType} has parameter experimental_compile. Since jit_compile and
250+ * experimental_compile (deprecated) have the same functionalities, when we parse these parameters together it is stored into the
251+ * same boolean variable. For more information, you can see this link
252+ * https://tensorflow.org/versions/r2.9/api_docs/python/tf/function#experimental_compile
249253 *
250254 * @return True iff this {@link Function} has parameter experimental_compile.
251255 */
252256 public boolean hasExperimentalCompileParam () {
253- // Since jit_compile and experimental_compile (deprecated) have the same functionalities, when we parse these parameters
254- // together and store it into the same boolean variable.
255257 return this .jitCompileParamExists ;
256258 }
257259
258260 /**
259- * True iff this {@link Function}'s {@link decoratorsType} has parameter experimental_relax_shapes.
261+ * True iff this {@link Function}'s {@link decoratorsType} has parameter experimental_relax_shapes. Since reduce_retracing and
262+ * experimental_relax_shapes (deprecated) have the same functionalities, when we parse these parameters together it is stored into
263+ * the same boolean variable. For more information, you can see this link
264+ * https://tensorflow.org/versions/r2.9/api_docs/python/tf/function#experimental_relax_shapes
260265 *
261266 * @return True iff this {@link Function} has parameter experimental_relax_shapes.
262267 */
263268 public boolean hasExperimentalRelaxShapesParam () {
264- // Since reduce_retracing and experimental_relax_shapes (deprecated) have the same functionalities, when we parse these
265- // parameters together and store it into the same boolean variable.
266269 return this .reduceRetracingParamExists ;
267270 }
268271
0 commit comments