Update Condition notation, delete error outputs and output folders

This commit is contained in:
MatteB03
2025-03-07 14:23:55 +01:00
committed by Nicola Demo
parent 0297344914
commit 2aac9d1ba7
13 changed files with 84 additions and 121762 deletions

View File

@@ -176,12 +176,12 @@
"id": "c46410fa-2718-4fc9-977a-583fe2390028",
"metadata": {},
"source": [
"It is now time to define the problem! We inherit from `ParametricProblem` (since the space invariant typically of this methodology), just defining a simple *input-output* condition."
"It is now time to define the problem! We inherit from `ParametricProblem` (since the space invariance typical of this methodology), just defining a simple *input-target* condition."
]
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": null,
"id": "55cef553-7495-401d-9d17-1acff8ec5953",
"metadata": {},
"outputs": [],
@@ -191,7 +191,7 @@
" parameter_domain = CartesianDomain({'mu': [0, 100]})\n",
"\n",
" conditions = {\n",
" 'io': Condition(input_points=p_train, output_points=u_train)\n",
" 'io': Condition(input=p_train, target=u_train)\n",
" }\n",
"\n",
"poisson_problem = SnapshotProblem()"