Skip to content

Commit

Permalink
fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoming0625 committed Feb 26, 2025
1 parent fe92439 commit 26beb21
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion deepxde/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,6 @@ def on_train_end(self):
)



class PDEPointResampler(Callback):
"""Resample the training points for PDE and/or BC losses every given period.
Expand Down
2 changes: 1 addition & 1 deletion deepxde/nn/paddle/deeponet.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .nn import NN
from .. import activations
from .. import initializers
from deepxde.utils.deeponet_strategy import (
from ...utils.deeponet_strategy import (
SingleOutputStrategy,
IndependentStrategy,
SplitBothStrategy,
Expand Down
2 changes: 1 addition & 1 deletion deepxde/nn/pytorch/deeponet.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .fnn import FNN
from .nn import NN
from .. import activations
from deepxde.utils.deeponet_strategy import (
from ...utils.deeponet_strategy import (
SingleOutputStrategy,
IndependentStrategy,
SplitBothStrategy,
Expand Down
2 changes: 1 addition & 1 deletion deepxde/nn/tensorflow/deeponet.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .fnn import FNN
from .nn import NN
from .. import activations
from deepxde.utils.deeponet_strategy import (
from ...utils.deeponet_strategy import (
SingleOutputStrategy,
IndependentStrategy,
SplitBothStrategy,
Expand Down

0 comments on commit 26beb21

Please sign in to comment.