Update README.md
Browse files
README.md
CHANGED
@@ -88,8 +88,8 @@ from transformers import RobertaTokenizerFast, RobertaForSequenceClassification,
|
|
88 |
|
89 |
tokenizer = RobertaTokenizerFast.from_pretrained("fundacionctic/oracle-dermat")
|
90 |
model = RobertaForSequenceClassification.from_pretrained("fundacionctic/oracle-dermat")
|
91 |
-
|
92 |
-
|
93 |
inputs = tokenizer("Ejemplo de texto dermatológico".tolist(),
|
94 |
truncation=True,
|
95 |
padding='max_length',
|
@@ -98,7 +98,7 @@ inputs = tokenizer("Ejemplo de texto dermatológico".tolist(),
|
|
98 |
return_attention_mask=True,
|
99 |
))
|
100 |
outputs = model(input_ids, attention_mask=attention_mask)
|
101 |
-
|
102 |
|
103 |
|
104 |
[More Information Needed]
|
|
|
88 |
|
89 |
tokenizer = RobertaTokenizerFast.from_pretrained("fundacionctic/oracle-dermat")
|
90 |
model = RobertaForSequenceClassification.from_pretrained("fundacionctic/oracle-dermat")
|
91 |
+
|
92 |
+
|
93 |
inputs = tokenizer("Ejemplo de texto dermatológico".tolist(),
|
94 |
truncation=True,
|
95 |
padding='max_length',
|
|
|
98 |
return_attention_mask=True,
|
99 |
))
|
100 |
outputs = model(input_ids, attention_mask=attention_mask)
|
101 |
+
```
|
102 |
|
103 |
|
104 |
[More Information Needed]
|