├── .devcontainer └── devcontainer.json ├── .env.sample ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── auto-evolve-instruct └── trial.ipynb ├── evolve-instruct ├── README.md ├── convert.py ├── evolve.py ├── merge_json.py ├── run.sh ├── run_debug.sh └── samples │ ├── augmented_data.json │ ├── base_instuction.jsonl │ └── seed_data.jsonl ├── glan-instruct ├── README.md ├── disciplines.txt ├── disciplines_custom.txt ├── disciplines_sample.txt ├── generate.py ├── generate_answer_only.py ├── glan.py ├── glan_tutorial.ipynb ├── run.sh ├── run_debug.sh ├── run_each_discipline.sh └── samples │ ├── GLAN_Instructions_English_16_Samples_5c63.jsonl │ ├── GLAN_Instructions_Japanese_16_Samples_4a1e.jsonl │ ├── GLAN_Instructions_Korean_16_Samples_e96f.jsonl │ ├── GLAN_Questions_English_16_Samples_5c63.jsonl │ ├── GLAN_Questions_Japanese_16_Samples_4a1e.jsonl │ └── GLAN_Questions_Korean_16_Samples_e96f.jsonl ├── imgs ├── diagram1.png ├── diagram2.png ├── diagram3.png ├── evaluation-sample.png ├── evolve-instruct-run-example.png ├── fine-tuning-result-sample.png ├── post-process1.png ├── post-process2.png ├── summary-creating-qna-pdf.png └── synthetic_data_decision_tree.png ├── raw_data ├── csv │ ├── en-store-information-virtual.csv │ └── ko-store-information-virtual.csv └── pdf │ ├── en-imagenet-training-wrote-by-daekeun.pdf │ ├── img-advertising-generated-by-ai.pdf │ ├── img-advertising2-generated-by-ai.pdf │ └── ko-diffusion-wrote-by-daekeun.pdf ├── requirements.txt ├── seed ├── README.md ├── dataset │ └── imagenet-training-summary-oai.jsonl ├── make_qa_csv.ipynb ├── make_qa_multimodal_pdf_docai.ipynb ├── make_qa_multimodal_pdf_oss.ipynb ├── make_qa_only_image_multiple_pdf.ipynb ├── make_qa_only_image_pdf.ipynb ├── merge_training_dataset_json.ipynb ├── prompt_template │ ├── en │ │ ├── prompt_qa_boolean.txt │ │ ├── prompt_qa_conversation.txt │ │ ├── prompt_qa_conversation_modify.txt │ │ ├── prompt_qa_long_answer.txt │ │ ├── prompt_qa_short_answer.txt │ │ └── prompt_qa_summary.txt │ ├── jp │ │ ├── prompt_qa_boolean.txt │ │ ├── prompt_qa_conversation.txt │ │ ├── prompt_qa_conversation_modify.txt │ │ ├── prompt_qa_long_answer.txt │ │ ├── prompt_qa_short_answer.txt │ │ └── prompt_qa_summary.txt │ └── ko │ │ ├── prompt_qa_boolean.txt │ │ ├── prompt_qa_conversation.txt │ │ ├── prompt_qa_conversation_modify.txt │ │ ├── prompt_qa_long_answer.txt │ │ ├── prompt_qa_short_answer.txt │ │ └── prompt_qa_summary.txt ├── samples │ ├── advertising-multiple-oai.jsonl │ ├── advertising-oai.jsonl │ └── imagenet-training-summary-oai.jsonl └── util │ ├── common_utils.py │ ├── preprocess.py │ ├── qa.py │ └── qa_pair.py └── startup_unstructured.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /auto-evolve-instruct/trial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/auto-evolve-instruct/trial.ipynb -------------------------------------------------------------------------------- /evolve-instruct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/README.md -------------------------------------------------------------------------------- /evolve-instruct/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/convert.py -------------------------------------------------------------------------------- /evolve-instruct/evolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/evolve.py -------------------------------------------------------------------------------- /evolve-instruct/merge_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/merge_json.py -------------------------------------------------------------------------------- /evolve-instruct/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/run.sh -------------------------------------------------------------------------------- /evolve-instruct/run_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/run_debug.sh -------------------------------------------------------------------------------- /evolve-instruct/samples/augmented_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/samples/augmented_data.json -------------------------------------------------------------------------------- /evolve-instruct/samples/base_instuction.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/samples/base_instuction.jsonl -------------------------------------------------------------------------------- /evolve-instruct/samples/seed_data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/evolve-instruct/samples/seed_data.jsonl -------------------------------------------------------------------------------- /glan-instruct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/README.md -------------------------------------------------------------------------------- /glan-instruct/disciplines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/disciplines.txt -------------------------------------------------------------------------------- /glan-instruct/disciplines_custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/disciplines_custom.txt -------------------------------------------------------------------------------- /glan-instruct/disciplines_sample.txt: -------------------------------------------------------------------------------- 1 | Machine Learning 2 | Organic Chemistry -------------------------------------------------------------------------------- /glan-instruct/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/generate.py -------------------------------------------------------------------------------- /glan-instruct/generate_answer_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/generate_answer_only.py -------------------------------------------------------------------------------- /glan-instruct/glan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/glan.py -------------------------------------------------------------------------------- /glan-instruct/glan_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/glan_tutorial.ipynb -------------------------------------------------------------------------------- /glan-instruct/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/run.sh -------------------------------------------------------------------------------- /glan-instruct/run_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/run_debug.sh -------------------------------------------------------------------------------- /glan-instruct/run_each_discipline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/run_each_discipline.sh -------------------------------------------------------------------------------- /glan-instruct/samples/GLAN_Instructions_English_16_Samples_5c63.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/samples/GLAN_Instructions_English_16_Samples_5c63.jsonl -------------------------------------------------------------------------------- /glan-instruct/samples/GLAN_Instructions_Japanese_16_Samples_4a1e.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/samples/GLAN_Instructions_Japanese_16_Samples_4a1e.jsonl -------------------------------------------------------------------------------- /glan-instruct/samples/GLAN_Instructions_Korean_16_Samples_e96f.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/samples/GLAN_Instructions_Korean_16_Samples_e96f.jsonl -------------------------------------------------------------------------------- /glan-instruct/samples/GLAN_Questions_English_16_Samples_5c63.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/samples/GLAN_Questions_English_16_Samples_5c63.jsonl -------------------------------------------------------------------------------- /glan-instruct/samples/GLAN_Questions_Japanese_16_Samples_4a1e.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/samples/GLAN_Questions_Japanese_16_Samples_4a1e.jsonl -------------------------------------------------------------------------------- /glan-instruct/samples/GLAN_Questions_Korean_16_Samples_e96f.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/glan-instruct/samples/GLAN_Questions_Korean_16_Samples_e96f.jsonl -------------------------------------------------------------------------------- /imgs/diagram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/diagram1.png -------------------------------------------------------------------------------- /imgs/diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/diagram2.png -------------------------------------------------------------------------------- /imgs/diagram3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/diagram3.png -------------------------------------------------------------------------------- /imgs/evaluation-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/evaluation-sample.png -------------------------------------------------------------------------------- /imgs/evolve-instruct-run-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/evolve-instruct-run-example.png -------------------------------------------------------------------------------- /imgs/fine-tuning-result-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/fine-tuning-result-sample.png -------------------------------------------------------------------------------- /imgs/post-process1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/post-process1.png -------------------------------------------------------------------------------- /imgs/post-process2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/post-process2.png -------------------------------------------------------------------------------- /imgs/summary-creating-qna-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/summary-creating-qna-pdf.png -------------------------------------------------------------------------------- /imgs/synthetic_data_decision_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/imgs/synthetic_data_decision_tree.png -------------------------------------------------------------------------------- /raw_data/csv/en-store-information-virtual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/raw_data/csv/en-store-information-virtual.csv -------------------------------------------------------------------------------- /raw_data/csv/ko-store-information-virtual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/raw_data/csv/ko-store-information-virtual.csv -------------------------------------------------------------------------------- /raw_data/pdf/en-imagenet-training-wrote-by-daekeun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/raw_data/pdf/en-imagenet-training-wrote-by-daekeun.pdf -------------------------------------------------------------------------------- /raw_data/pdf/img-advertising-generated-by-ai.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/raw_data/pdf/img-advertising-generated-by-ai.pdf -------------------------------------------------------------------------------- /raw_data/pdf/img-advertising2-generated-by-ai.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/raw_data/pdf/img-advertising2-generated-by-ai.pdf -------------------------------------------------------------------------------- /raw_data/pdf/ko-diffusion-wrote-by-daekeun.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/raw_data/pdf/ko-diffusion-wrote-by-daekeun.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/requirements.txt -------------------------------------------------------------------------------- /seed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/README.md -------------------------------------------------------------------------------- /seed/dataset/imagenet-training-summary-oai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/dataset/imagenet-training-summary-oai.jsonl -------------------------------------------------------------------------------- /seed/make_qa_csv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/make_qa_csv.ipynb -------------------------------------------------------------------------------- /seed/make_qa_multimodal_pdf_docai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/make_qa_multimodal_pdf_docai.ipynb -------------------------------------------------------------------------------- /seed/make_qa_multimodal_pdf_oss.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/make_qa_multimodal_pdf_oss.ipynb -------------------------------------------------------------------------------- /seed/make_qa_only_image_multiple_pdf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/make_qa_only_image_multiple_pdf.ipynb -------------------------------------------------------------------------------- /seed/make_qa_only_image_pdf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/make_qa_only_image_pdf.ipynb -------------------------------------------------------------------------------- /seed/merge_training_dataset_json.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/merge_training_dataset_json.ipynb -------------------------------------------------------------------------------- /seed/prompt_template/en/prompt_qa_boolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/en/prompt_qa_boolean.txt -------------------------------------------------------------------------------- /seed/prompt_template/en/prompt_qa_conversation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/en/prompt_qa_conversation.txt -------------------------------------------------------------------------------- /seed/prompt_template/en/prompt_qa_conversation_modify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/en/prompt_qa_conversation_modify.txt -------------------------------------------------------------------------------- /seed/prompt_template/en/prompt_qa_long_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/en/prompt_qa_long_answer.txt -------------------------------------------------------------------------------- /seed/prompt_template/en/prompt_qa_short_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/en/prompt_qa_short_answer.txt -------------------------------------------------------------------------------- /seed/prompt_template/en/prompt_qa_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/en/prompt_qa_summary.txt -------------------------------------------------------------------------------- /seed/prompt_template/jp/prompt_qa_boolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/jp/prompt_qa_boolean.txt -------------------------------------------------------------------------------- /seed/prompt_template/jp/prompt_qa_conversation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/jp/prompt_qa_conversation.txt -------------------------------------------------------------------------------- /seed/prompt_template/jp/prompt_qa_conversation_modify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/jp/prompt_qa_conversation_modify.txt -------------------------------------------------------------------------------- /seed/prompt_template/jp/prompt_qa_long_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/jp/prompt_qa_long_answer.txt -------------------------------------------------------------------------------- /seed/prompt_template/jp/prompt_qa_short_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/jp/prompt_qa_short_answer.txt -------------------------------------------------------------------------------- /seed/prompt_template/jp/prompt_qa_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/jp/prompt_qa_summary.txt -------------------------------------------------------------------------------- /seed/prompt_template/ko/prompt_qa_boolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/ko/prompt_qa_boolean.txt -------------------------------------------------------------------------------- /seed/prompt_template/ko/prompt_qa_conversation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/ko/prompt_qa_conversation.txt -------------------------------------------------------------------------------- /seed/prompt_template/ko/prompt_qa_conversation_modify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/ko/prompt_qa_conversation_modify.txt -------------------------------------------------------------------------------- /seed/prompt_template/ko/prompt_qa_long_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/ko/prompt_qa_long_answer.txt -------------------------------------------------------------------------------- /seed/prompt_template/ko/prompt_qa_short_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/ko/prompt_qa_short_answer.txt -------------------------------------------------------------------------------- /seed/prompt_template/ko/prompt_qa_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/prompt_template/ko/prompt_qa_summary.txt -------------------------------------------------------------------------------- /seed/samples/advertising-multiple-oai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/samples/advertising-multiple-oai.jsonl -------------------------------------------------------------------------------- /seed/samples/advertising-oai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/samples/advertising-oai.jsonl -------------------------------------------------------------------------------- /seed/samples/imagenet-training-summary-oai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/samples/imagenet-training-summary-oai.jsonl -------------------------------------------------------------------------------- /seed/util/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/util/common_utils.py -------------------------------------------------------------------------------- /seed/util/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/util/preprocess.py -------------------------------------------------------------------------------- /seed/util/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/util/qa.py -------------------------------------------------------------------------------- /seed/util/qa_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/seed/util/qa_pair.py -------------------------------------------------------------------------------- /startup_unstructured.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/synthetic-qa-generation/HEAD/startup_unstructured.sh --------------------------------------------------------------------------------