Skip to content
View MikaStars39's full-sized avatar
🎸
Van Halen Now
🎸
Van Halen Now

Block or report MikaStars39

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MikaStars39/README.md

profile views

classPersonalProfile:
""" A class to represent a human entity in the tech ecosystem. """def__init__(self):
self.name="Qingyu Yin"self.role="LLM Researcher"self.location="Earth"self.languages= ["Python", "C++", "English", "Mandarin", "Japanese"]
self.hobbies= ["Open Source Contributing"]
defspeak(self):
introduction= (
f"Hello! I'm Qingyu Yin. "f"I specialize in exploring "f"the boundaries of Machine Learning."
)
print(introduction)
def__repr__(self):
returnf"Developer(name='{self.name}', status='Always Learning')"# Instantiate the personame=PersonalProfile()
if__name__=="__main__":
# Execute introductionme.speak()
print("\n--- Technical Stack ---")
forcategory, toolsinme.get_core_competencies().items():
print(f"{category}: {', '.join(tools)}")
print(f"\nCurrently playing with: {me.hobbies[0]}")

Pinned Loading

  1. PeRLPeRLPublic

    PeRL: Parameter-Efficient Reinforcement Learning

    Shell 82 13