⚠️ Warning This Library is under development.
ForgetfulML is a machine unlearning framework designed to enable AI models to selectively forget previously learned data. This functionality is crucial for ensuring compliance with privacy regulations, improving model adaptability, and maintaining ethical standards in machine learning. ForgetfulML simplifies the process of unlearning, offering a seamless integration with existing ML workflows.
- Selective Unlearning: Remove specific data or knowledge from AI models while maintainig the performance.
- Compliance & Privacy: Comply with privacy regulations like GDPR by unlearning personal or sensitive information.
- Easy Integration: Compatible with popular machine learning frameworks.
- Adaptability: Helps AI models evolve by erasing outdated or irrelevant information.
- Evaluation: Provides Tools to evaluate your unlearning methods.
Install ForgetfulML using pip:
pip install unlearning
Here's how you can quickly start using ForgetfulML in your project:
# comming soon
- Data Privacy: Comply with privacy laws by unlearning user data upon request.
- Model Updates: Keep your models up to date by removing outdated or irrelevant data.
- Data Debugging: Correct model misbehavior by unlearning incorrect or mislabeled training data.
We welcome contributions! If you'd like to help improve ForgetfulML, feel free to submit pull requests or open issues.
For questions or issues, feel free to reach out by opening a GitHub issue or contact us at unlearning@faraji.info
Install build dependencies:
pip install build
Build the package:
python -m build
Install test dependencies (tests/requirements.txt):
pip install -r tests/requirements.txt
Run the tests:
pytest