HomeSort by relevance Sort by last modified time
    Searched refs:features (Results 101 - 125 of 1920) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/tensorflow/tensorflow/python/estimator/inputs/
pandas_io.py 66 Function, that has signature of ()->(dict of `features`, `target`)
112 features = queue.dequeue_many(batch_size)
114 features = queue.dequeue_up_to(batch_size)
115 assert len(features) == len(x.columns) + 1, ('Features should have one '
117 features = features[1:]
118 features = dict(zip(list(x.columns), features))
120 target = features.pop(target_column
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmUtils.cpp 62 VkPhysicalDeviceFeatures2 features; local
64 deMemset(&features, 0, sizeof(features));
65 features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2;
66 features.pNext = &extensionFeatures;
71 vki.getPhysicalDeviceFeatures2(device, &features);
87 VkPhysicalDeviceFeatures2 features; local
88 deMemset(&features, 0, sizeof(features));
89 features.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2
190 const VkPhysicalDeviceFeatures features = filterDefaultDeviceFeatures(deviceFeatures); local
    [all...]
  /external/libdrm/etnaviv/
etnaviv_gpu.c 67 gpu->specs.features[0] = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_0);
68 gpu->specs.features[1] = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_1);
69 gpu->specs.features[2] = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_2);
70 gpu->specs.features[3] = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_3);
71 gpu->specs.features[4] = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_4);
72 gpu->specs.features[5] = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_5);
73 gpu->specs.features[6] = get_param(dev, core, ETNAVIV_PARAM_GPU_FEATURES_6);
115 *value = gpu->specs.features[0];
118 *value = gpu->specs.features[1];
121 *value = gpu->specs.features[2]
    [all...]
  /external/webrtc/webrtc/common_audio/vad/
vad_filterbank_unittest.cc 36 int16_t features[kNumChannels]; local
51 features));
54 features[k]);
67 features));
69 EXPECT_EQ(kOffsetVector[k], features[k]);
83 features));
85 EXPECT_EQ(kOffsetVector[k], features[k]);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilder.java 22 import com.google.common.collect.testing.features.ConflictingRequirementsException;
23 import com.google.common.collect.testing.features.Feature;
24 import com.google.common.collect.testing.features.FeatureUtil;
25 import com.google.common.collect.testing.features.TesterRequirements;
46 * against specified features.
101 // Features
103 private Set<Feature<?>> features = new LinkedHashSet<Feature<?>>(); field in class:FeatureSpecificTestSuiteBuilder
107 * features. This method may be called more than once to add features
110 public B withFeatures(Feature<?>... features) {
    [all...]
  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureUtilTest.java 17 package com.google.common.collect.testing.features;
152 Set<Feature<?>> features = Sets.<Feature<?>>newHashSet( local
154 assertSame(features, FeatureUtil.addImpliedFeatures(features));
158 Set<Feature<?>> features; local
160 features = Sets.<Feature<?>>newHashSet(
162 assertThat(FeatureUtil.addImpliedFeatures(features)).has().item(
165 features = Sets.<Feature<?>>newHashSet(
167 assertThat(FeatureUtil.addImpliedFeatures(features)).has().exactly(
171 features = Sets.<Feature<?>>newHashSet
182 Set<Feature<?>> features = Sets.<Feature<?>>newHashSet( local
188 Set<Feature<?>> features; local
    [all...]
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
saved_model_utils.py 33 def _colate_features_to_feeds_and_fetches(continue_from, signature, features,
53 for feature_key, feature_value in features.items():
87 features for the model to use while making the predictions. Values must
103 features = {_feature_keys.PredictionFeatures.TIMES: predict_times}
104 features.update(exogenous_features)
110 features=features,
113 output[_feature_keys.PredictionResults.TIMES] = features[
118 def filter_continuation(continue_from, signatures, session, features):
134 features: A dictionary mapping keys to Numpy arrays, with several possibl
    [all...]
  /external/tensorflow/tensorflow/core/example/
feature_util.cc 28 bool HasFeature<>(const string& key, const Features& features) {
29 return (features.feature().find(key) != features.feature().end());
33 bool HasFeature<protobuf_int64>(const string& key, const Features& features) {
34 auto it = features.feature().find(key);
35 return (it != features.feature().end()) &&
40 bool HasFeature<float>(const string& key, const Features& features) {
    [all...]
  /frameworks/compile/libbcc/lib/
CompilerConfig.cpp 38 llvm::StringMap<bool> features; local
39 if (llvm::sys::getHostCPUFeatures(features)) {
40 for (const auto& f : features)
109 llvm::StringMap<bool> features; local
110 llvm::sys::getHostCPUFeatures(features);
132 if (features.count("hwdiv-arm") && features["hwdiv-arm"])
135 if (features.count("hwdiv") && features["hwdiv"])
141 // 'features' would correspond to features in an x86 host
    [all...]
  /external/conscrypt/libcore-stub/src/main/java/libcore/java/security/
CpuFeatures.java 36 List<String> features = getListFromCpuinfo("Features"); local
37 if (features != null && features.contains("aes")) {
46 features = getCpuFeaturesMac();
47 if (features != null && features.contains("aes")) {
110 String features = getFieldFromCpuinfo(fieldName); local
111 if (features == null)
114 return Arrays.asList(features.split("\\s"))
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/vad/
pitch_based_vad.cc 66 int PitchBasedVad::VoicingProbability(const AudioFeatures& features,
78 for (size_t n = 0; n < features.num_frames; n++) {
79 gmm_features[0] = features.log_pitch_gain[n];
80 gmm_features[1] = features.spectral_peak[n];
81 gmm_features[2] = features.pitch_lag_hz[n];
86 if (features.spectral_peak[n] < kLimLowSpectralPeak ||
87 features.spectral_peak[n] > kLimHighSpectralPeak ||
88 features.log_pitch_gain[n] < kLimLowLogPitchGain) {
90 } else if (features.log_pitch_gain[n] > kLimHighLogPitchGain) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
SetAddTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
20 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_ADD;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
24 import com.google.common.collect.testing.features.CollectionFeature;
25 import com.google.common.collect.testing.features.CollectionSize;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapContainsValueTester.java 19 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUE_QUERIES;
25 import com.google.common.collect.testing.features.CollectionSize;
26 import com.google.common.collect.testing.features.MapFeature;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListIndexOfTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.REJECTS_DUPLICATES_AT_CREATION;
20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
24 import com.google.common.collect.testing.features.CollectionFeature;
25 import com.google.common.collect.testing.features.CollectionSize;
ListLastIndexOfTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.REJECTS_DUPLICATES_AT_CREATION;
20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
24 import com.google.common.collect.testing.features.CollectionFeature;
25 import com.google.common.collect.testing.features.CollectionSize;
ListRemoveAllTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
25 import com.google.common.collect.testing.features.CollectionFeature;
26 import com.google.common.collect.testing.features.CollectionSize;
ListRemoveTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_REMOVE;
20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
24 import com.google.common.collect.testing.features.CollectionFeature;
25 import com.google.common.collect.testing.features.CollectionSize;
SetAddTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_VALUES;
20 import static com.google.common.collect.testing.features.CollectionFeature.SUPPORTS_ADD;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
26 import com.google.common.collect.testing.features.CollectionFeature;
27 import com.google.common.collect.testing.features.CollectionSize;
  /external/harfbuzz_ng/src/
hb-shape.cc 107 * @features: (array length=num_features) (allow-none): an array of user
109 * @num_features: the length of @features array
124 const hb_feature_t *features,
129 features, num_features,
132 hb_bool_t res = hb_shape_plan_execute (shape_plan, font, buffer, features, num_features);
144 * @features: (array length=num_features) (allow-none): an array of user
146 * @num_features: the length of @features array
149 * positioned glyphs. If @features is not %NULL, it will be used to control the
150 * features applied during shaping.
157 const hb_feature_t *features,
    [all...]
  /external/strace/tests/
strace-V.test 56 features="${option_unwind}${option_demangle}${option_m32}${option_mx32}"
57 [ -n "$features" ] || features=" (none)"
65 Optional features enabled:${features}
  /external/strace/tests-m32/
strace-V.test 56 features="${option_unwind}${option_demangle}${option_m32}${option_mx32}"
57 [ -n "$features" ] || features=" (none)"
65 Optional features enabled:${features}
  /external/strace/tests-mx32/
strace-V.test 56 features="${option_unwind}${option_demangle}${option_m32}${option_mx32}"
57 [ -n "$features" ] || features=" (none)"
65 Optional features enabled:${features}
  /libcore/luni/src/test/java/tests/org/w3c/dom/
IsSupported.java 140 List<String> features = new ArrayList<String>(); local
141 features.add("Core");
142 features.add("XML");
143 features.add("HTML");
144 features.add("Views");
145 features.add("StyleSheets");
146 features.add("CSS");
147 features.add("CSS2");
148 features.add("Events");
149 features.add("UIEvents")
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/common/
hdr_util.cc 144 Vp9CodecFeatures* features) {
146 if (!private_data || !features || length < kVpxCodecPrivateMinLength)
156 // Set features to not set.
157 features->profile = Vp9CodecFeatures::kValueNotPresent;
158 features->level = Vp9CodecFeatures::kValueNotPresent;
159 features->bit_depth = Vp9CodecFeatures::kValueNotPresent;
160 features->chroma_subsampling = Vp9CodecFeatures::kValueNotPresent;
170 if (features->profile != Vp9CodecFeatures::kValueNotPresent &&
171 features->profile != priv_profile) {
174 features->profile = priv_profile
    [all...]
  /art/compiler/debug/
elf_debug_writer.h 46 const InstructionSetFeatures* features,
55 const InstructionSetFeatures* features,
61 const InstructionSetFeatures* features,

Completed in 1218 milliseconds

1 2 3 45 6 7 8 91011>>