-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (47 loc) · 1.37 KB
/
setup.py
File metadata and controls
48 lines (47 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name='thinksound',
version='0.0.19',
url='https://github.com/liuhuadai/thinksound.git',
author='liuhuadai',
description='a unified Any2Audio generation framework guided by Chain-of-Thought (CoT) reasoning',
packages=find_packages(),
install_requires=[
'aeiou==0.0.20',
'alias-free-torch==0.0.6',
'auraloss==0.4.0',
'descript-audio-codec==1.0.0',
'einops==0.7.0',
'einops-exts==0.0.4',
'ema-pytorch==0.2.3',
'encodec==0.1.1',
'gradio==3.50.0',
'lightning==2.5.1.post0',
'huggingface_hub',
'importlib-resources==5.12.0',
'k-diffusion==0.1.1',
'laion-clap==1.1.4',
'local-attention==1.8.6',
'opencv-python==4.11.0.86',
'open_clip_torch==2.32.0',
'pandas==2.0.2',
'pedalboard==0.7.4',
'prefigure==0.0.9',
'pytorch_lightning==2.1.0',
'PyWavelets==1.4.1',
'safetensors',
'sentencepiece==0.1.99',
's3fs',
'omegaconf',
'torch==2.6.0',
'torchaudio>=2.0.2',
'torchmetrics==0.11.4',
'tqdm',
'transformers',
'v-diffusion-pytorch==0.0.2',
'vector-quantize-pytorch==1.9.14',
'wandb==0.15.4',
'webdataset==0.2.48',
'x-transformers==1.26.6'
],
)