import torch
class whats2000(torch.nn.Module):
def __init__(self):
super(whats2000, self).__init__()
self.name = "whats2000"
self.pronouns = "He/Him"
self.projects = [
"Agent Base Report Generator - AgentLaboratoryWebUI/AgentLaboratory (Fork)",
"Zero-shot Text Image Retrieval with test time computation - (Current Private)",
"Reinforcement Learning VLM on Medical Report - (Current Private)",
"LaplaceAI Lab Agent Base Report Editor Saas Platform - https://www.laplaceai.co/"
]
self.learning = [
"How to use the agent framework with human-in-the-loop with better user experience",
"Zero-shot learning combined with text image retrieval",
"Test Time Computation",
"React and Node.js for application development"
]
self.collaborate_on = ["CodeBRT project", "selector_helper"]
self.help_with = [
"LLM Test Time Computation Research",
"VLM/MLLM Retrieval System",
"LLM Code Generation Method and Application",
]
self.ask_me_about = [
"PyTorch and Hugging Face Transformers deployment",
"TypeScript and React development with Vite",
"Developing VSCode extension with React and TypeScript",
"Website development with React and Node.js"
]
self.reach_me = "Create an issue in the repository"
self.love = [
"Coding Website",
"Playing with Torch",
"Trying new languages I've never used before",
"Publishing interesting projects"
]
self.fun_facts = [
"I am writing this README.md at 03:54 AM 🤔",
"I am a night owl 🦉"
]
def forward(self, input):
return input
profile = whats2000()