Searched defs:normalization (Results 1 - 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/contrib/gan/python/features/python/
H A Dvirtual_batchnorm_test.py28 from tensorflow.python.layers import normalization namespace
111 bn_normalized = normalization.batch_normalization(
114 # Get VBN's batch normalization on reference batch.
134 # Get the result of the opensource batch normalization.
135 batch_normalized = normalization.batch_normalization(
140 # Get the result of VBN's batch normalization.
153 Unlike batch normalization, virtual batch normalization has the property
204 # Fetch reference and examples after virtual batch normalization. Also
/external/tensorflow/tensorflow/contrib/layers/python/layers/
H A Dnormalization_test.py15 """Tests for contrib.layers.python.layers.normalization."""
24 from tensorflow.contrib.layers.python.layers import normalization namespace
37 normalization.instance_norm(inputs)
43 normalization.instance_norm(inputs, data_format='NHCW')
48 normalization.instance_norm(inputs, data_format='NCHW')
53 normalization.instance_norm(inputs, data_format='NHWC')
58 output = normalization.instance_norm(images)
68 output = normalization.instance_norm(images)
77 output = normalization.instance_norm(images, center=False, scale=False)
87 normalization
[all...]
/external/python/cpython2/Modules/
H A Dunicodedata.c64 Py_UCS4 (*normalization)(Py_UCS4); member in struct:previous_version
79 Py_UCS4 (*normalization)(Py_UCS4))
87 self->normalization = normalization;
553 /* normalization changes */
555 Py_UCS4 value = ((PreviousDBVersion*)self)->normalization(code);
761 return 0; /* this string might need normalization */
820 PyErr_SetString(PyExc_ValueError, "invalid normalization form");
78 new_previous_version(const char*name, const change_record* (*getrecord)(Py_UCS4), Py_UCS4 (*normalization)(Py_UCS4)) argument
/external/python/cpython3/Modules/
H A Dunicodedata.c74 Py_UCS4 (*normalization)(Py_UCS4); member in struct:previous_version
92 Py_UCS4 (*normalization)(Py_UCS4))
100 self->normalization = normalization;
553 /* normalization changes */
555 Py_UCS4 value = ((PreviousDBVersion*)self)->normalization(code);
798 return 0; /* this string might need normalization */
862 PyErr_SetString(PyExc_ValueError, "invalid normalization form");
91 new_previous_version(const char*name, const change_record* (*getrecord)(Py_UCS4), Py_UCS4 (*normalization)(Py_UCS4)) argument
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_core.c821 const float normalization = scale / ((float)PART_LEN2); local
823 time_data[0] = freq_data[0][0] * normalization;
824 time_data[1] = freq_data[0][PART_LEN] * normalization;
826 time_data[2 * i] = freq_data[0][i] * normalization;
827 time_data[2 * i + 1] = sign * freq_data[1][i] * normalization;
/external/swiftshader/src/Renderer/
H A DSurface.cpp2624 const float normalization = isSigned ? (1.0f / (8.0f * 127.875f)) : (1.0f / (8.0f * 255.875f)); local
2634 dstPix[c] = clamp(static_cast<float>(srcPix[c]) * normalization, -1.0f, 1.0f);

Completed in 1661 milliseconds