Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for probabilities (0.19 sec)

  1. tensorflow/c/experimental/ops/nn_ops.cc

    //
    // Description:
    //   Unlike `SoftmaxCrossEntropyWithLogits`, this operation does not accept
    //   a matrix of label probabilities, but rather a single label per row
    //   of features.  This label is considered to have probability 1.0 for the
    //   given row.
    //
    //   Inputs are the logits, not probabilities.
    Status SparseSoftmaxCrossEntropyWithLogits(AbstractContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. src/internal/zstd/fse.go

    		return 0, 0, err
    	}
    
    	return accuracyLog, int(br.off), nil
    }
    
    // buildFSE builds an FSE decoding table from a list of probabilities.
    // The probabilities are in norm. next is scratch space. The number of bits
    // in the table is tableBits.
    func (r *Reader) buildFSE(off int, norm []int16, table []fseEntry, tableBits int) error {
    	tableSize := 1 << tableBits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/math/big/prime.go

    //
    // ProbablyPrime is 100% accurate for inputs less than 2⁶⁴.
    // See Menezes et al., Handbook of Applied Cryptography, 1997, pp. 145-149,
    // and FIPS 186-4 Appendix F for further discussion of the error probabilities.
    //
    // ProbablyPrime is not suitable for judging primes that an adversary may
    // have crafted to fool the test.
    //
    // As of Go 1.8, ProbablyPrime(0) is allowed and applies only a Baillie-PSW test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/HashTestUtils.java

                        + count
                        + " trials");
              }
            }
          }
        }
      }
    
      /**
       * Test for avalanche with 2-bit deltas. Most probabilities of output bit(j) differing are well
       * within 50%.
       */
      static void check2BitAvalanche(HashFunction function, int trials, double epsilon) {
        Random rand = new Random(0);
        int keyBits = 32;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    	recorder       events.EventRecorder
    
    	serviceHealthServer healthcheck.ServiceHealthServer
    	healthzServer       *healthcheck.ProxierHealthServer
    
    	// Since converting probabilities (floats) to strings is expensive
    	// and we are using only probabilities in the format of 1/n, we are
    	// precomputing some number of those and cache for future reuse.
    	precomputedProbabilities []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. RELEASE.md

            `tf.initializers = tf.keras.initializers` & `tf.optimizers =
            tf.keras.optimizers`.
        *   Updates binary cross entropy logic in Keras when input is probabilities.
            Instead of converting probabilities to logits, we are using the cross
            entropy formula for probabilities.
        *   Added public APIs for `cumsum` and `cumprod` keras backend functions.
        *   Add support for temporal sample weight mode in subclassed models.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Kube-proxy iptables probabilities are now more granular and will result in better distribution beyond 319 endpoints. ([#83599](https://github.com/kubernetes/kubernetes/pull/83599), [@robscott](https://github.com/robscott))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    Unlike `SoftmaxCrossEntropyWithLogits`, this operation does not accept
    a matrix of label probabilities, but rather a single label per row
    of features.  This label is considered to have probability 1.0 for the
    given row.
    
    Inputs are the logits, not probabilities.
      }];
    
      let arguments = (ins
        Arg<TF_FloatTensor, [{batch_size x num_classes matrix}]>:$features,
    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