IWSLT/iwslt2017
Updated • 5.13k • 39
How to use OwenVE/t5model with Transformers:
# Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("OwenVE/t5model")
model = AutoModelForSeq2SeqLM.from_pretrained("OwenVE/t5model")This model is a fine-tuned version of google-t5/t5-small on the iwslt2017 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 1.0956 | 1.0 | 14552 | 0.8744 |
| 1.0906 | 2.0 | 29104 | 0.8667 |
Base model
google-t5/t5-small
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("OwenVE/t5model") model = AutoModelForSeq2SeqLM.from_pretrained("OwenVE/t5model")