pytorch_pretrained_bert将tensorflow模型转化为pytorch模型
2022/1/29 23:36:53
本文主要是介绍pytorch_pretrained_bert将tensorflow模型转化为pytorch模型,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
参考:使用pytorch_pretrained_bert将tensorflow模型转化为pytorch模型_sunyueqinghit的博客-CSDN博客_bert tensorflow转pytorch
1. 下载bert安装包GitHub - google-research/bert: TensorFlow code and pre-trained models for BERT
2. 下载转换的py文件transformers/convert_bert_original_tf_checkpoint_to_pytorch.py at master · huggingface/transformers · GitHub
3. 将2放入1文件夹下,打开prompt,cd到对应的文件夹的位置,方便读取2中的py文件,输入以下代码(其中文件夹位置需要对应修改),即可完成转换
python convert_bert_original_tf_checkpoint_to_pytorch.py --tf_checkpoint_path C:\Users\18742\Desktop\language_detector\bert_base_dir\multi_cased_L-12_H-768_A-12\bert_model.ckpt --bert_config_file C:\Users\18742\Desktop\language_detector\bert_base_dir\multi_cased_L-12_H-768_A-12\bert_config.json --pytorch_dump_path C:\Users\18742\Desktop\language_detector\bert_base_dir\multi_cased_L-12_H-768_A-12\pytorch_model.bin
后续参考:使用bert进行情感分类 - 哦摩西罗伊 - 博客园
这篇关于pytorch_pretrained_bert将tensorflow模型转化为pytorch模型的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-30tensorflow是什么-icode9专业技术文章分享
- 2024-10-15成功地使用本地的 NVIDIA GPU 运行 PyTorch 或 TensorFlow
- 2024-01-23供应链投毒预警 | 恶意Py包仿冒tensorflow AI框架实施后门投毒攻击
- 2024-01-19attributeerror: module 'tensorflow' has no attribute 'placeholder'
- 2024-01-19module 'tensorflow.compat.v2' has no attribute 'internal'
- 2023-07-17【2023年】第33天 Neural Networks and Deep Learning with TensorFlow
- 2023-07-10【2023年】第32天 Boosted Trees with TensorFlow 2.0(随机森林)
- 2023-07-09【2023年】第31天 Logistic Regression with TensorFlow 2.0(用TensorFlow进行逻辑回归)
- 2023-07-01【2023年】第30天 Supervised Learning with TensorFlow 2(用TensorFlow进行监督学习 2)
- 2023-06-18【2023年】第29天 Supervised Learning with TensorFlow 1(用TensorFlow进行监督学习 1)