Skip to content
View ryul99's full-sized avatar
๐ŸฆŠ
๐ŸฆŠ

Highlights

  • Pro

Block or report ryul99

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
ryul99/README.md

Hi ๐Ÿ‘‹, I'm Changmin Choi from South Korea

Blog Badge Twitter Badge Gmail Badge Linkedin Badge

๐Ÿ“š I majored in Computer Science and Engineering at Seoul National University

โœจ I'm interested in combination of ML and System Engineering

๐Ÿ˜ I like Linux and coding with Vim

โœ’ Please see my tech blog! ( torch.vision )

ryul99's github stats

Pinned Loading

  1. avante.nvim Public

    Forked from yetone/avante.nvim

    Use your Neovim like using Cursor AI IDE!

    Lua

  2. mmsr Public

    Forked from open-mmlab/mmagic

    Open MMLab Image and Video Super-Resolution Toolbox, , including SRResNet, SRGAN, ESRGAN, EDVR, etc.

    Python 2

  3. pytorch-project-template Public template

    Deep Learning project template for PyTorch (multi-gpu training is supported)

    Python 136 22

  4. DevEnv-with-Docker Public

    user-separated develop environment with docker in SNUH CMI

    Shell 9

  5. wait function for any pid without se...
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # https://unix.stackexchange.com/a/427133
    4
    if [ `uname` == "Linux" ]; then
    5
        tail --pid=$1 -f /dev/null
  6. Restrict the maximum number of jobs ...
    1
    # This code CANNOT be run as a script.
    2
    # You should add this code to your shell rc file and use it as a shell function.
    3
    # This is because the `jobs` command can only get child processes.
    4
    # 
    5
    #  example: `for i in $(seq 1 24); do run-parallel sleep 6; done; wait`