You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--do_train will load the pre-trained model bert-base-uncased, perform fine tuning, and save the model in ./pos/trained.
But why does --do_tagging load --model_name_or_path bert-base-uncased in def run_script instead of loading the stored model in ./pos/trained ?
--do_train will load the pre-trained model bert-base-uncased, perform fine tuning, and save the model in ./pos/trained. But why does --do_tagging load --model_name_or_path bert-base-uncased in def run_script instead of loading the stored model in ./pos/trained ?
I have a question about the implementation of Part-of-Speech tagging.
The following command will tag the POS.
python3 pos_tagging.py --do_train --do_tagging train --gpus 0 1 --dataset_folder wikibio
--do_train will load the pre-trained model
bert-base-uncased
, perform fine tuning, and save the model in./pos/trained
.But why does --do_tagging load
--model_name_or_path bert-base-uncased
indef run_script
instead of loading the stored model in./pos/trained
?The text was updated successfully, but these errors were encountered: