Skip to content

Commit 22e7e1f

Browse files
authored
Merge pull request #81 from mikekeith52/predict
Predict
2 parents cd048bb + d7d1052 commit 22e7e1f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1492
-1532
lines changed

.DS_Store

0 Bytes
Binary file not shown.

docs/.DS_Store

0 Bytes
Binary file not shown.

docs/change_log.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
# Changelog
22
All notable changes to this project are documented in this file since v0.1.8. The source code for most releases is available on [GitHub](https://github.com/mikekeith52/scalecast).
33

4-
## [0.19.0]
4+
## [0.19.1] - 2023-09-16
5+
### Added
6+
- Added transfer learning for RNN and LSTM models.
7+
- Added more Xvars to infer in the `util.infer_apply_Xvar_selection()` function.
8+
- Added `regr` argument to `Forecaster.transfer_predict()`.
9+
- Added `Forecater.save_tf_model()` and `Forecaster.load_tf_model()` functions.
10+
### Changed
11+
- Transferred models store Xvar info in history.
12+
### Fixed
13+
- Fixed an issue with RNN models where AR terms that were not sequential were not counted correctly.
14+
- Fixed an issue where Xvars were not being recorded correctly in history for RNN models.
15+
16+
## [0.19.0] - 2023-09-15
517
### Added
618
- Added `Forecaster.transfer_predict()` method. Only univariate sklearn models supported for now (#77).
719
- Added `Forecaster.transfer_cis()` method.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name = 'SCALECAST',
11-
version = '0.19.0',
11+
version = '0.19.1',
1212
license='MIT',
1313
description="The practitioner's time series forecasting library",
1414
long_description=long_description,

src/.DS_Store

0 Bytes
Binary file not shown.

src/SCALECAST.egg-info/SOURCES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ src/scalecast/Pipeline.py
5353
src/scalecast/SeriesTransformer.py
5454
src/scalecast/_Forecaster_parent.py
5555
src/scalecast/__init__.py
56+
src/scalecast/_sklearn_models_uni.py
57+
src/scalecast/_tf_models.py
5658
src/scalecast/_utils.py
5759
src/scalecast/auxmodels.py
5860
src/scalecast/multiseries.py

src/scalecast/Forecaster.py

Lines changed: 147 additions & 242 deletions
Large diffs are not rendered by default.

src/scalecast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.19.0'
1+
__version__ = '0.19.1'
22

33
from .util import metrics
44
import inspect
-9 Bytes
Binary file not shown.
-3.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)