/development/samples/AndroidBeamDemo/ |
_index.html | 2 application beams a simple message from one device to another when they are in close enough proximity. This
|
/external/tensorflow/tensorflow/contrib/seq2seq/kernels/ |
beam_search_ops_gpu.cu.cc | 33 const T end_token, T* beams) { 47 beams[initial_beam_ix] = ldg(step_ids + initial_beam_ix); 54 beams[level_beam_ix] = -1; 58 beams[level_beam_ix] = ldg(step_ids + level_parent_ix); 70 beams[level_beam_ix] = end_token; 71 } else if (beams[level_beam_ix] == end_token) { 86 const T end_token, typename TTypes<T, 3>::Tensor beams) { 91 beams.device(d) = beams.constant(end_token); 102 beams.data()) [all...] |
beam_search_ops.cc | 81 Tensor* beams; variable 82 OP_REQUIRES_OK(ctx, ctx->allocate_output(0, step_ids_shape, &beams)); 88 typename TTypes<T, 3>::Tensor beams_t(beams->tensor<T, 3>()); 111 const int32 end_token, TTypes<int32, 3>::Tensor beams) { 115 beams.setConstant(end_token); 127 beams(max_seq_len_b - 1, batch, beam) = 138 beams(level, batch, beam) = step_ids(level, batch, parent); 147 beams(time, batch, beam) = end_token; 148 } else if (beams(time, batch, beam) == end_token) { 177 typename TTypes<T, 3>::Tensor beams); \ [all...] |
beam_search_ops.h | 35 const T end_token, typename TTypes<T, 3>::Tensor beams);
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/ |
beam_search_ops_test.py | 38 # (max_time = 4, batch_size = 1, beams = 3) 47 beams = beam_search_ops.gather_tree( 53 self.assertAllEqual(expected_result, beams.eval()) 56 # (batch_size = 1, max_time = 4, beams = 3) 65 beams = beam_search_ops.gather_tree( 73 _ = beams.eval() 80 # (max_time = 4, batch_size = 1, beams = 3) 91 beams = beam_search_ops.gather_tree( 97 self.assertAllEqual(expected_result, beams.eval()) 112 beams = beam_search_ops.gather_tree [all...] |
/external/tensorflow/tensorflow/contrib/seq2seq/ops/ |
beam_search_ops.cc | 30 .Output("beams: T") 54 Calculates the full beams from the per-step ids and parent beam ids. 69 beams: `[max_time, batch_size, beam_width]`.
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/ |
beam_search_decoder.py | 69 `output_time_major` is True). Beams are ordered from best to worst. 186 beam_width: Python integer, the number of beams. 261 """The BeamSearchDecoder shuffles its beams and their finished state. 337 # Get max_sequence_length across all beams for each batch. 350 """Merges the tensor from a batch of beams into a batch by beams. 380 """Splits the tensor from a batch by beams into a batch of beams. 421 """Maybe splits the tensor from a batch by beams into a batch of beams [all...] |
decoder.py | 122 Some decoders, however, shuffle batches / beams between time steps and
|
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/ |
HistogramView.java | 52 private final int mMaxNumberOfBeams = 202; // the max amount of beams to display on the screen 102 int range; // the number of beams that's going to be displayed on histogram 119 // if there are more beams than allowed to be displayed on screen, 120 // put beams into buckets 219 // if mNumberOfXLabel exceeds the total beams that's going to have, reduce its value 246 //add a vertical line to indicate label's corresponding beams 263 // if mNumberOfXLabel exceeds amount of beams, decrease mNumberOfXLabel
|
/external/tensorflow/tensorflow/core/util/ctc/ |
ctc_beam_search.h | 162 std::vector<std::vector<int>> beams; local 198 TopPaths(top_n, &beams, &beam_log_probabilities, merge_repeated_); 204 CHECK_EQ(beams.size(), beam_log_probabilities.size()); 208 (*output)[i][b].swap(beams[i]); 266 // Extract the beams sorted in decreasing new probability
|
ctc_decoder.h | 53 // - output.size() specifies the number of beams to be returned.
|
ctc_beam_search_test.cc | 72 // Simple dictionary used when scoring the beams to check if they are prefixes
|
/frameworks/base/core/tests/coretests/src/android/view/ |
FocusFinderTest.java | 226 // still wins while aboveInBeam's bottom edge is < out of beams' top 477 String assertMsg = String.format("Expected beams to overlap in direction %s " 484 String assertMsg = String.format("Expected beams not to overlap in direction %s "
|
/frameworks/support/customview/src/main/java/androidx/customview/widget/ |
FocusStrategy.java | 267 // For vertical directions, beams only beat up to a point: now, as 317 * Do the "beams" w.r.t the given direction's axis of rect1 and rect2 overlap? 322 * @return whether the beams overlap
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
ctc_decoder_ops_test.py | 174 """Test one batch, two beams - hibernating beam search."""
|
/frameworks/base/core/java/android/view/ |
FocusFinder.java | 520 // for vertical directions, beams only beat up to a point: 567 * Do the "beams" w.r.t the given direction's axis of rect1 and rect2 overlap? 571 * @return whether the beams overlap [all...] |
/packages/apps/Nfc/src/com/android/nfc/beam/ |
FireflyRenderer.java | 50 // and can be reused between subsequent Beams
|
/external/libpng/contrib/gregbook/ |
rpng2-x.c | 281 {2, 16, 100, 20, 0}, /* radial: ~hard radial color-beams */ 282 {2, 18, 100, 10, 2}, /* radial: soft, curved radial color-beams */ [all...] |
rpng2-win.c | 254 {2, 16, 100, 20, 0}, /* radial: ~hard radial color-beams */ 255 {2, 18, 100, 10, 2}, /* radial: soft, curved radial color-beams */ [all...] |
/external/tensorflow/tensorflow/python/ops/ |
ctc_ops.py | 243 If `merge_repeated` is `True`, merge repeated classes in the output beams.
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
Transliterator_Kanji_English.txt | [all...] |
/external/brotli/tests/testdata/ |
plrabn12.txt | 666 Shorn of his beams, or, from behind the moon,
[all...] |
/frameworks/base/packages/SystemUI/res/values/ |
dimens.xml | [all...] |
/external/tinyxml2/resources/ |
dream.xml | [all...] |
/external/ImageMagick/coders/ |
dcm.c | [all...] |