본문 바로가기

전체 글39

[Python] 경로 안의 파일 리스트 가져오기 # -*- coding: utf-8 -*- import os path = "./" file_list = os.listdir(path) print ("file_list: {}".format(file_list)) file_list: ['testdira', 'eq.js', 'test.db', 'etl.py', '.etl.py.swp', 'testdirb', 'testdirc', 'find_file.py', 'asd.py', 'namespace_.py', 'namespace_2.py', 'eq.py'] 2021. 9. 1.
Scaler 정리 https://mkjjo.github.io/python/2019/01/10/scaler.html [Python] 어떤 스케일러를 쓸 것인가? * 본 포스트는 개인연구/학습 기록 용도로 작성되고 있습니다. By MK on January 10, 2019 데이터를 모델링하기 전에는 반드시 스케일링 과정을 거쳐야 한다. 스케일링을 통해 다차원의 값들을 비교 분 mkjjo.github.io 2021. 9. 1.
Termnial Command watch -n 1 nvidia-smi nvcc -V https://sci-hub.se/https://doi.org/10.1145/3292500.3330672 Robust Anomaly Detection for Multivariate Time Series through Stochastic Recurrent Neural Network 2021. 9. 1.
Anomaly Detection 알고리즘 별 딥러닝 환경 CUDNN 버젼확인 Terminal Command cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2orcat /usr/include/cudnn.h | grep CUDNN_MAJOR -A 2 Cuda Toolkit Download Link https://developer.nvidia.com/cuda-toolkit-archive CUDA Toolkit Archive Previous releases of the CUDA Toolkit, GPU Computing SDK, documentation and developer drivers can be found using the links below. Please select the release you wa.. 2021. 9. 1.
[텍사스 홀덤] (3/?) 용어정리 텍사스 홀덤에서 쓰이는 용어 정리. (출처 : 나무위키) 1. Nut (넛) 커뮤니티 카드의 조합상 나올 수 있는 최고의 패로 절대로 지지 않는 1등패를 말한다. ex)A♣-3♠-6♠-7♠-10♡ 이러한 상황이라면 4♠-5♠가 와서 7 스트레이트 플러시가 넛이 된다. Kicker (키커) 최종 핸드를 5장으로 구성했을 때 족보가 같으면, 승부를 결정짓는 카드 Under The Gun (언더더건) 처음 액션을 취하게 될 자리들. 블라인드 밑 두명정도, UTG1 UTG2로 표기. 불리한 자리 Offsuit (오프수트) 시작 핸드중에 서로 다른 무늬 두장 Suited (수티드) 같은 무늬의 핸드. 똑같은 숫자끼리 suited와 off-suited(무늬가 다른경우) 가 만나면 52.5%vs47.5%로 suite.. 2021. 8. 29.
[딥러닝 환경구축(1/3)] RTX 2080 ti + Ubuntu 18.04 + CUDA + cuDNN Tensorflow 1.x 버전을 사용하기 위해 RTX 2080 TI PC 에 환경 구성을 하고자 한다. (RTX 30 대 부터는 CUDA >=11.0 만 호환 돼 Tensorflow 1.x 버전을 사용할 수 없다.) What will be installed: RTX 2080 ti Ubuntu 18.04 nvidia-driver 440.x CUDA 10.0 cuDNN 7.6.5 1.nvidia driver 설치 아래 명령어를 통해 nvidia-driver 440 설치 $ sudo add-apt-repository ppa:graphics-drivers/ppa $ sudo apt update $ sudo apt install nvidia-driver-440 $ sudo reboot # 설치 후 재부팅 설치를.. 2021. 8. 27.