├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── check_proxy.py ├── config.py ├── crazy_functions ├── test_project │ ├── cpp │ │ ├── cppipc │ │ │ ├── buffer.cpp │ │ │ ├── ipc.cpp │ │ │ ├── policy.h │ │ │ ├── pool_alloc.cpp │ │ │ ├── prod_cons.h │ │ │ ├── queue.h │ │ │ ├── shm.cpp │ │ │ ├── waiter.h │ │ │ └── 来源 │ │ └── libJPG │ │ │ ├── jpgd.cpp │ │ │ ├── jpgd.h │ │ │ ├── jpge.cpp │ │ │ ├── jpge.h │ │ │ └── 来源 │ ├── latex │ │ └── attention │ │ │ ├── background.tex │ │ │ ├── introduction.tex │ │ │ ├── model_architecture.tex │ │ │ ├── parameter_attention.tex │ │ │ └── 来源 │ ├── python │ │ └── dqn │ │ │ ├── __init__.py │ │ │ ├── dqn.py │ │ │ ├── policies.py │ │ │ └── 来源 │ └── 其他测试 ├── 生成函数注释.py ├── 解析项目源代码.py ├── 读文章写摘要.py └── 高级功能函数模板.py ├── functional.py ├── functional_crazy.py ├── img ├── demo.jpg ├── demo2.jpg ├── 公式.gif └── 润色.gif ├── main.py ├── predict.py ├── requirements.txt ├── show_math.py ├── theme.py └── toolbox.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/README.md -------------------------------------------------------------------------------- /check_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/check_proxy.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/config.py -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/buffer.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/ipc.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/policy.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/pool_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/pool_alloc.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/prod_cons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/prod_cons.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/queue.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/shm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/shm.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/waiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/waiter.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/cppipc/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/cppipc/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpgd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/libJPG/jpgd.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/libJPG/jpgd.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/libJPG/jpge.cpp -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/libJPG/jpge.h -------------------------------------------------------------------------------- /crazy_functions/test_project/cpp/libJPG/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/cpp/libJPG/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/latex/attention/background.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/latex/attention/introduction.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/model_architecture.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/latex/attention/model_architecture.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/parameter_attention.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/latex/attention/parameter_attention.tex -------------------------------------------------------------------------------- /crazy_functions/test_project/latex/attention/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/latex/attention/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/python/dqn/__init__.py -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/python/dqn/dqn.py -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/python/dqn/policies.py -------------------------------------------------------------------------------- /crazy_functions/test_project/python/dqn/来源: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/python/dqn/来源 -------------------------------------------------------------------------------- /crazy_functions/test_project/其他测试: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/test_project/其他测试 -------------------------------------------------------------------------------- /crazy_functions/生成函数注释.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/生成函数注释.py -------------------------------------------------------------------------------- /crazy_functions/解析项目源代码.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/解析项目源代码.py -------------------------------------------------------------------------------- /crazy_functions/读文章写摘要.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/读文章写摘要.py -------------------------------------------------------------------------------- /crazy_functions/高级功能函数模板.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/crazy_functions/高级功能函数模板.py -------------------------------------------------------------------------------- /functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/functional.py -------------------------------------------------------------------------------- /functional_crazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/functional_crazy.py -------------------------------------------------------------------------------- /img/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/img/demo.jpg -------------------------------------------------------------------------------- /img/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/img/demo2.jpg -------------------------------------------------------------------------------- /img/公式.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/img/公式.gif -------------------------------------------------------------------------------- /img/润色.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/img/润色.gif -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/main.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gradio>=3.23 2 | requests[socks] 3 | mdtex2html 4 | -------------------------------------------------------------------------------- /show_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/show_math.py -------------------------------------------------------------------------------- /theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/theme.py -------------------------------------------------------------------------------- /toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangXinluan/ChatGPT-Academic/HEAD/toolbox.py --------------------------------------------------------------------------------