프로그래밍(12)
-
RAMP-CNN: A Novel Neural Network for Enhanced Automotive Radar Object Recognition 정리
보호되어 있는 글입니다.
2024.08.08 -
경로내에 있는 파일 리스트 출력
search_dir 경로(workspace 폴더)에 있는 파일 리스트 출력 예시 #!/bin/bash search_dir="./workspace" for entry in "$search_dir"/* do echo "$entry" done
2022.09.28 -
[Linux] script에서 split
리눅스 쉘 스크립트에서 split 예시 #!/bin/bash search_dir="I/wanna/go/home" test_1=$(echo $entry | cut -d '/' -f3) echo $test_1
2022.09.28 -
Pytorch 특정 GPU만 할당 및 사용
import os os.environ["CUDA_DEVICE_ORDER"]="PCI_BUS_ID" # Arrange GPU devices starting from 0 os.environ["CUDA_VISIBLE_DEVICES"]= "0,1" # 0번 과 1번 GPU를 사용, Set the GPU 2 to use 위의 코드를 실행할 코드 맨 위에 적용하여 실행하면 됨.
2022.04.24 -
멀티 GPU 시스템에서 하나의 GPU만 사용하기
방법 1 tf.debugging.set_log_device_placement(True) try: # 유효하지 않은 GPU 장치를 명시 with tf.device('/device:GPU:2'): a = tf.constant([[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]]) b = tf.constant([[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]) c = tf.matmul(a, b) except RuntimeError as e: print(e) ref: https://www.tensorflow.org/guide/gpu?hl=ko#%EB%A9%80%ED%8B%B0_gpu_%EC%8B%9C%EC%8A%A4%ED%85%9C%EC%97%90%EC%84%9C_%ED%95%98%EB..
2022.02.16 -
ImportError: IProgress not found. Please update jupyter and ipywidgets.
conda 사용 시: conda install -c conda-forge ipywidgets 참고사이트 https://ipywidgets.readthedocs.io/en/stable/user_install.html Installation — Jupyter Widgets 7.6.5 documentation In most cases, installing the Python ipywidgets package will also automatically configure classic Jupyter Notebook and JupyterLab 3.0 to display ipywidgets. With pip, do: Installing in classic Jupyter Notebook Most of the time,..
2021.12.15