Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ We provide several variants for each of the components in the unlearning pipelin
```bash
conda create -n unlearning python=3.11
conda activate unlearning
pip install .[flash-attn]
pip install .
pip install --no-build-isolation flash-attn==2.6.3
```

### 💾 Data Setup
Expand Down Expand Up @@ -176,4 +177,4 @@ If you use OpenUnlearning in your research, please cite:
---

## 📄 License
This project is licensed under the MIT License. See the [`LICENSE`](LICENSE) file for details.
This project is licensed under the MIT License. See the [`LICENSE`](LICENSE) file for details.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
huggingface-hub==0.29.1
transformers==4.45.1
numpy==2.2.3
hydra-core==1.3
hydra_colorlog==1.2.0
torch==2.4.1
Expand All @@ -11,4 +12,4 @@ pre-commit==4.0.1
scipy==1.14.1
tensorboard==2.18.0
scikit-learn==1.5.2
deepspeed==0.15.4
deepspeed==0.15.4
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
packages=find_packages(),
install_requires=requirements, # Uses requirements.txt
extras_require={
"flash-attn": ["flash-attn==2.6.3"], # Optional installation
"dev": ["pre-commit==4.0.1"], # Install using `pip install .[dev]`
},
python_requires=">=3.11",
Expand Down