We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3e1ca8 commit 88537d3Copy full SHA for 88537d3
test-data/ert/poly_example/poly.ert
@@ -12,5 +12,8 @@ MIN_REALIZATIONS 1
12
GEN_KW COEFFS coeff_priors
13
GEN_DATA POLY_RES RESULT_FILE:poly.out
14
15
+-- DESIGN_MATRIX design_matrix.xlsx DESIGN_SHEET:DesignSheet01 DEFAULT_SHEET:DefaultValues
16
+DESIGN_MATRIX poly_design.xlsx DESIGN_SHEET:DesignSheet01 DEFAULT_SHEET:DefaultSheet
17
+
18
INSTALL_JOB poly_eval POLY_EVAL
19
FORWARD_MODEL poly_eval
test-data/ert/poly_example/poly_design.xlsx
6.06 KB
test-data/ert/poly_example/poly_eval.py
@@ -4,7 +4,7 @@
4
5
def _load_coeffs(filename):
6
with open(filename, encoding="utf-8") as f:
7
- return json.load(f)["COEFFS"]
+ return json.load(f)["DESIGN_MATRIX"]
8
9
10
def _evaluate(coeffs, x):
0 commit comments