├── .gitattributes ├── LICENSE ├── README.md ├── datasets ├── gpt4all │ └── gpt4all-cleaned-dataset.xz └── teknium-oj4 │ ├── instruct.zip │ ├── longform.zip │ ├── roleplay.zip │ └── toolformer.zip └── scripts └── filter-conversations.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/README.md -------------------------------------------------------------------------------- /datasets/gpt4all/gpt4all-cleaned-dataset.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/datasets/gpt4all/gpt4all-cleaned-dataset.xz -------------------------------------------------------------------------------- /datasets/teknium-oj4/instruct.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/datasets/teknium-oj4/instruct.zip -------------------------------------------------------------------------------- /datasets/teknium-oj4/longform.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/datasets/teknium-oj4/longform.zip -------------------------------------------------------------------------------- /datasets/teknium-oj4/roleplay.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/datasets/teknium-oj4/roleplay.zip -------------------------------------------------------------------------------- /datasets/teknium-oj4/toolformer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/datasets/teknium-oj4/toolformer.zip -------------------------------------------------------------------------------- /scripts/filter-conversations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paniphons/open-textbot-datasets/HEAD/scripts/filter-conversations.py --------------------------------------------------------------------------------