Instructions to use YixuanEvenXu/Qwen3-14B-Base-HIP-adapter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use YixuanEvenXu/Qwen3-14B-Base-HIP-adapter with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-14B-Base") model = PeftModel.from_pretrained(base_model, "YixuanEvenXu/Qwen3-14B-Base-HIP-adapter") - Notebooks
- Google Colab
- Kaggle
Update citation to arXiv preprint
Browse files
README.md
CHANGED
|
@@ -64,11 +64,11 @@ The adapter was trained with supervised fine-tuning on paired examples `(a_i, h_
|
|
| 64 |
If you use this adapter, please cite:
|
| 65 |
|
| 66 |
```bibtex
|
| 67 |
-
@
|
| 68 |
title={Base Models Look Human To AI Detectors},
|
| 69 |
-
author={
|
| 70 |
-
|
| 71 |
-
|
| 72 |
}
|
| 73 |
```
|
| 74 |
|
|
|
|
| 64 |
If you use this adapter, please cite:
|
| 65 |
|
| 66 |
```bibtex
|
| 67 |
+
@article{xu2026base,
|
| 68 |
title={Base Models Look Human To AI Detectors},
|
| 69 |
+
author={Yixuan Even Xu and Ziqian Zhong and Aditi Raghunathan and Fei Fang and J. Zico Kolter},
|
| 70 |
+
journal={arXiv preprint arXiv:2605.19516},
|
| 71 |
+
year={2026}
|
| 72 |
}
|
| 73 |
```
|
| 74 |
|