Skip to content

Commit

Permalink
Merge pull request #74 from bcaitech1/LGBM
Browse files Browse the repository at this point in the history
[창우] add LGBM
  • Loading branch information
dkswndms4782 committed Jul 29, 2021
2 parents 02c3ddc + 85a8673 commit bd0f08a
Show file tree
Hide file tree
Showing 14 changed files with 153 additions and 1,433 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ __pycache__

# ignore .idea folder
.idea

# pycaret log
*.log
Binary file added No Caffeine No Gain.pdf
Binary file not shown.
6 changes: 5 additions & 1 deletion args.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ def parse_args(mode='train'):
# Pseudo Labeling
parser.add_argument('--use_pseudo', default=False, type=bool, help='Using Pseudo labeling')
parser.add_argument('--pseudo_label_file', default='', type=str, help='file path for pseudo labeling')


# Finetuning
parser.add_argument('--use_finetune', default=False, type=bool, help='Using Fine Tuning')
parser.add_argument('--trained_model', default='/opt/ml/code/p4-dkt-no_caffeine_no_gain/models/re_pse_Bert_40_5/model_epoch7.pt', type=str, help='pretrained model path')

# log
parser.add_argument('--log_steps', default=50, type=int, help='print log per n steps')

Expand Down
Loading

0 comments on commit bd0f08a

Please sign in to comment.