Home > Technology peripherals > AI > body text

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

WBOY
Release: 2023-04-04 11:20:51
forward
931 people have browsed it

Recently, a developer’s open source “ChatGPT for scientific research” project on GitHub has been well received. Paper polishing, grammar checking, Chinese-English translation, code explanation, etc. can all be done with one click.

Since the release of ChatGPT, various experts have begun to study how to add it to their "scientific research workflow".

For example, "Mathematical Genius" Terence Tao said that he has incorporated ChatGPT into his workflow.

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

Recently, a netizen also shared his "ChatGPT Academic Optimization" project.

Unexpectedly, within a few days of open source on GitHub, it reached 3.3k stars (still growing rapidly).

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

Project address: https://github.com/binary-husky/chatgpt_academic

Currently, "ChatGPT Academic Optimization" can support the following functions:

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

In short, just leave it to ChatGPT

For example, you can complete the polishing and error correction of your paper with one click.

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

If the output contains formulas, the optimized version of ChatGPT will be displayed in both TEX and rendering form to facilitate copying and reading.

Are you tired of reading the code? It's better to just throw the entire project in and let ChatGPT do the analysis for you.

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

Not only that, it can also give a summary after the analysis.

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

In addition to the project code, Latex papers can also be read and understood with one click, and abstracts can be generated.

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

In addition, the optimized version of ChatGPT also supports the modular design of the project.

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

And automatically generate analysis reports.

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars

Installation and use

Currently, we can mainly experience the "Academic Edition ChatGPT" in the following two ways.

Run directly (Windows or Linux or MacOS)

First, download the project through git.

git clone https://github.com/binary-husky/chatgpt_academic.git
cd chatgpt_academic

Next, in the config.py file, configure the Proxy and OpenAI API KEY.

Finally, install dependencies through pip and run the project.

python -m pip install -r requirements.txt
python main.py

Use docker (Linux)

The first two steps are the same as above, or download them first Project and configure Proxy and OpenAI API KEY.

git clone https://github.com/binary-husky/chatgpt_academic.git
cd chatgpt_academic

Next, install and run in docker.

docker build -t gpt-academic .
docker run --rm -it --net=host gpt-academic

The above is the detailed content of ChatGPT dedicated to academic research is here! Just open sourced over the weekend, GitHub gained 3k+ stars. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:51cto.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!