Instructions to use Gaoussin/trainer_output with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Gaoussin/trainer_output with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("Gaoussin/trainer_output") model = AutoModelForSeq2SeqLM.from_pretrained("Gaoussin/trainer_output", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 164 Bytes
49372a7 | 1 2 3 4 5 6 7 8 9 10 11 | {
"bos_token_id": 0,
"decoder_start_token_id": 2,
"eos_token_id": [
2
],
"max_length": 200,
"pad_token_id": 1,
"transformers_version": "4.57.1"
}
|