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

profile views

class PersonalProfile:
    """
    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"]

    def speak(self):
        introduction = (
            f"Hello! I'm Qingyu Yin. "
            f"I specialize in exploring "
            f"the boundaries of Machine Learning."
        )
        print(introduction)

    def __repr__(self):
        return f"Developer(name='{self.name}', status='Always Learning')"

# Instantiate the persona
me = PersonalProfile()

if __name__ == "__main__":
    # Execute introduction
    me.speak()
    
    print("\n--- Technical Stack ---")
    for category, tools in me.get_core_competencies().items():
        print(f"{category}: {', '.join(tools)}")
        
    print(f"\nCurrently playing with: {me.hobbies[0]}")

Pinned Loading

  1. PeRL PeRL Public

    PeRL: Parameter-Efficient Reinforcement Learning

    Python 67 5

  2. HICAI-ZJU/Scientific-LLM-Survey HICAI-ZJU/Scientific-LLM-Survey Public

    Scientific Large Language Models: A Survey on Biological & Chemical Domains

    348 34

  3. FeatureAlignment FeatureAlignment Public

    FeatureAlignment = Alignment + Mechanistic Interpretability

    Python 34 1

  4. StableMask StableMask Public

    PyTorch implementation of StableMask (ICML'24)

    Python 15 1