* Reimplement conditions * Refactor datasets and implement LabelBatch --------- Co-authored-by: Dario Coscia <dariocos99@gmail.com>
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
"""
|
|
Module for conditions.
|
|
"""
|
|
|
|
__all__ = [
|
|
"Condition",
|
|
"ConditionInterface",
|
|
"DomainEquationCondition",
|
|
"InputTargetCondition",
|
|
"TensorInputTensorTargetCondition",
|
|
"TensorInputGraphTargetCondition",
|
|
"GraphInputTensorTargetCondition",
|
|
"GraphInputGraphTargetCondition",
|
|
"InputEquationCondition",
|
|
"InputTensorEquationCondition",
|
|
"InputGraphEquationCondition",
|
|
"DataCondition",
|
|
"GraphDataCondition",
|
|
"TensorDataCondition",
|
|
]
|
|
|
|
from .condition_interface import ConditionInterface
|
|
from .condition import Condition
|
|
from .domain_equation_condition import DomainEquationCondition
|
|
from .input_target_condition import (
|
|
InputTargetCondition,
|
|
TensorInputTensorTargetCondition,
|
|
TensorInputGraphTargetCondition,
|
|
GraphInputTensorTargetCondition,
|
|
GraphInputGraphTargetCondition,
|
|
)
|
|
from .input_equation_condition import (
|
|
InputEquationCondition,
|
|
InputTensorEquationCondition,
|
|
InputGraphEquationCondition,
|
|
)
|
|
from .data_condition import (
|
|
DataCondition,
|
|
GraphDataCondition,
|
|
TensorDataCondition,
|
|
)
|