Views
No views yet
My Class/Second Try export.encoder_model.onnxdecoder_model.onnxdecoder_with_past_model.onnx_int8 suffixes. Only the filenames were standardized for Optimum compatibility; the binary contents were not changed. The source-to-published mapping and SHA-256 values are recorded in ARTIFACT_SHA256.json.| Metric | Second Try LoRA |
|---|---|
| Chat token-F1 | 0.5216 |
| RAG token-F1 | 0.8894 |
| RAG exact match | 0.7938 |
evaluation/flan_retraining_results.json.
pip install "optimum[onnxruntime]" transformers1from optimum.onnxruntime import ORTModelForSeq2SeqLM
2from transformers import AutoTokenizer
3
4model_id = "Fatihaybasn/pathfinder-flan-t5-large-second-try-onnx-int8"
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = ORTModelForSeq2SeqLM.from_pretrained(
7 model_id,
8 provider="CPUExecutionProvider",
9)