+ Electra([ELECTRA: Pre-training Text Encoders as Discriminators Rather Than Generators](https://arxiv.org/abs/2003.10555)), 支持hidden_size=256的`chinese-electra-discriminator-small`和
parser.add_argument("--use_gpu",type=eval,default=False,help="Whether use GPU for training, input should be True or False")
parser.add_argument("--batch_size",type=int,default=64,help="Total examples' number of a batch for training.")
parser.add_argument("--vocab_path",type=str,default="./word_dict.txt",help="The path to vocabulary.")
parser.add_argument('--network_name',type=str,default="bilstm",help="Which network you would like to choose bow, lstm, bilstm, gru, bigru, rnn, birnn, bilstm_attn, cnn and textcnn?")
parser.add_argument('--network',type=str,default="bilstm_attn",help="Which network you would like to choose bow, lstm, bilstm, gru, bigru, rnn, birnn, bilstm_attn, cnn and textcnn?")
parser.add_argument("--params_path",type=str,default='./chekpoints/final.pdparams',help="The path of model parameter to be loaded.")
@@ -29,7 +29,7 @@ parser.add_argument("--lr", type=float, default=5e-4, help="Learning rate used t
parser.add_argument("--save_dir",type=str,default='chekpoints/',help="Directory to save model checkpoint")
parser.add_argument("--batch_size",type=int,default=64,help="Total examples' number of a batch for training.")
parser.add_argument("--vocab_path",type=str,default="./word_dict.txt",help="The directory to dataset.")
parser.add_argument('--network_name',type=str,default="bilstm",help="Which network you would like to choose bow, lstm, bilstm, gru, bigru, rnn, birnn, bilstm_attn and textcnn?")
parser.add_argument('--network',type=str,default="bilstm_attn",help="Which network you would like to choose bow, lstm, bilstm, gru, bigru, rnn, birnn, bilstm_attn and textcnn?")
parser.add_argument("--init_from_ckpt",type=str,default=None,help="The path of checkpoint to be loaded.")
+ Electra([ELECTRA: Pre-training Text Encoders as Discriminators Rather Than Generators](https://arxiv.org/abs/2003.10555)), 支持hidden_size=256的`chinese-electra-discriminator-small`和