본문 바로가기

컴퓨터

(40)
[Linux] RHEL TigerVNC 설치 Requirements Server tigervnc-server Client tigervnc-viewer Installation Server TigerVNC server 설치 sudo dnf install tigervnc-server Systemd 파일 설정 cp /usr/lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@.service systemctl daemon-reload TigerVNC 설정 vi /etc/tigervnc/vncserver.users # TigerVNC User assignment # # This file assigns users to specific VNC display numbers. # The synta..
N neurons 라는 말은? N개의 neuron이라는 말은 무슨 말일까? A “small” network was used to evaluate the influence of different components of the augmentation procedure on classification performance. It consists of two convolutional layers with 64 filters each followed by a fully connected layer with 128 neurons. This last layer is succeeded by a softmax layer, which serves as the network output. 위에서 128 neurons 라는 말은 무엇일까? 뉴런이라는건 ..
[Linux] Fedora 패키지 업데이트 방법 flatpak update sudo dnf update sudo dnf update --refresh GNOME이나 KDE의 Discover에서 패키지를 업데이트 하는 것과 같게 CLI에서 업데이트하는 것은 위 세 명령어와 동일하다. 세 명령어를 모두 실행해야 한다. dnf upgrade는 dnf update의 alias이다. 또한 DE에서 업데이트 할 경우 페도라 버전 업데이트도 되는데 이를 CLI로 업데이트 하려면 아래와 같이 하면 된다. sudo dnf upgrade --refresh sudo dnf install dnf-plugin-system-upgrade sudo dnf system-upgrade download --releasever=$nextversion sudo dnf system-upg..
[Linux] Autostart 모두 정리 Autostart를 일으키는 요소들 Systemd 서비스 Systemd 유저 서비스 (systemctl --user로 보이는 것들) Cron Xorg xinitrc xprofile XDG startup /etc/xdg/autostart ~/.config/autostart Desktop environment startup
[Linux] 도커 사용 중 No space left on device 해결법 docker system prune docker volume prune 위 명령을 해주면 된다.
[Linux] 한글 입력하기 Fcitx5 설치하기 sudo dnf install fcitx5 sudo dnf install fcitx5-hangul 위만 해도 보통의 DE에서는 괜찮다. 하지만 별도의 input method를 다루는 어플리케이션이 없는 DE의 경우 fcitx5-configtoool을 실행할 경우 frontend를 찾을 수 없다는 식의 오류가 뜬다. 이땐 fcitx5-configtool을 설치하면 된다. sudo dnf install fcitx5-configtool
Attention is all you need Attention is all you need 순수한 RNN은 gradient vanishing 문제가 심각했다. 따라서 입력 문장이 길어지면 성능이 떨어졌다. 그것을 해결하기 위해 gating mechanism을 도입한 LSTM과 GRU가 만들어졌다. 그리고 attention mechanism이 등장했다. LSTM에 어텐션을 적용하는 식이다. 그러다 "Attentioin is all you need"에서 recurrent한 특성은 완전히 빼버리고 어텐션 메커니즘만 사용한 새로운 모델인 Transformer로도 좋은 성능이 나온다는 것을 알아내게 된다. Attention Scaled Dot-Product Attention Scaled dot-product attention은 매우 간단하다. Query와 ..
[Linux] df의 결과와 lsblk의 결과가 다를때 예를 들어 lsblk에서는 130GB 용량이었던 것이 df 시 70GB로 나타날 때 문제 해결법이다. (lsblk에서는 말 그대로 블록의 사이즈를 나타내고 df에서는 파일시스템의 사이즈를 나타낸다.) Logical volume을 사용할 때 이와 같은 문제가 발생할 수 있다. 보통 lvextend로 볼륨을 키워놓고 그대로 끝내버려서 발생하는 문제이다. lvextend는 볼륨사이즈만 키울 뿐이다. 파일시스템의 용량을 확장해주어야 한다. lvextend -L130G /dev/rhel/root 위처럼 lvextend를 한 후에는 아래 명령어로 파일시스템 용량을 확장해주어야 한다. xfs_growfs /dev/rhel/root -d 참고: https://stackoverflow.com/questions/57302..