Skip to content

Commit 7c3fc74

Browse files
committed
updated CHANGELOG.md for release 0.3.7
1 parent 909bd3d commit 7c3fc74

File tree

2 files changed

+69
-17
lines changed

2 files changed

+69
-17
lines changed

CHANGELOG.md

Lines changed: 69 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,52 @@
22

33
<!-- do not remove -->
44

5+
## 0.3.7
6+
7+
### New Features
8+
9+
- added functionality to support inputs with static/ observed (time-dependent) features
10+
11+
- added functionality to support inputs with categorical/ continuous features
12+
13+
- added functionality to apply patches to time series models
14+
15+
- Added `MultiRocket`/ `MultiRocketPlus` architectures
16+
17+
- added `TSSelfDropout` ([#790](https://github.com/timeseriesAI/tsai/issues/790))
18+
19+
- added `get_feat_idxs` to calculate multimodal indices ([#789](https://github.com/timeseriesAI/tsai/issues/789))
20+
21+
- remaining features assigned to o_cont_idxs by default ([#788](https://github.com/timeseriesAI/tsai/issues/788))
22+
23+
- added patch encoder to `MultiInputWrapper` ([#787](https://github.com/timeseriesAI/tsai/issues/787))
24+
25+
- added `TSTargetEncoder` transform ([#769](https://github.com/timeseriesAI/tsai/issues/769))
26+
27+
- added `TSRobustScaler` to tfm pipelines ([#763](https://github.com/timeseriesAI/tsai/issues/763))
28+
29+
- added new tfms - `TSDropIfTrueCols` and ApplyFunc ([#760](https://github.com/timeseriesAI/tsai/issues/760))
30+
31+
- tensor slices in different devices when using `TensorSplitter` ([#799](https://github.com/timeseriesAI/tsai/issues/799))
32+
33+
### Bugs Squashed
34+
35+
- mixed augmentations (`MixUp1d`, `CutMix1d`,..) are not updating labels ([#791](https://github.com/timeseriesAI/tsai/issues/791))
36+
37+
- `get_UCR_data` function fails due to changed download link ([#785](https://github.com/timeseriesAI/tsai/issues/785))
38+
39+
- error when using `TSSelectColumns` due to pandas df slicing ([#762](https://github.com/timeseriesAI/tsai/issues/762))
40+
41+
- short arrays create issues when running `get_usable_idxs` ([#761](https://github.com/timeseriesAI/tsai/issues/761))
42+
43+
- `get_X_pred` creates different probablities when using numpy array or torch tensor ([#754](https://github.com/timeseriesAI/tsai/issues/754))
44+
45+
- `partial_n` is applied to all datasets by default ([#748](https://github.com/timeseriesAI/tsai/issues/748))
46+
47+
- `get_best_dls_params` function still prints output when the verbose parameter is set to false ([#737](https://github.com/timeseriesAI/tsai/issues/737))
48+
49+
- using xresnet for vision classification raises an error ([#728](https://github.com/timeseriesAI/tsai/issues/728))
50+
551
## 0.3.6
652

753
### New Features
@@ -408,25 +454,26 @@ trying to install the package from source does not work for on Windows 10; it fa
408454

409455
### New Features
410456

411-
* Models:
457+
- Models:
412458
- implement src_key_padding_mask in TST & TSTPlus ([#79](https://github.com/timeseriesAI/tsai/issues/79))
413459

414460
### Bugs Squashed
415461

416-
* Models:
462+
- Models:
417463
- Problem with get_minirocket_features while using CUDA in training ([#153](https://github.com/timeseriesAI/tsai/issues/153))
418464

419465
## 0.2.18
420466

421467
## New features
422468

423-
* Data:
469+
- Data:
424470
- Update TSStandardize to accept some variables and/or groups of variables when using by_var.
425471
- added option to pad labeled and unlabed datasets with SlidingWindow with a padding value
426472
- added split_idxs and idxs to mixed_dls
427473
- added sklearn preprocessing tfms
428474
- added functions to measure sequence gaps
429475
- added decodes to TSStandardize
476+
430477
- Callbacks:
431478
- change mask return values in MVP to True then mask
432479
- updated MVP to accept nan values
@@ -447,8 +494,9 @@ trying to install the package from source does not work for on Windows 10; it fa
447494

448495
### Bug Fixes
449496

450-
* Callbacks:
497+
- Callbacks:
451498
- fixed and issue with inconsistency in show_preds in MVP
499+
452500
- Models:
453501
- Fixed an issue in InceptionTimePlus with stochastic depth regularization (stoch_depth parameter)
454502
- Fixed issue with get_X_preds (different predictions when executed multiple times)
@@ -464,15 +512,16 @@ trying to install the package from source does not work for on Windows 10; it fa
464512

465513
### Bug Fixes
466514

467-
* Models:
515+
- Models:
468516
- Fixed an issue in TST and TSTPlus related to encoder layer creation.
469517
- Fixed issue in TSStandardize when passing tensor with nan values
470518

471519
## New features
472520

473-
* Models:
521+
- Models:
474522
- Added TabTransformer, a state-of-the-art tabular transformer released in Dec 2020.
475523
- TSTPlus now supports padding masks (passed as nan values) by default.
524+
476525
- Data:
477526
- Added a Nan2Value batch transform that removes any nan value in the tensor by zero or median.
478527
- Faster dataloader when suffle == True.
@@ -485,13 +534,13 @@ trying to install the package from source does not work for on Windows 10; it fa
485534

486535
### Breaking changes
487536

488-
* Data:
537+
- Data:
489538
- train_perc in get_splits has been changed to train_size to allow both floats or integers.
490539
- df2Xy API has been modified
491540

492541
### Updates
493542

494-
* Learner:
543+
- Learner:
495544
- Updated 3 new learner APIs: TSClassifier, TSRegressor, TSForecaster.
496545

497546
- ShowGraph callback:
@@ -501,24 +550,24 @@ trying to install the package from source does not work for on Windows 10; it fa
501550

502551
### Bug Fixes
503552

504-
* Data:
553+
- Data:
505554
- Updated df2xy function to fix a bug.
506555

507556
### Updates
508557

509-
* Tutorial notebooks:
558+
- Tutorial notebooks:
510559
- Updated 04 (regression) to use the recently released Monash, UEA & UCR Time Series Extrinsic Regression Repository (2020).
511560

512561
## New features
513562

514-
* Models:
563+
- Models:
515564
- Added new pooling layers and 3 new heads: attentional_pool_head, universal_pool_head, gwa_pool_head
516565

517566
## 0.2.15
518567

519568
### New Features
520569

521-
* General:
570+
- General:
522571
- Added 3 new sklearn-type APIs: TSClassifier, TSRegressor and TSForecaster.
523572

524573
- Data:
@@ -545,23 +594,25 @@ trying to install the package from source does not work for on Windows 10; it fa
545594

546595
### Bug Fixes
547596

548-
* Models:
597+
- Models:
549598
- Fixed bug that prevented models to freeze or unfreeze. Now all models that end with Plus can take predefined weights and learn.freeze()/ learn.unfreeze() will work as expected.
550599

551600
## 0.2.14
552601

553602
### New Features
554603

555-
* Data:
604+
- Data:
556605
- External: added a new function get_Monash_data to get extrinsic regression data.
606+
557607
- Models:
558608
- Added show_batch functionality to TSBERT.
559609

560610
## 0.2.13
561611

562612
### New Features
563613

564-
* General: Added min requirements for all package dependencies.
614+
- General: Added min requirements for all package dependencies.
615+
565616
- Data:
566617
- Validation: added split visualization (show_plot=True by default).
567618
- Data preprocessing: add option to TSStandardize or TSNormalize by_step.
@@ -580,7 +631,7 @@ trying to install the package from source does not work for on Windows 10; it fa
580631

581632
### Bug Fixes
582633

583-
* Data:
634+
- Data:
584635
- ROCKET: fixed a bug in `create_rocket_features`.
585636

586637
## 0.2.12
@@ -628,7 +679,8 @@ trying to install the package from source does not work for on Windows 10; it fa
628679

629680
### New Features
630681

631-
* More ts data transforms have been added, including ts to images.
682+
- More ts data transforms have been added, including ts to images.
683+
632684
- New callbacks, like the state of the art noisy_student that will allow you to use unlabeled data.
633685
- New time series, state-of-the-art models are now available like XceptionTime, RNN_FCN (like LSTM_FCN, GRU_FCN), TransformerModel, TST (Transformer), OmniScaleCNN, mWDN (multi-wavelet decomposition network), XResNet1d.
634686
- Some of the models (those finishing with an plus) have additional, experimental functionality (like coordconv, zero_norm, squeeze and excitation, etc).

nbs/models/test.pth

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)