Views
No views yet
| Directory | Description |
|---|---|
before/ | Pre-ChatGPT listings (before Nov 30, 2022) |
before_null/ | Pre-ChatGPT listings, null model (empty text) |
after/ | Post-ChatGPT listings (after Nov 30, 2022) |
after_null/ | Post-ChatGPT listings, null model (empty text) |
adapter_model.safetensors — LoRA weight matrices (~320 MB)adapter_config.json — LoRA configuration1from peft import AutoPeftModelForSequenceClassification
2from transformers import AutoTokenizer
3
4model = AutoPeftModelForSequenceClassification.from_pretrained("path/to/before")
5tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-3.1-8B-Instruct")