prepint.pdf
To install the dependencies for this project, follow these steps:
-
Clone the repository:
git clone --depth 1 https://github.com/LCB0B/adaptive_cut.git cd adaptive_cut -
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- On Windows:
.\venv\Scripts\activate
- On macOS/Linux:
source venv/bin/activate
- On Windows:
-
Install the dependencies:
pip install -r requirements.txt
You can run the example scripts in the examples directory to see how the various methods work. For instance:
python examples/toy_model_lc.pyTo generate plots, you can run the scripts in the plots directory:
python plots/plot_dendrogram.pyWe welcome contributions to the project. To contribute, follow these steps:
-
Fork the repository: Click the "Fork" button on the top right of the repository page.
-
Clone your fork:
git clone https://github.com/LCB0B/adaptive_cut.git cd adaptive_cut -
Create a new branch:
git checkout -b feature/your-feature-name
-
Make your changes: Implement your feature or fix.
-
Commit your changes:
git add . git commit -m "Description of your changes"
-
Push to your branch:
git push origin feature/your-feature-name
-
Create a Pull Request: Go to the original repository and create a pull request from your fork.
This project is licensed under the MIT License - see the LICENSE file for details.