anypinn.core.problem
Core problem abstractions for PINN.
Constraint
Bases: ABC
Abstract base class for a constraint (loss term) in the PINN. Returns a loss value for the given batch.
Source code in src/anypinn/core/problem.py
inject_context(context: InferredContext) -> None
Inject the context into the constraint. This can be used by the constraint to access the data used to compute the loss.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
InferredContext
|
The context to inject. |
required |
Source code in src/anypinn/core/problem.py
loss(batch: TrainingBatch, criterion: nn.Module, log: LogFn | None = None) -> Tensor
abstractmethod
Calculate the loss for this constraint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
TrainingBatch
|
The current batch of data/collocation points. |
required |
criterion
|
Module
|
The loss function (e.g. MSE). |
required |
log
|
LogFn | None
|
Optional logging function. |
None
|
Returns:
| Type | Description |
|---|---|
Tensor
|
The calculated loss tensor. |
Source code in src/anypinn/core/problem.py
Problem
Bases: Module
Aggregates operator residuals and constraints into total loss. Manages fields, parameters, constraints, and validation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
constraints
|
list[Constraint]
|
List of constraints to enforce. |
required |
criterion
|
Module
|
Loss function module. |
required |
fields
|
FieldsRegistry
|
List of fields (neural networks) to solve for. |
required |
params
|
ParamsRegistry
|
List of learnable parameters. |
required |
Source code in src/anypinn/core/problem.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | |
constraints = constraints
instance-attribute
criterion = criterion
instance-attribute
fields = fields
instance-attribute
params = params
instance-attribute
__init__(constraints: list[Constraint], criterion: nn.Module, fields: FieldsRegistry, params: ParamsRegistry)
Source code in src/anypinn/core/problem.py
inject_context(context: InferredContext) -> None
Inject the context into the problem.
This should be called after data is loaded but before training starts. Pure function entries are passed through unchanged.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
InferredContext
|
The context to inject. |
required |
Source code in src/anypinn/core/problem.py
predict(batch: DataBatch) -> tuple[DataBatch, dict[str, Tensor]]
Generate predictions for a given batch of data. Returns unscaled predictions in original domain.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
DataBatch
|
Batch of input coordinates. |
required |
Returns:
| Type | Description |
|---|---|
tuple[DataBatch, dict[str, Tensor]]
|
Tuple of (original_batch, predictions_dict). |
Source code in src/anypinn/core/problem.py
training_loss(batch: TrainingBatch, log: LogFn | None = None) -> Tensor
Calculate the total loss from all constraints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
TrainingBatch
|
Current batch. |
required |
log
|
LogFn | None
|
Optional logging function. |
None
|
Returns:
| Type | Description |
|---|---|
Tensor
|
Sum of losses from all constraints. |
Source code in src/anypinn/core/problem.py
true_values(x: Tensor) -> dict[str, Tensor] | None
Get the true values for a given x coordinates. Returns None if no validation source is configured.