Text Generation
Transformers
Safetensors
llama
unlearning
forget10
conversational
text-generation-inference
Instructions to use OptimAI-Lab/TOFU-forget10_RULE-NPO with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OptimAI-Lab/TOFU-forget10_RULE-NPO with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OptimAI-Lab/TOFU-forget10_RULE-NPO") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("OptimAI-Lab/TOFU-forget10_RULE-NPO") model = AutoModelForCausalLM.from_pretrained("OptimAI-Lab/TOFU-forget10_RULE-NPO") 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 OptimAI-Lab/TOFU-forget10_RULE-NPO with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OptimAI-Lab/TOFU-forget10_RULE-NPO" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OptimAI-Lab/TOFU-forget10_RULE-NPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/OptimAI-Lab/TOFU-forget10_RULE-NPO
- SGLang
How to use OptimAI-Lab/TOFU-forget10_RULE-NPO 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 "OptimAI-Lab/TOFU-forget10_RULE-NPO" \ --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": "OptimAI-Lab/TOFU-forget10_RULE-NPO", "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 "OptimAI-Lab/TOFU-forget10_RULE-NPO" \ --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": "OptimAI-Lab/TOFU-forget10_RULE-NPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use OptimAI-Lab/TOFU-forget10_RULE-NPO with Docker Model Runner:
docker model run hf.co/OptimAI-Lab/TOFU-forget10_RULE-NPO
Add library_name, pipeline_tag and link to code
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,34 +1,32 @@
|
|
| 1 |
---
|
| 2 |
-
datasets:
|
| 3 |
-
- locuslab/TOFU
|
| 4 |
base_model:
|
| 5 |
- meta-llama/Llama-3.2-1B-Instruct
|
|
|
|
|
|
|
| 6 |
tags:
|
| 7 |
-
-
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
# **NPO-Fix:** An enhancement of NPO method with self-generated dataset for robust unlearning under probabilistic decoding.
|
| 11 |
|
|
|
|
|
|
|
| 12 |
## Model Details
|
| 13 |
|
| 14 |
- **Task:** [TOFU forget10](https://huggingface.co/datasets/locuslab/TOFU).
|
| 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 +40,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 |
+
pipeline_tag: text-generation
|
| 10 |
+
library_name: transformers
|
| 11 |
---
|
| 12 |
|
| 13 |
# **NPO-Fix:** An enhancement of NPO method with self-generated dataset for robust unlearning under probabilistic decoding.
|
| 14 |
|
| 15 |
+
This repository contains the **NPO-Fix** model, as introduced in the paper [Leak@k: Unlearning Does Not Make LLMs Forget Under Probabilistic Decoding](https://huggingface.co/papers/2511.04934).
|
| 16 |
+
|
| 17 |
## Model Details
|
| 18 |
|
| 19 |
- **Task:** [TOFU forget10](https://huggingface.co/datasets/locuslab/TOFU).
|
| 20 |
- **Base Method:** NPO.
|
| 21 |
- **Original Model:** [meta-llama/Llama-3.2-1B-Instruct](https://huggingface.co/meta-llama/Llama-3.2-1B-Instruct).
|
| 22 |
|
|
|
|
|
|
|
| 23 |
### Model Sources
|
| 24 |
|
|
|
|
|
|
|
| 25 |
- **Paper:** [Leak@k: Unlearning Does Not Make LLMs Forget Under Probabilistic Decoding](https://arxiv.org/abs/2511.04934)
|
| 26 |
+
- **Repository:** https://github.com/OptimAI-Lab/Leak-k
|
|
|
|
| 27 |
|
| 28 |
## Citation
|
| 29 |
|
|
|
|
|
|
|
| 30 |
**BibTeX:**
|
| 31 |
|
| 32 |
```bibtex
|
|
|
|
| 40 |
|
| 41 |
## Model Card Authors
|
| 42 |
|
| 43 |
+
[Jiajun Ruan: jruan@umn.edu]
|
|
|