Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View luumsk's full-sized avatar

Highlights

  • Pro

Block or report luumsk

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
luumsk/README.md
# -*- coding: utf-8 -*-

class Researcher:
    def __init__(self):
        self.name = "Luu Minh Sao Khue"
        self.role = "PhD Student & AI Researcher"
        self.affiliation = (
            "Department of Mathematics and Mechanics, "
            "and Artificial Intelligence Research Center, "
            "Novosibirsk State University"
        )
        self.focus = [
            "Medical Image Analysis",
            "Self-Supervised Learning",
            "Multimodal Fusion",
            "AI Agents"
        ]
        self.projects = {
            "BrainFM": "Foundation model for multimodal brain MRI",
            "SatMFM": "Foundation model for multimodal satellite data",
            "ToolBrain": "Reinforcement learning framework for AI agents"
        }
        self.contact = {
            "Website": "https://luumsk.github.io",
            "LinkedIn": "https://linkedin.com/in/lmsk",
            "ResearchGate": "https://www.researchgate.net/profile/Minh-Sao-Khue-Luu"
        }

    def __repr__(self):
        return (
            f"<{self.role} | Exploring {', '.join(self.focus[:3])}, "
            f"and {self.focus[-1]}>"
        )


if __name__ == "__main__":
    me = Researcher()
    print(me)

Popular repositories Loading

  1. NSU_Python NSU_Python Public

    Materials for the Python programming course at Novosibirsk State University

    Jupyter Notebook 1 1

  2. NSU_ML NSU_ML Public

    Resources for the Machine Learning course at NSU, including lecture notes, code examples, lab exercises, assignments, and project guidelines covering key ML topics and practical applications.

    Jupyter Notebook 1 6

  3. MedToolAgent MedToolAgent Public

    Agentic AI for medical imaging: MRI preprocessing + tool orchestration (extensible to segmentation/classification).

    Python 1

  4. mrilite mrilite Public

    Jupyter Notebook 1

  5. SmallLesionMRI SmallLesionMRI Public

    Deep learning methods for detecting and segmenting subtle brain lesions in MRI.

    Jupyter Notebook 1

  6. luumsk.github.io luumsk.github.io Public

    My personal website

    HTML