forked from DeepLearnPhysics/lartpc_mlreco3d
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Constraint Satisfaction Completed, waiting for inference result
- Loading branch information
Dae Heun Koh
committed
Mar 7, 2024
1 parent
bfbf7c0
commit d71b317
Showing
9 changed files
with
349 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Constraint Satisfaction for PID and Primary Prediction | ||
|
||
## I. Usage | ||
|
||
A *constraint* $C$ on some variable $X$ limits the possible values that $X$ can | ||
assume in its domain. For example, suppose we have a `Particle` instance `emshower` that have `semantic_label == 1`: | ||
```python | ||
print(emshower.semantic_type) | ||
1 | ||
``` | ||
Let's make a constraint `ParticleSemanticConstraint` | ||
|
||
Usually, we want to restrict a Particle's type and primary label based on heuristics that are well-grounded in physics. | ||
|
||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .csat_processor import CSATProcessor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.