Searched refs:state_dict (Results 1 – 10 of 10) sorted by relevance
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
D | state_saving_rnn_estimator.py | 324 state_dict = {} 329 state_dict[state_name] = state_value 330 return state_dict 514 state_dict = state_tuple_to_dict(final_state) 515 prediction_dict.update(state_dict)
|
D | dynamic_rnn_estimator.py | 69 state_dict = {} 74 state_dict[state_name] = state_value 75 return state_dict 515 state_dict = state_tuple_to_dict(final_state) 516 prediction_dict.update(state_dict)
|
D | dynamic_rnn_estimator_test.py | 317 state_dict = { 330 actual_state = dynamic_rnn_estimator.dict_to_state_tuple(state_dict, cell) 335 [state_dict, actual_state, flattened_state]) 424 def get_input_fn(batch_size, sequence_length, state_dict, starting_step=0): argument 438 input_dict = state_dict 461 batch_size, train_sequence_length, state_dict={}) 473 state_dict=incremental_state_dict,
|
/external/autotest/server/site_tests/firmware_Cr50CCDServoCap/ |
D | firmware_Cr50CCDServoCap.py | 137 def state_matches(self, state_dict, state_name, expected_value): argument 140 current_state = state_dict[state_name]
|
/external/python/google-api-python-client/googleapiclient/ |
D | discovery.py | 1046 state_dict = copy.copy(self.__dict__) 1048 del state_dict[dynamic_attr] 1049 del state_dict['_dynamic_attrs'] 1050 return state_dict
|
/external/python/httplib2/python3/httplib2/ |
D | __init__.py | 1453 state_dict = copy.copy(self.__dict__) 1456 if "request" in state_dict: 1457 del state_dict["request"] 1458 if "connections" in state_dict: 1459 del state_dict["connections"] 1460 return state_dict
|
/external/python/httplib2/python2/httplib2/ |
D | __init__.py | 1653 state_dict = copy.copy(self.__dict__) 1656 if "request" in state_dict: 1657 del state_dict["request"] 1658 if "connections" in state_dict: 1659 del state_dict["connections"] 1660 return state_dict
|
/external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/ops/ |
D | seq2seq.py | 981 state_dict = {} 1052 state_dict[name] = state 1054 return outputs_dict, state_dict
|
/external/tensorflow/tensorflow/python/module/ |
D | module_test.py | 430 state_dict = dict( 433 self.assertEqual(state_dict,
|
/external/tensorflow/tensorflow/contrib/legacy_seq2seq/python/kernel_tests/ |
D | seq2seq_test.py | 647 outputs_dict, state_dict = (seq2seq_lib.one2many_rnn_seq2seq( 658 res = sess.run([state_dict["0"]]) 661 res = sess.run([state_dict["1"]])
|