import torch
class whats2000(torch.nn.Module):
def __init__(self):
super(whats2000, self).__init__()
self.name = "whats2000"
self.pronouns = "He/Him"
self.projects = [
"LLM Agent VScode Extension - CodeBRT project",
"NSYSU AI Selector Helper - selector_helper project",
"Zero-Shot Composed Text Image Retrieval Research - WeiMoCIR project",
"CTEC Website Development Phase 2 - CTEC website project"
]
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",
"React and Node.js for website development"
]
self.collaborate_on = ["CodeBRT project", "selector_helper"]
self.help_with = [
"LLM improves coding performance research",
"Need people to help with CodeBRT project",
"Testing and debugging in VSCode extension on MacOS"
]
self.ask_me_about = [
"Developing VSCode extension with React and TypeScript",
"PyTorch and Hugging Face Transformers deployment",
"TypeScript and React development with Vite",
"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()