Open xhqi0109 opened 2 years ago
Could you please be specific about what you mean by teacher model. It's not clear enough for me.
Thank you for your reply. The teacher model is the teacher's pre training model, as shown in the following code:
teacher = TeacherBertForSequenceClassification.from_pretrained(
training_args.teacher_path,
from_tf=bool(".ckpt" in training_args.teacher_path),
config=config,
alignrep=training_args.alignrep,
)
Hi,you can train the teacher model conveniently using the scripts provided by huggingface.
Hello, where can I download the teacher model?