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 | 31 |
Tags
- DART
- Kaggle
- BAEKJOON
- MATLAB
- Algorithm
- study book
- 백준
- bloc
- FastAPI
- BOF
- Computer Architecture
- Image Processing
- Got
- C++
- ARM
- llm을 활용 단어장 앱 개발일지
- Dreamhack
- fastapi를 사용한 파이썬 웹 개발
- rao
- pytorch
- Flutter
- 영상처리
- PCA
- ML
- MDP
- Stream
- BFS
- Widget
- system hacking
- 파이토치 트랜스포머를 활용한 자연어 처리와 컴퓨터비전 심층학습
Archives
- Today
- Total
목록MobileNet (1)
Bull

import torchimport torch.nn as nnimport torch.nn.functional as Ffrom torchvision.models.utils import load_state_dict_from_url# Depthwise Separable Convolution 블록 정의class DepthwiseSeparableConv(nn.Module): def __init__(self, in_channels, out_channels, stride=1): super(DepthwiseSeparableConv, self).__init__() self.depthwise = nn.Conv2d(in_channels, in_channels, kernel_size=3, stri..
Artificial Intelligence/Deep Learning
2024. 8. 5. 09:49