-
(GAN)Controllable Person Image Synthesis with Attribute-Decomposed GAN Translation
CV Paper List \(\mathbf{Controllable\;Person\;Image\;Synthesis\;with\;Attribute-Decomposed\;GAN}\) \(\mathbf{Yifang\;Men,\;Yiming\;Mao,\;Yuning\;Jiang,\;Wei-Ying\;Ma,\;Zhouhui\;Lian}\) \(\mathbf{Wangxuan\;Institute\;of\;Computer\;Technology,\;Peking\;University,\;China}\) \(\mathbf{Bytedance\;AI\;Lab}\) $\mathbf{Abstract}$ This paper in... Read More
-
Ubuntu unzip format extract
sudo apt install zip unzip unzip "filename" # Example ## Extract on current directory unzip "filename" ## Extract on designated directory unzip "filename" -d "location" Read More
-
Mean of .tar.gz
what is .tar[1] 하나로 묶기 위한 파일 형식 실제로 압축은 이뤄지지 않는다. 초기에는 테입 백업 목적으로, 순차적 입출력 장치에 직접 쓰도록 개발되었으나, 현재는, 배포 또는 아카이브 용도로 많은 파일을 디렉토리 구조, 파일 속성들을 보존하면서 하나의 큰 파일로 묶는 데 주로 사용된다. what is .gz[2] 여러 파일을 하나의 파일로 압축하는 옵션이 없어 .tar 형식과 함께 사용한다. gzip은 파일 압축에 쓰이는 응용 소프트웨어이다. gzip은 GNU zip의 준말이며, 초기 유닉스 시스템에 쓰이던 압축 프로그램을 대체하기 위한 자유 소프트웨어이다. Reference 1. t... Read More
-
Add kernel for Jupyter Notebook
pip3 install ipykernel python -m ipykernel install --user --name [virtualEnv] --display-name "[displayKenrelName]" Read More
-
FTP error of 550 Permission denied error
Situation When I send DataSet file on windows to Ubuntu-server using FTP service. Error log ... 200 PORT command successful. Consider using PASV. 550 Permission denied. Solution[1] In ubuntu, edit the vsftpd.conf sudo vi /etc/vsftpd.conf ... write_enable=YES ... :wq sudo service vsftpd restart Reference 1. Fixing the VSFTPD 550 Pe... Read More
-
Docker cp command
Move host file to container docker cp [host file location] [container name]:[container location] Move container file to host docker cp [container name]:[container location] [host location] Read More
-
Ubuntu 7z format extract
sudo apt install p7zip p7zip-full 7za <command> [<switches>...] <archive_name> [<file_names>...] [<@listfiles...>] Example Extract on current directory 7zr e “filename” Extract on designated directory 7zr x “filename” “path” Read More