├── 01 FlaskChatbot ├── ChatGPT.py ├── Echo.py ├── GPT3.py ├── Hello.py ├── static │ └── style.css └── templates │ └── index.html ├── 02 BasicNLP └── readme.txt ├── 03 HuggingFace └── huggingface.py ├── 04 BERT ├── BERT_SQuAD_Finetuned.py ├── BERT_for_QA.py ├── SQuAD │ ├── dev-v2.0.json │ └── train-v2.0.json └── squad_feature_creation.py ├── 05 GPT ├── ChatGPT++.py ├── ChatGPT+.py ├── ChatGPT.py ├── GPT+.py └── GPT.py ├── 06 DALLE ├── createPic.py ├── editPic.py ├── mouse_riding_cat.png └── mouse_riding_cat_univ.png ├── 07 Telegram └── OpenAI_Telegram.py └── README.md /01 FlaskChatbot/ChatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/01 FlaskChatbot/ChatGPT.py -------------------------------------------------------------------------------- /01 FlaskChatbot/Echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/01 FlaskChatbot/Echo.py -------------------------------------------------------------------------------- /01 FlaskChatbot/GPT3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/01 FlaskChatbot/GPT3.py -------------------------------------------------------------------------------- /01 FlaskChatbot/Hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/01 FlaskChatbot/Hello.py -------------------------------------------------------------------------------- /01 FlaskChatbot/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/01 FlaskChatbot/static/style.css -------------------------------------------------------------------------------- /01 FlaskChatbot/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/01 FlaskChatbot/templates/index.html -------------------------------------------------------------------------------- /02 BasicNLP/readme.txt: -------------------------------------------------------------------------------- 1 | 本节课无代码 -------------------------------------------------------------------------------- /03 HuggingFace/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/03 HuggingFace/huggingface.py -------------------------------------------------------------------------------- /04 BERT/BERT_SQuAD_Finetuned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/04 BERT/BERT_SQuAD_Finetuned.py -------------------------------------------------------------------------------- /04 BERT/BERT_for_QA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/04 BERT/BERT_for_QA.py -------------------------------------------------------------------------------- /04 BERT/SQuAD/dev-v2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/04 BERT/SQuAD/dev-v2.0.json -------------------------------------------------------------------------------- /04 BERT/SQuAD/train-v2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/04 BERT/SQuAD/train-v2.0.json -------------------------------------------------------------------------------- /04 BERT/squad_feature_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/04 BERT/squad_feature_creation.py -------------------------------------------------------------------------------- /05 GPT/ChatGPT++.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/05 GPT/ChatGPT++.py -------------------------------------------------------------------------------- /05 GPT/ChatGPT+.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/05 GPT/ChatGPT+.py -------------------------------------------------------------------------------- /05 GPT/ChatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/05 GPT/ChatGPT.py -------------------------------------------------------------------------------- /05 GPT/GPT+.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/05 GPT/GPT+.py -------------------------------------------------------------------------------- /05 GPT/GPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/05 GPT/GPT.py -------------------------------------------------------------------------------- /06 DALLE/createPic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/06 DALLE/createPic.py -------------------------------------------------------------------------------- /06 DALLE/editPic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/06 DALLE/editPic.py -------------------------------------------------------------------------------- /06 DALLE/mouse_riding_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/06 DALLE/mouse_riding_cat.png -------------------------------------------------------------------------------- /06 DALLE/mouse_riding_cat_univ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/06 DALLE/mouse_riding_cat_univ.png -------------------------------------------------------------------------------- /07 Telegram/OpenAI_Telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/07 Telegram/OpenAI_Telegram.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/chatgpt-briefing/HEAD/README.md --------------------------------------------------------------------------------