Skip to content

Commit

Permalink
fix incorrect filename when reading CBaSE output
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuaibi7 committed Dec 14, 2024
1 parent 7ac0732 commit 795a733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dialect/utils/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def generate_bmr_files_from_CBaSE_output(out):
and saves the combined probability mass functions as 'bmr_pmfs.csv' in the output directory.
"""
logging.info("Generating BMR PMF files from CBaSE output.")
mis_bmr_fn = os.path.join(out, "CBaSE_output", "pofmigivens_output.txt")
non_bmr_fn = os.path.join(out, "CBaSE_output", "pofkigivens_output.txt")
mis_bmr_fn = os.path.join(out, "CBaSE_output", "pofmigivens.txt")
non_bmr_fn = os.path.join(out, "CBaSE_output", "pofkigivens.txt")

all_dfs = []
for fn, suffix in zip([mis_bmr_fn, non_bmr_fn], ["_M", "_N"]):
Expand Down

0 comments on commit 795a733

Please sign in to comment.