본문 바로가기

기타 정보21

[NVIDIA PyProf] FLOPs 측정하기 PyProf란? NVIDIA에서 만든 profile 툴. PyTorch 모델과 GPU 성능을 profile한다. 1. GitHub로 설치하기 클론합니다 git clone https://github.com/NVIDIA/PyProf.git PyProf로 들어간 후 PyProf를 설치합니다 pip install . 잘 설치되었는지 확인 pip list | grep pyprof 다음과 같이 보여야 합니다 pyprof 3.10.0 2. PyTorch와 함께 사용하기 Overview FLOP 및 bandwidth 계산의 경우 비교적 간단한 접근 방식을 사용한다 예를들어 행렬 $AM\times K$와 $BK\times N$의 경우 행렬 곱셈에 대한 FLOP는 $2\times M \times N\times K$, ba.. 2022. 10. 7.
Super-Resolution Datasets 다음 사이트로 가서 다운받자! https://mmediting.readthedocs.io/en/v0.12.0/sr_datasets.html#vid4-dataset Super-Resolution Datasets — MMEditing documentation Super-Resolution Datasets It is recommended to symlink the dataset root to $MMEDITING/data. If your folder structure is different, you may need to change the corresponding paths in config files. MMEditing supported super-resolution datasets: DF2K_OST Data.. 2022. 9. 19.
[Ubuntu] 아나콘다 설치하기 아주 간단한 설치 과정 1. 아나콘다 홈페이지에 들어가서 installer 다운로드 www.anaconda.com/products/individual Anaconda | Anaconda Distribution Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 2. 다운로드한 폴더 들어가기 3. 설치 시작 bash Anaconda3-2022.05-Linux-x86_64.sh 4. 뭔가 잔뜩 나오면 그냥 yes 누르고 엔터엔터~~~ 5. 다음 문구가 나오면 yes 누른다 6. bashrc 수정 su.. 2022. 9. 15.
[Data Augmentation] 유용한 깃허브 https://github.com/CrazyVertigo/awesome-data-augmentation GitHub - CrazyVertigo/awesome-data-augmentation: This is a list of awesome methods about data augmentation. This is a list of awesome methods about data augmentation. - GitHub - CrazyVertigo/awesome-data-augmentation: This is a list of awesome methods about data augmentation. github.com 2022. 8. 2.
[Anaconda] 아나콘다 가상환경 Export 및 Import Export # 1. export할 가상환경 활성화 conda activate env_name # 2. 다음 명령어를 입력해서 yaml파일 export conda env export > env_name.yaml Import # 3. export했던 yaml파일 이름으로 환경 만들기 conda env create -f env_name.yaml # 4. 활성화해본다 conda activate env_name 2022. 7. 15.
[Ubuntu] 우분투 /var/log/messages 로그파일 없음 컴퓨터가 자기 멋대로 꺼질 때가 있어서 shutdown 로그를 확인하려고 했다 로그를 확인하려면 다음을 치면 된다고 해서 쳤으나 sudo vim /var/log/messages /var/log/messages가 없었다..!!!!!! 그래서 /var/log/messages가 왜 없는지를 검색했다 "우분투에서 10.x부터 syslog 데몬인 rsyslogd에 무개를 실어감으로 인해 디폴트 값으로 /var/log/messages가 주석처리 되어있더군요." 출처: https://itstory.tk/entry/우분투-varlogmessages-로그파일이-없을때 [덕's IT Story:티스토리] 잘 이해는 못하겠지만 직접 확인을 해보았다 sudo vim /etc/rsyslog.d/50-default.conf co.. 2022. 6. 20.