일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Text Recognition
- document image understanding
- document understanding
- VrDU
- 딥러닝
- 레이블링
- Test set
- Pre-training
- OCR
- joint training of textual and layout information
- multilingual
- layoutlm
- layoutxml
- Today
- Total
목록+ 딥러닝/논문으로 짚어보는 딥러닝(최성준님 강의 정리) (2)
JM_Research Blog
* 이 글은 논문으로 짚어보는 딥러닝 (최성준) 리뷰 글입니다. - 출처 : https://www.edwith.org/deeplearningchoi - pytorch 1. inception 장점 1. 1x1 conv이용해서 channel 줄여서 파라미터 줄임 2. 다양한 receptive field 반영 code class InceptionA(nn.Module): def __init__(self, in_channels, pool_features): super(InceptionA, self).__init__() self.branch1x1 = BasicConv2d(in_channels, 64, kernel_size=1) self.branch5x5_1 = BasicConv2d(in_channels, 48, k..
* 이 글은 논문으로 짚어보는 딥러닝 (최성준) 리뷰 글입니다. 출처 : https://www.edwith.org/deeplearningchoi Import import numpy as np import os from scipy.misc import imread, imresize import matplotlib.pyplot as plt Load an Image cat = imread("./image/test0.png") # imread로 경로 넣어서 불러옴 Drow image plt.figure(figsize=(10,10)) # figsize 이미지 그릴때 크기 plt.imshow(cat) plt.title('seg') plt.draw() Resize catsmall= imresize(cat,[100,1..