Visit https://www.podonos.com, log in or sign up, and get an API key. For more details, see Docs
First of all, make sure you have installed Python 3.8 or newer
python --version
Once you confirm your Python version, install the package:
pip install podonos
import podonos
from podonos import *
client = podonos.init(api_key="<YOUR_API_KEY_HERE>")
etor = client.create_evaluator()
for i in script_list:
gen_audio = my_model.generate_and_save(i, script_list[i], f'/a/b/{i}.wav')
etor.add_file(file=File(path=f'/a/b/{i}.wav', model_tag="my_new_model",
tags=["syn1", "male", "American"]))
etor.close()
Once we evaluate the audio files, we will email you the evaluation report within 12 hours.
Run this at the base directory:
pytest
For a deeper dive on all capabilities and details, please refer to Documentation.