목록[기타] (6)
코드민수
{ "images": [image], "annotations": [annotation], "categories": [category] } image = { "id": int, "width": int, "height": int, "file_name": str, } annotation = { "id": int, "image_id": int, "category_id": int, "segmentation": RLE or [polygon], "area": float, "bbox": [x,y,width,height], # (x, y) are the coordinates of the upper left corner of the bbox "iscrowd": 0 or 1, } categories = [{ "id": in..

윈도우 + 숫자 저는 주로 작업 표시줄에 자주 쓰는 프로그램을 고정해두고 사용합니다. 보통 프로그램을 아이콘 클릭으로 실행하는데, 윈도우 + 숫자로 간편하게 실행이 가능하더라구요. 제 작업 표시줄을 기준으로 윈도우 + 1 = 카카오톡 실행 윈도우 + 2 = 구글 크롬 실행 이렇게 아이콘의 순서에 맞는 숫자를 입력해주시면 됩니다. 자주 사용하는 프로그램을 오른손으로 누를 수 있는 숫자에 두면 편함 윈도우 왼손, 숫자 오른손 작업표시줄에 프로그램 고정은 아이콘 우클릭 후 '작업표시줄에 고정' 누르시면 됩니다.
https://imagej.net/plugins/labkit/gpu-accelleration-tutorial Labkit - How To Enable And Use GPU Acceleration The ImageJ wiki is a community-edited knowledge base on topics relating to ImageJ, a public domain program for processing and analyzing scientific images, and its ecosystem of derivatives and variants, including ImageJ2, Fiji, and others. imagej.github.io https://clij.github.io/clij2-docs..
2023.04.22 - [[기타]] - [도커] 도커 이미지 생성, 저장, 실행(리눅스) [도커] 도커 이미지 생성, 저장, 실행(리눅스) Linux, 3090Ti, CUDA11.2, cudnn 8.2 기준 1. 파이토치 환경 도커 이미지 만들기 1) pull pytorch image (Base Image) https://hub.docker.com/r/pytorch/pytorch/tags?page=1&ordering=last_updated Docker hub.docker.com docker pull pytorch/pytorch:1.8. codeminsu.tistory.com 기본적인 이미지 실행 및 컨테이너 관련 내용은 위 게시글 참조 pytorch 이미지로 생성된 컨테이너를 사용하였습니다. pip in..
Linux, 3090Ti, CUDA11.2, cudnn 8.2 기준 1. 파이토치 환경 도커 이미지 만들기 1) pull pytorch image (Base Image) https://hub.docker.com/r/pytorch/pytorch/tags?page=1&ordering=last_updated Docker hub.docker.com docker pull pytorch/pytorch:1.8.1-cuda11.1-cudnn8-runtime 2) run pytorch image (컨테이너 생성) docker run --gpus all --shm-size=16g --name=cimjuk_yolo -ti pytorch/pytorch:1.8.1-cuda11.1-cudnn8-runtime /bin/bash d..

1. WSL2 설치 Windows PowerShell 관리자 권한으로 실행 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart # 설치 확인 wsl -l -v 2. Docker Desktop 설치 https://docs.docker.com/desktop/install/windows-install/ Install Docker Desktop on Windows docs.docker.com 3. CUDA Toolkit 설치 (3090Ti CU..