HomeSort by relevance Sort by last modified time
    Searched refs:labels (Results 176 - 200 of 725) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
dnn_test.py 77 labels = constant_op.constant([[0], [0], [0]], dtype=dtypes.int32)
80 dnn._dnn_model_fn(features, labels, model_fn.ModeKeys.TRAIN, params)
113 labels = constant_op.constant([[0], [0], [0]], dtype=dtypes.int32)
114 model_ops = dnn._dnn_model_fn(features, labels, model_fn.ModeKeys.TRAIN,
149 labels = constant_op.constant([[0], [0], [0]], dtype=dtypes.int32)
150 return dnn._dnn_model_fn(features, labels, model_fn.ModeKeys.TRAIN, params)
190 labels = constant_op.constant([[1], [0], [0], [0]])
195 return features, labels
199 labels = constant_op.constant([[1], [1], [1], [1]])
204 return features, labels
    [all...]
  /bionic/tools/bionicbb/
gmail.py 53 def get_gerrit_label(labels):
54 for label in labels:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
dis.py 64 labels = findlabels(code)
82 if i in labels: print '>>',
112 labels = findlabels(code)
120 if i in labels: print '>>',
158 labels = []
174 if label not in labels:
175 labels.append(label)
176 return labels
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
metagrammar.c 121 static label labels[19] = { variable
145 {19, labels},
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dis.py 64 labels = findlabels(code)
82 if i in labels: print '>>',
112 labels = findlabels(code)
120 if i in labels: print '>>',
158 labels = []
174 if label not in labels:
175 labels.append(label)
176 return labels
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
metagrammar.c 121 static label labels[19] = { variable
145 {19, labels},
  /external/antlr/runtime/Python/unittests/
testtreewizard.py 375 def visitor(node, parent, childIndex, labels):
389 def visitor(node, parent, childIndex, labels):
403 def visitor(node, parent, childIndex, labels):
417 def visitor(node, parent, childIndex, labels):
431 def visitor(node, parent, childIndex, labels):
445 def visitor(node, parent, childIndex, labels):
462 def visitor(node, parent, childIndex, labels):
478 def visitor(node, parent, childIndex, labels):
495 def visitor(node, parent, childIndex, labels):
501 labels['a']
    [all...]
  /external/antlr/runtime/Python3/unittests/
testtreewizard.py 374 def visitor(node, parent, childIndex, labels):
388 def visitor(node, parent, childIndex, labels):
402 def visitor(node, parent, childIndex, labels):
416 def visitor(node, parent, childIndex, labels):
430 def visitor(node, parent, childIndex, labels):
444 def visitor(node, parent, childIndex, labels):
461 def visitor(node, parent, childIndex, labels):
477 def visitor(node, parent, childIndex, labels):
493 def visitor(node, parent, childIndex, labels):
499 labels['a']
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/tool/
GrammarDanglingStateMessage.java 63 List<Label> labels = probe.getSampleNonDeterministicInputSequence(problemState); local
64 String input = probe.getInputSequenceDisplay(labels);
RecursionOverflowMessage.java 78 List<Label> labels = local
80 String input = probe.getInputSequenceDisplay(labels);
  /external/autotest/frontend/client/src/autotest/tko/
TestLabelManager.java 101 String[] labels = Utils.JSONObjectsToStrings(staticData.getData("test_labels").isArray(), local
103 if (labels.length == 0) {
109 populateLabelList(labels);
120 String[] labels = Utils.JSONObjectsToStrings(result.isArray(), "name");
121 if (labels.length == 0) {
122 notifyManager.showMessage("No labels on selected tests");
125 populateLabelList(labels);
139 private void populateLabelList(String[] labels) {
141 for (String label : labels) {
200 notifyManager.showMessage("Labels modified successfully")
    [all...]
  /external/autotest/scheduler/
rdb_hosts_unittest.py 39 @raises AssertionError: If the labels and acls don't match up after
41 wire_format conversion also converts labels and acls.
46 labels = set(['a', 'b', 'c'])
49 self.db_helper.create_host('h1', deps=labels, acls=acls))
53 self.db_helper.get_labels(name__in=labels)])
55 # The RDBServerHostWrapper keeps ids of labels/acls to perform
56 # comparison operations within the rdb, but converts labels to
58 self.assertTrue(set(server_host.labels) == label_ids and
63 self.assertTrue(set(client_host.labels) == labels an
    [all...]
  /external/boringssl/src/util/fipstools/delocate/testdata/x86_64-LabelRewrite/
in1.s 27 # References to local labels are left as-is in the first file.
39 # Local labels and their jumps are left alone.
  /external/python/cpython2/Lib/
dis.py 64 labels = findlabels(code)
82 if i in labels: print '>>',
112 labels = findlabels(code)
120 if i in labels: print '>>',
158 labels = []
174 if label not in labels:
175 labels.append(label)
176 return labels
  /external/python/cpython2/Parser/
metagrammar.c 121 static label labels[19] = { variable
145 {19, labels},
  /external/python/cpython3/Parser/
metagrammar.c 121 static label labels[19] = { variable
145 {19, labels},
  /external/tensorflow/tensorflow/core/kernels/
sparse_xent_op.h 62 typename TTypes<const Index, 1>::Tensor32Bit labels,
66 labels_(labels),
102 typename TTypes<const Index, 1>::Tensor32Bit labels,
106 labels_(labels),
158 // labels: num_classes.
163 typename TTypes<Index>::ConstVec labels,
175 typename TTypes<Index>::ConstVec labels,
224 // sum(-labels *
229 sparse_xent_helpers::To32BitConst<T>(scratch), To32Bit(labels),
234 // backprop: prob - labels, wher
    [all...]
  /external/tensorflow/tensorflow/examples/get_started/regression/
dnn_regression.py 34 # Switch the labels to units of thousands for better convergence.
35 def normalize_price(features, labels):
36 return features, labels / PRICE_NORM_FACTOR
linear_regression_categorical.py 34 # Switch the labels to units of thousands for better convergence.
35 def normalize_price(features, labels):
36 return features, labels / PRICE_NORM_FACTOR
  /external/toolchain-utils/crosperf/
experiment.py 28 cache_conditions, labels, benchmarks, experiment_file, email_to,
45 self.labels = labels
61 if not self.labels:
62 raise RuntimeError('No labels specified')
67 for label in self.labels:
91 for label in labels:
118 """Generate benchmark runs from labels and benchmark defintions."""
120 for label in self.labels:
209 all_machines, '', self.labels[0].chromeos_root, None
    [all...]
results_report_unittest.py 105 for label in experiment.labels:
115 num_configs = len(experiment.benchmarks) * len(experiment.labels)
131 for label in experiment.labels:
240 labels = ['label1']
243 results = BenchmarkResults(labels, benchmark_names_and_iterations,
251 labels = ['label1']
254 results = BenchmarkResults(labels, benchmark_names_and_iterations,
308 num_passes = num_success * len(experiment.labels)
321 labels = ['label1']
340 bench_results = BenchmarkResults(labels, benchmark_names_and_iterations
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
MethodAnalyzer.java 272 final Label dflt, final Label... labels) {
273 visitSwitchInsn(dflt, labels);
278 final Label[] labels) {
279 visitSwitchInsn(dflt, labels);
282 private void visitSwitchInsn(final Label dflt, final Label[] labels) {
284 LabelInfo.resetDone(labels);
288 for (final Label l : labels) {
323 final Label dflt, final Label[] labels, final IFrame frame) {
324 visitSwitchInsnWithProbes(dflt, labels);
329 final int[] keys, final Label[] labels, final IFrame frame)
    [all...]
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
grow_stats_test.cc 77 std::vector<float> labels = {1, 0, 1}; local
80 new TestableInputTarget(labels, weights, 1));
120 std::vector<float> labels = {1, 0, 1}; local
123 new TestableInputTarget(labels, weights, 1));
176 std::vector<float> labels = {1, 0, 1}; local
179 new TestableInputTarget(labels, weights, 1));
222 std::vector<float> labels = {0, 1}; local
224 TestableInputTarget target(labels, weights, 1);
298 std::vector<float> labels = {2.3, 5.6, 1.1}; local
300 new TestableInputTarget(labels, {}, 1))
330 std::vector<float> labels = {100, 1000, 1}; local
399 std::vector<float> labels = {100, 1000, 1}; local
    [all...]
  /external/autotest/venv/lucifer/
jobx.py 164 labels = list(_host_labels(host))
166 for label in labels:
171 'labels': ','.join(urllib.quote(label.name) for label in labels),
176 """Return an iterable of labels for a host.
183 return host.labels.all()
187 """Return a generator of labels for a host, respecting static labels.
195 for label in host.labels.all():
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/
SetAsSequenceTest.java 38 TreeSet<String> labels = new TreeSet<String>(); local
39 labels.add("Java");
40 labels.add("YAML");
41 labels.add("SnakeYAML");
42 blog.setLabels(labels);

Completed in 1016 milliseconds

1 2 3 4 5 6 78 91011>>