This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
python3 -m venv .venv | |
source .venv/bin/activate | |
pip3 install --upgrade pip wheel setuptools | |
pip3 install --index-url https://download.pytorch.org/whl/cu121 \ | |
torch \ | |
torchvision \ | |
torchaudio |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
약자 | 한국정보과학회 (2020) | BK21플러스 IF (2018) | KAIST CS (2022) | SNU CSE (2023.9) | POSTECH CSE (2023.10) | 평균 (정규화) | 학회명 | DBLP Key | |
---|---|---|---|---|---|---|---|---|---|
AAAI | 최우수 | 4 | O | O | 최우수 | 1.00 | AAAI Conference on Artificial Intelligence (AAAI) | conf/aaai | |
AAMAS | 우수 | 2 | 0.20 | International Joint Conference on Autonomous Agents & Multiagent Systems (AAMAS) | conf/atal | ||||
ACCV | 우수 | 1 | 우수 | 0.25 | Asian Conference on Computer Vision (ACCV) | conf/accv | |||
ACL | 최우수 | 4 | O | O | 최우수 | 1.00 | Annual Meeting of the Association for Computational Linguistics (ACL) | conf/acl | |
ACL Findings | 우수 | 0.10 | Findings of ACL | series/findacl | |||||
ACSAC | 우수 | 2 | 우수 | 0.30 | Annual Computer Security Applications Conference (ACSAC) | conf/acsac | |||
AIED | 우수 | 0.10 | International Conference on Artificial Intelligence in Education (AIED) | conf/aied | |||||
AISTATS | 우수 | 1 | 우수 | 0.25 | International Conference on Artificial Intelligence and Statistics (AISTATS) | conf/aistats | |||
ANCS | 우수 | 1 | 우수 | 0.25 | Symposium on Architectures for Networking and Communications Systems (ANCS) | conf/ancs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dockerfile | |
#FROM pytorch/pytorch:2.1.2-cuda11.8-cudnn8-runtime | |
FROM pytorch/pytorch:2.1.2-cuda12.1-cudnn8-runtime | |
# Remove any third-party apt sources to avoid issues with expiring keys. | |
RUN rm -f /etc/apt/sources.list.d/*.list | |
# Install some basic utilities & python prerequisites | |
RUN apt-get update -y && apt-get install -y --no-install-recommends\ | |
wget \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://cdnjs.com/libraries/vue | |
https://cdnjs.com/libraries/tailwindcss | |
https://cdnjs.com/libraries/bokeh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
files=('data_extraction' 'installation' 'simulation_0_setup' 'simulation_1_rungui' 'simulation_2_runcli') | |
for file in "${files[@]}"; do | |
ffmpeg -y \ | |
-i "${file}.mp4" \ | |
-c:v libx264 \ | |
-c:a aac -strict experimental -tune fastdecode -pix_fmt yuv420p \ | |
-b:a 192k -ar 48000 "../${file}.mp4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 설치 방법 | |
snap install graphviz | |
# 그래프 이미지 생성 방법 | |
dot -Tpng -Gdpi=300 <dot 파일명> -o <이미지 파일명> # png | |
dot -Tjpg -Gdpi=300 <dot 파일명> -o <이미지 파일명> # jpg | |
dot -Tsvg <dot 파일명> -o <이미지 파일명> # svg |
Installing Zoom Using Terminal
-
Download the Zoom DEB installation file:
wget https://zoom.us/client/5.16.2.8828/zoom_amd64.deb
-
Install Zoom using the downloaded DEB file:
sudo apt install ./zoom_amd64.deb -y
NewerOlder