From bde2b47b9a3831ccd8c2117110cdbfd4fdd1e4d9 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 26 Jan 2018 22:47:30 +0000 Subject: [PATCH] Deploy to GitHub Pages: 1f3caaa8a492e926b168586efaf89b3ef3228cc2 --- develop/doc/operators.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop/doc/operators.json b/develop/doc/operators.json index 2fc5082971c..894b56e75ac 100644 --- a/develop/doc/operators.json +++ b/develop/doc/operators.json @@ -4645,7 +4645,7 @@ } ] },{ "type" : "gru", - "comment" : "\nGRU Operator implements part calculations of the complete GRU as following:\n\n\\f[\nupdate \\ gate: u_t = actGate(xu_t + W_u * h_{t-1} + b_u) \\\\\nreset \\ gate: r_t = actGate(xr_t + W_r * h_{t-1} + b_r) \\\\\noutput \\ candidate: {h}_t = actNode(xc_t + W_c * dot(r_t, h_{t-1}) + b_c) \\\\\noutput: h_t = dot((1 - u_t), h_{t-1}) + dot(u_t, {h}_t)\n\\f]\n\n@note To implement the complete GRU, fully-connected operator must be used \nbefore to feed xu, xr and xc as the Input of GRU operator.\n", + "comment" : "\nGRU Operator implements part calculations of the complete GRU as following:\n\n$$\nupdate\\_gate: u_t = actGate(xu_t + W_u * h_{t-1} + b_u) \\\\\nreset\\_gate: r_t = actGate(xr_t + W_r * h_{t-1} + b_r) \\\\\noutput\\_candidate: {h}_t = actNode(xc_t + W_c * dot(r_t, h_{t-1}) + b_c) \\\\\noutput: h_t = dot((1 - u_t), h_{t-1}) + dot(u_t, {h}_t)\n$$\n\n@note To implement the complete GRU, fully-connected operator must be used\nbefore to feed xu, xr and xc as the Input of GRU operator.\n", "inputs" : [ { "name" : "Input", -- GitLab