torchaudio 2.5.1__cp39-cp39-macosx_11_0_arm64.whl → 2.6.0__cp39-cp39-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of torchaudio might be problematic. Click here for more details.
- torchaudio/functional/filtering.py +3 -2
- torchaudio/lib/_torchaudio.so +0 -0
- torchaudio/lib/_torchaudio_sox.so +0 -0
- torchaudio/lib/libtorchaudio.so +0 -0
- torchaudio/lib/libtorchaudio_sox.so +0 -0
- torchaudio/version.py +2 -2
- {torchaudio-2.5.1.dist-info → torchaudio-2.6.0.dist-info}/METADATA +16 -5
- {torchaudio-2.5.1.dist-info → torchaudio-2.6.0.dist-info}/RECORD +17 -17
- {torchaudio-2.5.1.dist-info → torchaudio-2.6.0.dist-info}/WHEEL +1 -1
- torio/lib/_torio_ffmpeg4.so +0 -0
- torio/lib/_torio_ffmpeg5.so +0 -0
- torio/lib/_torio_ffmpeg6.so +0 -0
- torio/lib/libtorio_ffmpeg4.so +0 -0
- torio/lib/libtorio_ffmpeg5.so +0 -0
- torio/lib/libtorio_ffmpeg6.so +0 -0
- {torchaudio-2.5.1.dist-info → torchaudio-2.6.0.dist-info}/LICENSE +0 -0
- {torchaudio-2.5.1.dist-info → torchaudio-2.6.0.dist-info}/top_level.txt +0 -0
|
@@ -999,7 +999,8 @@ else:
|
|
|
999
999
|
|
|
1000
1000
|
def lfilter(waveform: Tensor, a_coeffs: Tensor, b_coeffs: Tensor, clamp: bool = True, batching: bool = True) -> Tensor:
|
|
1001
1001
|
r"""Perform an IIR filter by evaluating difference equation, using differentiable implementation
|
|
1002
|
-
developed
|
|
1002
|
+
developed separately by *Yu et al.* :cite:`ismir_YuF23` and *Forgione et al.* :cite:`forgione2021dynonet`.
|
|
1003
|
+
The gradients of ``a_coeffs`` are computed based on a faster algorithm from :cite:`ycy2024diffapf`.
|
|
1003
1004
|
|
|
1004
1005
|
.. devices:: CPU CUDA
|
|
1005
1006
|
|
|
@@ -1664,6 +1665,6 @@ def vad(
|
|
|
1664
1665
|
if not has_triggered:
|
|
1665
1666
|
return waveform[..., :0].view(shape[:-1] + torch.Size([0]))
|
|
1666
1667
|
|
|
1667
|
-
res = waveform[:, pos - samplesLen_ns + flushedLen_ns :]
|
|
1668
|
+
res = waveform[:, max(pos - samplesLen_ns + flushedLen_ns, 0) :]
|
|
1668
1669
|
# unpack batch
|
|
1669
1670
|
return res.view(shape[:-1] + res.shape[-1:])
|
torchaudio/lib/_torchaudio.so
CHANGED
|
Binary file
|
|
Binary file
|
torchaudio/lib/libtorchaudio.so
CHANGED
|
Binary file
|
|
Binary file
|
torchaudio/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = '2.
|
|
2
|
-
git_version = '
|
|
1
|
+
__version__ = '2.6.0'
|
|
2
|
+
git_version = 'd8831425203385077a03c1d92cfbbe3bf2106008'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: torchaudio
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.6.0
|
|
4
4
|
Summary: An audio package for PyTorch
|
|
5
5
|
Home-page: https://github.com/pytorch/audio
|
|
6
6
|
Author: Soumith Chintala, David Pollack, Sean Naren, Peter Goldsborough, Moto Hira, Caroline Chen, Jeff Hwang, Zhaoheng Ni, Xiaohui Zhang
|
|
@@ -15,16 +15,27 @@ Classifier: Operating System :: MacOS :: MacOS X
|
|
|
15
15
|
Classifier: Operating System :: Microsoft :: Windows
|
|
16
16
|
Classifier: Operating System :: POSIX
|
|
17
17
|
Classifier: Programming Language :: C++
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
23
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
23
24
|
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
24
25
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
25
26
|
Description-Content-Type: text/markdown
|
|
26
27
|
License-File: LICENSE
|
|
27
|
-
Requires-Dist: torch
|
|
28
|
+
Requires-Dist: torch==2.6.0
|
|
29
|
+
Dynamic: author
|
|
30
|
+
Dynamic: author-email
|
|
31
|
+
Dynamic: classifier
|
|
32
|
+
Dynamic: description
|
|
33
|
+
Dynamic: description-content-type
|
|
34
|
+
Dynamic: home-page
|
|
35
|
+
Dynamic: maintainer
|
|
36
|
+
Dynamic: maintainer-email
|
|
37
|
+
Dynamic: requires-dist
|
|
38
|
+
Dynamic: summary
|
|
28
39
|
|
|
29
40
|
torchaudio: an audio library for PyTorch
|
|
30
41
|
========================================
|
|
@@ -79,7 +90,7 @@ If you find this package useful, please cite as:
|
|
|
79
90
|
```bibtex
|
|
80
91
|
@article{yang2021torchaudio,
|
|
81
92
|
title={TorchAudio: Building Blocks for Audio and Speech Processing},
|
|
82
|
-
author={Yao-Yuan Yang and Moto Hira and Zhaoheng Ni and Anjali Chourdia and Artyom Astafurov and Caroline Chen and Ching-Feng Yeh and Christian Puhrsch and David Pollack and Dmitriy Genzel and Donny Greenberg and Edward Z. Yang and Jason Lian and Jay Mahadeokar and Jeff Hwang and Ji Chen and Peter Goldsborough and Prabhat Roy and Sean Narenthiran and Shinji Watanabe and Soumith Chintala and Vincent Quenneville-
|
|
93
|
+
author={Yao-Yuan Yang and Moto Hira and Zhaoheng Ni and Anjali Chourdia and Artyom Astafurov and Caroline Chen and Ching-Feng Yeh and Christian Puhrsch and David Pollack and Dmitriy Genzel and Donny Greenberg and Edward Z. Yang and Jason Lian and Jay Mahadeokar and Jeff Hwang and Ji Chen and Peter Goldsborough and Prabhat Roy and Sean Narenthiran and Shinji Watanabe and Soumith Chintala and Vincent Quenneville-Bélair and Yangyang Shi},
|
|
83
94
|
journal={arXiv preprint arXiv:2110.15018},
|
|
84
95
|
year={2021}
|
|
85
96
|
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
+
torchaudio-2.6.0.dist-info/RECORD,,
|
|
2
|
+
torchaudio-2.6.0.dist-info/LICENSE,sha256=k6WIYahYzBCOa2uDPgjnbosqZjOeSoAHyKWowf-cQNY,1338
|
|
3
|
+
torchaudio-2.6.0.dist-info/WHEEL,sha256=md3JO_ifs5j508p3TDNMgtQVtnQblpGEt_Wo4W56l8Y,107
|
|
4
|
+
torchaudio-2.6.0.dist-info/top_level.txt,sha256=GT0MktEbHKoLnvd-6ii7_dhJVvshupOujk840BcHU4U,17
|
|
5
|
+
torchaudio-2.6.0.dist-info/METADATA,sha256=6Mt_Z5EGlz4hs3HGs2ekPhnD1m_6FX7iXryUcguI_a8,6618
|
|
1
6
|
torio/__init__.py,sha256=aX9s0XAHxHhEXE1akQt74BZ0cMUDgBPhaYHQH1lCbXQ,111
|
|
2
7
|
torio/io/_streaming_media_decoder.py,sha256=vSylEWAB_JXOW-0E1n0zDM3Q3Vf1jc1-CNpdUSs13XU,34376
|
|
3
8
|
torio/io/__init__.py,sha256=xz7REkkyfRhAASzVCAfoNruFtAGIx1I--usPAa2tMww,226
|
|
4
9
|
torio/io/_streaming_media_encoder.py,sha256=rSTYmHdi7RPJ6YPgAyGJhbQvn4mcxLem3nlnr_ophTs,19722
|
|
5
10
|
torio/utils/__init__.py,sha256=ScHtnontymRDNn9qEIC0neue5mfG82yhB8bwETOb0Z4,56
|
|
6
11
|
torio/utils/ffmpeg_utils.py,sha256=JsP2ptjQAE4U7Z_CSauQKH_k72wdu6nrBMfNHl9pIXQ,8026
|
|
7
|
-
torio/lib/libtorio_ffmpeg5.so,sha256=
|
|
8
|
-
torio/lib/_torio_ffmpeg4.so,sha256=
|
|
12
|
+
torio/lib/libtorio_ffmpeg5.so,sha256=Mk75i8ZjVzwNobwB5FHbF1toGHU733NtJYxzNdV6mPU,515760
|
|
13
|
+
torio/lib/_torio_ffmpeg4.so,sha256=nSs44MMhIFTbfNeIhntGT5l4mQ9pRcc6CRxHXGyJ5fY,540448
|
|
9
14
|
torio/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
torio/lib/_torio_ffmpeg5.so,sha256=
|
|
11
|
-
torio/lib/libtorio_ffmpeg4.so,sha256=
|
|
12
|
-
torio/lib/_torio_ffmpeg6.so,sha256=
|
|
13
|
-
torio/lib/libtorio_ffmpeg6.so,sha256=
|
|
15
|
+
torio/lib/_torio_ffmpeg5.so,sha256=5X1qK1ObANRBEkTyX0vv6S9FckY-j9sAMnGCpWqHZGQ,540448
|
|
16
|
+
torio/lib/libtorio_ffmpeg4.so,sha256=H4aUzE4z-wA8X0m398lge_bOSBrYVF7BeaXU1YQc6oA,515760
|
|
17
|
+
torio/lib/_torio_ffmpeg6.so,sha256=1DCoiiHdOuMyD0CTiZqqQIUaxOP_bED9zqPX9NZaOQ0,540448
|
|
18
|
+
torio/lib/libtorio_ffmpeg6.so,sha256=ALqyHJEH5_oIX7HhMo9eKuHfhCxfF6rJpPP7fmQ1qKU,515760
|
|
14
19
|
torio/_extension/__init__.py,sha256=q5jjeOhSrzqn0WTEwrx61Fr13aCjb7IQCDGsBqAdGEU,313
|
|
15
20
|
torio/_extension/utils.py,sha256=ktE0L_z-RF1qkpLVGgdG4DEGHa2Zn6uokOAmwC7Evvo,4904
|
|
16
|
-
torchaudio
|
|
17
|
-
torchaudio-2.5.1.dist-info/LICENSE,sha256=k6WIYahYzBCOa2uDPgjnbosqZjOeSoAHyKWowf-cQNY,1338
|
|
18
|
-
torchaudio-2.5.1.dist-info/WHEEL,sha256=HFavhTVJkcvCt-evT_vd5IQu5DLxvBS21rDCLgo75qw,107
|
|
19
|
-
torchaudio-2.5.1.dist-info/top_level.txt,sha256=GT0MktEbHKoLnvd-6ii7_dhJVvshupOujk840BcHU4U,17
|
|
20
|
-
torchaudio-2.5.1.dist-info/METADATA,sha256=RcyC-WrPDB8jGnGByVu2pMbcYh2Yu7gjeBIl9JoibDA,6355
|
|
21
|
-
torchaudio/version.py,sha256=f4bXuRI4ZuPihUu1mg1Iysl1uDGTQK32QPtKHBc8_og,79
|
|
21
|
+
torchaudio/version.py,sha256=qdqyZ5qtaSty3TQ_aOF_evKLmPr_NeVqKaBIjudqIJ0,79
|
|
22
22
|
torchaudio/kaldi_io.py,sha256=TwS2YgSLlJwOXjNNsHBuXyxhKeKKpptVHLBV7QYZCas,5073
|
|
23
23
|
torchaudio/__init__.py,sha256=VSnZ6s4e5clAj7f7aCXBZt9amskeXg1j19txAQBQ2Iw,892
|
|
24
24
|
torchaudio/_internal/__init__.py,sha256=gjU8g9HhVd9hHrHXJM0xOlZL6cT8ktO60MN8RHI6ZbA,241
|
|
@@ -132,16 +132,16 @@ torchaudio/_backend/soundfile_backend.py,sha256=qJHEEXU1egCkPJ2Y9uJWFvVhW3AqDZ7z
|
|
|
132
132
|
torchaudio/transforms/__init__.py,sha256=Tp1o4haiJAV3MRJenmvGXFbmt-RE4qM_pd6U3Ghohqw,1270
|
|
133
133
|
torchaudio/transforms/_transforms.py,sha256=QHrEsxxxm1bPd5dltPeTcNOsMBu0Ecxa2oe6GIX-nvk,86872
|
|
134
134
|
torchaudio/transforms/_multi_channel.py,sha256=GZ2rrwFt2KtSG7At7kS9Bqh1KmYYw0HwcUnEjc-AWr8,22221
|
|
135
|
-
torchaudio/lib/libtorchaudio.so,sha256
|
|
135
|
+
torchaudio/lib/libtorchaudio.so,sha256=v_1YfST0AOT-SrIlWTm2KIUDyILNkuG6M3a7SmJ1pvs,721232
|
|
136
136
|
torchaudio/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
|
-
torchaudio/lib/_torchaudio.so,sha256=
|
|
138
|
-
torchaudio/lib/libtorchaudio_sox.so,sha256=
|
|
139
|
-
torchaudio/lib/_torchaudio_sox.so,sha256=
|
|
137
|
+
torchaudio/lib/_torchaudio.so,sha256=IxhrOUYjbphOYujySmQ3UfrSk1nj1Yw6AofQDfIy7Cc,191296
|
|
138
|
+
torchaudio/lib/libtorchaudio_sox.so,sha256=l8AUi48C3PuqNoRcMBkuCl_XDSfWj3qgGI1KNwwhXtc,173280
|
|
139
|
+
torchaudio/lib/_torchaudio_sox.so,sha256=li8UjFTMKtr84o-PO4Fn1qiU9RlEwCgkMUsoxMv2aqM,319104
|
|
140
140
|
torchaudio/_extension/__init__.py,sha256=lQPB8K7VSxWmtTEiMmF-u7WVq1O10_t5nEghkjCf4Ks,2202
|
|
141
141
|
torchaudio/_extension/utils.py,sha256=4FTD6xwcSLqVJ3Kmpx5cvJp1oAUKmWwRjwuxpcbrmzw,6258
|
|
142
142
|
torchaudio/sox_effects/sox_effects.py,sha256=7cHpPFRJ_pZuohHMnX9JIhiVmIJGYntSmgT6QH5GNMA,10981
|
|
143
143
|
torchaudio/sox_effects/__init__.py,sha256=gCxdiwHK3ldlGCeYc9VatJW5HyzjWIgw_Sz_krp_rOw,262
|
|
144
|
-
torchaudio/functional/filtering.py,sha256=
|
|
144
|
+
torchaudio/functional/filtering.py,sha256=EdYtv2z893Qi58BHIR1VGDfRaGCo0sIKl4k98-vwPkg,61554
|
|
145
145
|
torchaudio/functional/__init__.py,sha256=l-gC2WyY5COabU0lhkUS8EnwOYdEYR_6234OyoAIgnU,2357
|
|
146
146
|
torchaudio/functional/_alignment.py,sha256=wmDeohWvuoYORYDeIRxnYUhUqv1uCUkaCZYLEK_ryUg,4695
|
|
147
147
|
torchaudio/functional/functional.py,sha256=c8qr3mmPXLi40N4NCLcpHvQeUIuoNtbszksjtruC15g,96006
|
torio/lib/_torio_ffmpeg4.so
CHANGED
|
Binary file
|
torio/lib/_torio_ffmpeg5.so
CHANGED
|
Binary file
|
torio/lib/_torio_ffmpeg6.so
CHANGED
|
Binary file
|
torio/lib/libtorio_ffmpeg4.so
CHANGED
|
Binary file
|
torio/lib/libtorio_ffmpeg5.so
CHANGED
|
Binary file
|
torio/lib/libtorio_ffmpeg6.so
CHANGED
|
Binary file
|
|
File without changes
|
|
File without changes
|