/external/harfbuzz_ng/src/ |
gen-vowel-constraints.py | 115 for body, labels in sorted (cases.items (), key=lambda b_ls: sorted (b_ls[1])[0]): 116 for i, cp in enumerate (sorted (labels)): 122 if len (labels) % 4 != 0:
|
/external/skia/gm/ |
flippity.cpp | 92 const SkTArray<sk_sp<SkImage>>& labels, 94 SkASSERT(kNumLabels == labels.count()); 104 canvas.drawImage(labels[i], 158 // Draw the reference image and the four corner labels in the matrix's coordinate space 186 // draw the labels
|
/external/skqp/gm/ |
flippity.cpp | 92 const SkTArray<sk_sp<SkImage>>& labels, 94 SkASSERT(kNumLabels == labels.count()); 104 canvas.drawImage(labels[i], 158 // Draw the reference image and the four corner labels in the matrix's coordinate space 186 // draw the labels
|
/external/tensorflow/tensorflow/contrib/factorization/python/ops/ |
gmm.py | 154 def _model_fn(features, labels, mode, config): 156 assert labels is None, labels
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
composable_model_test.py | 45 def _base_model_fn(features, labels, mode, params): 69 labels=labels,
|
linear.py | 109 def _linear_model_fn(features, labels, mode, params, config=None): 114 labels: `Tensor` of shape [batch_size, 1] or [batch_size] labels of 189 labels=labels, 194 def sdca_model_fn(features, labels, mode, params): 199 labels: `Tensor` of shape [batch_size, 1] or [batch_size] labels of 266 labels, global_step) 273 labels=labels [all...] |
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/ |
TensorFlowObjectDetectionAPIModel.java | 51 private Vector<String> labels = new Vector<String>(); field in class:TensorFlowObjectDetectionAPIModel 86 d.labels.add(line); 194 new Recognition("" + i, labels.get((int) outputClasses[i]), outputScores[i], detection));
|
/external/tensorflow/tensorflow/examples/speech_commands/ |
label_wav.cc | 55 // Takes a file name, and loads a list of labels from it, one per line, and 60 return tensorflow::errors::NotFound("Labels file ", file_name, 103 string labels = ""; local 110 Flag("labels", &labels, "path to file containing labels"), 138 Status read_labels_status = ReadLabelsFile(labels, &labels_list);
|
test_streaming_accuracy.cc | 23 and a text file listing the labels of each sound along with the time they occur. 43 The easiest way to get an audio file and labels to test with is by using the 59 --labels=/tmp/speech_commands_train/conv_labels.txt \ 115 // Takes a file name, and loads a list of labels from it, one per line, and 120 return tensorflow::errors::NotFound("Labels file '", file_name, 136 string labels = ""; local 151 Flag("labels", &labels, "path to file containing labels"), 153 "path to file containing correct times and labels of words in the [all...] |
/external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/ |
TFLiteObjectDetectionAPIModel.java | 58 private Vector<String> labels = new Vector<String>(); field in class:TFLiteObjectDetectionAPIModel 114 d.labels.add(line); 207 // in label file and class labels start from 1 to number_of_classes+1, 213 labels.get((int) outputClasses[0][i] + labelOffset),
|
/external/tensorflow/tensorflow/python/eager/ |
tape_test.py | 152 labels=y)[0] 154 labels = constant_op.constant([0]) 156 grad, = backprop.gradients_function(fn, [0])(logits, labels)
|
/external/u-boot/scripts/dtc/ |
treesource.c | 130 /* Wrap up any labels at the end of the value */ 159 /* Wrap up any labels at the end of the value */ 187 /* Wrap up any labels at the end of the value */ 243 for_each_label(tree->labels, l) 252 for_each_label(prop->labels, l) 275 for_each_label(re->labels, l)
|
/external/mdnsresponder/Clients/ |
dns-sd.c | 344 int labels = 0, depth = 0, i, initial = 0; local 367 // 2. Count the labels 368 while (replyDomain && *replyDomain && labels < MAX_LABELS) 370 label[labels++] = replyDomain; 374 // 3. Decide if we're going to clump the last two or three labels (e.g. "apple.com", or "nicta.com.au") 375 if (labels >= 3 && replyDomain - label[labels-1] <= 3 && label[labels-1] - label[labels-2] <= 4) initial = 3; 376 else if (labels >= 2 && replyDomain - label[labels-1] <= 4) initial = 2 [all...] |
/external/antlr/runtime/Ruby/lib/antlr3/tree/ |
wizard.rb | 94 # iterate through the tree and extract nodes with pattern labels 95 wizard.visit(deep_node, '(MULT %n:NUMBER %v:.)') do |node, parent, local_index, labels| 96 printf "n = %p\n, v = %p\n", labels['n'], labels['v'] 410 visit( tree, pattern.type ) do | tree, parent, child_index, labels | 411 labels = match!( tree, pattern ) and 412 yield( tree, parent, child_index, labels ) 422 def match!( tree, pattern, labels = {} ) 429 labels[ pattern.label ] = tree if labels && pattern.labe [all...] |
/external/python/cpython3/Lib/ |
mailbox.py | [all...] |
/external/v8/src/torque/ |
implementation-visitor.cc | 663 std::vector<Label*> labels = {true_label, false_label}; local 665 if (GenerateExpressionBranch(stmt->condition, labels, blocks, done_label)) { 927 std::vector<Label*> labels; local 1041 std::vector<Label*> labels = {body_label, exit_label}; local [all...] |
/external/v8/src/ast/ |
ast.h | 255 // statement. The BreakableStatement AST node carries a list of labels, any of 259 // Since we don't want to attach a list of labels to all kinds of statements, we 266 // This optimization makes it harder to detect invalid continue labels, see the 276 // A list of all labels declared on the path up to the previous 280 // labels() of the ForStatement will be l1. 281 // labels() of the Block { l4: ... } will be l2, l3. 282 // labels() of the Block { s } will be l4, l5. 283 ZonePtrList<const AstRawString>* labels() const; 310 inline ZonePtrList<const AstRawString>* labels() const; 314 labels() == nullptr; // Good enough as an approximation.. 358 inline ZonePtrList<const AstRawString>* Block::labels() const { function in class:v8::internal::Block 465 ZonePtrList<const AstRawString>* labels() const { return labels_; } function in class:v8::internal::IterationStatement 820 ZonePtrList<const AstRawString>* labels() const { return labels_; } function in class:v8::internal::final [all...] |
/external/ImageMagick/coders/ |
ps2.c | 391 **labels; 727 labels=(char **) NULL; 730 labels=StringToList(value); 731 if (labels != (char **) NULL) 733 for (i=0; labels[i] != (char *) NULL; i++) 736 labels[i]); 738 labels[i]=DestroyString(labels[i]); 740 labels=(char **) RelinquishMagickMemory(labels); 385 **labels; local [all...] |
ps3.c | 826 **labels, 820 **labels, local [all...] |
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
AST.stg | 174 # token labels: <referencedTokenLabels; separator=", "> 175 # rule labels: <referencedRuleLabels; separator=", "> 176 # token list labels: <referencedTokenListLabels; separator=", "> 177 # rule list labels: <referencedRuleListLabels; separator=", "> 178 # wildcard labels: <[referencedWildcardLabels,referencedWildcardListLabels]; separator=", ">
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python3/ |
AST.stg | 174 # token labels: <referencedTokenLabels; separator=", "> 175 # rule labels: <referencedRuleLabels; separator=", "> 176 # token list labels: <referencedTokenListLabels; separator=", "> 177 # rule list labels: <referencedRuleListLabels; separator=", "> 178 # wildcard labels: <[referencedWildcardLabels,referencedWildcardListLabels]; separator=", ">
|
/external/tensorflow/tensorflow/python/keras/ |
losses.py | 170 """Computes the mean of squares of errors between labels and predictions. 200 """Computes the mean of absolute difference between labels and predictions. 290 """Computes the crossentropy loss between the labels and predictions. 317 label_smoothing: Float in [0, 1]. If > `0` then smooth the labels. 339 """Computes the crossentropy loss between the labels and predictions. 342 We expect labels to be provided in a `one_hot` representation. If you want to 343 provide labels as integers, please use `SparseCategoricalCrossentropy` loss. 394 """Computes the crossentropy loss between the labels and predictions. 397 We expect labels to be provided as integers. If you want to provide labels [all...] |
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/ |
TimelineApplet.java | 89 Hashtable<Integer, JLabel> labels = new Hashtable<Integer, JLabel>(); local 90 labels.put(-300, new JLabel("-3")); 91 labels.put(-200, new JLabel("-2")); 92 labels.put(-100, new JLabel("-1")); 93 labels.put(0, new JLabel("0")); 94 labels.put(100, new JLabel("1")); 95 labels.put(200, new JLabel("2")); 96 labels.put(300, new JLabel("3")); 97 for (JLabel lbl : labels.values()) lbl.setForeground(Theme.MAIN_FOREGROUND); 98 speedSlider.setLabelTable(labels); [all...] |
/external/v8/src/parsing/ |
parser-base.h | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
mailbox.py | [all...] |