Examples of Zipf


Examples of org.apache.hadoop.zebra.tfile.RandomDistribution.Zipf

  public Dictionary(Random random, int entries, int minWordLen, int maxWordLen,
      int freqRatio) {
    Binomial binomial = new Binomial(random, minWordLen, maxWordLen, BINOMIAL_P);
    lead = Math.max(0,
        (int) (entries / (Math.exp(Math.log(freqRatio) / SIGMA) - 1)) - 1);
    zipf = new Zipf(random, lead, entries + lead, 1.1);
    dict = new String[entries];
    // Use a set to ensure no dup words in dictionary
    Set<String> dictTmp = new HashSet<String>();
    for (int i = 0; i < entries; ++i) {
      while (true) {
View Full Code Here

Examples of org.apache.hadoop.zebra.tfile.RandomDistribution.Zipf

  public Dictionary(Random random, int entries, int minWordLen, int maxWordLen,
      int freqRatio) {
    Binomial binomial = new Binomial(random, minWordLen, maxWordLen, BINOMIAL_P);
    lead = Math.max(0,
        (int) (entries / (Math.exp(Math.log(freqRatio) / SIGMA) - 1)) - 1);
    zipf = new Zipf(random, lead, entries + lead, 1.1);
    dict = new String[entries];
    // Use a set to ensure no dup words in dictionary
    Set<String> dictTmp = new HashSet<String>();
    for (int i = 0; i < entries; ++i) {
      while (true) {
View Full Code Here

Examples of sdsu.algorithms.data.Zipf

    class ZipfRandomGenerator extends RandomGenerator {
        Zipf z;

        public ZipfRandomGenerator(int a, int c) {
            avgsz = a;
            z = new Zipf(c);        
        }
View Full Code Here

Examples of sdsu.algorithms.data.Zipf

    class ZipfRandomGenerator extends RandomGenerator {
        Zipf z;

        public ZipfRandomGenerator(int a, int c) {
            avgsz = a;
            z = new Zipf(c);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.