Skip to content

Commit 7fe6e6c

Browse files
seanpmorganfacaiy
authored andcommitted
FIX: Package seq2seq (#101)
* DOC: Add pip install * FIX: Include seq2seq in binary package
1 parent b53d8a7 commit 7fe6e6c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ sh_binary(
1111
"//tensorflow_addons/layers",
1212
"//tensorflow_addons/losses",
1313
"//tensorflow_addons/optimizers",
14+
"//tensorflow_addons/seq2seq",
1415
"//tensorflow_addons/text",
1516
],
1617
)

tensorflow_addons/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,12 @@ def _ensure_tf_install():
7171
del print_function
7272

7373
# Local project imports
74+
from tensorflow_addons import activations
75+
from tensorflow_addons import image
7476
from tensorflow_addons import layers
7577
from tensorflow_addons import losses
7678
from tensorflow_addons import optimizers
77-
from tensorflow_addons import image
79+
from tensorflow_addons import seq2seq
7880
from tensorflow_addons import text
7981

8082
from tensorflow_addons.version import __version__

0 commit comments

Comments
 (0)