update install script and label

This commit is contained in:
AI-team\cyhan
2025-05-12 12:57:24 +09:00
parent b436a81091
commit 8642e0e510
4 changed files with 46 additions and 2 deletions

19
install.ps1 Normal file
View File

@@ -0,0 +1,19 @@
# uv와 git이 사전에 설치되어 있다고 가정
# 가상환경 생성
uv venv
# 가상환경 활성화 (PowerShell)
.\venv\Scripts\Activate.ps1
# PyTorch 설치 (CUDA 12.8 버전)
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
# Facebook Research SAM 모델 설치
uv pip install git+https://github.com/facebookresearch/segment-anything.git
uv pip install git+https://github.com/facebookresearch/sam2.git
# 기타 필요한 패키지 설치
uv pip install -r requirements.txt
Write-Host "설치가 완료되었습니다."

21
install.sh Normal file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# uv와 git이 사전에 설치되어 있다고 가정
# 가상환경 생성
uv venv
# 가상환경 활성화
source ./venv/bin/activate
# PyTorch 설치 (CUDA 12.8 버전)
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
# Facebook Research SAM 모델 설치
uv pip install git+https://github.com/facebookresearch/segment-anything.git
uv pip install git+https://github.com/facebookresearch/sam2.git
# 기타 필요한 패키지 설치
uv pip install -r requirements.txt
echo "설치가 완료되었습니다."

View File

@@ -1,3 +1,5 @@
#python 3.11 이상과 uv, git, cuda 12.8 버전이 사전에 설치되어 있어야 합니다.
uv venv
./venv/bin/activate
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128

View File

@@ -1,4 +1,6 @@
{
"PRODUCT": 1,
"SEPARATOR": 2
"ROAD": 1,
"BUILDING": 2,
"TREE": 3,
"VEHICLE": 4
}