forked from knoriy/CLARA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='clara',
version='0.0.3',
description='CLARA is designed for multilingual audio representation through a contrastive learning approach. Our aim is to develop a shared representation for various languages and acoustic scenarios. We leverage a rich multilingual audio-text dataset, augmented for diversity. With CLARA, we focus on building a comprehensive model for speech, targeting emotion detection, sound categorisation, and cross-modal retrieval in both zero-shot and few-shot settings. The results demonstrate its potential for universal speech representation that is adaptable to new languages and tasks, minimising reliance on labelled data and enhancing cross-lingual adaptability.',
author='Kari Noriy',
author_email='[email protected]',
url='https://github.com/knoriy/clara',
install_requires=[
'pytorch-lightning==2.1.0',
'torch==2.1',
'torchdata==0.7',
'librosa',
'unidecode',
'inflect',
'torchaudio',
'transformers',
'boto3',
],
packages=find_packages(),
)