user-7 commited on
Commit
4b1bf72
·
verified ·
1 Parent(s): 6b38f3d

Upload 8 files

Browse files
.gitattributes CHANGED
@@ -40,3 +40,6 @@ wheel/python3.12/torch2.9.0/nunchaku/nunchaku-1.3.0.dev20260304+cu13.0torch2.9-c
40
  wheel/python3.12/torch2.9.0/SageAttention/sageattention-2.2.0-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
41
  wheel/python3.12/torch2.9.0/SpargeAttn/spas_sage_attn-0.1.0-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
42
  wheel/python3.12/torch2.9.0/vllm/vllm-0.13.0+cu131-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
 
 
 
 
40
  wheel/python3.12/torch2.9.0/SageAttention/sageattention-2.2.0-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
41
  wheel/python3.12/torch2.9.0/SpargeAttn/spas_sage_attn-0.1.0-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
42
  wheel/python3.12/torch2.9.0/vllm/vllm-0.13.0+cu131-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
43
+ wheel/python3.12/torch2.9.0/audiotools/descript_audiotools-0.7.4-py2.py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
44
+ wheel/python3.12/torch2.9.0/llama-cpp-python/llama_cpp_python-0.3.16-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
45
+ wheel/python3.12/torch2.9.0/sam2/sam_2-1.0-cp312-cp312-linux_x86_64.whl filter=lfs diff=lfs merge=lfs -text
wheel/python3.12/torch2.9.0/audiotools/.gitattributes ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *.wav filter=lfs diff=lfs merge=lfs -text
2
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
wheel/python3.12/torch2.9.0/audiotools/.github/workflows/pr.yml ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Test
2
+
3
+ on: pull_request
4
+
5
+ jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ # Run isort + black formatter
11
+ - name: Python Code Formatter
12
+ uses: descriptinc/python-format-action@main
13
+
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ python-version: ["3.8", "3.9", "3.10", "3.11"]
19
+
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ with:
23
+ lfs: true
24
+ - name: Set up Python ${{ matrix.python-version }}
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: ${{ matrix.python-version }}
28
+ cache: pip
29
+ cache-dependency-path: setup.py
30
+ - name: Install binaries
31
+ run: |
32
+ sudo apt-get update
33
+ sudo apt-get install ffmpeg libsndfile1-dev libsox-dev libsox-fmt-mp3
34
+ python -m pip install --upgrade pip
35
+ pip install wheel
36
+ - name: Install recent FFMPEG
37
+ uses: FedericoCarboni/setup-ffmpeg@v2
38
+ - name: Install dependencies
39
+ run: |
40
+ pip install -e .
41
+ pip install -e ".[tests]"
42
+ - name: Test with pytest
43
+ run: |
44
+ python -m pytest .
wheel/python3.12/torch2.9.0/audiotools/.github/workflows/release.yml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ on:
2
+ push:
3
+ branches:
4
+ - "master"
5
+ workflow_dispatch:
6
+ name: Create Release
7
+ permissions:
8
+ contents: write
9
+
10
+ jobs:
11
+ build:
12
+ name: Create Release
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
+ with:
18
+ lfs: true
19
+ - name: Retrieve version
20
+ run: |
21
+ echo "TAG_NAME=$(grep -i -o -P '(?<=version=\")[^\"]+(?=\")' setup.py)" > "$GITHUB_OUTPUT"
22
+ id: version
23
+ - name: Changelog
24
+ uses: scottbrenner/generate-changelog-action@master
25
+ id: changelog
26
+ - name: Create Release
27
+ id: create_release
28
+ uses: softprops/action-gh-release@v1
29
+ env:
30
+ # This token is provided by Actions, you do not need to create your
31
+ # own token
32
+ GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
33
+ with:
34
+ tag_name: ${{ steps.version.outputs.TAG_NAME }}
35
+ name: Release ${{ steps.version.outputs.TAG_NAME }}
36
+ body: ${{steps.changelog.outputs.changelog}}
37
+ draft: false
38
+ prerelease: false
wheel/python3.12/torch2.9.0/audiotools/.gitignore ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+ # PyInstaller
31
+ # Usually these files are written by a python script from a template
32
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
33
+ *.manifest
34
+ *.spec
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
130
+ profile_speed.py.lprof
131
+
132
+ scratch/
133
+ *.ipynb
134
+ _codebraid/
135
+ test.md
136
+ test_out.md
137
+ *.html
138
+ *.exec.md
139
+ .DS_Store
140
+
141
+ # generated test data
142
+ tests/audio/chords/
143
+ notebooks/*
wheel/python3.12/torch2.9.0/audiotools/.pre-commit-config.yaml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repos:
2
+ - repo: https://github.com/asottile/reorder_python_imports
3
+ rev: v2.5.0
4
+ hooks:
5
+ - id: reorder-python-imports
6
+ - repo: https://github.com/psf/black
7
+ rev: 23.1.0
8
+ hooks:
9
+ - id: black
10
+ language_version: python3
11
+ - repo: https://github.com/pre-commit/pre-commit-hooks
12
+ rev: v4.0.1
13
+ hooks:
14
+ - id: end-of-file-fixer
15
+ - id: trailing-whitespace
wheel/python3.12/torch2.9.0/audiotools/descript_audiotools-0.7.4-py2.py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df8e1ddefbb4a00efc40d5a641ffb29a30d8f509f0275085b2c952a55ce746ab
3
+ size 108003
wheel/python3.12/torch2.9.0/llama-cpp-python/llama_cpp_python-0.3.16-cp312-cp312-linux_x86_64.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27a6d2167fadb1c33e9e0f66c550340d5b83931004b1d62f2913c63c01eff55e
3
+ size 4600481
wheel/python3.12/torch2.9.0/sam2/sam_2-1.0-cp312-cp312-linux_x86_64.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:329351493e4f783ebd932053f850b2b4ad67e34dba4884029ee5be9281a5fe00
3
+ size 512374