Metadata-Version: 2.4
Name: vyvodata
Version: 0.0.4
Summary: VyvoData: Enhanced dataset management utilities for Hugging Face Hub.
Home-page: https://github.com/kadirnar/vyvodata
Author: Kadir Nar
Author-email: kadir.nar@hotmail.com
License: Apache License 2.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: torch
Requires-Dist: torchaudio
Requires-Dist: tqdm
Requires-Dist: submitit
Requires-Dist: huggingface_hub
Requires-Dist: rich
Requires-Dist: safetensors
Requires-Dist: soundfile
Requires-Dist: datasets
Requires-Dist: librosa
Requires-Dist: resampy
Requires-Dist: onnxruntime
Requires-Dist: pesq
Requires-Dist: pyworld
Requires-Dist: setuptools
Requires-Dist: pysptk
Requires-Dist: fastdtw
Requires-Dist: matplotlib
Requires-Dist: xls_r_sqa
Requires-Dist: museval
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

<div align="center">
<h2>
    VyvoData: Data Management and Preprocessing Tools for HF Datasets
</h2>
<img width="500" alt="teaser" src="assets/logo.png">
</div>

## 🛠️ Installation

```bash
uv venv --python 3.12
source .venv/bin/activate
uv pip install -e .
```

## 🎙️ Usage

```python
from vyvodata.tools.audiobox_aesthetics.infer import audiobox_aesthetics_predict

results = audiobox_aesthetics_predict(
    input_file="path/to/audio/file.wav",
    ckpt="facebook/audiobox-aesthetics",
    batch_size=1,
)
```

## 😍 Contributing

```bash
uv pip install pre-commit
pre-commit install
pre-commit run --all-files
```

## 📜 License

This project is licensed under the terms of the Apache License 2.0.

## 🤗 Citation

```bibtex
@article{tjandra2025aes,
    title={Meta Audiobox Aesthetics: Unified Automatic Quality Assessment for Speech, Music, and Sound},
    author={Andros Tjandra and Yi-Chiao Wu and Baishan Guo and John Hoffman and Brian Ellis and Apoorv Vyas and Bowen Shi and Sanyuan Chen and Matt Le and Nick Zacharov and Carleigh Wood and Ann Lee and Wei-Ning Hsu},
    year={2025},
    url={https://arxiv.org/abs/2502.05139}
}
```
