We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ver 1.0 코드입니다
config 파일을 수정하고 train.py 파일을 실행합니다.
python src/python.py
학습이 완료되면 test_result.csv(EDA용), submission.csv(제출용) 파일이 생성됩니다.
config_sweep 파일을 수정하고 train_sweep.py 파일을 실행합니다. sweep하고 싶은 파라미터는 리스트로 입력합니다.
config 파일을 수정해서 input_format을 변경할 수 있습니다.
input_format
[CLS] Subject [SEP] Object [SEP] Sentence [SEP]
[SUBJ-PER] was born in [OBJ-CITY].
@ Bill @ was born in # Seattle #.
@ *person* Bill @ was born in # ^ city ^ Seattle #.
config 파일을 수정해서 model_class를 변경할 수 있습니다.
model_class
BertForSeqeunceClassification
config 파일을 잘 확인하세요~
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ver 1.0 코드입니다
1. train
config 파일을 수정하고 train.py 파일을 실행합니다.
학습이 완료되면 test_result.csv(EDA용), submission.csv(제출용) 파일이 생성됩니다.
2. train_sweep
config_sweep 파일을 수정하고 train_sweep.py 파일을 실행합니다.
sweep하고 싶은 파라미터는 리스트로 입력합니다.
3. Entity masking, Entity Marker
config 파일을 수정해서
input_format
을 변경할 수 있습니다.[CLS] Subject [SEP] Object [SEP] Sentence [SEP]
[SUBJ-PER] was born in [OBJ-CITY].
@ Bill @ was born in # Seattle #.
@ *person* Bill @ was born in # ^ city ^ Seattle #.
4. Model
config 파일을 수정해서
model_class
를 변경할 수 있습니다.BertForSeqeunceClassification
를 사용합니다.요약
config 파일을 잘 확인하세요~
The text was updated successfully, but these errors were encountered: