Skip to content

Commit b1363f0

Browse files
Merge pull request #54 from MatthewSZhang/multi-output
FEAT make NARX accept multi-output
2 parents 561f855 + b389610 commit b1363f0

File tree

7 files changed

+667
-784
lines changed

7 files changed

+667
-784
lines changed

.github/pull_request_template.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Checklist
2+
3+
- [ ] Used a personal fork to propose changes
4+
- [ ] A reference to a related issue:
5+
- [ ] A description of the changes

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Build wheels
25-
uses: pypa/cibuildwheel@v2.22.0
25+
uses: pypa/cibuildwheel@v2.23.0
2626
env:
2727
CIBW_BUILD: cp3*-*
2828
CIBW_SKIP: pp* *i686* *musllinux* *-macosx_universal2 *-manylinux_ppc64le *-manylinux_s390x

examples/plot_narx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
auto_narx_model = make_narx(
146146
X=X,
147147
y=y,
148-
n_features_to_select=4,
148+
n_terms_to_select=4,
149149
max_delay=3,
150150
poly_degree=2,
151151
verbose=0,

examples/plot_narx_msa.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def auto_duffing_equation(y, t):
110110
narx_model = make_narx(
111111
X=u_train,
112112
y=y_train,
113-
n_features_to_select=10,
113+
n_terms_to_select=10,
114114
max_delay=max_delay,
115115
poly_degree=3,
116116
verbose=0,
@@ -159,7 +159,7 @@ def plot_prediction(ax, t, y_true, y_pred, title):
159159
narx_model = make_narx(
160160
X=u_all,
161161
y=y_all,
162-
n_features_to_select=10,
162+
n_terms_to_select=10,
163163
max_delay=max_delay,
164164
poly_degree=3,
165165
verbose=0,

0 commit comments

Comments
 (0)