1 Star 1 Fork 1

goslion/TextSim_cn_finetune

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
export.sh 696 Bytes
一键复制 编辑 原始数据 按行查看 历史
L.贝 提交于 2019-10-17 11:10 . Initial commit
#!/bin/bash
#description: BERT fine-tuning
export BERT_BASE_DIR=./roberta_zh_l12
export DATA_DIR=./train_data
export TRAINED_CLASSIFIER=./model_files
export MODEL_NAME=roberta-base-zh_law_epoch1
python run_classifier_serving.py \
--task_name=sentence_pair \
--do_train=False \
--do_eval=False \
--do_predict=True \
--data_dir=$DATA_DIR \
--vocab_file=$BERT_BASE_DIR/vocab.txt \
--bert_config_file=$BERT_BASE_DIR/bert_config.json \
--init_checkpoint=$BERT_BASE_DIR/bert_model.ckpt \
--max_seq_length=128 \
--train_batch_size=32 \
--learning_rate=2e-5 \
--num_train_epochs=3.0 \
--output_dir=$TRAINED_CLASSIFIER/$MODEL_NAME \
--do_export=True \
--export_dir=exported
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guinzoo/TextSim_cn_finetune.git
git@gitee.com:guinzoo/TextSim_cn_finetune.git
guinzoo
TextSim_cn_finetune
TextSim_cn_finetune
master

搜索帮助