Skip to content

Commit

Permalink
Update classifier.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshanley authored Feb 21, 2023
1 parent 9227721 commit 8eb0731
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ def get_args():
dev='data/ids-sst-dev.csv',
test='data/ids-sst-test-student.csv',
option=args.option,
dev_out = 'predictions/sst-dev-out.csv',
test_out = 'predictions/sst-test-out.csv'
dev_out = 'predictions/'+args.option+'-sst-dev-out.csv',
test_out = 'predictions/'+args.option+'-sst-test-out.csv'
)

train(config)
Expand All @@ -383,8 +383,8 @@ def get_args():
dev='data/ids-cfimdb-dev.csv',
test='data/ids-cfimdb-test-student.csv',
option=args.option,
dev_out = 'predictions/cfimdb-dev-out.csv',
test_out = 'predictions/cfimdb-test-out.csv'
dev_out = 'predictions/'+args.option+'-cfimdb-dev-out.csv',
test_out = 'predictions/'+args.option+'-cfimdb-test-out.csv'
)

train(config)
Expand Down

0 comments on commit 8eb0731

Please sign in to comment.