This is a T5-based transformers model designed for the Advanced Calibration QA task.
This model is designed for question answering tasks with calibrated confidence scores. It takes a question as input and returns both an answer and a confidence score.
This model should not be used for tasks other than question answering.
1from transformers import pipeline
2qa_pipe = pipeline(model="dpal0/technica_submission", trust_remote_code=True)
3result = qa_pipe("Your question here")