HomeSort by relevance Sort by last modified time
    Searched refs:variables (Results 326 - 350 of 1568) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
map_parallelization_test.py 31 from tensorflow.python.ops import variables
82 """Tests that functions with captured variables are not parallelized."""
84 captured_t = variables.Variable(42, dtype=dtypes.int64)
93 self.evaluate(variables.global_variables_initializer())
  /external/tensorflow/tensorflow/python/debug/lib/
session_debug_file_test.py 33 from tensorflow.python.ops import variables
63 u = variables.VariableV1(u_init, name=u_name)
65 v = variables.VariableV1(v_init, name=v_name)
  /external/tensorflow/tensorflow/python/eager/
function_defun_collection_test.py 29 from tensorflow.python.ops import variables
77 self.evaluate(variables.global_variables_initializer())
93 self.evaluate(variables.global_variables_initializer())
  /external/tensorflow/tensorflow/python/layers/
normalization_test.py 35 from tensorflow.python.ops import variables
83 self.evaluate(variables.global_variables_initializer())
272 self.assertEqual(len(bn.variables), 4)
299 self.assertEqual(len(bn.variables), 4)
302 for var in bn.variables:
319 inputs = variables.Variable(
326 self.evaluate(variables.global_variables_initializer())
362 inputs = variables.Variable(
369 self.evaluate(variables.global_variables_initializer())
404 inputs = variables.Variable
    [all...]
  /external/tensorflow/tensorflow/python/module/
module.py 24 from tensorflow.python.ops import variables
58 the `variables`, `trainable_variables` or `submodules` property:
60 >>> d.variables
119 def variables(self): member in class:Module
120 """Sequence of variables owned by this module and it's submodules.
122 Note: this method uses reflection to find variables on the current instance
127 A sequence of variables for the current module (sorted by attribute
128 name) followed by variables from all submodules recursively (breadth
135 """Sequence of variables owned by this module and it's submodules.
137 Note: this method uses reflection to find variables on the current instanc
    [all...]
  /external/tensorflow/tensorflow/python/saved_model/
simple_save_test.py 25 from tensorflow.python.ops import variables
36 v = variables.Variable(variable_value, name=variable_name)
37 self.evaluate(variables.global_variables_initializer())
63 # Initialize input and output variables and save a prediction graph using
72 # Restore the graph with a valid tag and check the global variables and
78 # Check value and metadata of the saved variables.
  /external/tensorflow/tensorflow/python/tools/
saved_model_utils_test.py 26 from tensorflow.python.ops import variables
40 v = variables.Variable(variable_value, name=variable_name)
41 sess.run(variables.global_variables_initializer())
  /external/tensorflow/tensorflow/python/training/
quantize_training_test.py 30 from tensorflow.python.ops import variables
54 # Test that save/restoring works for EMA variables generated in the
63 b = variables.VariableV1(
67 init_op = variables.global_variables_initializer()
81 # variables.
89 # When we restore the saved variabled, the quantization variables should
moving_averages.py 29 from tensorflow.python.ops import variables
34 # TODO(touts): switch to variables.Variable.
45 Since variables that are initialized to a `0` value will be `0` biased,
52 The names of the debias shadow variables, by default, include both the scope
53 they were created in and the scope of the variables they debias. They are also
121 Internally, this Op keeps moving average variables of both `value * weight`
131 collections: List of graph collections keys to add the internal variables
141 # user-visible variables. It is the ratio of two internal variables, which are
177 and therefore are biased to 0. Variables initialized to 0 and used as EMAs ar
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
plot_dynamics.py 125 variables = [
136 for variable in variables:
148 matplotlib.rcParams.update({'font.size': 48/len(variables)})
150 # Plot variables.
  /build/blueprint/
ninja_strings.go 39 variables []Variable
64 if len(ps.result.variables) == len(ps.result.strings) {
71 ps.result.variables = append(ps.result.variables, v)
75 if len(ps.result.strings) != len(ps.result.variables) {
85 // occurrences are expected to be variables or $$) and returns a list of the
92 variables: make([]Variable, 0, n),
281 for i, v := range n.variables {
288 func (n *ninjaString) Eval(variables map[Variable]*ninjaString) (string, error) {
290 for i, v := range n.variables {
    [all...]
  /build/make/core/
aux_executable.mk 47 # variables from LOCAL_BUILT_MODULE. This tells binary.make to explicitly
48 # define the PRIVATE_ variables for linked_module as well as for
82 # Define PRIVATE_ variables from global vars
dpi_specific_apk.mk 2 # Input variable: my_dpi, and all other variables set up in package_internal.mk.
10 # Set up all the target-specific variables.
66 # Set up global variables to register this apk to the higher-level dependency graph.
sdk_check.mk 5 # The JAVA_SDK_ENFORCEMENT_WARNING and JAVA_SDK_ENFORCEMENT_ERROR variables may
  /build/make/core/tasks/tools/
compatibility.mk 17 # Input variables:
26 # Output variables:
61 # Reset all input variables
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
StackFrameImpl.java 159 List<LocalVariable> allVariables = location.method().variables();
204 public Map<LocalVariable, Value> getValues(List<? extends LocalVariable> variables) {
206 validateMirrors(variables);
208 int count = variables.size();
213 LocalVariableImpl variable = (LocalVariableImpl)variables.get(i);
251 LocalVariableImpl variable = (LocalVariableImpl)variables.get(i);
  /external/tensorflow/tensorflow/contrib/factorization/python/ops/
gmm_ops_test.py 31 from tensorflow.python.ops import variables
109 variables.global_variables_initializer().run()
128 variables.global_variables_initializer().run()
153 variables.global_variables_initializer().run()
171 variables.global_variables_initializer().run()
190 variables.global_variables_initializer().run()
  /external/tensorflow/tensorflow/contrib/opt/python/training/
moving_average_optimizer_test.py 33 from tensorflow.python.ops import variables
45 # Test that MovingAverageOptimizer works with resource variables.
49 # Test that MovingAverageOptimizer works with partitioned variables.
54 # variables.
58 # Partitioned variables are represented as a "collection" of partitions.
60 # following test strategy for partitioned variables.
62 # In the case of non-partitioned variables test runs on variables with
65 # In the case of partitioned variables we use shape [4] with two partitions,
67 # For partitioned variables the test is run twice (for loop ove
    [all...]
  /art/test/701-easy-div-rem/
genMain.py 41 def subst_vars(variables, text):
42 '''Substitute variables in text.'''
43 for key, value in variables.iteritems():
  /build/make/tools/atree/
files.cpp 129 const map<string, string>& variables,
131 if (variables.empty()) {
150 for (map<string, string>::const_iterator it = variables.begin();
151 it != variables.end(); ++it) {
161 fprintf(stderr, "Recursive replacement detected during variables "
162 "substitution. Full list of variables is: ");
164 for (map<string, string>::const_iterator it = variables.begin();
165 it != variables.end(); ++it) {
179 const map<string, string>& variables,
288 paths[pcount++] = replace_variables(word, variables, &error)
    [all...]
  /build/soong/androidmk/parser/
scope.go 29 variables map[string]string
35 if val, ok := s.variables[name]; ok {
47 s.variables[name] = value
64 variables: make(map[string]string),
113 if len(ms.Variables) == 1 && ms.Strings[0] == "" && ms.Strings[1] == "" {
114 return ms.Variables[0], true
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
GraphicsDeviceInfo.java 77 Set<String> variables = stubActivity.getImplementationVariableNames(); local
78 for (String name : variables) {
  /external/curl/docs/cmdline-opts/
noproxy.d 13 Since 7.53.0, This option overrides the environment variables that disable the
proxy.d 22 This option overrides existing environment variables that set the proxy to
36 variables, including the protocol prefix (http://) and the embedded user +
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message_field.h 71 void GenerateArenaManipulationCode(const map<string, string>& variables,
105 const map<string, string>& variables, io::Printer* printer) const;

Completed in 1747 milliseconds

<<11121314151617181920>>