DHEIVER commited on
Commit
7f2597b
1 Parent(s): be76344

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -39
README.md CHANGED
@@ -1,56 +1,53 @@
1
- ---
2
- tags:
3
- - medical
4
- license: mit
5
- datasets:
6
- - Mohammed-Altaf/medical-instruction-120k
7
- language:
8
- - en
9
- library_name: transformers
10
- ---
11
- Please note that the chatbot is designed for research purposes only and is not intended for use in real medical settings. While the chatbot has been trained to provide accurate and helpful responses, it is not a substitute for professional medical advice, diagnosis, or treatment. The information provided by the chatbot should not be used to make medical decisions, and any health concerns should be addressed by a licensed healthcare provider.
12
-
13
- ## Quickstart
14
 
15
  ```python
16
  import torch
17
  from transformers import GPT2LMHeadModel, GPT2Tokenizer
18
 
19
 
20
- path = "Mohammed-Altaf/Medical-ChatBot"
21
- device = "cuda" if torch.cuda.is_available() else "cpu"
22
- tokenizer = GPT2Tokenizer.from_pretrained(path)
23
- model = GPT2LMHeadModel.from_pretrained(path).to(device)
24
 
25
- prompt_input = (
26
- "The conversation between human and AI assistant.\n"
27
- "[|Human|] {input}\n"
28
- "[|AI|]"
29
  )
30
- sentence = prompt_input.format_map({'input': "what is parkinson's disease?"})
31
- inputs = tokenizer(sentence, return_tensors="pt").to(device)
32
 
33
  with torch.no_grad():
34
- beam_output = model.generate(**inputs,
35
- min_new_tokens=1,
36
- max_length=512,
37
- num_beams=3,
38
- repetition_penalty=1.2,
39
- early_stopping=True,
40
- eos_token_id=198
41
- )
42
  print(tokenizer.decode(beam_output[0], skip_special_tokens=True))
43
  ```
44
 
45
- ## Example Outputs
 
46
  ```
47
- The conversation between human and AI assistant.
48
- [|Human|] what is parkinson's disease?
49
- [|AI|] Parkinson's disease is a neurodegenerative disorder that affects movement. It is caused by the loss of dopamine-producing cells in the brain.
50
  ```
51
 
52
  ```
53
- The conversation between human and AI assistant.
54
- [|Human|] what type of honey is best for a bad covid cough?
55
- [|AI|] Manuka honey has been shown to have anti-inflammatory and antibacterial properties that can help alleviate symptoms of a bad covid cough.
56
- ```
 
 
 
1
+
2
+
3
+ ## Aviso Legal
4
+
5
+ Este chatbot foi projetado apenas para fins de pesquisa e não se destina ao uso em configurações médicas reais. Embora o chatbot tenha sido treinado para fornecer respostas precisas e úteis, ele não substitui o aconselhamento médico profissional, o diagnóstico ou o tratamento. As informações fornecidas pelo chatbot não devem ser usadas para tomar decisões médicas, e quaisquer preocupações com a saúde devem ser tratadas por um profissional de saúde licenciado.
6
+
7
+ ## Início Rápido
 
 
 
 
 
 
8
 
9
  ```python
10
  import torch
11
  from transformers import GPT2LMHeadModel, GPT2Tokenizer
12
 
13
 
14
+ caminho = "Mohammed-Altaf/Medical-ChatBot"
15
+ dispositivo = "cuda" if torch.cuda.is_available() else "cpu"
16
+ tokenizer = GPT2Tokenizer.from_pretrained(caminho)
17
+ modelo = GPT2LMHeadModel.from_pretrained(caminho).to(dispositivo)
18
 
19
+ entrada_prompt = (
20
+ "A conversa entre humano e assistente de IA.\n"
21
+ "[|Humano|] {input}\n"
22
+ "[|IA|]"
23
  )
24
+ frase = entrada_prompt.format_map({'input': "o que é a doença de Parkinson?"})
25
+ inputs = tokenizer(frase, return_tensors="pt").to(dispositivo)
26
 
27
  with torch.no_grad():
28
+ beam_output = modelo.generate(**inputs,
29
+ min_new_tokens=1,
30
+ max_length=512,
31
+ num_beams=3,
32
+ repetition_penalty=1.2,
33
+ early_stopping=True,
34
+ eos_token_id=198
35
+ )
36
  print(tokenizer.decode(beam_output[0], skip_special_tokens=True))
37
  ```
38
 
39
+ ## Exemplos de Saída
40
+
41
  ```
42
+ A conversa entre humano e assistente de IA.
43
+ [|Humano|] o que é a doença de Parkinson?
44
+ [|IA|] A doença de Parkinson é um distúrbio neurodegenerativo que afeta o movimento. É causada pela perda de células produtoras de dopamina no cérebro.
45
  ```
46
 
47
  ```
48
+ A conversa entre humano e assistente de IA.
49
+ [|Humano|] que tipo de mel é melhor para uma tosse ruim de covid?
50
+ [|IA|] O mel de Manuka mostrou ter propriedades anti-inflamatórias e antibacterianas que podem ajudar a aliviar os sintomas de uma tosse ruim de covid.
51
+ ```
52
+
53
+ ---