--- dataset_info: features: - name: prompt dtype: string - name: answer dtype: string - name: length dtype: int64 - name: index dtype: int64 splits: - name: train num_bytes: 615671651 num_examples: 550433 download_size: 314868474 dataset_size: 615671651 configs: - config_name: default data_files: - split: train path: data/train-* --- ## Dataset Overview This dataset contains nearly 550,000 English `speech instruction to text answer` samples, using: - A subset of [OpenHermes 2.5](https://huggingface.co/datasets/teknium/OpenHermes-2.5). ## Usage ```python from datasets import load_dataset, Audio # Load Instruction Speech dataset dataset = load_dataset("homebrewltd/prompt-voice-v1",split='train') ``` ## Dataset Fields Field | Type | Description | |------------------|------------|--------------------------------------------------| | `prompt` | string | User's query | | `answer` | string | Assistant's answer | | `length` | int | Length of user's query | ## Bias, Risks, and Limitations - Dataset may reflect biases inherent in its source. - Current version lacks quality control for prompts and responses. - The usage of Encodec may compromise sound tokens quality. - Users should consider these limitations when applying the dataset. ## Licensing Information The dataset is released under the [MIT license](https://opensource.org/license/MIT). ## Citation Information ``` @article{Instruction Speech 2024, title={Instruction Speech}, author={JanAI}, year=2024, month=June}, url={https://huggingface.co/datasets/jan-hq/instruction-speech} ```