mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
tensorflow: fix tensorflow.VariableSynchronization (#11330)
This commit is contained in:
@@ -137,10 +137,10 @@ class VariableSynchronization(Enum):
|
||||
ON_READ = 3
|
||||
|
||||
class VariableAggregation(Enum):
|
||||
AUTO = 0
|
||||
NONE = 1
|
||||
ON_WRITE = 2
|
||||
ON_READ = 3
|
||||
NONE = 0
|
||||
SUM = 1
|
||||
MEAN = 2
|
||||
ONLY_FIRST_REPLICA = 3
|
||||
|
||||
class _VariableMetaclass(type): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user