Update tensorflow to 2.11 (#9543)

Co-authored-by: Mehdi Drissi <mdrissi@snapchat.com>
This commit is contained in:
Mehdi Drissi
2023-01-15 02:28:29 -08:00
committed by GitHub
parent eee0ad644d
commit ebde125d70
2 changed files with 2 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
version = "2.10.*"
version = "2.11.*"
# requires a version of numpy with a `py.typed` file
requires = ["numpy>=1.20"]

View File

@@ -112,6 +112,7 @@ class Variable(Tensor, metaclass=_VariableMetaclass):
synchronization: VariableSynchronization = VariableSynchronization.AUTO,
aggregation: VariableAggregation = VariableAggregation.NONE,
shape: _ShapeLike | None = None,
experimental_enable_variable_lifting: _bool = True,
) -> None: ...
def __getattr__(self, name: str) -> Incomplete: ...