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

  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
rnn_common.py 56 def _get_single_cell(cell_type, num_units):
60 cell_type: Either a string identifying the `RNNCell` type or a subclass of
66 ValueError: `cell_type` is an invalid `RNNCell` name.
67 TypeError: `cell_type` is not a string or a subclass of `RNNCell`.
69 cell_type = _CELL_TYPES.get(cell_type, cell_type)
70 if not cell_type or not issubclass(cell_type, contrib_rnn.RNNCell):
72 list(_CELL_TYPES.keys()), cell_type))
    [all...]
dynamic_rnn_estimator.py 380 cell_type,
408 cell_type: A string, a subclass of `RNNCell` or an instance of an `RNNCell`.
485 cell = rnn_common.construct_rnn_cell(num_units, cell_type, dropout)
551 cell_type='basic_rnn',
613 cell_type: A subclass of `RNNCell` or one of 'basic_rnn,' 'lstm' or 'gru'.
673 cell_type=cell_type,
state_saving_rnn_estimator.py 381 def _get_rnn_model_fn(cell_type,
401 cell_type: A subclass of `RNNCell` or one of 'basic_rnn,' 'lstm' or 'gru'.
468 cell = rnn_common.construct_rnn_cell(num_units, cell_type, dropout)
540 cell_type='basic_rnn',
572 `RNNCell`s in each layer. Either `num_units` is specified or `cell_type`
574 cell_type: A subclass of `RNNCell` or one of 'basic_rnn,' 'lstm' or 'gru'.
605 specified and (b) `cell_type` is an instance of `RNNCell`.
631 cell_type=cell_type,
dynamic_rnn_estimator_test.py 251 cell_type='basic_rnn',
390 cell_type = 'lstm'
397 cell_type=cell_type,
452 cell_type='lstm',
647 cell_type = 'basic_rnn'
686 cell_type=cell_type,
709 cell_type = 'lstm'
742 cell_type=cell_type
    [all...]
state_saving_rnn_estimator_test.py 337 cell_type='basic_rnn',
498 cell_type='lstm',
554 cell_type='lstm',
637 cell_type='basic_rnn',
  /external/tcpdump/
print-atm.c 455 uint8_t cell_type, func_type, payload, clp; local
465 cell_type = ((*(p+ATM_HDR_LEN_NOHEC+hec))>>4) & 0x0f;
484 tok2str(oam_celltype_values, "unknown", cell_type),
485 cell_type));
487 if (oam_functype_values[cell_type] == NULL)
491 tok2str(oam_functype_values[cell_type],"none",func_type),
496 switch (cell_type << 4 | func_type) {
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
models.py 286 def get_rnn_model(rnn_size, cell_type, num_layers, input_op_fn, bidirectional,
293 cell_type: The type of rnn cell, including rnn, gru, and lstm.
322 if cell_type == 'rnn':
324 elif cell_type == 'gru':
326 elif cell_type == 'lstm':
330 raise ValueError('cell_type {} is not supported. '.format(cell_type))
  /external/v8/src/
property-details.h 235 PropertyCellType cell_type) {
239 PropertyCellTypeField::encode(cell_type);
254 PropertyCellType cell_type = PropertyCellType::kNoCell) {
255 return PropertyDetails(kData, NONE, 0, cell_type);
328 PropertyCellType cell_type() const { function in class:v8::internal::BASE_EMBEDDED
objects-printer.cc 221 case CELL_TYPE:
1117 PropertyCellType cell_type = property_details().cell_type(); local
    [all...]
code-stubs.cc 1537 PropertyCellType cell_type = this->cell_type(); local
    [all...]
code-stubs.h 934 PropertyCellType cell_type() const { function in namespace:v8::internal
939 DCHECK(PropertyCellType::kConstantType == cell_type());
    [all...]
objects.cc 1935 auto cell_type = value->IsUndefined(isolate) local
    [all...]
objects.h 370 V(CELL_TYPE) \
709 CELL_TYPE,
    [all...]
  /external/trappy/trappy/nbexport/
exporter.py 50 if cell.cell_type == 'code' and hasattr(cell, "outputs"):
  /external/v8/src/compiler/
js-native-context-specialization.cc 332 PropertyCellType property_cell_type = property_details.cell_type();
377 if (property_details.cell_type() != PropertyCellType::kMutable ||
383 if (property_details.cell_type() == PropertyCellType::kConstant ||
384 property_details.cell_type() == PropertyCellType::kUndefined) {
391 if (property_details.cell_type() == PropertyCellType::kConstantType) {
424 switch (property_details.cell_type()) {
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
md8475a.py     [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 5191 auto cell_type = it->property_details().cell_type(); local
6461 auto cell_type = it->property_details().cell_type(); local
    [all...]

Completed in 848 milliseconds