Skip to content

Commit

Permalink
Update to fastai 1.0.43
Browse files Browse the repository at this point in the history
  • Loading branch information
jhartquist committed Feb 14, 2019
1 parent 9fb5452 commit a8a2bb8
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The [`fastai`](https://github.com/fastai/fastai) library is currently being deve

#### Dependencies
* python 3.6
* fastai 1.0.39
* fastai 1.0.43
* librosa 0.6.2

This repo was also heavily inspired by [torchaudio](http://pytorch.org/audio/), especially [`transforms.py`](http://pytorch.org/audio/_modules/torchaudio/transforms.html).
2 changes: 1 addition & 1 deletion fastai_audio/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def create(cls, train_ds, valid_ds, test_ds=None, path='.',
bs=64, equal_lengths=True, length_col=None, tfms=None, **kwargs):
if equal_lengths:
return super().create(train_ds, valid_ds, test_ds=test_ds, path=path,
bs=bs, tfms=tfms, **kwargs)
bs=bs, dl_tfms=tfms, **kwargs)
else:
datasets = super()._init_ds(train_ds, valid_ds, test_ds)
train_ds, valid_ds, fix_ds = datasets[:3]
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit a8a2bb8

Please sign in to comment.