How to use from
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 "WhyTheMoon/Llama-3-8B-Instruct_RMU_Textbook-Cyber" \
    --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": "WhyTheMoon/Llama-3-8B-Instruct_RMU_Textbook-Cyber",
		"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 "WhyTheMoon/Llama-3-8B-Instruct_RMU_Textbook-Cyber" \
        --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": "WhyTheMoon/Llama-3-8B-Instruct_RMU_Textbook-Cyber",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Model Details

Best Meta-Llama-3-8B-Instruct checkpoint unlearned using RMU with the Textbook-Cyber forget set. For more details, please check our paper.

sources

Performance

WMDP-Cyber tinyMMLU GSM8k TriviaQA
Llama-3-8B-Instruct 46.80 59.21 75.28 51.09
Llama-3-8B-Instruct_RMU_Textbook-Cyber 26.47 51.43 72.70 50.64

Citation

If you find this useful in your research, please consider citing our paper:

@misc{zhu2025llmunlearningexpertcurated,
      title={LLM Unlearning Without an Expert Curated Dataset}, 
      author={Xiaoyuan Zhu and Muru Zhang and Ollie Liu and Robin Jia and Willie Neiswanger},
      year={2025},
      eprint={2508.06595},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2508.06595}, 
}
Downloads last month
3
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including WhyTheMoon/Llama-3-8B-Instruct_RMU_Textbook-Cyber

Papers for WhyTheMoon/Llama-3-8B-Instruct_RMU_Textbook-Cyber