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 )

Anurag's github stats

Pinned Loading

  1. pytorch-project-template pytorch-project-template Public template

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

    Python 133 22

  2. mmsr mmsr Public

    Forked from open-mmlab/mmagic

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

    Python 2

  3. DevEnv-with-Docker DevEnv-with-Docker Public

    user-separated develop environment with docker in SNUH CMI

    Shell 9

  4. google drive downloader with wget an... google drive downloader with wget and pure shell script
    1
    #!/bin/bash
    2
    
                  
    3
    # acknowledgement:
    4
    # https://chemicloud.com/blog/download-google-drive-files-using-wget/#how-to-download-google-drive-files-using-wget
    5
    # https://stackoverflow.com/a/6174447
  5. wait function for any pid without se... wait function for any pid without see "pid is not a child of this shell"
    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 ... Restrict the maximum number of jobs running in the background while running in parallel.
    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`