forked from yachty66/demo-chronos-beluga-v2-13b-gptq
-
Notifications
You must be signed in to change notification settings - Fork 2
/
banana_config.json
34 lines (34 loc) · 2.16 KB
/
banana_config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"version": "1",
"inputs": [
{
"name": "prompt",
"description": "The prompt to feed to the model.",
"type": "string",
"required": true,
"default": "Tell me about AI."
},
{
"name": "temperature",
"description": "The temperature to use.",
"type": "number",
"default": 0.5
},
{
"name": "max_new_tokens",
"description": "Generate at most this many new tokens in the response.",
"type": "number",
"default": 100
}
],
"examples": [
{
"inputs": {
"instruction": "Tell me about AI"
},
"output": {
"outputs": "<s> You are a helpful AI assistant.\n\n USER: Tell me about AI\n ASSISTANT:\n \n Artificial Intelligence (AI) is a field of computer science that focuses on creating intelligent machines that can perform tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, and language translation. AI involves the development of algorithms and statistical models that enable computers to learn from data and make predictions or decisions based on that data.\n\n There are several types of AI, including:\n\n 1. Narrow or Weak AI: This is designed to perform a specific task, such as playing chess or recognizing images.\n\n 2. General or Strong AI: This is designed to perform a wide range of tasks, like a human.\n\n 3. Super AI: This is an AI that is more intelligent than the best human minds.\n\n 4. Artificial Superintelligence: This is an AI that is more intelligent than the best human minds combined.\n\n AI is used in various applications such as natural language processing, robotics, computer vision, and machine learning. It has the potential to revolutionize many industries, including healthcare, finance, transportation, and manufacturing. However, there are also concerns about the impact of AI on jobs and society, as well as the potential for AI to be used for malicious purposes.</s>"
}
}
]
}