Update README.md
Browse files
README.md
CHANGED
@@ -16,7 +16,7 @@ Mediante el `pipeline` de Hugging Face:
|
|
16 |
```python
|
17 |
from transformers import pipeline
|
18 |
|
19 |
-
model_id = "
|
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 = "
|
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 |
|