Views
No views yet
pip install git+https://github.com/griko/voice-height-regression.git1from voice_height_regressor import HeightRegressionPipeline
2
3# Load the pipeline
4regressor = HeightRegressionPipeline.from_pretrained(
5 "griko/height_reg_svr_ecapa_voxceleb"
6)
7
8# Single file prediction
9result = regressor("path/to/audio.wav")
10print(f"Predicted height: {result[0]:.1f} cm")
11
12# Batch prediction
13results = regressor(["audio1.wav", "audio2.wav"])
14print(f"Predicted heights: {[f'{h:.1f}' for h in results]} cm")1@misc{koushnir2025vanpyvoiceanalysisframework,
2 title={VANPY: Voice Analysis Framework},
3 author={Gregory Koushnir and Michael Fire and Galit Fuhrmann Alpert and Dima Kagan},
4 year={2025},
5 eprint={2502.17579},
6 archivePrefix={arXiv},
7 primaryClass={cs.SD},
8 url={https://arxiv.org/abs/2502.17579},
9}