Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UNNORMALIZED (2.65 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Draws samples from a categorical distribution.";
    
      let description = [{
    The generated values will have a categorical distribution based on the `logits`
    or unnormalized log-probabilities provided for all classes.
      }];
    
      let arguments = (ins
        TFL_FpTensor:$logits,
        TFL_I32Tensor:$num_samples,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Draws samples from a multinomial distribution.";
    
      let arguments = (ins
        Arg<TF_IntOrFpTensor, [{2-D Tensor with shape `[batch_size, num_classes]`.  Each slice `[i, :]`
    represents the unnormalized log probabilities for all classes.}]>:$logits,
        Arg<TF_Int32Tensor, [{0-D.  Number of independent samples to draw for each row slice.}]>:$num_samples,
    
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed,
    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