-
Install PyTorch 0.4.0 on Nvidia-Docker
conda create --name torch040 -y python=3.6 pytorch=0.4.0 torchvision cuda90 cudatoolkit=9.0 tensorboardX -c pytorch conda activate torch040 Read More
-
Docker --shm-size
RuntimeError: DataLoader worker (pid 13881) is killed by signal: Bus error docker run -i -t --gpus all --shm-size=32gb --name torch040 ubuntu:18.04 Read More
-
Nvidia-Docker Error
When 실수로 nvidia-docker를 삭제하게 되었고 재설치하는 과정에서 apt-get update가 되지 않게 되었다. maizer@maizerworkstation:~$ sudo apt-get update E: Conflicting values set for option Signed-By regarding source https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64/ /: /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg != E: The list of sources could... Read More
-
Ubuntu-server Ethernet Error
When 이더넷 포트가 3개 있는 워크스테이션에 Ubuntu-server을 설치 하였고 재부팅 시 “A start job is running for wait for network to be configured.”가 발생하여 3분 이상 기다려야되는 상황이 발생하였다. How to solve sudo vi /etc/netplan/*.yaml # In my case, I have two ethernet address ## Then I erase unused ethernet network setting. ```*.yaml network: ethernets: # enp2s0: # nameserv... Read More
-
(VITON)Toward Characteristic-Preserving Image-based Virtual Try-On Network Translation
CV Paper List \(\mathbf{Toward\;Characteristic-Preserving\;Image-based\;Virtual\;Try-On\;Network}\) \(\mathbf{Bochao\;Wang,\;Huabin\;Zheng,\;Xiaodan\;Liang,\;Yimin\;Chen,\;Liang}\) \(\mathbf{Lin,\;and\;Meng\;Yang}\) \(\mathbf{Sun\;Yat-sen\;University,\;China}\) \(\mathbf{SenseTime\;Group\;Limited}\) $\mathbf{Abstract}$ Image-based virt... Read More
-
Ubuntu tar format extract
sudo apt-get install gzip Usage: tar [OPTION...] [FILE]... GNU 'tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive. x : Decompress c : Bundling files v : Display log z : Using gzip compress file f : Appoint name p : Maintain a permission Examples: tar -cf archive.tar foo bar ... Read More
-
Ubuntu gzip format extract
sudo apt-get install gzip Usage: gzip [OPTION]... [FILE]... Compress or uncompress FILEs (by default, compress FILES in-place). Mandatory arguments to long options are mandatory for short options too. -c, --stdout write on standard output, keep original files unchanged -d, --decompress decompress -f, --force force overwrite ... Read More