-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from Yoctol/fix-grucell-initial-state
make GRUCell.get_initial_state feedable
- Loading branch information
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import tensorflow as tf | ||
|
||
|
||
class GRUCell(tf.keras.layers.GRUCell): | ||
|
||
def get_initial_state(self, inputs=None, batch_size=None, dtype=None): | ||
return [super().get_initial_state(inputs, batch_size, dtype)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import tensorflow as tf | ||
|
||
from ..recurrent import GRUCell | ||
|
||
|
||
def test_initial_state(): | ||
cell = GRUCell(10) | ||
x = tf.zeros([3, 4]) | ||
cell(x, cell.get_initial_state(x)) |