Skip to content

Commit b53076a

Browse files
Merge pull request #23 from MatthewSZhang/narx
FEAT add narx model
2 parents 7537dd0 + cefff95 commit b53076a

File tree

8 files changed

+1486
-327
lines changed

8 files changed

+1486
-327
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
FMT=xml pixi run test-coverage
4949
- name: Upload coverage reports to Codecov
50-
uses: codecov/codecov-action@v5.0.2
50+
uses: codecov/codecov-action@v5
5151
with:
5252
token: ${{ secrets.CODECOV_TOKEN }}
5353
- name: Build SDist

doc/index.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ API Reference
2222
extend
2323
ssc
2424
ols
25+
make_poly_ids
26+
make_poly_features
27+
make_time_shift_features
28+
make_time_shift_ids
29+
make_narx
30+
print_narx
31+
Narx
2532

2633
Useful Links
2734
------------

fastcan/__init__.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44

55
from ._extend import extend
66
from ._fastcan import FastCan
7+
from ._narx import (
8+
Narx,
9+
make_narx,
10+
make_poly_features,
11+
make_poly_ids,
12+
make_time_shift_features,
13+
make_time_shift_ids,
14+
print_narx,
15+
)
716
from ._refine import refine
817
from ._utils import ols, ssc
918

@@ -13,4 +22,11 @@
1322
"ols",
1423
"refine",
1524
"extend",
25+
"make_narx",
26+
"print_narx",
27+
"Narx",
28+
"make_poly_features",
29+
"make_poly_ids",
30+
"make_time_shift_features",
31+
"make_time_shift_ids",
1632
]

0 commit comments

Comments
 (0)