Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shown (0.04 sec)

  1. RELEASE.md

        *   Add `tf.keras.layers.AbstractRNNCell` as the preferred implementation
            for RNN cells in TF v2. User can use it to implement RNN cells with
            custom behavior.
        *   Keras training and validation curves are shown on the same plot when
            using the TensorBoard callback.
        *   Switched Keras `fit/evaluate/predict` execution to use only a single
            unified path by default unless eager execution has been explicitly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    end and stride, while the new_axis_mask bit is set.
    
    4. `...` grab the full ranges from as many dimensions as needed to
    fully specify a slice for every dimension of the input shape.
    
    5. `:-3:-1` shows the use of negative indices. A negative index `i` associated
    with a dimension that has shape `s` is converted to a positive index
    `s + i`. So `-1` becomes `s-1` (i.e. the last element). This conversion
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top