diff --git a/conllu_generator.py b/conllu_generator.py new file mode 100644 index 0000000..28f2d06 --- /dev/null +++ b/conllu_generator.py @@ -0,0 +1,15 @@ +print("Script to automatically append data to data/dialog.conllu") +print("Start typing now. Press Ctrl+C to stop.") + +while True: + with open("data/train_dialog.conllu", "a") as f: + text = input("Text: ") + act = input("Intent: ") + slots = text.split(" ") + f.write( + f"\n# text: {text}\n# intent: {act}\n# slots:\n" + ) + for i, slot in enumerate(slots): + label = input(f"{i}/{slot} label: ") + f.write(f"{i+1}\t{slot}\t{act}\t{label}\n") + print("---")