Skip to content
View iamunr4v31's full-sized avatar
Block or Report

Block or report iamunr4v31

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
iamunr4v31/README.md

Hello, I'm Ashwin Sankar ๐Ÿ‘‹

I'm a researcher working towards generating human-level speech with neural networks. I'm also generally interested in LLMs, and Image and Video generation.

Projects and Contributions ๐Ÿ’ผ

Connect with Me ๐Ÿ“ซ

Feel free to reach out to me through the following channels:

Pinned Loading

  1. DeepRL DeepRL Public

    Various algorithms implemented with CLI for easier training and testing purposes

    Python

  2. Roar Roar Public

    Roar - a toolkit for Indic Speech AI

    Python

  3. CS6910-Assignments1 CS6910-Assignments1 Public

    Assignments and Projects for CS6910 by Prof. Mitesh Khapra

    Python

  4. CS6910-Assignment2 CS6910-Assignment2 Public

    Jupyter Notebook

  5. CS6910-Assignment3 CS6910-Assignment3 Public

    Part 3 of CS6910 Assignments

    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"