the following arguments are required: -data/--data, -save_data/--save_data, -src_vocab/--src_vocab, -tgt_vocab/--tgt_vocab
时间: 2023-10-15 17:04:53 浏览: 94
These arguments are required because they provide necessary information for the model to run.
-data/--data: This argument specifies the location of the input data that the model will use to train and evaluate.
-save_data/--save_data: This argument specifies the location where the preprocessed data will be saved. This preprocessed data is necessary for the model to efficiently train and evaluate.
-src_vocab/--src_vocab: This argument specifies the location of the source language vocabulary file. The vocabulary contains all the words in the source language that the model will be able to use.
-tgt_vocab/--tgt_vocab: This argument specifies the location of the target language vocabulary file. The vocabulary contains all the words in the target language that the model will be able to use.
Without these arguments, the model will not be able to properly process the input data and generate accurate translations.
阅读全文