Skip to content
View sonderlau's full-sized avatar
:electron:
Brain Reconstruction
:electron:
Brain Reconstruction

Highlights

  • Pro

Block or report sonderlau

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

from dataclasses import dataclass
from typing import Tuple


class Meta(type):
    def __new__(cls, name, bases, attrs):
        new_cls = super().__new__(cls, name, bases, attrs)
        return dataclass(unsafe_hash=True, frozen=True)(new_cls)


class Bio(metaclass=Meta):
    name        : str = "🤝Sonder Liu"
    job         : str = "🏛Postgraduate Student"
    designation : str = "🔣Lovely man"
    base        : str = "🏠Hangzhou, ZheJiang Province, China"
    blog        : str = "🐚Upcoming..."


class Stack(metaclass=Meta):
    languages   : Tuple[str, ...] = ("Python", "C++")
    databases   : Tuple[str, ...] = ("SQLite", "Postgres")
    devices     : Tuple[str, ...] = ("MacBook Pro", "iPad Pro", "OnePlus 12")
    ongoing     : Tuple[str, ...] = ("DL Model", "Paper reading")


class Recent(metaclass=Meta):
    project     : Tuple[str, ...] = ("Weather forecast with Deep Learning")
    working     : Tuple[str, ...] = ("None")
    learning    : Tuple[str, ...] = ("Linear Algebra", "Probability Theory")
I merely added complexity to the foundations laid by others, and then told laypeople that this is a "moat".

Pinned Loading

  1. WADEPre WADEPre Public

    [KDD 2026 Under Review] WADEPre achieves SOTA in extreme nowcasting by using wavelets to decompose stable advection from stochastic details, effectively solving the regression-to-the-mean dilemma.

    Python 3 2

  2. sonderlau sonderlau Public

    Python 2

  3. AMU-Net AMU-Net Public

  4. cs-paper-checklist cs-paper-checklist Public

    Forked from yzhao062/cs-paper-checklist

    A final sanity checklist to help your CS paper get accepted, not desk rejected.