You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
521 B

10 months ago
  1. # Parameterisation Tuner
  2. This project provides utils for producing magic parameters used by the pattern recognition algorithms in the Rec project. Typical parameters are coefficients for extrapolation polynomials and weights for TMVA methods.
  3. ## Setup
  4. There's a bash script for setting up the necessary (python) environment. Simply do:
  5. ```
  6. chmod +x setup.sh
  7. ./setup.sh
  8. ```
  9. This will install dependencies like ROOT and Jupyter. To enter the environment do:
  10. ```
  11. source env/tuner_env/bin/activate
  12. conda activate tuner
  13. ```