Skip to content

Instantly share code, notes, and snippets.

#!/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
약자 한국정보과학회 (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
@yspkm
yspkm / NAS.md
Last active January 18, 2024 12:04
논문 리스트
  1. NASiam: Efficient Representation Learning using Neural Architecture Search for Siamese Networks
    • Date: 31 Jan 2023
    • Authors: Alexandre Heuillet, Hedi Tabia, Hichem Arioui
    • Citations: 2
    • GitHub: nasiam
    • Stars: 6
    • Framework: PyTorch
    • Datasets: CIFAR-10, MS COCO, CIFAR-100
    • Paper: Link
@yspkm
yspkm / Dockerfile
Last active January 18, 2024 06:52
NAS 관련 문서
# 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 \
@yspkm
yspkm / install.md
Created January 17, 2024 08:00
How to install Julia

Juila 설치 방법

sudo snap install julia --classic

Juila 실행

(base) yosepkim@sony:~$ julia
               _
 _ _ _(_)_ | Documentation: https://docs.julialang.org
@yspkm
yspkm / cdnjs
Created December 15, 2023 08:46
CDNJS
https://cdnjs.com/libraries/vue
https://cdnjs.com/libraries/tailwindcss
https://cdnjs.com/libraries/bokeh
@yspkm
yspkm / run.sh
Created December 4, 2023 02:58
kazam mp4 to window11
#!/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"
@yspkm
yspkm / README.md
Created December 2, 2023 07:56
Omnetpp

README for Omnetpp Installation

Overview

This README provides detailed instructions for installing Omnetpp and its prerequisites on a Linux system.

Prerequisites

  • Linux Operating System
  • Internet connection
  • Sufficient disk space
@yspkm
yspkm / init.sh
Created November 10, 2023 04:50
Dot 파일 컴파일
# 설치 방법
snap install graphviz
# 그래프 이미지 생성 방법
dot -Tpng -Gdpi=300 <dot 파일명> -o <이미지 파일명> # png
dot -Tjpg -Gdpi=300 <dot 파일명> -o <이미지 파일명> # jpg
dot -Tsvg <dot 파일명> -o <이미지 파일명> # svg
@yspkm
yspkm / Ubuntu Zoom Guide.md
Created October 23, 2023 07:21
우분투 Zoom 설치

Installing Zoom Using Terminal

  1. Download the Zoom DEB installation file:

    wget https://zoom.us/client/5.16.2.8828/zoom_amd64.deb
  2. Install Zoom using the downloaded DEB file:

sudo apt install ./zoom_amd64.deb -y