[2주 정리] 이현준 #5
coderJoon
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Baseline 템플릿화 및 정리하기.
기본 베이스라인 코드 구성
# 기본 베이스 라인 코드 구성 ├── code │ ├── best_model │ ├── logs │ ├── prediction │ ├── results │ ├── dict_label_to_num │ ├── dict_num_to_label │ ├── inference.py │ ├── load_data.py │ ├── requirements.txt │ └── train.py └── dataset ├── test │ └── test.csv └── train └── train.csv
커스텀 베이스라인 코드 구성
train.py 구성 바꾸기
기본 베이스라인 train.py
커스텀 베이스라인 train.py
CNN 코드
[BERT-base + CNN_layers](https://www.notion.so/BERT-base-CNN_layers-779ef7be79234aaf8b7b51de0d769a4c)
Beta Was this translation helpful? Give feedback.
All reactions