We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@kamalkraj Thank you for giving clear instructions with respect to SQuAD which wasn't available in the main repo
With the following parameters:
run_squad.py --mode=predict \ --albert_config_file=../albert_base_resources/config.json \ --model_dir=../albert_base_resources/ \ --input_meta_data_path=../squad_out_v1.1/squad_v1.1_meta_data \ --predict_file=../squad_dataset/dev_small.json.txt \ --spm_model_file=../albert_base_resources/vocab/30k-clean.model
dev_small.json.txt
Fails with object referred before assigned
So, shouldn't this line:
ALBERT-TF2.0/run_squad.py
Lines 565 to 567 in 8d0cc21
if FLAGS.version_2_with_negative: predicted = get_raw_results_v2(predictions) else: predicted = get_raw_results(predictions) for result in predicted:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@kamalkraj Thank you for giving clear instructions with respect to SQuAD which wasn't available in the main repo
With the following parameters:
dev_small.json.txt
Fails with object referred before assigned
So, shouldn't this line:
ALBERT-TF2.0/run_squad.py
Lines 565 to 567 in 8d0cc21
modified to:
The text was updated successfully, but these errors were encountered: