পাবলিক ফাইনাল enum পরিবর্তনশীল সিঙ্ক্রোনাইজেশন
Indicates when a distributed variable will be synced.
tensorflow.VariableSynchronization
ধ্রুবক
int | VARIABLE_SYNCHRONIZATION_AUTO_VALUE | `AUTO`: Indicates that the synchronization will be determined by the current `DistributionStrategy` (eg. |
int | VARIABLE_SYNCHRONIZATION_NONE_VALUE | `NONE`: Indicates that there will only be one copy of the variable, so there is no need to sync. |
int | VARIABLE_SYNCHRONIZATION_ON_READ_VALUE | `ON_READ`: Indicates that the variable will be aggregated across devices when it is read (eg. |
int | VARIABLE_SYNCHRONIZATION_ON_WRITE_VALUE | `ON_WRITE`: Indicates that the variable will be updated across devices every time it is written. |
উত্তরাধিকারসূত্রে প্রাপ্ত পদ্ধতি
এনাম মান
পাবলিক স্ট্যাটিক ফাইনাল ভেরিয়েবল সিঙ্ক্রোনাইজেশন অস্বীকৃত
সর্বজনীন স্ট্যাটিক চূড়ান্ত পরিবর্তনশীল সিঙ্ক্রোনাইজেশন VARIABLE_SYNCHRONIZATION_AUTO
`AUTO`: Indicates that the synchronization will be determined by the current `DistributionStrategy` (eg. With `MirroredStrategy` this would be `ON_WRITE`).
VARIABLE_SYNCHRONIZATION_AUTO = 0;
সর্বজনীন স্ট্যাটিক চূড়ান্ত পরিবর্তনশীল সিঙ্ক্রোনাইজেশন VARIABLE_SYNCHRONIZATION_NONE
`NONE`: Indicates that there will only be one copy of the variable, so there is no need to sync.
VARIABLE_SYNCHRONIZATION_NONE = 1;
পাবলিক স্ট্যাটিক ফাইনাল ভেরিয়েবল সিঙ্ক্রোনাইজেশন VARIABLE_SYNCHRONIZATION_ON_READ
`ON_READ`: Indicates that the variable will be aggregated across devices when it is read (eg. when checkpointing or when evaluating an op that uses the variable).
VARIABLE_SYNCHRONIZATION_ON_READ = 3;
সর্বজনীন স্ট্যাটিক চূড়ান্ত পরিবর্তনশীল সিঙ্ক্রোনাইজেশন VARIABLE_SYNCHRONIZATION_ON_WRITE
`ON_WRITE`: Indicates that the variable will be updated across devices every time it is written.
VARIABLE_SYNCHRONIZATION_ON_WRITE = 2;
ধ্রুবক
VARIABLE_SYNCHRONIZATION_AUTO_VALUE সর্বজনীন স্ট্যাটিক চূড়ান্ত int
`AUTO`: Indicates that the synchronization will be determined by the current `DistributionStrategy` (eg. With `MirroredStrategy` this would be `ON_WRITE`).
VARIABLE_SYNCHRONIZATION_AUTO = 0;
ধ্রুবক মান: 0
VARIABLE_SYNCHRONIZATION_NONE_VALUE সর্বজনীন স্ট্যাটিক চূড়ান্ত int
`NONE`: Indicates that there will only be one copy of the variable, so there is no need to sync.
VARIABLE_SYNCHRONIZATION_NONE = 1;
ধ্রুবক মান: 1
VARIABLE_SYNCHRONIZATION_ON_READ_VALUE সর্বজনীন স্ট্যাটিক চূড়ান্ত int
`ON_READ`: Indicates that the variable will be aggregated across devices when it is read (eg. when checkpointing or when evaluating an op that uses the variable).
VARIABLE_SYNCHRONIZATION_ON_READ = 3;
ধ্রুবক মান: 3
পাবলিক স্ট্যাটিক চূড়ান্ত int VARIABLE_SYNCHRONIZATION_ON_WRITE_VALUE
`ON_WRITE`: Indicates that the variable will be updated across devices every time it is written.
VARIABLE_SYNCHRONIZATION_ON_WRITE = 2;
ধ্রুবক মান: 2