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. Roar Roar Public

    Roar - a toolkit for Indic Speech AI

    Python

  2. astravani astravani Public

    Weapons to wield sound

    Python 1

  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. 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"