Skip to content

Commit

Permalink
missing option for ML Solver
Browse files Browse the repository at this point in the history
  • Loading branch information
Corentin-Allaire committed Nov 20, 2024
1 parent 2c2bed0 commit a70878e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Examples/Python/python/acts/examples/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1993,6 +1993,7 @@ def addScoreBasedAmbiguityResolution(
def addAmbiguityResolutionML(
s,
config: AmbiguityResolutionMLConfig = AmbiguityResolutionMLConfig(),
tracks: str = "tracks",
onnxModelFile: Optional[Union[Path, str]] = None,
outputDirCsv: Optional[Union[Path, str]] = None,
outputDirRoot: Optional[Union[Path, str]] = None,
Expand All @@ -2008,7 +2009,7 @@ def addAmbiguityResolutionML(
customLogLevel = acts.examples.defaultLogging(s, logLevel)
algML = AmbiguityResolutionMLAlgorithm(
level=customLogLevel(),
inputTracks="tracks",
inputTracks=tracks,
inputDuplicateNN=onnxModelFile,
outputTracks="ambiTracksML",
**acts.examples.defaultKWArgs(
Expand Down

0 comments on commit a70878e

Please sign in to comment.