gitextract_xr63eqto/ ├── .gitignore ├── InstructZero/ │ └── experiments/ │ ├── args.py │ ├── automatic_prompt_engineer/ │ │ ├── __init__.py │ │ ├── ape.py │ │ ├── config.py │ │ ├── data.py │ │ ├── evaluate.py │ │ ├── generate.py │ │ ├── llm.py │ │ └── template.py │ ├── configs/ │ │ └── instruction_induction.yaml │ ├── data/ │ │ └── instruction_induction/ │ │ ├── README.md │ │ ├── induction_input/ │ │ │ ├── active_to_passive.json │ │ │ ├── antonyms.json │ │ │ ├── cause_and_effect.json │ │ │ ├── common_concept.json │ │ │ ├── diff.json │ │ │ ├── first_word_letter.json │ │ │ ├── informal_to_formal.json │ │ │ ├── larger_animal.json │ │ │ ├── letters_list.json │ │ │ ├── negation.json │ │ │ ├── num_to_verbal.json │ │ │ ├── orthography_starts_with.json │ │ │ ├── rhymes.json │ │ │ ├── second_word_letter.json │ │ │ ├── sentence_similarity.json │ │ │ ├── sentiment.json │ │ │ ├── singular_to_plural.json │ │ │ ├── sum.json │ │ │ ├── synonyms.json │ │ │ ├── taxonomy_animal.json │ │ │ ├── translation_en-de.json │ │ │ ├── translation_en-es.json │ │ │ ├── translation_en-fr.json │ │ │ └── word_in_context.json │ │ ├── load_data.py │ │ └── raw/ │ │ ├── execute/ │ │ │ ├── active_to_passive.json │ │ │ ├── antonyms.json │ │ │ ├── auto_categorization.json │ │ │ ├── auto_debugging.json │ │ │ ├── cause_and_effect.json │ │ │ ├── common_concept.json │ │ │ ├── diff.json │ │ │ ├── first_word_letter.json │ │ │ ├── informal_to_formal.json │ │ │ ├── larger_animal.json │ │ │ ├── letters_list.json │ │ │ ├── negation.json │ │ │ ├── num_to_verbal.json │ │ │ ├── object_counting.json │ │ │ ├── odd_one_out.json │ │ │ ├── orthography_starts_with.json │ │ │ ├── periodic_elements.json │ │ │ ├── rhymes.json │ │ │ ├── second_word_letter.json │ │ │ ├── sentence_similarity.json │ │ │ ├── sentiment.json │ │ │ ├── singular_to_plural.json │ │ │ ├── sum.json │ │ │ ├── synonyms.json │ │ │ ├── taxonomy_animal.json │ │ │ ├── translation_en-de.json │ │ │ ├── translation_en-es.json │ │ │ ├── translation_en-fr.json │ │ │ ├── word_in_context.json │ │ │ ├── word_sorting.json │ │ │ └── word_unscrambling.json │ │ └── induce/ │ │ ├── active_to_passive.json │ │ ├── antonyms.json │ │ ├── ascii_word_recognition.json │ │ ├── auto_categorization.json │ │ ├── auto_debugging.json │ │ ├── cause_and_effect.json │ │ ├── common_concept.json │ │ ├── cs_algorithms.json │ │ ├── diff.json │ │ ├── first_word_letter.json │ │ ├── informal_to_formal.json │ │ ├── larger_animal.json │ │ ├── letters_list.json │ │ ├── negation.json │ │ ├── num_to_verbal.json │ │ ├── object_counting.json │ │ ├── odd_one_out.json │ │ ├── orthography_starts_with.json │ │ ├── periodic_elements.json │ │ ├── rhymes.json │ │ ├── second_word_letter.json │ │ ├── sentence_similarity.json │ │ ├── sentiment.json │ │ ├── singular_to_plural.json │ │ ├── sum.json │ │ ├── synonyms.json │ │ ├── taxonomy_animal.json │ │ ├── translation_en-de.json │ │ ├── translation_en-es.json │ │ ├── translation_en-fr.json │ │ ├── word_in_context.json │ │ ├── word_sorting.json │ │ └── word_unscrambling.json │ ├── evaluation/ │ │ └── instruction_induction/ │ │ ├── __init__.py │ │ ├── exec_accuracy.py │ │ └── utility.py │ ├── instruction_coupled_kernel.py │ ├── misc.py │ ├── run_instructzero.py │ └── run_instructzero.sh ├── README.md └── requirements.txt