Skip to content

Commit

Permalink
fix HamerHelper detector
Browse files Browse the repository at this point in the history
  • Loading branch information
annie-liyunqi committed Nov 19, 2024
1 parent 9304ef9 commit 2006d46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2_run_hamer_on_vrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def run_wilor_and_save(
shutil.rmtree(render_out_path, ignore_errors=True)
render_out_path.mkdir(exist_ok=True)
wilor_helper = WiLoRHelper(wilor_home)
hamer_helper = HamerHelper()
hamer_helper = HamerHelper(other_detector=True)

# VRS data provider setup.
provider = create_vrs_data_provider(str(vrs_path.absolute()))
Expand Down Expand Up @@ -389,7 +389,7 @@ def run_aria_hamer_and_save(
shutil.rmtree(render_out_path, ignore_errors=True)

render_out_path.mkdir(exist_ok=True)
hamer_helper = HamerHelper()
hamer_helper = HamerHelper(other_detector=True)

# VRS data provider setup.
provider = create_vrs_data_provider(str(vrs_path.absolute()))
Expand Down

0 comments on commit 2006d46

Please sign in to comment.