├── .gitignore ├── LICENSE ├── README.md ├── assets └── overview.png ├── requirements.txt ├── unlearn_harm.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinyaobytedance/llm_unlearn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinyaobytedance/llm_unlearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinyaobytedance/llm_unlearn/HEAD/README.md -------------------------------------------------------------------------------- /assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinyaobytedance/llm_unlearn/HEAD/assets/overview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinyaobytedance/llm_unlearn/HEAD/requirements.txt -------------------------------------------------------------------------------- /unlearn_harm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinyaobytedance/llm_unlearn/HEAD/unlearn_harm.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinyaobytedance/llm_unlearn/HEAD/utils.py --------------------------------------------------------------------------------