Instructions to use suraj-ranganath/StealthRL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use suraj-ranganath/StealthRL with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-4B-Instruct-2507") model = PeftModel.from_pretrained(base_model, "suraj-ranganath/StealthRL") - Notebooks
- Google Colab
- Kaggle
Update pipeline tag and add library metadata
#1
by nielsr HF Staff - opened
Hi! I'm Niels from the Hugging Face community team.
I've opened this PR to improve the model card metadata and discoverability:
- Updated the
pipeline_tagtotext-generationas this is a paraphrasing model (LLM). - Added
library_name: peftsince this is a LoRA adapter, which enables the "Use in Transformers" button to show the correct code snippets. - Added the ArXiv ID to the metadata to link this model to its research paper.
- Included the paper authors for better attribution.
Let me know if you have any questions!
suraj-ranganath changed pull request status to merged