caliex commited on
Commit
79536b7
1 Parent(s): 55d572d

Upload 2 files

Browse files
Files changed (2) hide show
  1. sidebar.md +16 -0
  2. styles.md +1 -0
sidebar.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Talk to Me - A Medical Chatbot
2
+
3
+ Talk to Me is a medical chatbot that can answer questions about any medical condition. It uses the Microsoft's BioGPT Large fine-tuned on ChatDoctor dataset for Question Answering.
4
+
5
+ ## Features
6
+
7
+ - **Natural Language Processing**: Understands your text queries and responds with the most relevant answers.
8
+ - **Accurate**: Uses the state-of-the-art BioGPT Large model fine-tuned on ChatDoctor dataset for Question Answering.
9
+ - **Fast**: Uses the GPU to perform inference and respond to your queries in real-time.
10
+
11
+ Here are some example queries you can try with Talk to Me:
12
+
13
+ - What is the treatment for diabetes?
14
+ - What are the symptoms of COVID-19?
15
+ - Doctor, I've been experiencing some symptoms like diminished hearing, facial pain, dizziness, diminished vision, and focal weakness. What could be the possible cause?
16
+ - What is the treatment for COVID-19?
styles.md ADDED
@@ -0,0 +1 @@
 
 
1
+ <style> #input-container { position: fixed; bottom: 0; width: 100%; padding: 10px; background-color: white; z-index: 100; } h1 { font-family: 'Roboto Slab', serif; } .user-avatar { float: right; width: 40px; height: 40px; margin-left: 5px; margin-bottom: -10px; border-radius: 50%; object-fit: cover; } .bot-avatar { float: left; width: 40px; height: 40px; margin-right: 5px; border-radius: 50%; object-fit: cover; } </style>