Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Directions for extending demonstrator capability #1

Open
4 tasks
alexander-held opened this issue Jul 31, 2023 · 0 comments
Open
4 tasks

Directions for extending demonstrator capability #1

alexander-held opened this issue Jul 31, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@alexander-held
Copy link
Member

alexander-held commented Jul 31, 2023

Following the jet calibration example discussed at pyhep.dev, there are a few different ways forward in the direction of extending functionality. Some of these can be pursued in parallel.

The pipeline function contains them all:

def pipeline(jets, a):
    """analysis pipeline: calculate mean of dijet masses"""
    return np.mean(get_mass(correct_jets(jets, a)))
  • replace correct_jets by more complex calibration operations, e.g. with a differentiable correctionlib
  • replace get_mass by a more complicated physics analysis, e.g. involving combinations of objects and sorting (the AGC top mass reconstruction is a good candidate)
  • replace np.mean by statistical model construction + inference

In addition to this:

@alexander-held alexander-held added the enhancement New feature or request label Jul 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant