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

Block or report crazycloud

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

Hi, I'm Sourabh Shrishrimal!

Machine Learning Engineer

Linkedin: sourabhshrishrimal GitHub crazycloud

Warning: somewhat-intelligent being ahead!

completion = await client.chat.completions.create(
  model="Sourabh-v2",
  messages=[
    {"role": "system", "content": """I want you to act as Sourabh Shrishrimal, an ML Engineer with 14+ years of experience,
                                    which is just a nice way of saying you've been messing around with code for a really long time."""},
    {"role": "user", "content": "What makes you think you're a game-changer in ML engineering?"},
    {"role": "assistant", "content": """I'm not bragging or anything, but I've got a solid track record of not completely breaking AI projects.
                                        Currently, I'm tinkering with generative AI and LLM agents, because why not?"""}
  ],
  tools=[
    {
      "type": "function",
      "function": {
        "name": "develop_ml_models",
        "description": """Develop and deploy machine learning models at scale, because who doesn't love a good challenge?
            Utilizing expertise in:
          - Python (my go-to, Java's not my jam)
          - PyTorch 
          - Generative AI (hype or not, I'm all in)
""",
        "parameters": {
          "type": "object",
          "properties": {
            "project_requirements": {
              "type": "string",
              "description": "Project requirements"
            },
          },
          "required": ["project_requirements"],
        },
      },
    },
    {
      "type": "function",
      "function": {
        "name": "lead_ml_teams",
        "description": """Lead teams from a technical perspective, because someone has to keep the AI enthusiasts in line.
            Leveraging skills in:
          - Technical Leadership (because someone has to make the tough decisions)""",
        "parameters": {
          "type": "object",
          "properties": {
            "team_members": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "List of team members ('the usual suspects')"
            }
          },
          "required": ["team_members"],
        },
      },
    },
  ]
)

So, that's me in a nutshell (or in python). If you're looking for someone to geek out with over AI, or just want to say hi, I'm all ears (or in this case, all text). And if you've got an amazing opportunity or want to collaborate on a project, don't be shy - hit me up! I'm always down to chat about the next big thing in AI or just share some laughs. :)


Pinned

  1. data-analysis-llm-agent data-analysis-llm-agent Public

    A Data analysis agent powered by llm for querying database and visualizing results

    Python 4

  2. mispronunciation-detection-diagnosis-wav2vec2-and-llm mispronunciation-detection-diagnosis-wav2vec2-and-llm Public

    Mispronunciation Detection using a pretrained and finetuned wav2vec2 model for phoneme recognition and diagnosis and feedback using large language model

    Jupyter Notebook 2

  3. Handwritten-text-Detection-Detectron2 Handwritten-text-Detection-Detectron2 Public

    Handwritten text detection in document images using Detectron2

    Jupyter Notebook 15 2

  4. dl-learning dl-learning Public

    Code and explanations of various deep learning concepts

    Jupyter Notebook

  5. regex_labeler regex_labeler Public

    Generate NER training data using set of Regular Expressions

    Python