()
| 1663 | |
| 1664 | |
| 1665 | def GetLSTMParamNames(): |
| 1666 | weight_params = ["input_gate_w", "forget_gate_w", "output_gate_w", "cell_w"] |
| 1667 | bias_params = ["input_gate_b", "forget_gate_b", "output_gate_b", "cell_b"] |
| 1668 | return {'weights': weight_params, 'biases': bias_params} |
| 1669 | |
| 1670 | |
| 1671 | def InitFromLSTMParams(lstm_pblobs, param_values): |
no outgoing calls
no test coverage detected
searching dependent graphs…