Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • general/dsml/dialogue-ontology-relation-extraction-via-constrained-chain-of-thought-decoding
1 result
Select Git revision
Loading items
Show changes
Commits on Source (2)
...@@ -178,7 +178,8 @@ def main(): ...@@ -178,7 +178,8 @@ def main():
except Exception as e: except Exception as e:
logger.info(f"Checkpoint saved at {checkpoint_filename} after {counter} dialogues") logger.info(f"Checkpoint saved at {checkpoint_filename} after {counter} dialogues")
logger.error(f"Error at dialogue {dial_id} in split {split}") logger.error(f"Error at dialogue {dial_id} in split {split}")
continue logger.error(f"Error message: {e}")
e.with_traceback()
if config.predict_for_cot_decoding: if config.predict_for_cot_decoding:
output_string += "Step " + str(i) + " response:\n" output_string += "Step " + str(i) + " response:\n"
......