Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0x0000 (0.86 sec)

  1. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

            value {
              list {
              }
            }
          }
          attr {
            key: "config_proto"
            value {
              s: "\202\001\0008\0012\002J\000\n\007\n\003CPU\020\001\n\007\n\003GPU\020\000"
            }
          }
          attr {
            key: "f"
            value {
              func {
                name: "__inference_signature_wrapper_13"
              }
            }
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      indices = [0, 2, -1, 1]
      depth = 3
      on_value = 5.0
      off_value = 0.0
      axis = -1
    ```
    
    Then output is `[4 x 3]`:
    ```
    output =
      [5.0 0.0 0.0]  // one_hot(0)
      [0.0 0.0 5.0]  // one_hot(2)
      [0.0 0.0 0.0]  // one_hot(-1)
      [0.0 5.0 0.0]  // one_hot(1)
    ```
    
    Suppose that
    ```
      indices = [0, 2, -1, 1]
      depth = 3
      on_value = 0.0
      off_value = 3.0
    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