forked from acl-org/reviewer-paper-matching
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.history
More file actions
15 lines (11 loc) · 1.66 KB
/
README.history
File metadata and controls
15 lines (11 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
dir=emnlp.20200615
python3 softconf_extract.py --profile_in=$dir/Profile_Information.csv --submission_in=$dir/Submission_Information.csv --bid_in=$dir/Bid_Information_Augmented.csv --reviewer_out=$dir/reviewers.jsonl --submission_out=$dir/submissions.jsonl --bid_out=$dir/cois.npy
if [ -f $dir/paper_matrix.npy ]
then
python3 suggest_reviewers.py --submission_file=$dir/submissions.jsonl --db_file=scratch/acl-anthology.json --reviewer_file=$dir/reviewers.jsonl --model_file=scratch/similarity-model.pt --max_papers_per_reviewer=6 --reviews_per_paper=3 --suggestion_file=$dir/assignments.jsonl --bid_file=$dir/cois.npy --load_paper_matrix=$dir/paper_matrix.npy --load_aggregate_matrix=$dir/agg_matrix.npy
else
python3 suggest_reviewers.py --submission_file=$dir/submissions.jsonl --db_file=scratch/acl-anthology.json --reviewer_file=$dir/reviewers.jsonl --model_file=scratch/similarity-model.pt --max_papers_per_reviewer=6 --reviews_per_paper=3 --suggestion_file=$dir/assignments.jsonl --bid_file=$dir/cois.npy --save_paper_matrix=$dir/paper_matrix.npy --save_aggregate_matrix=$dir/agg_matrix.npy
fi
python3 softconf_package.py --suggestion_file $dir/assignments.jsonl > $dir/start-assignments.csv
# assuming paper matrix save, o/w run with --save_paper_matrix
#python3 suggest_tracks.py --submission_file=$dir/submissions.jsonl --db_file=scratch/acl-anthology.json --reviewer_file=$dir/reviewers.jsonl --model_file=scratch/similarity-model.pt --load_paper_matrix=$dir/paper_matrix.npy --bid_file=$dir/cois.npy --output_file=$dir/track_suggestions.csv