Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Python
- eda
- 입문
- 3줄 논문
- Semantic Segmentation
- 협업필터링
- 코딩테스트
- MySQL
- DFS
- 튜토리얼
- 큐
- pytorch
- Recsys-KR
- 스택
- 프로그래머스
- 파이썬
- 나는리뷰어다
- Image Segmentation
- Machine Learning Advanced
- TEAM-EDA
- 엘리스
- hackerrank
- 알고리즘
- 추천시스템
- Object Detection
- TEAM EDA
- Segmentation
- 한빛미디어
- DilatedNet
- 나는 리뷰어다
Archives
- Today
- Total
목록LargeFov (1)
TEAM EDA

import torch import torch.nn as nn from torch.nn import functional as F def conv_relu(in_ch, out_ch, size=3, rate=1): conv_relu = nn.Sequential(nn.Conv2d(in_ch, out_ch, kernel_size=size, stride=1, padding=rate, dilation=rate), nn.ReLU()) return conv_relu class VGG16(nn.Module): def __init__(self): super(VGG16, self).__init__() self.features1 = nn.Sequential(conv_relu(3, 64, 3, 1), conv_relu(64, ..
EDA Study/Image Segmentation
2021. 9. 22. 16:58