HomeSort by relevance Sort by last modified time
    Searched full:corpus_size (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/contrib/text/python/ops/
skip_gram_ops.py 50 corpus_size=None,
112 `vocab_min_count` and `corpus_size` should be in the same units as this.
120 the `corpus_size`) will be randomly down-sampled. Reasonable starting
122 `vocab_freq_table` and `corpus_size` must also be specified. See Eq. 5
124 corpus_size: (Optional) `int`, `float`, or scalar `Tensor` specifying the
146 `vocab_subsampling`, or `corpus_size` is specified. If `vocab_subsampling`
147 and `corpus_size` are not both present or both absent.
152 corpus_size is not None):
155 "vocab_subsampling={}, or corpus_size={} is not None. These settings "
157 vocab_min_count, vocab_subsampling, corpus_size))
    [all...]
skip_gram_ops_test.py 299 # or corpus_size is specified.
308 text.skip_gram_sample(dummy_input, vocab_freq_table=None, corpus_size=100)
314 corpus_size=100)
316 # vocab_subsampling and corpus_size must both be present or absent.
324 corpus_size=100)
330 corpus_size=None)
350 corpus_size=None,
361 corpus_size=None,
374 corpus_size=None,
405 corpus_size=math_ops.reduce_sum(values)
    [all...]
  /external/brotli/c/enc/
compress_fragment_two_pass.c 495 double corpus_size = (double)input_size; local
496 if (num_literals < MIN_RATIO * corpus_size) {
500 const double max_total_bit_cost = corpus_size * 8 * MIN_RATIO / SAMPLE_RATE;

Completed in 220 milliseconds