OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pooling
(Results
126 - 150
of
310
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
resnet_v1.py
167
global_pool: If True, we perform global average
pooling
before computing the
173
max-
pooling
, if False excludes it.
184
average
pooling
. If num_classes is not None, net contains the pre-softmax
209
# Global average
pooling
.
resnet_v2.py
169
global_pool: If True, we perform global average
pooling
before computing the
175
max-
pooling
, if False excludes it. If excluded, `inputs` should be the
188
average
pooling
. If num_classes is not None, net contains the pre-softmax
223
# Global average
pooling
.
/external/tensorflow/tensorflow/core/api_def/base_api/
api_def_DepthToSpace.pbtxt
44
(but keeping all data), e.g. instead of
pooling
. It is also useful for training
api_def_SpaceToDepth.pbtxt
41
(but keeping all data), e.g. instead of
pooling
. It is also useful for training
/external/tensorflow/tensorflow/core/kernels/
maxpooling_op_gpu.h
32
// Run the forward pass of max
pooling
, optionally writing the argmax indices to
dilation_ops_gpu.cu.cc
100
// similarly to the max-
pooling
backward routines.
149
// similarly to the max-
pooling
backward routines.
/external/tensorflow/tensorflow/docs_src/api_guides/python/
nn.md
132
##
Pooling
134
The
pooling
ops sweep a rectangular window over the input tensor, computing a
136
pooling
op uses rectangular windows of size `ksize` separated by offset
171
The `filter` is usually called structuring function. Max-
pooling
is a special
/external/tensorflow/tensorflow/python/keras/_impl/keras/applications/
mobilenet_test.py
40
pooling
='avg')
mobilenet.py
317
pooling
=None,
360
pooling
: Optional
pooling
mode for feature extraction
365
- `avg` means that global average
pooling
370
- `max` means that global max
pooling
will
507
if
pooling
== 'avg':
509
elif
pooling
== 'max':
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
__init__.py
35
from tensorflow.python.keras._impl.keras.layers.
pooling
import *
serialization.py
34
from tensorflow.python.keras._impl.keras.layers.
pooling
import *
/frameworks/minikin/libs/minikin/
WordBreaker.h
38
// A class interface for providing
pooling
implementation of ICU's line breaker.
/frameworks/ml/nn/common/
Android.bp
69
"operations/
Pooling
.cpp",
/libcore/ojluni/src/main/java/javax/sql/
StatementEventListener.java
37
* enabling the
pooling
of <code>PreparedStatements</code>
/external/flatbuffers/docs/source/
FlexBuffers.md
22
combining automatic
pooling
of strings with automatic sizing of containers to
88
you store multiple such objects, by
pooling
key values), but also unlike
/external/swiftshader/third_party/subzero/docs/
ALLOCATION.rst
48
randomization through constant
pooling
. These constant pool entries are
56
pooling
is managed by the GlobalContext class. Since Constants are added or
/external/tensorflow/tensorflow/examples/tutorials/mnist/
mnist_deep.py
65
#
Pooling
layer - downsamples by 2X.
75
# Second
pooling
layer.
/external/tensorflow/tensorflow/python/layers/
pooling_test.py
15
"""Tests for tf.layers.
pooling
."""
21
from tensorflow.python.layers import
pooling
as pooling_layers
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
pooling_ops.cc
16
// XLA specific
pooling
ops.
35
// Superclass of
pooling
ops.
176
// element during
pooling
.
385
// Average-
pooling
gradient
403
"
Pooling
is not yet supported on the batch dimension."));
427
// We can think of average-
pooling
as:
/external/tensorflow/tensorflow/python/kernel_tests/
pooling_ops_test.py
15
"""Functional tests for
pooling
operations."""
97
"""Verifies the output values of the
pooling
function.
106
data_format: The data format we use to run the
pooling
operation.
107
data_type: The data type to use to run the
pooling
operation.
173
"""Verifies the output values of the
pooling
function.
182
data_format: The data format we use to run the
pooling
operation.
209
"""Verifies the output values of the
pooling
function.
726
"exactly one of
pooling
across depth")
890
"""Verifies the gradients of the avg
pooling
function.
[
all
...]
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/decoder/
SkiaPooledImageRegionDecoder.java
185
//
Pooling
disabled
194
//
Pooling
disabled
205
//
Pooling
disabled
/external/tensorflow/tensorflow/core/framework/
common_shape_fns.h
124
// is padded with zeros, as well as for 3D avg/max
pooling
, where the input data
125
// is padded with invalid values that are not considered for
pooling
.
249
// Shape function for 3D
Pooling
operations.
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenManager.java
10
* as well as the
pooling
constraints (if object
pooling
is enabled).
/external/tensorflow/tensorflow/contrib/layers/python/layers/
layers.py
42
from tensorflow.python.layers import
pooling
as pooling_layers
85
"""Adds a 2D average
pooling
op.
87
It is assumed that the
pooling
is done per image but not in batch or channels.
94
pooling
kernel over which the op is computed. Can be an int if both
105
A `Tensor` representing the results of the
pooling
operation.
134
"""Adds a 3D average
pooling
op.
136
It is assumed that the
pooling
is done per image but not in batch or channels.
143
of the
pooling
kernel over which the op is computed. Can be an int if both
154
A `Tensor` representing the results of the
pooling
operation.
[
all
...]
/external/apache-http/src/org/apache/http/conn/params/
ConnPerRouteBean.java
40
* for those routes. This class can be used by
pooling
Completed in 256 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>