File size: 869 Bytes
c88c1b7 79a2d18 c88c1b7 79a2d18 c88c1b7 79a2d18 3a51c25 c88c1b7 79a2d18 c88c1b7 79a2d18 c88c1b7 79a2d18 c88c1b7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
library_name: transformers
license: apache-2.0
language:
- en
- fr
- ro
- de
datasets:
- c4
- glue
---
# Model Card for EncT5 (Fine-tuned on GLUE SST2)
This is a fine-tuned model of [EncT5 (the T5-base variant)](https://huggingface.co/hackyon/enct5-base) on the
[GLUE SST2 dataset](https://huggingface.co/datasets/glue/viewer/sst2) for positive/negative sentiment analysis.
For more info on GLUE SST2, visit the [official site](https://gluebenchmark.com/).
See the [base EncT5 model card](https://huggingface.co/hackyon/enct5-base) for more details.
## How to Get Started with the Model
Use the code below to get started with the model.
```python
model = AutoModelForSequenceClassification.from_pretrained("hackyon/enct5-base-glue-sst2", trust_remote_code=True)
```
See the [github repro](https://github.com/hackyon/EncT5) for a more comprehensive guide.
|