HomeSort by relevance Sort by last modified time
    Searched refs:name_filter (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/contrib/layers/python/layers/
summaries.py 141 name_filter=None,
146 if name_filter is None or re.match(name_filter, op.op.name):
161 def summarize_activations(name_filter=None, summarizer=summarize_activation):
163 return summarize_collection(ops.GraphKeys.ACTIVATIONS, name_filter,
  /external/autotest/contrib/
find_suite_tasks.py 26 parser.add_argument('--name_filter', type=str, action='store',
108 name_filter=None, status_filter=None, afe=None, tko=None):
114 @param name_filter: If not None, only return tasks with this name.
139 if name_filter or status_filter:
145 if ((name_filter and e['name'] != name_filter) or
183 suite_job_id, name_filter=options.name_filter,
194 suite_job_id, name_filter=options.name_filter,
    [all...]
  /external/tensorflow/tensorflow/contrib/gan/python/features/python/
spectral_normalization_impl.py 177 def spectral_normalization_custom_getter(name_filter=_default_name_filter,
212 libraries. If you are using anything else you'll need a custom `name_filter`.
221 name_filter: Optionally, a method that takes a Variable name as input and
229 Variables whose names match `name_filter`.
232 ValueError: If name_filter is not callable.
234 if not callable(name_filter):
235 raise ValueError('name_filter must be callable')
254 if not name_filter(name):
282 def keras_spectral_normalization(name_filter=_default_name_filter,
294 name_filter: Optionally, a method that takes a Variable name as input an
    [all...]
  /external/v8/tools/
stats-viewer.py 63 def __init__(self, data_name, name_filter):
68 name_filter: The regexp filter to apply to counter names.
71 self.name_filter = name_filter
231 if self.name_filter.match(counter_name):
240 if self.name_filter.match(name):
451 def Main(data_file, name_filter):
456 name_filter: The regexp filter to apply to counter names.
458 StatsViewer(data_file, name_filter).Run()
  /bootable/recovery/applypatch/
freecache.cpp 81 const std::string& dirname, const std::function<bool(const std::string&)>& name_filter) {
101 if (name_filter != nullptr && !name_filter(de->d_name)) {

Completed in 525 milliseconds