-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reimplementation of data management classes, fix bugs and improve eff…
…iciency of LabelTensor
- Loading branch information
1 parent
e851c33
commit 63bc3a7
Showing
28 changed files
with
682 additions
and
997 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
__all__ = [ | ||
"Trainer", "LabelTensor", "Plotter", "Condition", "SamplePointDataset", | ||
"PinaDataModule", "PinaDataLoader", 'TorchOptimizer', 'Graph' | ||
"Trainer", "LabelTensor", "Plotter", "Condition", | ||
"PinaDataModule", 'TorchOptimizer', 'Graph', 'LabelParameter' | ||
] | ||
|
||
from .meta import * | ||
from .label_tensor import LabelTensor | ||
from .label_tensor import LabelTensor, LabelParameter | ||
from .solvers.solver import SolverInterface | ||
from .trainer import Trainer | ||
from .plotter import Plotter | ||
from .condition.condition import Condition | ||
from .data import SamplePointDataset | ||
|
||
from .data import PinaDataModule | ||
from .data import PinaDataLoader | ||
|
||
from .optim import TorchOptimizer | ||
from .optim import TorchScheduler | ||
from .graph import Graph |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.