TensorDiffEq
TensorDiffEq copied to clipboard
isAdaptive and distribution
Thank you for sharing this great work.
I am reading the script "TensorDiffEq/tensordiffeq/models.py".
In line 208 and 209, those two values, self.isAdaptive and self.dist, cannot be true at the same time.
However, there is an "if" block starting from line 214 (if self.dist:), and inside this block there is one sentence in line 250 (if self.isAdaptive). I am confused.
Is the distributed training not supported for self adaptive PINN?