Text Generation
Transformers
Safetensors
llama
Unlearning
Forget10
conversational
text-generation-inference
Instructions to use Jiajunruan/NPO-Fix with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jiajunruan/NPO-Fix with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Jiajunruan/NPO-Fix") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Jiajunruan/NPO-Fix") model = AutoModelForCausalLM.from_pretrained("Jiajunruan/NPO-Fix") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Jiajunruan/NPO-Fix with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jiajunruan/NPO-Fix" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jiajunruan/NPO-Fix", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Jiajunruan/NPO-Fix
- SGLang
How to use Jiajunruan/NPO-Fix with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Jiajunruan/NPO-Fix" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jiajunruan/NPO-Fix", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Jiajunruan/NPO-Fix" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jiajunruan/NPO-Fix", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Jiajunruan/NPO-Fix with Docker Model Runner:
docker model run hf.co/Jiajunruan/NPO-Fix
Add library_name, pipeline_tag and GitHub link
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
datasets:
|
| 3 |
-
- locuslab/TOFU
|
| 4 |
base_model:
|
| 5 |
- meta-llama/Llama-3.2-1B-Instruct
|
|
|
|
|
|
|
| 6 |
tags:
|
| 7 |
-
- Unlearning
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
# **NPO-Fix:** An enhancement of NPO method with self-generated dataset for robust unlearning under probabilistic decoding.
|
|
@@ -15,20 +18,13 @@ tags:
|
|
| 15 |
- **Base Method:** NPO.
|
| 16 |
- **Original Model:** [meta-llama/Llama-3.2-1B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct).
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
### Model Sources
|
| 21 |
|
| 22 |
-
<!-- Provide the basic links for the model. -->
|
| 23 |
-
|
| 24 |
- **Paper:** [Leak@k: Unlearning Does Not Make LLMs Forget Under Probabilistic Decoding](https://arxiv.org/abs/2511.04934)
|
| 25 |
-
|
| 26 |
-
|
| 27 |
|
| 28 |
## Citation
|
| 29 |
|
| 30 |
-
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 31 |
-
|
| 32 |
**BibTeX:**
|
| 33 |
|
| 34 |
```bibtex
|
|
@@ -42,5 +38,4 @@ tags:
|
|
| 42 |
|
| 43 |
## Model Card Authors
|
| 44 |
|
| 45 |
-
[Jiajun Ruan: jruan@umn.edu]
|
| 46 |
-
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- meta-llama/Llama-3.2-1B-Instruct
|
| 4 |
+
datasets:
|
| 5 |
+
- locuslab/TOFU
|
| 6 |
tags:
|
| 7 |
+
- Unlearning
|
| 8 |
+
- Forget10
|
| 9 |
+
library_name: transformers
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
---
|
| 12 |
|
| 13 |
# **NPO-Fix:** An enhancement of NPO method with self-generated dataset for robust unlearning under probabilistic decoding.
|
|
|
|
| 18 |
- **Base Method:** NPO.
|
| 19 |
- **Original Model:** [meta-llama/Llama-3.2-1B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct).
|
| 20 |
|
|
|
|
|
|
|
| 21 |
### Model Sources
|
| 22 |
|
|
|
|
|
|
|
| 23 |
- **Paper:** [Leak@k: Unlearning Does Not Make LLMs Forget Under Probabilistic Decoding](https://arxiv.org/abs/2511.04934)
|
| 24 |
+
- **Repository:** https://github.com/OptimAI-Lab/Leak-k
|
|
|
|
| 25 |
|
| 26 |
## Citation
|
| 27 |
|
|
|
|
|
|
|
| 28 |
**BibTeX:**
|
| 29 |
|
| 30 |
```bibtex
|
|
|
|
| 38 |
|
| 39 |
## Model Card Authors
|
| 40 |
|
| 41 |
+
[Jiajun Ruan: jruan@umn.edu]
|
|
|