Views
No views yet
google/flan-t5-large checkpoint on collected and curated project data; it was not trained from random initialization.16320.05q, k, v, o, wi_0, wi_1, wo4211e-40.061.7, RAG 1.00.02, RAG 0.000.15, lambda 0.25| Metric | Second Try |
|---|---|
| Chat token-F1 | 0.5216 |
| RAG token-F1 | 0.8894 |
| RAG exact match | 0.7938 |

evaluation/flan_retraining_results.json and in the PathFinderShip repository.1from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
2from peft import PeftModel
3
4base_id = "google/flan-t5-large"
5adapter_id = "Fatihaybasn/pathfinder-flan-t5-large-second-try-lora"
6
7tokenizer = AutoTokenizer.from_pretrained(base_id)
8base_model = AutoModelForSeq2SeqLM.from_pretrained(base_id)
9model = PeftModel.from_pretrained(base_model, adapter_id)
10model.eval()ARTIFACT_SHA256.json.