OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:conv_input_length
(Results
1 - 3
of
3
) sorted by null
/external/tensorflow/tensorflow/python/layers/
utils_test.py
76
self.assertEqual(3, utils.
conv_input_length
(4, 2, 'same', 1))
77
self.assertEqual(2, utils.
conv_input_length
(2, 2, 'same', 2))
78
self.assertEqual(4, utils.
conv_input_length
(3, 2, 'valid', 1))
79
self.assertEqual(4, utils.
conv_input_length
(2, 2, 'valid', 2))
80
self.assertEqual(3, utils.
conv_input_length
(4, 2, 'full', 1))
81
self.assertEqual(4, utils.
conv_input_length
(3, 2, 'full', 2))
utils.py
136
def
conv_input_length
(output_length, filter_size, padding, stride):
function
/external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
conv_utils.py
26
from tensorflow.python.layers.utils import
conv_input_length
Completed in 656 milliseconds