torchaudio 2.5.1__cp311-cp311-win_amd64.whl → 2.6.0__cp311-cp311-win_amd64.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.

@@ -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 independently by *Yu et al.* :cite:`ismir_YuF23` and *Forgione et al.* :cite:`forgione2021dynonet`.
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:])
Binary file
Binary file
torchaudio/version.py CHANGED
@@ -1,2 +1,2 @@
1
- __version__ = '2.5.1+cpu'
2
- git_version = '1661daf10599ca8889f092ec37814fabbe202bb0'
1
+ __version__ = '2.6.0+cpu'
2
+ git_version = 'd8831425203385077a03c1d92cfbbe3bf2106008'
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: torchaudio
3
- Version: 2.5.1
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 (==2.5.1)
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-B��lair and Yangyang Shi},
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
  }
@@ -65,14 +65,14 @@ torchaudio/models/conv_tasnet.py,sha256=D7Y10sOzLe03gygfN1J5R73SIHkIGVQOkqKQ6Ni3
65
65
  torchaudio/models/conformer.py,sha256=gVrOYeJkPlVaX-4eZpVzNUe_r3k7g1Y6NaaQ8JZP-r4,10361
66
66
  torchaudio/models/_hdemucs.py,sha256=ipAj7965PO_WEZqQwW1om9gQj90UhQOeU6HU3Lpvzwo,39250
67
67
  torchaudio/models/__init__.py,sha256=Gi3UQvxjwTLW9wfKlF42O3Vup70d0bk2x-rZS89ASwI,2080
68
- torchaudio/lib/libtorchaudio.pyd,sha256=W-_XrKhAnsOfmzC7bZ_uAE6t25Vm_OC0N7Gintt4VSo,1544704
69
- torchaudio/lib/_torchaudio.pyd,sha256=r53o6o4k6OTLK8uxNAgOMvILd3srz1ZW54fNYh4tBn0,757760
68
+ torchaudio/lib/libtorchaudio.pyd,sha256=dzCmYLr1KfzaQnr54_CMiyr6szMF8MHlDrSEr_i3ZeM,1548800
69
+ torchaudio/lib/_torchaudio.pyd,sha256=1paczLs_AfkdsFEzt8c9NKOTrcdpmbip61bbTUwZrOI,759296
70
70
  torchaudio/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
71
  torchaudio/io/_playback.py,sha256=UpPb-m35XUlYL2lybQGXAJAvfmUPT_Kqx4jpYArIAz0,2393
72
72
  torchaudio/io/_effector.py,sha256=5Kh7br-ZuLzmoRSVXk5JNQ8NkwcGUiY_mrt7d_1W1eg,12217
73
73
  torchaudio/io/__init__.py,sha256=5U3MlGVGw5vPTZqCZ-7N25oVfwssA6KUtluj-9rNRMM,310
74
74
  torchaudio/functional/functional.py,sha256=qjdU3kILy69-jQL3lQ2EO1y_dpLDif_jAp99hBRJnPo,98541
75
- torchaudio/functional/filtering.py,sha256=L3PaGnp7QKXwL4JECNSAhAVP92rrR8BGfdXoybSrHFU,63114
75
+ torchaudio/functional/filtering.py,sha256=zQnWC-sLVZs8SY1qRnBy0A4fO-9EBtYVxX1NoZpE5qo,63224
76
76
  torchaudio/functional/_alignment.py,sha256=46GhuEYUqI1gE-2UKSu9BIQF1QpZ5yunUS8JZGZJuss,4823
77
77
  torchaudio/functional/__init__.py,sha256=NwlPoWjNravX4itCZy-dzN-BkCFdDHFRwvPle8JjBRo,2484
78
78
  torchaudio/datasets/yesno.py,sha256=B3hRNUazvB8V8SwOUlQzliB9vI9gMkl9SEl-dZ4PEaw,3115
@@ -119,22 +119,22 @@ torchaudio/_backend/ffmpeg.py,sha256=b6dr67sWg47uFJxIyWLXCtrdPMlgjYdWmj7n919Ph1M
119
119
  torchaudio/_backend/common.py,sha256=h9R29RTTW2lqOiKYByETXfXWsrTH65uHxGDKw3bWj-s,1835
120
120
  torchaudio/_backend/backend.py,sha256=CakqB9z_4ZtLsQTyMZbEbB0kTqpUe_gidHgObv9acyQ,1618
121
121
  torchaudio/_backend/__init__.py,sha256=2bMTZ3tG2_5nvnqAAmvEnGBInO5a9DdUPNoyXEnX1M0,1692
122
- torchaudio/version.py,sha256=qzT06xOUNfQow7o3hF8gdvjQFq0WRh9pGF5qIebVMSg,85
122
+ torchaudio/version.py,sha256=aDI5Usjjh16XY62ABy8FljzI4NItLTbNAv5ZRhK0zbw,85
123
123
  torchaudio/kaldi_io.py,sha256=acwysr6fASV9IcOTF0AbVPCo_VQTu1M2AOn1SXm3GPE,5217
124
124
  torchaudio/__init__.py,sha256=kUWnkwcKERMj7m-B4E826aGZWGa5sJs1DEpLP6LZoEs,945
125
- torchaudio-2.5.1.dist-info/LICENSE,sha256=MmOOF5kxv-VR6r9nsOZ6E7SD4Wa1jdcmNjSrf4nzlvU,1363
126
- torchaudio-2.5.1.dist-info/METADATA,sha256=Eg_SzdHyPQCcqwJgMGZpYECHYLGXy7xXu4bEPV36V04,6468
127
- torchaudio-2.5.1.dist-info/WHEEL,sha256=qW4RD1rfHm8ZRUjJbXUnZHDNPCXHt6Rq0mgR8lv_JEg,101
128
- torchaudio-2.5.1.dist-info/top_level.txt,sha256=GT0MktEbHKoLnvd-6ii7_dhJVvshupOujk840BcHU4U,17
129
- torchaudio-2.5.1.dist-info/RECORD,,
125
+ torchaudio-2.6.0.dist-info/LICENSE,sha256=MmOOF5kxv-VR6r9nsOZ6E7SD4Wa1jdcmNjSrf4nzlvU,1363
126
+ torchaudio-2.6.0.dist-info/METADATA,sha256=D2NRpuk-Y5oxtxApwqgVwJd3tV0zK8X_UXoDF4Nxvhw,6742
127
+ torchaudio-2.6.0.dist-info/WHEEL,sha256=yNnHoQL2GZYIUXm9YvoaBpFjGlUoK9qq9oqYeudrWlE,101
128
+ torchaudio-2.6.0.dist-info/top_level.txt,sha256=GT0MktEbHKoLnvd-6ii7_dhJVvshupOujk840BcHU4U,17
129
+ torchaudio-2.6.0.dist-info/RECORD,,
130
130
  torio/utils/ffmpeg_utils.py,sha256=2-7XS7CEZB0-M9-Ls5Tki4v7aXGJiVg7WouAUZjt3XI,8273
131
131
  torio/utils/__init__.py,sha256=uQV58SlyikUr6yF4HITASCvuX-_fnzbeDxFRzFucQE4,60
132
- torio/lib/libtorio_ffmpeg6.pyd,sha256=ichMf287mc6u2guXBDZ1u1gMB-ALrGhxJo-K_pMim_w,964096
133
- torio/lib/libtorio_ffmpeg5.pyd,sha256=Q8ld8wOMN2v0qM8FR-lj9YteDMCi9Mz-LjqVUi6LuWs,964096
134
- torio/lib/libtorio_ffmpeg4.pyd,sha256=YaOycEx8SYh9mSKtjl9r6GQWr_oQ3iLtCRB1WBSYZ9c,964096
135
- torio/lib/_torio_ffmpeg6.pyd,sha256=-ozyR73fq9IXcdahady4tpTzQlH6z9SiK9StJCQRCo8,1746944
136
- torio/lib/_torio_ffmpeg5.pyd,sha256=xjCcDHQr8F6YXIHHQYLA0t7IA8x8o2gKrjGxL-Rkebk,1746944
137
- torio/lib/_torio_ffmpeg4.pyd,sha256=764t3ARZDTQVY0YLiC3SNMwe35ThgvCpnlkI9wVL8nM,1746944
132
+ torio/lib/libtorio_ffmpeg6.pyd,sha256=8ubpUAEfGomn5NMaQ3XZ2ixqQCZK-669cdOSSLj9oQ0,965632
133
+ torio/lib/libtorio_ffmpeg5.pyd,sha256=7ftfE5mYW4x--TEu4XDBzSyE2UIAoCxevkrrtRMnKMY,965632
134
+ torio/lib/libtorio_ffmpeg4.pyd,sha256=cDsA1MB0pGHYJz5eZZykRRI_0UO6werExyVEdIDpn9c,965632
135
+ torio/lib/_torio_ffmpeg6.pyd,sha256=0OJHeigNkKiOTtbWarBmO2a4m9l4sfEjfc-IU5KpBHM,1770496
136
+ torio/lib/_torio_ffmpeg5.pyd,sha256=W2q39BupUysfVi8aUqACwwGpB7okwUgWN-ndQ3RQqCA,1770496
137
+ torio/lib/_torio_ffmpeg4.pyd,sha256=_rlvIWO8EWgc5PQksCEi7QmMyThQ8WxfBbC1H8-sMPw,1770496
138
138
  torio/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
139
  torio/io/_streaming_media_encoder.py,sha256=C4zIasotf7GlkQqtRK3vMCt2aN6FkG6NK2KUw0ZdHHo,20224
140
140
  torio/io/_streaming_media_decoder.py,sha256=dx0K8PD2PZY7yRY1G_As-_8-LyQDLdYfRZPW1kmrJg0,35354
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-win_amd64
5
5
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file