Skip to content
New issue

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

update README to reflect last PR #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,17 @@ To replicate any of our outcome prediction results, you only need to run the out

```
python run_outcome_prediction.py
--train <PATH_TO_TRAIN_CSV>
--dev <PATH_TO_DEV_CSV>
--test <PATH_TO_TEST_CSV>
--init_model <HF_IDENTIFIER>
--train_path <PATH_TO_TRAIN_CSV>
--dev_path <PATH_TO_DEV_CSV>
--test_path <PATH_TO_TEST_CSV>
--init_model <HF_IDENTIFIER or PATH_TO_LOCAL_MODEL>
--out_dir <PATH_TO_OUTPUT_DIR>
--checkpoint <PATH_TO_TRAINED_MODEL>
--outcome <pmv/los/mortality>
--do_test
--strategy <average/softvote/weightvote/weightaverage>
--lit_dir <PATH_TO_RERANKER_OUTPUT>
--lit_ranks <PATH_TO_RERANKER_OUTPUT>
--lit_file <PATH_TO_LITERATURE_PICKLE>
--num_top_docs <K_VALUE>
```

Expand Down