- prediction/image/ FastAPI 서버 Docker 환경 구성 - Dockerfile: PyTorch 2.1 + CUDA 12.1 기반 GPU 이미지 - docker-compose.yml: GPU 할당 + 데이터 볼륨 마운트 - requirements.txt: 서버 의존성 목록 - .env.example: 환경변수 템플릿 - DOCKER_USAGE.md: 빌드/실행/API 사용법 문서 - Dockerfile에 .dockerignore 제외 폴더 mkdir -p 추가 - .gitignore: prediction/image 결과물 및 모델 가중치(.pth) 제외 추가 - dbInsert_csv.py, dbInsert_shp.py 삭제 (미사용 DB 로직) - api.py: dbInsert import 및 주석 처리된 DB 호출 코드 제거 - aerialRouter.ts: req.params 타입 오류 수정
52 lines
1.8 KiB
Python
52 lines
1.8 KiB
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
import warnings
|
|
|
|
import torch.nn as nn
|
|
import torch.nn.functional as F
|
|
|
|
|
|
def resize(input,
|
|
size=None,
|
|
scale_factor=None,
|
|
mode='nearest',
|
|
align_corners=None,
|
|
warning=True):
|
|
if warning:
|
|
if size is not None and align_corners:
|
|
input_h, input_w = tuple(int(x) for x in input.shape[2:])
|
|
output_h, output_w = tuple(int(x) for x in size)
|
|
if output_h > input_h or output_w > input_w:
|
|
if ((output_h > 1 and output_w > 1 and input_h > 1
|
|
and input_w > 1) and (output_h - 1) % (input_h - 1)
|
|
and (output_w - 1) % (input_w - 1)):
|
|
warnings.warn(
|
|
f'When align_corners={align_corners}, '
|
|
'the output would more aligned if '
|
|
f'input size {(input_h, input_w)} is `x+1` and '
|
|
f'out size {(output_h, output_w)} is `nx+1`')
|
|
return F.interpolate(input, size, scale_factor, mode, align_corners)
|
|
|
|
|
|
class Upsample(nn.Module):
|
|
|
|
def __init__(self,
|
|
size=None,
|
|
scale_factor=None,
|
|
mode='nearest',
|
|
align_corners=None):
|
|
super(Upsample, self).__init__()
|
|
self.size = size
|
|
if isinstance(scale_factor, tuple):
|
|
self.scale_factor = tuple(float(factor) for factor in scale_factor)
|
|
else:
|
|
self.scale_factor = float(scale_factor) if scale_factor else None
|
|
self.mode = mode
|
|
self.align_corners = align_corners
|
|
|
|
def forward(self, x):
|
|
if not self.size:
|
|
size = [int(t * self.scale_factor) for t in x.shape[-2:]]
|
|
else:
|
|
size = self.size
|
|
return resize(x, size, None, self.mode, self.align_corners)
|