Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/lite/tests/debuginfo/concrete_function_error.py

        def model(x):
          y = tf.math.betainc(x, 0.5, 1.0)  # Not supported
          return y + y
    
        func = model.get_concrete_function()
        converter = tf.lite.TFLiteConverter.from_concrete_functions([func], model)
        converter.convert()
    
    # pylint: disable=line-too-long
    
    # CHECK-LABEL: testConcreteFunctionDebugInfo
    # CHECK: error: 'tf.Betainc' op is neither a custom op nor a flex op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. RELEASE.md

        *   removed tf.string_split from v2 API
        *   Expose tf.contrib.proto.* ops in tf.io (they will exist in TF2)
        *   "Updates the TFLiteConverter API in 2.0. Changes from_concrete_function
            to from_concrete_functions."
        *   Enable tf.distribute.experimental.MultiWorkerMirroredStrategy working in
            eager mode.
        *   Support both binary and -1/1 label input in v2 hinge and squared hinge
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top