File tree 2 files changed +32
-1
lines changed
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,37 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
12
12
### Fixed
13
13
14
14
15
+ ## [ 0.4.2] - 2021-02-18
16
+
17
+ ### Breaking
18
+ - [ src] Make sample_rate positional in BaseModel (#431 )
19
+
20
+ ### Added
21
+ - [ src&egs] ESPNet in LibriMix recipe :tada : (#329 )
22
+ - [ cli] Add --device to asteroid-infer (#375 )
23
+ - [ src] Add stft_n_filters to BaseDCUNet (#406 )
24
+ - [ src&tests] Add MetricTracker (#394 )
25
+ - [ egs] Librimix recipes for all models (#418 )
26
+ - [ src] Track transcriptions in WerTracker (#414 )
27
+ - [ docs] Add note about System Lightning hooks (#428 )
28
+ - [ src] Support Multichannel models (#427 )
29
+ - [ src&egs] Add FasNetTAC model, dataset and recipe (#306 )
30
+ - [ src] Add mulcat option to DPRNN (#416 )
31
+
32
+ ### Changed
33
+ - [ src&install] Drop librosa and refactor requirements files (#386 )
34
+ - [ src] Remove unused hooks (#424 )
35
+ - [ hub] Use huggingface_hub deps, remove inlined HF code (#409 )
36
+
37
+ ### Fixed
38
+ - [ egs] Pass samplerate to model (#407 )
39
+ - [ src] Fix Large-DCUNet-20 arch (#405 )
40
+ - [ src] Fix inconsistent devices for tensors (#417 )
41
+ - [ egs] Fix model saving path in DeepClustering recipes(#398 )
42
+ - [ src] Fix unpassed SR in TasNet and SudoRMRF (#433 )
43
+ - [ egs] Fix reshaping issue in AVSpeech (#441 )
44
+
45
+
15
46
## [ 0.4.1] - 2021-01-05
16
47
17
48
### Added
Original file line number Diff line number Diff line change 4
4
from .utils import deprecation_utils , torch_utils # noqa
5
5
6
6
project_root = str (pathlib .Path (__file__ ).expanduser ().absolute ().parent .parent )
7
- __version__ = "0.4.2rc0 "
7
+ __version__ = "0.4.2 "
8
8
9
9
10
10
def show_available_models ():
You can’t perform that action at this time.
0 commit comments