Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

bozheng-hit/NQ_BERT-DM

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NQ_BERT-DM

The code for ACL2020 paper "Document Modeling with Graph Attention Networks for Multi-grained Machine Reading Comprehension"

1. Process training/development data

python src_nq_memory/create_examples.py 
	--input_pattern "./natural_questions/v1.0/train/nq-train-*.jsonl.gz" \
	--vocab_file ./bert-base-uncased-vocab.txt \
	--do_lower_case \
	--output_dir ./natural_questions/nq_0.03/ \
	--num_threads 24 --include_unknowns 0.03 --max_seq_length 512 --doc_stride 128
python src_nq_memory/create_examples.py \
	--input_pattern "./natural_questions/v1.0/dev/nq-dev-*.jsonl.gz" \
	--vocab_file ./bert-base-uncased-vocab.txt \
	--do_lower_case \
	--output_dir ./natural_questions/nq_0.03/ \
	--num_threads 24 --include_unknowns 0.03 --max_seq_length 512 --doc_stride 128 

2. Training the model with a 4-GPU node

python -u -m torch.distributed.launch --nproc_per_node=4 --master_addr 127.0.0.1 --master_port 9527 ./src_nq/run.py \
	--my_config ./configs/config.json \
	--feature_path ./natural_questions/nq_0.03/ \
	--train_pattern "./natural_questions/v1.0/train/nq-train-??.jsonl.gz" \
	--test_pattern "./natural_questions/v1.0/dev/nq-dev-*.jsonl.gz" \
	--model_dir /path/to/pre-trained_model/ \
	--output_dir /path/to/output_model_dir \
	--do_train --do_predict --train_batch_size 8 --predict_batch_size 8 \
	--learning_rate 2e-5 --num_train_epochs 2

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.