├── .idea ├── .gitignore ├── GPT_Mindspore-master.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── Batch.py ├── Embed.py ├── Layers.py ├── ModelA.py ├── Sublayers.py ├── check_json.py ├── config.py ├── image ├── 85.jpg ├── layout_description.PNG ├── scrcpy.png └── 说明.png ├── json ├── 名称_操作.json ├── 名称_编号.json ├── 数_词表.json ├── 编号_名称.json └── 词_数表.json ├── readme.md ├── resnet_utils.py ├── weights └── 这里放入模型 ├── 取训练数据.py ├── 启动和结束进程.py ├── 处理训练数据5.py ├── 杂项.py ├── 训练_B.py ├── 训练数据截取_A.py └── 运行辅助.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/GPT_Mindspore-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/.idea/GPT_Mindspore-master.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /Batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/Batch.py -------------------------------------------------------------------------------- /Embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/Embed.py -------------------------------------------------------------------------------- /Layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/Layers.py -------------------------------------------------------------------------------- /ModelA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/ModelA.py -------------------------------------------------------------------------------- /Sublayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/Sublayers.py -------------------------------------------------------------------------------- /check_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/check_json.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/config.py -------------------------------------------------------------------------------- /image/85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/image/85.jpg -------------------------------------------------------------------------------- /image/layout_description.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/image/layout_description.PNG -------------------------------------------------------------------------------- /image/scrcpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/image/scrcpy.png -------------------------------------------------------------------------------- /image/说明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/image/说明.png -------------------------------------------------------------------------------- /json/名称_操作.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/json/名称_操作.json -------------------------------------------------------------------------------- /json/名称_编号.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/json/名称_编号.json -------------------------------------------------------------------------------- /json/数_词表.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/json/数_词表.json -------------------------------------------------------------------------------- /json/编号_名称.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/json/编号_名称.json -------------------------------------------------------------------------------- /json/词_数表.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/json/词_数表.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/readme.md -------------------------------------------------------------------------------- /resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/resnet_utils.py -------------------------------------------------------------------------------- /weights/这里放入模型: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /取训练数据.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/取训练数据.py -------------------------------------------------------------------------------- /启动和结束进程.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/启动和结束进程.py -------------------------------------------------------------------------------- /处理训练数据5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/处理训练数据5.py -------------------------------------------------------------------------------- /杂项.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/杂项.py -------------------------------------------------------------------------------- /训练_B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/训练_B.py -------------------------------------------------------------------------------- /训练数据截取_A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/训练数据截取_A.py -------------------------------------------------------------------------------- /运行辅助.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FengQuanLi/ResnetGPT/HEAD/运行辅助.py --------------------------------------------------------------------------------