eperezs commited on
Commit
8ca0e9f
1 Parent(s): f73559c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -16,7 +16,7 @@ Mediante el `pipeline` de Hugging Face:
16
  ```python
17
  from transformers import pipeline
18
 
19
- model_id = "eperezs/MediFlow"
20
  pipe = pipeline("text-classification", model_id, token = <your_token_here>)
21
 
22
  text = "I have pain in the back"
@@ -29,7 +29,7 @@ Mediante `AutoModelForSequenceClassification` y `AutoTokenizer`:
29
  ```python
30
  from transformers import AutoModelForSequenceClassification, AutoTokenizer
31
 
32
- model_id = "eperezs/MediFlow"
33
  tokenizer = AutoTokenizer.from_pretrained(model_id)
34
  model = AutoModelForSequenceClassification.from_pretrained(model_id)
35
 
 
16
  ```python
17
  from transformers import pipeline
18
 
19
+ model_id = "digitalhealth-healthyliving/MediFlow"
20
  pipe = pipeline("text-classification", model_id, token = <your_token_here>)
21
 
22
  text = "I have pain in the back"
 
29
  ```python
30
  from transformers import AutoModelForSequenceClassification, AutoTokenizer
31
 
32
+ model_id = "digitalhealth-healthyliving/MediFlow"
33
  tokenizer = AutoTokenizer.from_pretrained(model_id)
34
  model = AutoModelForSequenceClassification.from_pretrained(model_id)
35