FIX: adjust quote type in inference_from_file (#33)

adds
full_script = full_script.replace("’", "'")
to the data preparation
This commit is contained in:
_ 2025-08-28 06:32:30 +01:00 committed by YaoyaoChang
parent f57a9bffb1
commit e611deafac

View file

@ -239,6 +239,7 @@ def main():
# Prepare data for model
full_script = '\n'.join(scripts)
full_script = full_script.replace("", "'")
# Load processor
print(f"Loading processor & model from {args.model_path}")