Home
last modified time | relevance | path

Searched defs:inputs (Results 1 – 25 of 1095) sorted by relevance

12345678910>>...44

/external/tensorflow/tensorflow/python/keras/layers/
Dmerge.py48 def _merge_function(self, inputs): argument
120 def call(self, inputs): argument
204 def compute_mask(self, inputs, mask=None): argument
250 def _merge_function(self, inputs): argument
289 def _merge_function(self, inputs): argument
319 def _merge_function(self, inputs): argument
356 def _merge_function(self, inputs): argument
386 def _merge_function(self, inputs): argument
416 def _merge_function(self, inputs): argument
521 def _merge_function(self, inputs): argument
[all …]
Dcore.py106 def compute_mask(self, inputs, mask=None): argument
109 def call(self, inputs): argument
157 def _get_noise_shape(self, inputs): argument
170 def call(self, inputs, training=None): argument
235 def _get_noise_shape(self, inputs): argument
292 def _get_noise_shape(self, inputs): argument
350 def _get_noise_shape(self, inputs): argument
391 def call(self, inputs): argument
501 def call(self, inputs): argument
560 def call(self, inputs): argument
[all …]
Dnoise.py64 def call(self, inputs, training=None): argument
115 def call(self, inputs, training=None): argument
176 def _get_noise_shape(self, inputs): argument
179 def call(self, inputs, training=None): argument
183 …def dropped_inputs(inputs=inputs, rate=self.rate, seed=self.seed): # pylint: disable=missing-docs… argument
Dpooling.py72 def call(self, inputs): argument
284 def call(self, inputs): argument
556 def call(self, inputs): argument
726 def call(self, inputs): argument
779 def call(self, inputs, mask=None): argument
791 def compute_mask(self, inputs, mask=None): argument
839 def call(self, inputs): argument
861 def call(self, inputs): argument
905 def call(self, inputs): argument
946 def call(self, inputs): argument
[all …]
/external/libcxx/benchmarks/
DGenerateInput.hpp53 std::vector<IntT> inputs(N, static_cast<IntT>(-1)); in getDuplicateIntegerInputs() local
59 std::vector<IntT> inputs; in getSortedIntegerInputs() local
67 std::vector<IntT> inputs; in getSortedLargeIntegerInputs() local
76 std::vector<IntT> inputs = getSortedIntegerInputs<IntT>(N); in getSortedTopBitsIntegerInputs() local
83 std::vector<IntT> inputs; in getReverseSortedIntegerInputs() local
103 std::vector<IntT> inputs; in getRandomIntegerInputs() local
111 std::vector<std::string> inputs(N, getRandomString(1024)); in getDuplicateStringInputs() local
116 std::vector<std::string> inputs; in getRandomStringInputs() local
124 std::vector<std::string> inputs = getRandomStringInputs(N); in getSortedStringInputs() local
130 std::vector<std::string> inputs = getSortedStringInputs(N); in getReverseSortedStringInputs() local
[all …]
/external/tensorflow/tensorflow/python/keras/engine/
Dcontrol_flow_test.py40 def call(self, inputs): argument
50 def call(self, inputs): argument
67 def call(self, inputs): argument
74 def call(self, inputs): argument
88 def call(self, inputs): argument
100 def call(self, inputs): argument
Dbase_layer_test.py66 def call(self, inputs): argument
79 def call(self, inputs): argument
124 def call(self, inputs): argument
180 def call(self, inputs): argument
202 def call(self, inputs): argument
309 def call(self, inputs): argument
345 def call(self, inputs): argument
385 def call(self, inputs): argument
399 def call(self, inputs, training=None): argument
444 def call(self, inputs): argument
[all …]
/external/tensorflow/tensorflow/python/layers/
Dbase_test.py184 def call(self, inputs): argument
200 def call(self, inputs): argument
222 def call(self, inputs): argument
274 def call(self, inputs): argument
301 def call(self, inputs): argument
329 def call(self, inputs): argument
357 def call(self, inputs): argument
377 def call(self, inputs): argument
399 def call(self, inputs): argument
419 def call(self, inputs): argument
[all …]
/external/tensorflow/tensorflow/core/graph/
Dcontrol_flow_test.cc29 Status LessThanTenCond(const Scope& scope, const std::vector<Output>& inputs, in LessThanTenCond()
35 Status AddOneBody(const Scope& scope, const std::vector<Output>& inputs, in AddOneBody()
41 Status NestedLoopBody(const Scope& scope, const std::vector<Output>& inputs, in NestedLoopBody()
50 std::vector<Output> inputs; in TEST() local
79 std::vector<Output> inputs; in TEST() local
122 std::vector<Output> inputs; in TEST() local
/external/tensorflow/tensorflow/cc/framework/
Dwhile_gradients_test.cc42 const std::vector<Output>* inputs = nullptr) { in CreateLoop()
95 [](const Scope& s, const std::vector<Output>& inputs, Output* output) { in TEST_F()
117 [](const Scope& s, const std::vector<Output>& inputs, Output* output) { in TEST_F()
122 std::vector<Output>* outputs) { in TEST_F()
168 [](const Scope& s, const std::vector<Output>& inputs, Output* output) { in TEST_F()
197 [](const Scope& s, const std::vector<Output>& inputs, Output* output) { in TEST_F()
202 std::vector<Output>* outputs) { in TEST_F()
Dwhile_gradients.cc76 const std::vector<Output>& inputs, in AddForwardLoopCounter()
77 std::vector<Output>* outputs) { in AddForwardLoopCounter()
115 const std::vector<Output>& inputs, in AddBackPropLoopCounter()
116 std::vector<Output>* outputs) { in AddBackPropLoopCounter()
161 const std::vector<Output>& inputs, in AddWhileGradientLoop()
162 std::vector<Output>* outputs) { in AddWhileGradientLoop()
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dsaved_model_test.py86 def call(self, inputs): argument
96 def call(self, inputs): argument
402 def predict(inputs): argument
450 def call(self, inputs, training): argument
456 def call(self, inputs, training=True): argument
468 def call(self, inputs): argument
498 def call(self, inputs, keyword=None): argument
536 def call(self, inputs, tensor=None): argument
559 def call(self, inputs, training=False): argument
582 def call(self, inputs): argument
[all …]
/external/tensorflow/tensorflow/python/tpu/
Dtraining_loop.py30 def while_loop(condition, body, inputs=None, infeed_queue=None, name=None): argument
95 def condition_wrapper(*inputs):
101 def body_wrapper(*inputs):
181 def repeat(n, body, inputs=None, infeed_queue=None, name=None): argument
/external/tensorflow/tensorflow/cc/ops/
Dwhile_loop_test.cc79 Status LessThanTenCond(const Scope& s, const std::vector<Output>& inputs, in LessThanTenCond()
85 Status AddOneBody(const Scope& s, const std::vector<Output>& inputs, in AddOneBody()
119 [](const Scope& s, const std::vector<Output>& inputs, Output* output) { in TEST_F()
134 [](const Scope& s, const std::vector<Output>& inputs, Output* output) { in TEST_F()
144 [](const Scope& s, const std::vector<Output>& inputs, Output* output) { in TEST_F()
168 [](const Scope& s, const std::vector<Output>& inputs, in TEST_F()
179 [](const Scope& s, const std::vector<Output>& inputs, in TEST_F()
194 [](const Scope& s, const std::vector<Output>& inputs, in TEST_F()
195 std::vector<Output>* outputs) { return s.status(); }, in TEST_F()
/external/tensorflow/tensorflow/lite/java/src/test/java/org/tensorflow/lite/
DNativeInterpreterWrapperTest.java118 Object[] inputs = {fourD}; in testRunWithFloat() local
136 Object[] inputs = {fourD}; in testRunWithBufferOutput() local
157 Object[] inputs = {fourD}; in testRunWithInputsOfSameDims() local
180 Object[] inputs = {fourD}; in testRunWithInt() local
198 Object[] inputs = {fourD}; in testRunWithLong() local
217 Object[] inputs = {fourD}; in testRunWithByte() local
238 Object[] inputs = {fourD}; in testRunWithString() local
258 Object[] inputs = {fourD}; in testRunWithString_supplementaryUnicodeCharacters() local
279 Object[] inputs = {fourD}; in testRunWithString_wrongShapeError() local
312 Object[] inputs = {bbuf}; in testRunWithByteBufferHavingBytes() local
[all …]
/external/tensorflow/tensorflow/python/ops/
Daccumulate_n_benchmark.py41 def _AccumulateNTemplate(self, inputs, init, shape, validate_shape): argument
52 def _AccumulateNInitializedWithFirst(self, inputs): argument
59 def _AccumulateNInitializedWithMerge(self, inputs): argument
66 def _AccumulateNInitializedWithShape(self, inputs): argument
97 def _SetupAndRunBenchmark(self, graph, inputs, repeats, format_args): argument
Dclustering_ops.py60 inputs, argument
152 def _distance_graph(cls, inputs, clusters, distance_metric): argument
175 def _compute_euclidean_distance(cls, inputs, clusters): argument
202 def _compute_cosine_distance(cls, inputs, clusters, inputs_normalized=True): argument
227 def _infer_graph(self, inputs, clusters): argument
319 def _l2_normalize_data(cls, inputs): argument
435 def _mini_batch_training_op(self, inputs, cluster_idx_list, cluster_centers, argument
501 def _full_batch_training_op(self, inputs, num_clusters, cluster_idx_list, argument
561 def __init__(self, inputs, num_clusters, initial_clusters, distance_metric, argument
/external/tensorflow/tensorflow/python/saved_model/
Dsignature_def_utils_impl.py39 def build_signature_def(inputs=None, outputs=None, method_name=None): argument
178 def predict_signature_def(inputs, outputs): argument
213 inputs, loss, predictions=None, metrics=None): argument
220 inputs, loss, predictions=None, metrics=None): argument
227 method_name, inputs, loss=None, predictions=None, argument
/external/tensorflow/tensorflow/core/ops/
Dctc_ops.cc39 ShapeHandle inputs; in __anoned3a12980102() local
76 ShapeHandle inputs; in __anoned3a12980202() local
112 ShapeHandle inputs; in __anoned3a12980302() local
143 ShapeHandle inputs; in __anoned3a12980402() local
/external/guava/guava-testlib/src/com/google/common/testing/
DCollectorTester.java86 final <T, A, R> A result(Collector<T, A, R> collector, Iterable<T> inputs) { in result()
97 final <T, A, R> A result(Collector<T, A, R> collector, Iterable<T> inputs) { in result()
110 final <T, A, R> A result(Collector<T, A, R> collector, Iterable<T> inputs) { in result()
135 abstract <T, A, R> A result(Collector<T, A, R> collector, Iterable<T> inputs); in result()
143 public final CollectorTester<T, A, R> expectCollects(@Nullable R expectedResult, T... inputs) { in expectCollects()
153 private void doExpectCollects(@Nullable R expectedResult, List<T> inputs) { in doExpectCollects()
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/
Dconcat.cc39 auto inputs = ctx.graph->FindInputs(ctx.node->id); in IsSupported() local
76 auto inputs = ctx.graph->FindInputs(ctx.node->id); in GenerateCode() local
106 auto inputs = ctx.graph->FindInputs(ctx.node->id); in IsSupported() local
136 auto inputs = ctx.graph->FindInputs(ctx.node->id); in GenerateCode() local
327 auto inputs = ctx.graph->FindInputs(ctx.node->id); in IsSupported() local
353 auto inputs = ctx.graph->FindInputs(ctx.node->id); in GenerateCode() local
394 auto inputs = ctx.graph->FindInputs(ctx.node->id); in IsSupported() local
420 auto inputs = ctx.graph->FindInputs(ctx.node->id); in GenerateCode() local
/external/tensorflow/tensorflow/python/distribute/
Dzero_batch_test.py58 def step_fn(is_training, inputs, targets=None): argument
129 def step_fn(inputs, targets): argument
152 def step_fn(inputs): argument
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_reachability.cc34 absl::Span<const HloInstruction* const> inputs, in SetReachabilityToUnion()
43 absl::Span<const HloInstruction* const> inputs, in FastSetReachabilityToUnion()
49 absl::Span<const HloInstruction* const> inputs, in SetReachabilityToUnionHelper()
93 std::vector<HloInstruction*> inputs; in Build() local
156 std::vector<HloInstruction*> inputs; in UpdateReachabilityThroughInstruction() local
/external/tensorflow/tensorflow/python/feature_column/
Dfeature_column.py1818 def _transform_feature(self, inputs): argument
1888 def _get_dense_tensor(self, inputs, weight_collections=None, trainable=None): argument
1985 inputs, argument
2083 self, inputs, weight_collections=None, trainable=None): argument
2345 def _transform_feature(self, inputs): argument
2359 def _get_dense_tensor(self, inputs, weight_collections=None, trainable=None): argument
2394 def _transform_feature(self, inputs): argument
2405 def _get_dense_tensor(self, inputs, weight_collections=None, trainable=None): argument
2420 def _get_sparse_tensors(self, inputs, weight_collections=None, argument
2492 def _transform_feature(self, inputs): argument
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dconcat_lib_cpu.cc50 const std::vector<std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>>& in EstimateBytesPerElement()
62 std::unique_ptr<typename TTypes<tstring, 2>::ConstMatrix>>& inputs) { in EstimateBytesPerElement()
101 const std::vector<std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>>& in ConcatCPU()
136 const std::vector<std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>>& in ConcatSYCL()

12345678910>>...44