일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- joint training of textual and layout information
- multilingual
- Text Recognition
- OCR
- Test set
- VrDU
- document image understanding
- Pre-training
- layoutxml
- document understanding
- layoutlm
- 레이블링
- 딥러닝
Archives
- Today
- Total
목록파이썬_tip (5)
JM_Research Blog
python matplotlib 여러개 그래프 그리기
문제 plot을 여러개 그리고 싶은데 한꺼번에 돌리게 되면 plot이 하나만 그려지거나 이상하게 그려지는 경우가 발생 해결 plt.figure('인자') 를 넣어주면 한꺼번에 돌려도 각각 따로 plot이 그려지게 됨. plt.figure(1) plt.plot(epoch, trn_loss1, '-b', label='train_loss') plt.plot(epoch, trn_loss2, '-r', label='val_loss') plt.xlabel('Epoch') plt.legend(loc='upper right') plt.title('compare_loss') plt.savefig('경로.png') plt.figure(2) plt.plot(epoch, iou1, '-b', label='train-IoU')..
파이썬_tip
2019. 5. 17. 02:18