Instructions to use ramkrish120595/debug_seq2seq_squad with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ramkrish120595/debug_seq2seq_squad with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="ramkrish120595/debug_seq2seq_squad")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("ramkrish120595/debug_seq2seq_squad") model = AutoModelForQuestionAnswering.from_pretrained("ramkrish120595/debug_seq2seq_squad") - Notebooks
- Google Colab
- Kaggle
File size: 286 Bytes
bc22a76 | 1 2 3 4 5 6 7 8 9 10 11 12 | {
"add_prefix_space": false,
"bos_token": "<s>",
"clean_up_tokenization_spaces": false,
"eos_token": "</s>",
"model_max_length": 1000000000000000019884624838656,
"pad_token": "<pad>",
"padding_side": "left",
"tokenizer_class": "BloomTokenizer",
"unk_token": "<unk>"
}
|