MetwalyChatBot
Browse files
README.md
CHANGED
@@ -27,7 +27,7 @@ prompt_input = (
|
|
27 |
"[|Human|] {input}\n"
|
28 |
"[|AI|]"
|
29 |
)
|
30 |
-
sentence = prompt_input.format_map({'input': "what is
|
31 |
inputs = tokenizer(sentence, return_tensors="pt").to(device)
|
32 |
|
33 |
with torch.no_grad():
|
@@ -45,12 +45,14 @@ with torch.no_grad():
|
|
45 |
## Example Outputs
|
46 |
```
|
47 |
The conversation between human and AI assistant.
|
48 |
-
[|Human|] what is
|
49 |
-
[|AI|]
|
50 |
```
|
51 |
|
52 |
```
|
53 |
The conversation between human and AI assistant.
|
54 |
-
[|Human|]
|
55 |
-
[|AI|]
|
|
|
|
|
56 |
```
|
|
|
27 |
"[|Human|] {input}\n"
|
28 |
"[|AI|]"
|
29 |
)
|
30 |
+
sentence = prompt_input.format_map({'input': "what is Autism's disease?"})
|
31 |
inputs = tokenizer(sentence, return_tensors="pt").to(device)
|
32 |
|
33 |
with torch.no_grad():
|
|
|
45 |
## Example Outputs
|
46 |
```
|
47 |
The conversation between human and AI assistant.
|
48 |
+
[|Human|] what is Autism's disease?
|
49 |
+
[|AI|] Autism's disease, also known as Autism Spectrum Disorder (ASD), is a neurodevelopmental disorder that affects communication, social interaction, and behavior.
|
50 |
```
|
51 |
|
52 |
```
|
53 |
The conversation between human and AI assistant.
|
54 |
+
[|Human|] What are the side effects of autism?
|
55 |
+
[|AI|] Autism is a neurodevelopmental disorder that affects communication, social interaction, and behavior. Some common side effects of autism include difficulty with speech and language, repetitive behaviors or routines, and sensory sensitivities.
|
56 |
+
|
57 |
+
|
58 |
```
|