├── .DS_Store ├── .idea └── .gitignore ├── README.md ├── data ├── content.csv └── problems.csv ├── generator_csv.py ├── generator_prompt.py ├── img ├── ScreenFlow.gif └── img.png └── output_convert.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/README.md -------------------------------------------------------------------------------- /data/content.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/data/content.csv -------------------------------------------------------------------------------- /data/problems.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/data/problems.csv -------------------------------------------------------------------------------- /generator_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/generator_csv.py -------------------------------------------------------------------------------- /generator_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/generator_prompt.py -------------------------------------------------------------------------------- /img/ScreenFlow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/img/ScreenFlow.gif -------------------------------------------------------------------------------- /img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/img/img.png -------------------------------------------------------------------------------- /output_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SupritYoung/free-self-instruct/HEAD/output_convert.py --------------------------------------------------------------------------------