Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pytorch_vision_resnext.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,18 @@ for i in range(top5_prob.size(0)):
print(categories[top5_catid[i]], top5_prob[i].item())
```

### Model Description
### 모델 설명

Resnext 모델은 논문 [Aggregated Residual Transformations for Deep Neural Networks]에서 제안되었습니다. (https://arxiv.org/abs/1611.05431).
이중 두가지 버전의 모델 성능은 아래와 같습니다. 각 모델의 레이어 개수는 각 50, 101개입니다.
resnet50과 resnext50의 아키텍처 차이는 논문의 Table 1을 참고하십시오.
ImageNet 데이터셋에 대한 사전훈련된 모델의 에러(성능)은 아래 표와 같습니다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

모델 설명의 본문에서는 '에러', 해당 내용을 가르키는 아래 표에서는 '오류'로 작성 되어있습니다.
외래어 표기법 등에 따라 둘 중에 하나로 통일하는 것이 좋지 않을까 생각 됩니다 :)


| Model structure | Top-1 error | Top-5 error |
| 모델 구조 | Top-1 오류 | Top-5 오류 |
| ----------------- | ----------- | ----------- |
| resnext50_32x4d | 22.38 | 6.30 |
| resnext101_32x8d | 20.69 | 5.47 |

### References
### 참고문헌

- [Aggregated Residual Transformations for Deep Neural Networks](https://arxiv.org/abs/1611.05431)