Skip to content
View AshwinSankar17's full-sized avatar

Block or report AshwinSankar17

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ot-flow-matching-tts ot-flow-matching-tts Public

    Flow-matching DiT for speech editing and synthesis

    Jupyter Notebook 1

  2. astravani astravani Public

    Weapons to wield sound

    Python 1

  3. AI4Bharat/IndicVoices-R AI4Bharat/IndicVoices-R Public

    A Massive Multilingual Multi-speaker Speech Corpus for Scaling Indian TTS

    25

  4. Roar Roar Public

    Roar - a toolkit for Indic Speech AI

    Python

  5. DeepRL DeepRL Public

    Various algorithms implemented with CLI for easier training and testing purposes

    Python

  6. Response model verification Response model verification
    1
    def validate(model, data):
    2
        if not isinstance(model, dict):
    3
            model = model.__dict__["__annotations__"]
    4
        for k, v in model.items():
    5
            assert k in data, f"Key {k} is not available in data provided"