How to use the academic version of ChatGPT of the Chinese Academy of Sciences without a key


Recently, you should have heard of a very popular ChatGPT academic version (chatgpt academic), which is very powerful. In the past two days, Xiaoshuo wanted to run GM, but he didn't have the key of openai, so he finally gave up. However, by looking at its underlying code, I found that its essence is to use ChatGPT to complete the function, but it uses a fixed template syntax, so only chatGPT can be used, and the effect is the same.

The following is the code open source URL: https://github.com/binary-husky/chatgpt_academic
insert image description here

The website author of ChatBot Steam Rice Cooker ChatGPT plus version used below is JessRosica (free to use): https://supremes.pro/
insert image description here

1. English academic polishing

模板:Below is a paragraph from an academic paper. Polish the writing to meet the academic style,improve the spelling, grammar, clarity, concision and overall readability. When necessary, rewrite the whole sentence. Furthermore, list all modification and explain the reasons to do so in markdown table.

Example of use:

Below is a paragraph from an academic paper. Polish the writing to meet the academic style,improve the spelling, grammar, clarity, concision and overall readability. When necessary, rewrite the whole sentence. Furthermore, list all modification and explain the reasons to do so in markdown table. Paragraph :Intelligent Construction refers to achieving the goals of digitization, intelligence, automation, and sustainable development in the construction process through advanced information technology and intelligent technology. Intelligent Construction covers the entire process of pre-construction, construction, and post-construction, including building design, construction management, equipment debugging, operation, and maintenance. Through the application of intelligent technology, construction efficiency, quality, and safety can be improved, construction costs and energy consumption can be reduced, and sustainable development can be achieved.

Use ChatGPT effect:

insert image description here

2. Chinese academic polishing

**Template:** As a Chinese Academic Paper Writing Improvement Assistant, your task is to improve the spelling, grammar, clarity, conciseness and overall readability of the text provided, while breaking down long sentences, reducing repetition, and providing suggestions for improvement . Please only provide a corrected version of the text and avoid including explanations. Please edit the following text:

Example of use:

As a Chinese academic essay writing improvement assistant, you are tasked with improving the spelling, grammar, clarity, conciseness, and overall readability of the text provided, while breaking down long sentences, reducing repetition, and providing suggestions for improvement. Please only provide a corrected version of the text and avoid including explanations. Please edit the following text: Intelligent Construction (Intelligent Construction) refers to the use of advanced information technology and intelligent technology to achieve the goal of digitization, intelligence, automation and sustainable development of the construction process. Intelligent construction covers the whole process before, during and after construction, including architectural design, construction management, equipment commissioning, operation and maintenance, etc. Through the application of intelligent technology, construction efficiency, quality and safety can be improved, construction cost and energy consumption can be reduced, and sustainable development can be achieved.

Use ChatGPT effect:
insert image description here

3. Look for syntax errors

模板: Can you help me ensure that the grammar and the spelling is correct? Do not try to polish the text, if no mistake is found, tell me that this paragraph is good. If you find grammar or spelling mistakes, please list mistakes you find in a two-column markdown table, put the original text the first column, put the corrected text in the second column and highlight the key words you fixed. Example: Paragraph: How is you? Do you knows what is it?
| Original sentence | Corrected sentence |
| :— | :— |
| How is you? | How are you? |
| Do you knows what is it? | Do you know what it is ? |
Below is a paragraph from an academic paper.
You need to report all grammar and spelling mistakes as the example before.

**使用例子:**Can you help me ensure that the grammar and the spelling is correct? Do not try to polish the text, if no mistake is found, tell me that this paragraph is good. If you find grammar or spelling mistakes, please list mistakes you find in a two-column markdown table, put the original text the first column, put the corrected text in the second column and highlight the key words you fixed. Example: Paragraph: How is you? Do you knows what is it?

Original sentence Corrected sentence

​ | How is you? | How are you? |
​ | Do you knows what is it? | Do you know what it is ? |
​ Below is a paragraph from an academic paper. You need to report all grammar and spelling mistakes as the example before. Paragraph: The research is study about how social media affect people’s sleep quality. The result shown that people who use social media before sleep have a much more worse sleep quality than people who don’t use social media before sleep. The researcher found that the light from social media screen can disturb people’s circadian rhythm, which lead to a bad sleep quality. In addition, people who use social media before sleep have a much more higher risk of depression and anxiety than people who don’t use social media before sleep. The research suggest that people should avoid using social media before sleep to improve their sleep quality and mental health.

Use ChatGPT effect:

insert image description here

Chinese to English

模板: Please translate following sentence to English:

**Example of use:**Please translate the following sentence to English:Intelligent Construction refers to the use of advanced information technology and intelligent technology to achieve the goal of digitization, intelligence, automation and sustainable development of the construction process. Intelligent construction covers the whole process before, during and after construction, including architectural design, construction management, equipment commissioning, operation and maintenance, etc. Through the application of intelligent technology, construction efficiency, quality and safety can be improved, construction cost and energy consumption can be reduced, and sustainable development can be achieved.

Use ChatGPT effect:
insert image description here

Academic Chinese-English translation

模板:I want you to act as a scientific English-Chinese translator, I will provide you with some paragraphs in one language and your task is to accurately and academically translate the paragraphs only into the other language. Do not repeat the original provided paragraphs after translation. You should use artificial intelligence tools, such as natural language processing, and rhetorical knowledge and experience about effective writing techniques to reply. I’ll give you my paragraphs as follows, tell me what language it is written in, and then translate:

Example of use:

I want you to act as a scientific English-Chinese translator, I will provide you with some paragraphs in one language and your task is to accurately and academically translate the paragraphs only into the other language. Do not repeat the original provided paragraphs after translation. You should use artificial intelligence tools, such as natural language processing, and rhetorical knowledge and experience about effective writing techniques to reply. I'll give you my paragraphs as follows, tell me what language it is written in, and then translate: Intelligent Construction (Intelligent Construction) refers to the use of advanced information technology and intelligent technology to achieve the goal of digitization, intelligence, automation and sustainable development of the construction process. Intelligent construction covers the whole process before, during and after construction, including architectural design, construction management, equipment commissioning, operation and maintenance, etc. Through the application of intelligent technology, construction efficiency, quality and safety can be improved, construction cost and energy consumption can be reduced, and sustainable development can be achieved.

Use ChatGPT effect:
insert image description here

find pictures

**Template:** I need you to find a picture from the internet. Use the Unsplash API (https://source.unsplash.com/960x640/?<English keywords>) to get the image URL, and then please use the Markdown format to encapsulate, and do not have backslashes or code blocks. Now please send me pictures as described below:

**Example of use:** I need you to find a picture on the Internet. Use the Unsplash API (https://source.unsplash.com/960x640/?<English keywords>) to get the image URL, and then please use the Markdown format to encapsulate, and do not have backslashes or code blocks. Now please send me pictures as described below: Wheat field

Use ChatGPT effect:

insert image description here

explain code

Please explain the following code: import torch import torch.nn as nn # Define the number of neurons in the input layer, hidden layer and output layer input_layer_size = 4 hidden_layer_size = 5 output_layer_size = 3 # Define the feedforward neural network class FeedForwardNN(nn.Module) : def init (self): super(FeedForwardNN, self) .init () self.fc1 = nn.Linear(input_layer_size, hidden_layer_size) self.fc2 = nn.Linear(hidden_layer_size, output_layer_size) self.sigmoid = nn.Sigmoid() def forward(self, x): x = self.fc1(x) x = self.sigmoid(x) x = self.fc2(x) x = self.sigmoid(x) return x # Create a neural network instance model = FeedForwardNN () # Test feedforward function X = torch.randn(1, input_layer_size) y = model(X) print(y)

insert image description here
The above is all the content. If you have a key, you can try to run through the code. It is more convenient to use.

Finally, please pay attention to the public account [Smart Construction Xiaoshuo] (share computer programming, artificial intelligence, intelligent construction, daily learning, scientific research and writing experience, etc., welcome everyone to follow and exchange)

おすすめ

転載: blog.csdn.net/QH2107/article/details/130001924