diff --git a/=4.57 b/=4.57 new file mode 100644 index 0000000000000000000000000000000000000000..9ae64760f3e1fc383579d1bb938373392a80c65f --- /dev/null +++ b/=4.57 @@ -0,0 +1,18 @@ +Requirement already satisfied: transformers in ./venv/lib/python3.12/site-packages (4.40.0) +Requirement already satisfied: filelock in ./venv/lib/python3.12/site-packages (from transformers) (3.29.0) +Requirement already satisfied: huggingface-hub<1.0,>=0.19.3 in ./venv/lib/python3.12/site-packages (from transformers) (0.36.2) +Requirement already satisfied: numpy>=1.17 in ./venv/lib/python3.12/site-packages (from transformers) (2.4.4) +Requirement already satisfied: packaging>=20.0 in ./venv/lib/python3.12/site-packages (from transformers) (26.2) +Requirement already satisfied: pyyaml>=5.1 in ./venv/lib/python3.12/site-packages (from transformers) (6.0.3) +Requirement already satisfied: regex!=2019.12.17 in ./venv/lib/python3.12/site-packages (from transformers) (2026.4.4) +Requirement already satisfied: requests in ./venv/lib/python3.12/site-packages (from transformers) (2.33.1) +Requirement already satisfied: tokenizers<0.20,>=0.19 in ./venv/lib/python3.12/site-packages (from transformers) (0.19.1) +Requirement already satisfied: safetensors>=0.4.1 in ./venv/lib/python3.12/site-packages (from transformers) (0.7.0) +Requirement already satisfied: tqdm>=4.27 in ./venv/lib/python3.12/site-packages (from transformers) (4.67.3) +Requirement already satisfied: fsspec>=2023.5.0 in ./venv/lib/python3.12/site-packages (from huggingface-hub<1.0,>=0.19.3->transformers) (2026.2.0) +Requirement already satisfied: hf-xet<2.0.0,>=1.1.3 in ./venv/lib/python3.12/site-packages (from huggingface-hub<1.0,>=0.19.3->transformers) (1.4.3) +Requirement already satisfied: typing-extensions>=3.7.4.3 in ./venv/lib/python3.12/site-packages (from huggingface-hub<1.0,>=0.19.3->transformers) (4.15.0) +Requirement already satisfied: charset_normalizer<4,>=2 in ./venv/lib/python3.12/site-packages (from requests->transformers) (3.4.7) +Requirement already satisfied: idna<4,>=2.5 in ./venv/lib/python3.12/site-packages (from requests->transformers) (3.13) +Requirement already satisfied: urllib3<3,>=1.26 in ./venv/lib/python3.12/site-packages (from requests->transformers) (2.6.3) +Requirement already satisfied: certifi>=2023.5.7 in ./venv/lib/python3.12/site-packages (from requests->transformers) (2026.4.22) diff --git a/TRAIN_ON_COLAB.ipynb b/TRAIN_ON_COLAB.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..3fae2e3fedab302741563f931877740cc0946c6a --- /dev/null +++ b/TRAIN_ON_COLAB.ipynb @@ -0,0 +1,112 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Nigerian Languages TTS Training (XTTS v2)\n", + "Train XTTS v2 for Yoruba, Hausa, Igbo, and Pidgin.\n", + "\n", + "**Run this on Google Colab with GPU runtime!**" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 1. Check GPU\n", + "!nvidia-smi" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 2. Install dependencies\n", + "!pip install coqui-tts torch torchaudio\n", + "!pip install datasets huggingface_hub" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 3. Download Nigerian datasets\n", + "from datasets import load_dataset\n", + "\n", + "# Nigerian Common Voice\n", + "yoruba = load_dataset('benjaminogbonna/nigerian_common_voice_dataset', 'yoruba', split='train')\n", + "hausa = load_dataset('benjaminogbonna/nigerian_common_voice_dataset', 'hausa', split='train')\n", + "igbo = load_dataset('benjaminogbonna/nigerian_common_voice_dataset', 'igbo', split='train')\n", + "\n", + "print(f'Yoruba: {len(yoruba)} samples')\n", + "print(f'Hausa: {len(hausa)} samples')\n", + "print(f'Igbo: {len(igbo)} samples')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 4. Download XTTS v2 base model\n", + "from TTS.api import TTS\n", + "\n", + "tts = TTS('tts_models/multilingual/multi-dataset/xtts_v2', gpu=True)\n", + "print('XTTS v2 loaded!')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 5. Test voice cloning with Nigerian audio\n", + "# This uses a reference audio to clone the voice - no training needed!\n", + "\n", + "# Save a sample audio for reference\n", + "import soundfile as sf\n", + "sample = yoruba[0]\n", + "sf.write('reference_yoruba.wav', sample['audio']['array'], sample['audio']['sampling_rate'])\n", + "\n", + "# Clone voice and synthesize\n", + "text = 'Bawo ni, mo n pe oruko mi ni Morpheus.'\n", + "tts.tts_to_file(\n", + " text=text,\n", + " speaker_wav='reference_yoruba.wav',\n", + " language='en', # XTTS uses 'en' for African languages\n", + " file_path='yoruba_output.wav'\n", + ")\n", + "print('Generated yoruba_output.wav')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 6. Run XTTS fine-tuning demo\n", + "# This launches a Gradio interface for fine-tuning\n", + "!python -m TTS.demos.xtts_ft_demo --share" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/TRAIN_YARNGPT_COLAB.ipynb b/TRAIN_YARNGPT_COLAB.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..7b3bdb6d788680229781d46f0e1f6d48eb121eec --- /dev/null +++ b/TRAIN_YARNGPT_COLAB.ipynb @@ -0,0 +1,440 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# YarnGPT Nigerian Languages Fine-tuning\n", + "\n", + "This notebook fine-tunes YarnGPT on Nigerian language audio data (Yoruba, Hausa, Igbo, Pidgin).\n", + "\n", + "**Requirements:**\n", + "- Google Colab with GPU (A100 recommended, T4 works too)\n", + "- Training data in Google Drive or uploaded directly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Check GPU\n", + "!nvidia-smi\n", + "import torch\n", + "print(f\"CUDA available: {torch.cuda.is_available()}\")\n", + "print(f\"Device: {torch.cuda.get_device_name(0) if torch.cuda.is_available() else 'CPU'}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Install dependencies\n", + "!pip install -q transformers datasets accelerate torchaudio\n", + "!pip install -q outetts uroman inflect\n", + "!pip install -q huggingface_hub\n", + "\n", + "# Download WavTokenizer models\n", + "!mkdir -p ~/.yarngpt/models\n", + "!wget -q -O ~/.yarngpt/models/wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml \\\n", + " https://huggingface.co/novateur/WavTokenizer-medium-speech-75token/resolve/main/wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml\n", + "!gdown 1-ASeEkrn4HY49yZWHTASgfGFNXdVnLTt -O ~/.yarngpt/models/wavtokenizer_large_speech_320_24k.ckpt" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Mount Google Drive (optional - for data storage)\n", + "from google.colab import drive\n", + "drive.mount('/content/drive')\n", + "\n", + "# Or upload data directly\n", + "# from google.colab import files\n", + "# uploaded = files.upload()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Download Nigerian Common Voice dataset\n", + "from datasets import load_dataset\n", + "\n", + "# Load datasets\n", + "yoruba_ds = load_dataset(\"mozilla-foundation/common_voice_17_0\", \"yo\", split=\"train\", trust_remote_code=True)\n", + "hausa_ds = load_dataset(\"mozilla-foundation/common_voice_17_0\", \"ha\", split=\"train\", trust_remote_code=True)\n", + "igbo_ds = load_dataset(\"mozilla-foundation/common_voice_17_0\", \"ig\", split=\"train\", trust_remote_code=True)\n", + "\n", + "print(f\"Yoruba samples: {len(yoruba_ds)}\")\n", + "print(f\"Hausa samples: {len(hausa_ds)}\")\n", + "print(f\"Igbo samples: {len(igbo_ds)}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import re\n", + "import json\n", + "import torch\n", + "import torchaudio\n", + "import numpy as np\n", + "from pathlib import Path\n", + "from torch.utils.data import Dataset, DataLoader\n", + "from transformers import AutoModelForCausalLM, AutoTokenizer\n", + "from outetts.wav_tokenizer.decoder import WavTokenizer\n", + "from outetts.wav_tokenizer.encoder.utils import convert_audio\n", + "import uroman as ur\n", + "import inflect\n", + "\n", + "# Configuration\n", + "MODEL_ID = \"saheedniyi/YarnGPT2\"\n", + "OUTPUT_DIR = \"/content/yarngpt-nigerian-finetuned\"\n", + "DEVICE = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n", + "\n", + "# WavTokenizer paths\n", + "MODEL_DIR = os.path.expanduser(\"~/.yarngpt/models\")\n", + "WAV_CONFIG = os.path.join(MODEL_DIR, \"wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml\")\n", + "WAV_MODEL = os.path.join(MODEL_DIR, \"wavtokenizer_large_speech_320_24k.ckpt\")\n", + "\n", + "print(f\"Using device: {DEVICE}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Load WavTokenizer\n", + "print(\"Loading WavTokenizer...\")\n", + "wav_tokenizer = WavTokenizer.from_pretrained0802(WAV_CONFIG, WAV_MODEL)\n", + "wav_tokenizer = wav_tokenizer.to(DEVICE)\n", + "print(\"WavTokenizer loaded!\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "class YarnGPTDataset(Dataset):\n", + " \"\"\"Dataset for YarnGPT training with HuggingFace datasets.\"\"\"\n", + " \n", + " def __init__(self, hf_dataset, tokenizer, wav_tokenizer, language, max_length=4096, max_samples=1000):\n", + " self.dataset = hf_dataset.select(range(min(len(hf_dataset), max_samples)))\n", + " self.tokenizer = tokenizer\n", + " self.wav_tokenizer = wav_tokenizer\n", + " self.language = language\n", + " self.max_length = max_length\n", + " self.device = DEVICE\n", + " \n", + " self.uroman = ur.Uroman()\n", + " self.lec = inflect.engine()\n", + " \n", + " self.special_tokens = {\n", + " \"audio_code\": \"<|{}|>\",\n", + " \"text_start\": \"<|text_start|>\",\n", + " \"text_end\": \"<|text_end|>\",\n", + " \"audio_start\": \"<|audio_start|>\",\n", + " \"audio_end\": \"<|audio_end|>\",\n", + " \"code_start\": \"<|code_start|>\",\n", + " \"code_end\": \"<|code_end|>\",\n", + " \"text_sep\": \"<|text_sep|>\",\n", + " \"hausa\": \"<|hausa|>\",\n", + " \"igbo\": \"<|igbo|>\",\n", + " \"yoruba\": \"<|yoruba|>\",\n", + " \"english\": \"<|english|>\",\n", + " }\n", + " self.bos = \"<|im_start|>\"\n", + " self.eos = \"<|im_end|>\"\n", + " \n", + " def _process_text(self, text):\n", + " text = self.uroman.romanize_string(text)\n", + " text = re.sub(r'\\d+(\\.\\d+)?', lambda x: self.lec.number_to_words(x.group()), text.lower())\n", + " text = re.sub(r'[-_/,\\.\\\\]', ' ', text)\n", + " text = re.sub(r'[^a-z\\s]', '', text)\n", + " text = re.sub(r'\\s+', ' ', text).strip()\n", + " return text.split()\n", + " \n", + " def _encode_audio(self, audio_array, sample_rate):\n", + " audio = torch.tensor(audio_array, dtype=torch.float32)\n", + " if sample_rate != 24000:\n", + " audio = audio.unsqueeze(0)\n", + " audio = convert_audio(audio, sample_rate, 24000, 1)\n", + " audio = audio.squeeze()\n", + " \n", + " audio = audio.unsqueeze(0).to(self.device)\n", + " if audio.ndim == 3:\n", + " audio = audio.squeeze(1)\n", + " \n", + " bandwidth_id = torch.tensor([0]).to(self.device)\n", + " with torch.no_grad():\n", + " _, codes = self.wav_tokenizer.encode_infer(audio, bandwidth_id=bandwidth_id)\n", + " return codes.squeeze().tolist()\n", + " \n", + " def __len__(self):\n", + " return len(self.dataset)\n", + " \n", + " def __getitem__(self, idx):\n", + " sample = self.dataset[idx]\n", + " \n", + " try:\n", + " # Get audio and text\n", + " audio_array = sample['audio']['array']\n", + " sample_rate = sample['audio']['sampling_rate']\n", + " text = sample['sentence']\n", + " \n", + " # Skip very short or very long samples\n", + " duration = len(audio_array) / sample_rate\n", + " if duration < 1.0 or duration > 15.0:\n", + " return None\n", + " \n", + " # Encode audio\n", + " audio_codes = self._encode_audio(audio_array, sample_rate)\n", + " \n", + " # Create prompt\n", + " words = self._process_text(text)\n", + " words_str = self.special_tokens['text_sep'].join(words)\n", + " \n", + " prompt = f\"{self.bos}\\n{self.special_tokens['text_start']}{words_str}{self.special_tokens['text_end']}\\n\"\n", + " prompt += f\"{self.special_tokens[self.language]}\\n\"\n", + " prompt += f\"{self.special_tokens['audio_start']}\\n\"\n", + " codes_str = \"\".join([self.special_tokens['audio_code'].format(c) for c in audio_codes])\n", + " prompt += f\"{self.special_tokens['code_start']}{codes_str}{self.special_tokens['code_end']}\\n\"\n", + " prompt += f\"{self.special_tokens['audio_end']}\\n{self.eos}\"\n", + " \n", + " # Tokenize\n", + " tokens = self.tokenizer.encode(\n", + " prompt,\n", + " add_special_tokens=False,\n", + " max_length=self.max_length,\n", + " truncation=True\n", + " )\n", + " \n", + " return {\n", + " \"input_ids\": torch.tensor(tokens),\n", + " \"attention_mask\": torch.ones(len(tokens)),\n", + " \"labels\": torch.tensor(tokens)\n", + " }\n", + " except Exception as e:\n", + " print(f\"Error at index {idx}: {e}\")\n", + " return None" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Load tokenizer and model\n", + "print(\"Loading tokenizer...\")\n", + "tokenizer = AutoTokenizer.from_pretrained(MODEL_ID)\n", + "\n", + "print(\"Loading model...\")\n", + "model = AutoModelForCausalLM.from_pretrained(\n", + " MODEL_ID,\n", + " torch_dtype=torch.bfloat16\n", + ").to(DEVICE)\n", + "print(\"Model loaded!\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Create datasets (use smaller subset for testing)\n", + "MAX_SAMPLES = 500 # Increase for full training\n", + "\n", + "print(\"Creating Yoruba dataset...\")\n", + "yoruba_dataset = YarnGPTDataset(yoruba_ds, tokenizer, wav_tokenizer, \"yoruba\", max_samples=MAX_SAMPLES)\n", + "\n", + "print(\"Creating Hausa dataset...\")\n", + "hausa_dataset = YarnGPTDataset(hausa_ds, tokenizer, wav_tokenizer, \"hausa\", max_samples=MAX_SAMPLES)\n", + "\n", + "print(\"Creating Igbo dataset...\")\n", + "igbo_dataset = YarnGPTDataset(igbo_ds, tokenizer, wav_tokenizer, \"igbo\", max_samples=MAX_SAMPLES)\n", + "\n", + "print(f\"Dataset sizes: Yoruba={len(yoruba_dataset)}, Hausa={len(hausa_dataset)}, Igbo={len(igbo_dataset)}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from torch.utils.data import ConcatDataset\n", + "from transformers import Trainer, TrainingArguments, DataCollatorForLanguageModeling\n", + "\n", + "# Combine datasets\n", + "combined_dataset = ConcatDataset([yoruba_dataset, hausa_dataset, igbo_dataset])\n", + "\n", + "# Filter out None samples\n", + "def collate_fn(batch):\n", + " batch = [b for b in batch if b is not None]\n", + " if not batch:\n", + " return None\n", + " \n", + " max_len = max(len(b['input_ids']) for b in batch)\n", + " \n", + " input_ids = torch.zeros(len(batch), max_len, dtype=torch.long)\n", + " attention_mask = torch.zeros(len(batch), max_len, dtype=torch.long)\n", + " labels = torch.full((len(batch), max_len), -100, dtype=torch.long)\n", + " \n", + " for i, b in enumerate(batch):\n", + " seq_len = len(b['input_ids'])\n", + " input_ids[i, :seq_len] = b['input_ids']\n", + " attention_mask[i, :seq_len] = b['attention_mask']\n", + " labels[i, :seq_len] = b['labels']\n", + " \n", + " return {\n", + " 'input_ids': input_ids,\n", + " 'attention_mask': attention_mask,\n", + " 'labels': labels\n", + " }\n", + "\n", + "# Training arguments\n", + "training_args = TrainingArguments(\n", + " output_dir=OUTPUT_DIR,\n", + " num_train_epochs=3, # Reduce for testing\n", + " per_device_train_batch_size=2,\n", + " gradient_accumulation_steps=8,\n", + " learning_rate=1e-4,\n", + " weight_decay=0.01,\n", + " warmup_ratio=0.1,\n", + " bf16=True,\n", + " logging_steps=50,\n", + " save_steps=200,\n", + " save_total_limit=2,\n", + " report_to=\"none\",\n", + ")\n", + "\n", + "# Trainer\n", + "trainer = Trainer(\n", + " model=model,\n", + " args=training_args,\n", + " train_dataset=combined_dataset,\n", + " data_collator=collate_fn,\n", + ")\n", + "\n", + "print(f\"Total training samples: {len(combined_dataset)}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Train!\n", + "print(\"Starting training...\")\n", + "trainer.train()\n", + "print(\"Training complete!\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Save the fine-tuned model\n", + "trainer.save_model(OUTPUT_DIR)\n", + "tokenizer.save_pretrained(OUTPUT_DIR)\n", + "print(f\"Model saved to {OUTPUT_DIR}\")\n", + "\n", + "# Copy to Google Drive for persistence\n", + "!cp -r {OUTPUT_DIR} /content/drive/MyDrive/yarngpt-nigerian-finetuned" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Test the fine-tuned model\n", + "from yarngpt.audiotokenizer import AudioTokenizerV2\n", + "\n", + "# Load fine-tuned model\n", + "finetuned_model = AutoModelForCausalLM.from_pretrained(\n", + " OUTPUT_DIR,\n", + " torch_dtype=torch.bfloat16\n", + ").to(DEVICE)\n", + "\n", + "audio_tokenizer = AudioTokenizerV2(\n", + " OUTPUT_DIR,\n", + " WAV_MODEL,\n", + " WAV_CONFIG\n", + ")\n", + "\n", + "# Generate speech\n", + "text = \"Bawo ni, se daadaa ni?\"\n", + "prompt = audio_tokenizer.create_prompt(text, lang=\"yoruba\", speaker_name=\"yoruba_female1\")\n", + "input_ids = audio_tokenizer.tokenize_prompt(prompt)\n", + "\n", + "output = finetuned_model.generate(\n", + " input_ids=input_ids,\n", + " temperature=0.1,\n", + " repetition_penalty=1.1,\n", + " max_length=4000,\n", + ")\n", + "\n", + "codes = audio_tokenizer.get_codes(output)\n", + "audio = audio_tokenizer.get_audio(codes)\n", + "\n", + "import IPython\n", + "IPython.display.Audio(audio, rate=24000)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Push to Hugging Face Hub (optional)\n", + "from huggingface_hub import login, HfApi\n", + "\n", + "# Login with your HF token\n", + "# login(token=\"your_hf_token\")\n", + "\n", + "# Push model\n", + "# finetuned_model.push_to_hub(\"your-username/yarngpt-nigerian\")\n", + "# tokenizer.push_to_hub(\"your-username/yarngpt-nigerian\")" + ] + } + ], + "metadata": { + "accelerator": "GPU", + "colab": { + "gpuType": "A100", + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3", + "name": "python3" + }, + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/YARNGPT_TRAINING_GUIDE.md b/YARNGPT_TRAINING_GUIDE.md new file mode 100644 index 0000000000000000000000000000000000000000..a4474e012a3819c1c89b77e9765e551046371edb --- /dev/null +++ b/YARNGPT_TRAINING_GUIDE.md @@ -0,0 +1,190 @@ +# YarnGPT Training Guide for Nigerian Languages + +## Overview + +This guide covers how to: +1. **Create custom speaker voices** (voice cloning without fine-tuning) +2. **Fine-tune YarnGPT** with new Nigerian language data + +## Current Data Status + +``` +~/voice-training/datasets/ +├── nigerian_cv/ # 658MB - Common Voice (Yoruba, Hausa, Igbo, English) +├── nigerian_pidgin/ # 912MB - Nigerian Pidgin dataset +└── openslr_yoruba/ # 1.4GB - High-quality Yoruba speech (OpenSLR86) + +~/voice-training/prepared_data/ +├── yoruba/ # 19MB - 500 samples extracted +├── hausa/ # 14MB - 500 samples extracted +└── igbo/ # 17MB - 500 samples extracted +``` + +## Option 1: Create Custom Speaker Voices (No Training Required) + +This is the **fastest approach** - create new speaker JSON files that YarnGPT can use. + +### How It Works +YarnGPT uses "speaker JSON" files that contain: +- Reference text transcript +- Audio codes from WavTokenizer for each word + +### Steps: + +1. **Select a clean audio sample** (5-15 seconds, clear speech) + +2. **Run the speaker creation script:** +```bash +cd ~/voice-training +source venv/bin/activate +python scripts/create_speaker_json.py \ + --audio /path/to/audio.wav \ + --text "The transcript of the audio" \ + --output ~/yarngpt-clone/upstream/yarngpt/default_speakers_local/my_voice.json \ + --language yoruba +``` + +3. **Deploy to Railway:** + - Add the JSON to `upstream/yarngpt/default_speakers_local/` + - Push to git and redeploy + +### Best Practices for Speaker Audio: +- Duration: 5-15 seconds +- Format: WAV, 24kHz or higher sample rate +- Clean recording, minimal background noise +- Clear pronunciation +- Natural speaking pace + +--- + +## Option 2: Fine-tune YarnGPT Model + +For better quality with large amounts of data, fine-tune the model. + +### Requirements: +- **GPU**: NVIDIA GPU with 16GB+ VRAM (A100 recommended) +- **Training Time**: ~50 hours on A100 for full training +- **Data**: Audio files + transcripts + +### Training Data Format: +``` +data_dir/ +├── wavs/ +│ ├── audio001.wav +│ ├── audio002.wav +│ └── ... +└── metadata.csv +``` + +`metadata.csv` format: +``` +audio001|This is the transcript of audio 001 +audio002|Another transcript here +``` + +### Fine-tuning Script: + +```bash +cd ~/voice-training +source venv/bin/activate +python scripts/finetune_yarngpt.py \ + --data-dirs ./prepared_data/yoruba ./prepared_data/hausa ./prepared_data/igbo \ + --languages yoruba hausa igbo \ + --output-dir ./yarngpt-nigerian \ + --epochs 5 \ + --batch-size 4 +``` + +### Google Colab Training (Recommended) + +Since local GPU is limited, use Google Colab: + +1. Upload the Colab notebook: `~/voice-training/TRAIN_YARNGPT_COLAB.ipynb` +2. Enable GPU runtime (Runtime > Change runtime type > GPU) +3. Upload your training data to Google Drive +4. Run the notebook cells + +--- + +## Option 3: Improve Existing Deployment + +### Fix Railway 502 Error + +The Railway deployment is returning 502 errors. Check: + +1. **Memory limits** - YarnGPT needs ~2GB RAM +2. **HF_TOKEN** - Must be set for model downloads +3. **Logs**: `railway logs` + +```bash +# Check Railway deployment +cd ~/yarngpt-clone +railway status +railway logs +``` + +### Redeploy with fixes: +```bash +cd ~/yarngpt-clone +git add . +git commit -m "fix: increase memory allocation" +git push origin main +# Railway auto-deploys on push +``` + +--- + +## Architecture Overview + +``` +User Input (Text) + ↓ +AudioTokenizerV2.create_prompt() + ↓ +Reference speaker JSON (audio codes as prefix) + ↓ +SmolLM2-360M (YarnGPT model) + ↓ +Generated audio codes + ↓ +WavTokenizer decoder + ↓ +Audio waveform (24kHz) +``` + +## Key Files in yarngpt-clone + +``` +yarngpt-clone/ +├── src/morpheous/ +│ ├── main.py # FastAPI endpoints +│ ├── tts.py # TTS synthesis logic +│ └── voice_data/ # Bundled speaker JSONs +├── upstream/yarngpt/ +│ ├── default_speakers/ # English voices +│ └── default_speakers_local/ # Nigerian language voices +└── requirements.txt +``` + +## Next Steps + +1. **Quick Win**: Create 2-3 custom speaker JSONs from your best audio samples +2. **Medium**: Fix Railway deployment and add new speaker voices +3. **Long-term**: Fine-tune model with full training data on Colab/Cloud GPU + +## Commands Cheat Sheet + +```bash +# Activate environment +cd ~/voice-training && source venv/bin/activate + +# Create speaker JSON +python scripts/create_speaker_json.py --audio sample.wav --text "transcript" --output voice.json + +# Fine-tune (requires GPU) +python scripts/finetune_yarngpt.py --data-dirs ./prepared_data/yoruba --languages yoruba + +# Check data status +du -sh ~/voice-training/datasets/*/ +ls ~/voice-training/prepared_data/*/wavs/ | wc -l +``` diff --git a/create_nigerian_speakers.py b/create_nigerian_speakers.py new file mode 100644 index 0000000000000000000000000000000000000000..550148a5e06a2099044d1dcf5bb5e11b241858a5 --- /dev/null +++ b/create_nigerian_speakers.py @@ -0,0 +1,190 @@ +#!/usr/bin/env python3 +""" +Create YarnGPT speaker JSON files from Nigerian voice data. +Uses WavTokenizer to encode audio to codes. +""" + +import os +import sys +import json +import re +from pathlib import Path + +def main(): + print("=== Creating Nigerian Speaker JSONs ===\n") + + import torch + import torchaudio + from outetts.wav_tokenizer.decoder import WavTokenizer + from outetts.wav_tokenizer.encoder.utils import convert_audio + + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + print(f"Using device: {device}") + + # WavTokenizer paths + MODEL_DIR = os.path.expanduser("~/.yarngpt/models") + config_path = os.path.join(MODEL_DIR, "wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml") + model_path = os.path.join(MODEL_DIR, "wavtokenizer_large_speech_320_24k.ckpt") + + # Download WavTokenizer if not exists + if not os.path.exists(model_path): + print("Downloading WavTokenizer models...") + os.makedirs(MODEL_DIR, exist_ok=True) + import requests + from tqdm import tqdm + + # Config + config_url = "https://huggingface.co/novateur/WavTokenizer-medium-speech-75token/resolve/main/wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml" + r = requests.get(config_url) + with open(config_path, 'wb') as f: + f.write(r.content) + + # Model (larger, use streaming) + model_url = "https://huggingface.co/novateur/WavTokenizer-large-speech-75token/resolve/main/wavtokenizer_large_speech_320_24k.ckpt" + r = requests.get(model_url, stream=True) + total = int(r.headers.get('content-length', 0)) + with open(model_path, 'wb') as f, tqdm(total=total, unit='B', unit_scale=True) as pbar: + for chunk in r.iter_content(chunk_size=8192): + f.write(chunk) + pbar.update(len(chunk)) + + print("Loading WavTokenizer...") + wav_tokenizer = WavTokenizer.from_pretrained0802(config_path, model_path) + wav_tokenizer = wav_tokenizer.to(device) + print("WavTokenizer loaded!\n") + + # Output directory + output_dir = Path(os.path.expanduser("~/yarngpt-clone/src/morpheous/voice_data/default_speakers_local")) + output_dir.mkdir(parents=True, exist_ok=True) + + # Process each language + languages = ["yoruba", "hausa", "igbo"] + + for lang in languages: + manifest_path = os.path.expanduser(f"~/voice-training/prepared_data/{lang}/manifest.json") + if not os.path.exists(manifest_path): + print(f"No manifest for {lang}, skipping...") + continue + + with open(manifest_path, 'r') as f: + manifest = json.load(f) + + print(f"\n=== Processing {lang.upper()} ===") + + # Group by speaker + speakers = {} + for entry in manifest: + speaker = entry.get("speaker", "unknown") + if speaker not in speakers: + speakers[speaker] = [] + speakers[speaker].append(entry) + + # Create speaker JSONs (up to 2 per language) + speaker_count = 0 + for speaker_id, entries in speakers.items(): + if speaker_count >= 2: + break + + # Find best sample (longest within 5-10s range) + best_entry = None + best_duration = 0 + + for entry in entries[:20]: # Check first 20 samples + audio_path = entry["audio_file"] + if not os.path.exists(audio_path): + continue + try: + info = torchaudio.info(audio_path) + duration = info.num_frames / info.sample_rate + if 5 <= duration <= 10 and duration > best_duration: + best_entry = entry + best_duration = duration + except: + continue + + if not best_entry: + continue + + audio_path = best_entry["audio_file"] + text = best_entry["text"] + + print(f"Processing {lang}_{speaker_id}: {os.path.basename(audio_path)} ({best_duration:.1f}s)") + print(f" Text: {text[:60]}...") + + try: + # Load audio + audio_data, sample_rate = torchaudio.load(audio_path) + audio_data = audio_data.squeeze().to(dtype=torch.float32) + + # Resample to 24kHz + if sample_rate != 24000: + audio_data = audio_data.unsqueeze(0) + audio_data = convert_audio(audio_data, sample_rate, 24000, 1) + audio_data = audio_data.squeeze() + + audio = audio_data.unsqueeze(0).to(device) + if audio.ndim == 3: + audio = audio.squeeze(1) + + # Encode to codes + bandwidth_id = torch.tensor([0]).to(device) + with torch.no_grad(): + _, codes = wav_tokenizer.encode_infer(audio, bandwidth_id=bandwidth_id) + codes = codes.squeeze().tolist() + + # Calculate duration + total_duration = len(audio_data) / 24000 + + # Split text into words + words = text.strip().split() + num_words = len(words) + + # Distribute codes across words + codes_per_word = len(codes) // num_words + duration_per_word = total_duration / num_words + + word_data = [] + for i, word in enumerate(words): + start_idx = i * codes_per_word + end_idx = start_idx + codes_per_word if i < num_words - 1 else len(codes) + word_codes = codes[start_idx:end_idx] + + # Normalize word + normalized_word = re.sub(r'[^a-zA-ZẹọṣẸỌṢàáèéìíòóùúÀÁÈÉÌÍÒÓÙÚ]', '', word.lower()) + if not normalized_word: + normalized_word = word.lower() + + word_data.append({ + "word": normalized_word, + "duration": f"{duration_per_word:.2f}", + "codes": word_codes + }) + + # Create speaker JSON + speaker_json = { + "text": text, + "words": word_data + } + + # Determine gender/number + gender = "female" if speaker_count == 0 else "male" + num = speaker_count + 3 # Start from 3 to add to existing + output_name = f"{lang}_{gender}{num}.json" + output_path = output_dir / output_name + + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(speaker_json, f, ensure_ascii=False, indent=4) + + print(f" Created: {output_name}") + speaker_count += 1 + + except Exception as e: + print(f" Error: {e}") + continue + + print("\n=== Done! ===") + print(f"Speaker JSONs saved to: {output_dir}") + + +if __name__ == "__main__": + main() diff --git a/datasets/line_index_female.tsv b/datasets/line_index_female.tsv new file mode 100644 index 0000000000000000000000000000000000000000..217b9d8e618edb4a3086083236f0e1abef5da92d --- /dev/null +++ b/datasets/line_index_female.tsv @@ -0,0 +1,1892 @@ +yof_06136_00616155826 Lọ fá irun rẹ kó tó wù. +yof_04310_00085429033 Ìbọn ló bàá l’ẹ́sẹ̀. +yof_03397_01216055225 Ọwọ́ mi ni kẹ́ẹ wò. +yof_07505_02087322100 Òṣogbo ni wọ́n ti gbé àgbò náà bọ̀. +yof_09697_00825605999 Ọ̀rúnmìlà nìkan ló gbọ́ ohùn ẹnu Olódùmarè yékéyéke. +yof_00295_01406524313 Gbénró ló pe ẹjọ́ kòtẹ́milọ́rùn. +yof_02484_00830544591 Bí babaláwo náà ṣẹ̀ gba ibẹ̀ kọjá ni. +yof_06136_01270915354 Ọmọ bàba olówó ni mí. +yof_07049_01792666927 Abẹ́ igi Ọ̀dán ni wọ́n ti máa ń sábà pa ààlọ́. +yof_01208_00289556156 Ilẹ̀kùn yàrá Tádé ti bàjẹ́. +yof_03034_00305234805 Òǹkà Yorùbá ni mo kọ́ àwọn ènìyàn níbi ìpàdé àná. +yof_03397_01318934933 Désọ́lá lọ wẹ̀ lódò. +yof_08784_00690046189 Bàbá àgbà, ṣé ẹ ti jí? +yof_02484_01358389254 Bísí jẹ́ ìyàwó kejì. +yof_02121_00956906502 Àwọn Yorùbá kò fi ọwọ́ yẹpẹrẹ mú ọrọ ọmọ bíbí láwùjọ. +yof_06136_00347347264 Ẹlẹ́nu bótobòto, a ó ma wírú yó ma wírù. +yof_07508_00536283870 Mú aṣọ kúrò nílẹ̀. +yof_03349_00295894179 Wọ́n so ẹran mọ́ ‘lẹ̀ lọ́jọ́ iléyá. +yof_09334_00469431050 Ikú Olóògbé Dúró Ládiípọ̀ dun gbogbo ìlú. +yof_00610_01581194420 Arómáṣọdún bímọ ọkùnrin làǹtilanti. +yof_07505_00130217514 Òwe lẹ ó máa pa, ẹ ò ní pànìyàn. +yof_01208_01363759623 Àpò ṣaka ni wọ́n kó gbogbo ẹrù wọn sí nígbà tí wọ́n lọ sí ìrìn àjò náà. +yof_08784_01357406601 Ẹranko ti Jíbádé fẹ́ràn jù ni akọ ajá. +yof_08421_01121475027 Kí a máa dán ìgbàgbọ́ wa wò. +yof_06136_00845245042 Wọ́n mú ọmọ náà ṣeré. +yof_09334_02140860801 Àwàdà ni a fi bẹ̀rẹ̀ ọ̀rọ̀ náà. +yof_08421_00541566668 Ẹnikẹ́ni tí ìwọ́ bá ní ipá láti ṣe ìrànlọ́wọ́ fún òun ni ẹnìkejì re. +yof_02121_00430575678 Láfún ni a jẹ. +yof_05223_01265600293 Mo ra ìwé mẹ́ta níbẹ̀. +yof_07508_02028350467 Ìsọkúsọ Àmọ́dù ti pọ̀ jù. +yof_03397_01872041694 Kí ló dé tò ń pè mí lánàá? +yof_07505_00786155626 Orí àdògán ni wọ́n ti ń rokà. +yof_03349_00647645032 Òòrùn ò tíì wọ̀ tán. +yof_00295_01218799887 Kí ló dé tí àwọn kan ma ń bínú tí wọ́n bá̀ ṣàpèjúwe wọn gẹ́gẹ́ bí i è̀nìyàn sísanra? +yof_00610_01629839776 Mo ní’fẹ̀ẹ́ bí o ṣe máa ń rẹ́rìn-ín. +yof_09697_00051282220 Mo fẹ́ ra ẹyin bíbọ̀. +yof_08784_00262412228 Ilé epo náà tóbi, ẹ̀bá ọ̀nà ló wà. +yof_09697_00541693597 Owó ni kókó o. +yof_02484_00918570975 Ojúbọ òrìṣà ni owó náà wà. +yof_06136_02111299993 Àdúrà gbogbo òbí ni kí ọmọ wọ́n ṣ’oríire. +yof_07508_00372321037 Ra ọtí tàbí ẹmu fún wa. +yof_05223_00729229036 Yòrùbá bọ̀ wọ́n ní, “Kò sí bí a ó ṣe se ebòlò tí kò ní rungbẹ́.” +yof_07049_00005976462 Kò ye ká máa sọ̀rọ̀ ṣàkàṣàkà torí a ò mọ ẹni tó lè ranni lọ́wọ́. +yof_03397_01766137260 Kò rí oorun sùn lálẹ́ àná; èyí múu bínú. +yof_01208_00465594715 Ọ̀gọ̀njọ́ òru ni àwọn eléyi tún pariwo. +yof_08784_00954030997 Ó ti jẹ gbèsè púpọ̀. +yof_03034_01273576086 Mọ fẹ́ràn ẹlẹ́dẹ̀. +yof_07049_00780329259 Ó ti sá lọ, ọ̀rọ̀ náà kọjá ohun tí agbára rẹ̀ ká. +yof_01208_01820644403 Àdùkẹ́ ti sanra ju ọjọ́ orí rẹ̀ lọ. +yof_09697_01619753437 Mi ò nífẹ̀ẹ́ sí àti máa jẹ ìgbá, mo nífẹ ọsàn dípò rẹ̀. +yof_06136_01387293319 Ṣe o ti rí ìdí tí kò fi lè tètè ní ọ̀rẹ́kùnrin. +yof_03034_01814831512 Ṣé wàá jẹ́ bàbá àwọn ọmọ mi? +yof_09334_01280964020 Orí ẹní ni mo sùn mọ́jú. +yof_00295_00962828791 Màá máa wá wò yìn nílé láìpẹ́. +yof_04310_00972463444 Ọ̀la ni ìsimi ọlọ́jọ́ gbọọrọ máa bẹ̀rẹ̀. +yof_00610_01577121951 Ọláwùnmí jẹ́ ẹni tí ó ní ìrẹ̀lẹ́. +yof_05223_00056237070 Olórí ilé aṣòfin wà ní agbègbè náà. +yof_03397_00200180185 Gbogbo èyí ni mo ti ṣe fún ẹ, ǹjẹ́ ìwọ́ lè ṣe èyí fún mi? +yof_08421_00109898102 Kòkòrò ààrùn tí ò gbóògun ti pọ̀ ní ìlú yìí. +yof_08421_01272422037 Dọ́kítà sọ pé àwọn oní gbèsè òun ò tí sanwó. +yof_06136_01778543902 Bá mi bu omi mímu wá nínu ìkòkò tó wà l'ábàáwọlé. +yof_05223_01893825453 Ṣé o wà ní oríi Twitter? +yof_00295_01512514976 Bàbá àti màmá ti lọ sí òde òkú àwọn Ṣeun. +yof_09334_00731284092 Dáre ni akọ̀wé ẹgbẹ́ akọrin inú ìjọ wa. +yof_03349_01957803301 Kò s’ẹ́ni tó mọ Ifá tán. +yof_07049_01581353881 A ti gé igi kan lulẹ̀. +yof_07508_01068871540 Ìyẹn náà ni pé àwọn ìlú kékèké nínú igbó yìí náà máa ń lo iná ìjọba. +yof_07049_00346398042 Ẹyẹlé funfun kìí bí dúdú. +yof_07508_01046082859 Ẹranko burúkú kan ló pa àwọn ẹran náà jẹ. +yof_06136_00852892464 Mo ò dára nínú eré bọ́ọ̀lù gbígbá. +yof_07505_01241206877 Lọ mú àtòrì wá l’ẹ́yìn ilẹ̀kùn. +yof_09697_00764365820 Imú ọmọ ìkókó náà dọ̀tí. +yof_09697_00110824256 Ìsàlè àpótí ni màmá máa ń kó àwọn aṣọ olówó iyebíye wọn sí. +yof_02436_00390279056 Ilé ìfowópamọ́ yapa nì agbègbè Adéọlá Ọdẹ́kù. +yof_00295_01557845803 Ìdíje ńlá gbáà ni àwọn ẹgbẹ ọdẹ ń fi Ìrèmọ̀jé Ògún ṣe. +yof_03349_01003076462 Nígbà tí ènìyàn tó burú báyì bá ń ronú kó jáwọ́ nínú ìwà ìbàjẹ́, mélòómélòó ìwọ. +yof_07505_00506347447 Àkìtàn ọ̀hún wà níwájú. +yof_07049_00531290381 Alágídí l’ọmọ náà, ó fi jọ ẹ̀gbọ́n rẹ̀ ni. +yof_01208_00769499782 Èyí já sí pé, gbogbo ìmọ̀ pátá ló ń bẹ nínú ifá. +yof_07049_01263861207 Ọ̀la ni ọdún iléyá ní Ìjẹ̀bú Òde. +yof_08784_00834464098 Yà sí apá ọ̀tún tí o bá dé Òpópónà Ìṣẹ́ri. +yof_07505_01563772970 Àgbàlá Bàbá Fọlákẹ́ ni àwọn ọmọ ti máa ń ṣ’eré ní ìrọ̀lẹ́. +yof_01208_01799058721 Ṣùgbọ́n, mo já èso kan lórí igi. +yof_09334_00945584178 Nínú gbogbo ilé ìwòsàn agbègbè yìí, ti ọ̀nà òpópónà òkìtìpupa ni ó dára díẹ̀. +yof_00610_00323846488 Mo ti lo rí ọ̀gá mi kan lorí ọ̀rọ̀ ọ̀hún. +yof_08784_00234951176 Àǹkárá olójúméje ni Ṣaléwá wọ̀. +yof_08421_00569449972 Folúkẹ́ ti múra tán kí àwọn àlejòo rẹ̀ tó dé. +yof_07049_00917793398 Ọmọ yìí ò ní àpọ́nlé kankan rárá. +yof_08784_01482844097 Ṣé o lè yá mi l’ówó títí di ìparí oṣù. +yof_02484_01654910843 Jọláadé kìí yẹ́ ṣerépá. +yof_02436_01334427540 Adéògún ti d’ọjà nù. +yof_03034_00097168549 Èròjà tí a fẹ́ fi se ọbẹ̀ kò tí ì pé o. +yof_02121_01181146012 Ó le kú, ìjà ọ̀rẹ̀. +yof_00295_01069902556 Ọkàn mí wúwo púpọ̀. +yof_09697_00613262603 Ẹ jẹ́ ká sùn díẹ̀, ṣùgbọ́n oorun ò kùn mí. +yof_06136_00089680530 Bíléèdì gé ọmọ náà ní’ka. +yof_04310_01758880915 Mí ò ṣeré o; òdodo ọ̀rọ̀ ni. +yof_08421_00296052354 Tí mo bá ti wà lẹ́gbẹ̀ẹ́ Ọlájùwọ́n, ara rẹ kì í lélẹ̀. +yof_00295_01733959908 Fi ara balẹ̀ ṣá, má ṣè’jọ̀gbọ̀n. +yof_03034_01157942821 Eéwo mú mi lábẹ́ etí. +yof_07505_00414690798 Àwọn Àbẹ̀gbé yóò tó dé láti Ísírẹ́lì ní ọ̀sẹ̀ méjì sí òní. +yof_03397_01041264034 Àwọn ọmọ ẹgbẹ́ kò káàárẹ̀ láti máa wá sí ìpàdé. +yof_07508_00574923742 Mo ò tíì wẹ láti àárọ̀. +yof_07505_02028522943 Ṣé o fẹ́ràn aṣọ tí ẹ̀gbọ́n rẹ fi ránṣẹ́ láti òkè òkun? +yof_09697_01488879069 Ìkọ̀tún ni ibi tí àwọn ayálégbé wa tẹ́lẹ̀ ń gbé báyìí. +yof_07508_01194071814 Ìkọ̀ta ni ilé tí Similólúwa ń gbé wá. +yof_03349_01629558772 Láti ojú fèrèsé mi, mo rí àwọn ọ̀dọ́ méjì tí wọ́n ń tami oge. +yof_00295_00872733233 Ilé ayé gba jẹ́jẹ́ ni bàbá máa ń sọ. +yof_08784_01849074300 Nínú gbogbo ìdáwọ́lé mi mo ríre. +yof_08421_02081959854 Koríko ni ewúrẹ́ máa ń jẹ. +yof_08421_01806450345 Ọ̀kan nínú àwọn òṣìṣẹ́ ní ilé-iṣẹ́ wa fẹ́ràn omi tútù. +yof_03034_02110641615 Ra àgbálùmọ́ fún mi tí o bá ń bọ̀. +yof_03349_02039935534 Ajò ò le dùn bí ilé. +yof_03349_01673975940 Ọjọ́ ọla mi ló jẹ mí lógún. +yof_07505_00715199030 Idà, àáké, àdá, ọfà àti ọ̀bẹ ni wọ́n fi ń jagun l’áyé àtijó. +yof_09334_00876655401 Aà jí ire bí, ẹ̀yin ọmọ Oòduà? +yof_06136_01949694738 Ìyá wa ṣe àkíyèsí ìwà ìmẹ́lẹ́ Ọmọṣẹwà, ó sì ti pèé lọ́pọ̀ ìgbà láti ba sọ̀rọ̀ ìjìnlẹ̀. +yof_07505_00898111970 Ìyá tó mọ ìbẹ̀rẹ̀ ayé mi kó má ṣe mọ ìgbẹ̀yin ayé mi. +yof_09334_01742135320 Símisọ́lá lorúkọ ìyàwó Adékúnlé. +yof_08421_00744771820 Olójú dúdú ni wá tẹ́lẹ̀. +yof_03034_00108964020 Tóbi ní òun ò fẹ́ rí ẹnikẹ́ni lénìí. +yof_02436_00553352779 Àwọn òṣìṣé ìjọba ti da’ṣé lẹ̀. +yof_09697_01779031125 Aṣọ kaánà ni t’ọko t’ìyàwó wọn wọ̀ lọ sí ilé ìjọsìn l’éni. +yof_02436_01178520648 Kí èdùmàrè dá èmí sí. +yof_06136_00606933345 Àpáta náà rí ràbàtà. +yof_03397_01363012169 Àwọn ọjà yìí ò tutù. +yof_07505_01073126517 Yéèpà, Ọbalùfọ̀n. +yof_02436_01068491430 Ọlọ́fin ní orúkọ ẹni tí ó tẹ ìlú Ọ̀tà dó. +yof_07505_01433868811 Kíni m̀bá ti ṣe sọ pé mo gbọ́? +yof_00295_01271831382 Ikọ́ burúkú wo ni ò ń wú báyìí. +yof_07505_01707769880 A fẹ́ kí wọ́n ó dàgbà kí wọn ó dògbó. +yof_07049_01882396928 Ọgbọ́n ló gbà tó bá ti jẹ́ ọ̀rọ̀ obìnrin. +yof_07049_01740818863 Àtakọ àtabo, èwo ni kì í ń ṣ’ọmọ. +yof_03034_01847424174 Ó figbe s’ẹ́nu pariwo. +yof_00610_02051130089 Ẹran ìgbẹ́ ni ìgalà àti àgbọ̀nrín. +yof_02121_01284646383 Oúnjẹ kékeré ló sè lọ fún-un. +yof_03349_00034880533 Wàhálà ti mo fi ara ṣe pò lénìí. +yof_05223_01066585617 Magí ti já ọbẹ̀ yẹn. +yof_03034_00744627221 Èyí wà ní ìbámu pẹ̀lú àpẹẹrẹ òkè yìí. +yof_07505_01851862734 Àrà méèrírí, mo r’órí olóńgbò l’átẹ. +yof_07505_01439149460 Ìgbákọ tí mo fẹ́ lò dà? +yof_00610_00302869340 Ẹ̀yọ̀, Gẹ̀lẹ̀dẹ́ àti Eégún ni àwọn ọdún ìbílẹ̀ tí mo fẹ́ràn jù. +yof_08784_00749352779 Bí kò bá sí èdè kò ní sí ìtakùrọ̀sọ láàárín ọmọ ẹ̀dá ádámọ̀ méjì tàbí jù bẹ́ẹ̀ lọ. +yof_09697_00634162719 Ìsọkúsọ àwọn mìíràn pọ̀ jù. +yof_03397_01325603742 Oṣhòdì ni ilé iṣẹ́ Alfa wà. +yof_02436_01058969316 Ọlárótìmí fẹ́ràn ṣẹ̀kẹ̀rẹ̀, ohun èlò tí ó fẹ́ràn láti máa lù nìyẹn. +yof_08421_01505339944 Àpò ìwé ẹ̀ wà nínú aṣọ mi. +yof_09334_00429130596 Olúwa yóò ṣọ́ ẹ di ọjọ́ ìkúnlẹ̀ o. +yof_03349_01837686344 Ohun to yàtọ̀ pátápátá ni ọ̀la jẹ́, kò sí ẹni tó mọ̀la. +yof_09697_01077479271 Sọ fún bàba ọlọ́kọ̀ kó lọ gbé àwọn èrò tó wà ní ibùsọ̀ lọ́un yẹn. +yof_08421_00295837571 Gbogbo òbí ló ń gbàdúrà ọmọ tó máa sanjọ́. +yof_06136_00530300363 Ẹ bá mi fi díẹ̀ sí oúnjẹ yíì. +yof_08421_01834404080 Tẹ̀là ló jẹ́ kí gbogbo ọ̀rọ̀ yí lọ́di òkòtò báyìí. +yof_05223_01891656881 Ìbàjẹ́ ènìyàn ò dáṣẹ́ ọlọ́run dúró. +yof_08421_00489798113 Mo fẹ́ jẹ’kà. +yof_03349_01156904086 Àmídà ló kúrú jù ní kílàsì. +yof_07049_00994788525 Orúkọ mi ni Àdìgún Alápòméjì. +yof_04310_00494778742 Mo ní’fẹ̀ẹ́ láti bá wọn lọ fún ìnáwó náà. +yof_02121_00017373295 Ẹkùn lè ṣe ìnàkí léṣe. +yof_03397_00348474787 Ọọ̀ purọ́, bẹ́ẹ̀ gan lọ̀rọ̀ rí. +yof_01208_01850003899 Wọ́n na Àdùnní játijàti. +yof_01208_00257305663 Màmá rán mi kí n lọ ra ẹja díndín wá ní ìsọdá. +yof_03034_00421681937 Rọra máa gbá èèyàn jàre, ṣé oò mọ̀ pé ọwọ́ rẹ máa ń dùn'yan ni? +yof_00295_01761208648 Akitiyan àwọn ajíhìnrere tí wọ́n ṣe àkọsílẹ̀ àkọtọ́ èdè Yòrùbá kò ṣe é fọwọ́ rọ́ sẹ́yìn. +yof_02121_00464496827 Aṣọ funfun méje ni ó sá sí ìta. +yof_03034_00325997819 Kí ló dé tí o ní ìkáàánú fún mi tó bẹ́ẹ̀? +yof_02121_00546763487 Kí ni ìṣẹ̀lẹ̀ tó ń da ọkàn rẹ rú? +yof_07505_01189991343 Eré orí ìtàgé náà yóò lárinrin púpọ̀. +yof_03397_01560512845 Ṣe ìlérí fún mi pé ò ní fi mí sílẹ̀. +yof_06136_00792512190 Èré orí ìtàgé ni iṣẹ́ tí Jídé Kòsókó ń ṣe. +yof_03397_01172957501 Ọmọ náà ní ìgbéraga púpọ̀. +yof_03034_02140492495 Dáfídì ní ọmọ bàba olówó ni òún jẹ́. +yof_07508_01302288082 Mo ti gba Jésù sáyé mi. +yof_09334_01071921055 Màmá mi, mo ti yó. +yof_06136_01472596302 Ẹlẹ́nu bíi ti pẹ́pẹ́yẹ ní Tamẹ́dùn. +yof_07508_02031310832 Ajíbádé fẹ́ràn obìnrin púpọ̀. +yof_08421_02013697467 Ẹ wá ra bèbí fún mi. +yof_08784_00606072434 Kìí ṣe dúndùn inú ẹnikẹ́ni kí ọmọ rẹ́ kú. +yof_00295_00701915531 Àwọn ọmọ ológbe náà náwó rẹpẹtẹ sí ayẹyẹ òkú náà. +yof_05223_01965398017 Ojúṣe àwọn olùkọ́ ni láti ríi dájú pé àwọn ọmọ tí wọn kọ́ ní òye kíkún nípa iṣẹ́ ọ̀hún. +yof_03397_00754438846 Oyún náà ti pé oṣù mẹ́jo, Ìyá Bọ́lá ò ní pẹ́ ja ẹrù náà kalẹ̀. +yof_09334_00023239105 Wọ́n máa ń lo orin dadakùádà lati fi ki oríkì ènìyàn. +yof_05223_00290108088 Inú igbó ni ẹ̀fọn máa ń wà. +yof_06136_01024096676 Wón kun àtíkè sí ọrùn Àńjọlá. +yof_04310_00716846595 Kí ni ìdí tí àwọn èyàn mìíràn fi máa ń jẹ́ àfín? +yof_07508_01882852893 Olóko ńlá ni bàbá àgbẹ̀ náà. +yof_02484_01980138009 Lára àwọn olùkọ́ tí mo ò le gbàbé ni ọ̀mọ̀wé Shèyí Kenny. +yof_09697_01329742974 Mo fi ẹnu kòó l’ẹnu. +yof_05223_01271590618 Àpadàsáburú ò ní jẹ́ ìpín wa. +yof_07508_01633838219 Ó ń gbìyànjú láti tú mi jẹ. +yof_03349_01505782680 Àgbò náà sanra. +yof_03397_00728103925 Oní wẹ́rẹ́wẹ́rẹ́ ni Jíbọ́lá. +yof_02436_01947241225 Yèyé mi a máa bínú ní ọ̀pọ̀ ìgbà lórí ohun tí kò tó nǹkan. +yof_05223_00256406909 Òde ò wù mí lọ. +yof_03034_00063417513 Bàbá yín ò ní pẹ́ dé o. +yof_02121_02008518482 Òpópónà náà tẹ́ rẹrẹ kárí ayé. +yof_07508_00152030156 Ta ẹ̀pà fún mi kí ebi má pa mí kú. +yof_02484_01355967813 Màálù mi ti kú. +yof_00295_00236719811 Wọ́n ti lé àwọn ẹbí Ayọ̀bámi kúrò ní agboolé. +yof_07049_01942697716 Kúnlé ti lọ ra àgádàgodo wá. +yof_02436_00136590423 Ilé ìgbọ̀nsẹ̀ náà rẹwà. +yof_02121_01265466833 Ẹní bá gẹṣin nínú mi ò ní kọ’sẹ̀. +yof_06136_01769930032 Ẹniafẹ́ sọ pé Dámilọ́lá jẹ́ kí orí òún wú. +yof_07049_01701419720 Tájù àti Tọ́lá ń lọ sí Àkúrẹ́ ní ọ̀la. +yof_03349_01454035176 Ohùn ìsàlẹ̀ ni wọ́n fi ń gbé orin náà jáde. +yof_08784_00714705932 Ìyàwó wa ti kó lọ ilé ọkọ ẹ̀. +yof_00610_01710662243 Ayé ń lọ, à ń tọ̀ ọ́. +yof_07508_01952773975 Ṣé o mọ ìdí tí mo fi sọ bẹ́ ẹ̀? +yof_00295_00020329077 Fálétí ti lọ ra àwọn ṣòkòtò ní ọjà Èjìgbò. +yof_09697_00465758722 Ojúmọ́ ire, ojúmọ́ ayọ̀. +yof_03034_01108805717 Ìṣèkúṣè ni àwọn olópàá náà ń ṣe fún wa. +yof_06136_01094360780 Ìrìn àjò ẹgbẹ̀rún ọdún, ẹsẹ̀ kan la kọ́ máa gbé. +yof_03397_00215586777 Iṣẹ́ la fẹ́ ṣe, a kìí ṣ’ọ̀lẹ. +yof_02484_01292048152 Lẹ́báa títì ni a ti rí atọ́kọ̀sẹ tí ń yẹ ọkọ̀ kan wò. +yof_00295_01036172444 Ìrẹsì àti ẹja ni èmi àti Elújọbí jẹ ní òwúrọ òní. +yof_02121_00907251659 Mo ò tí ì dé Àbújá rí. +yof_03034_00245094758 Ohun gbogbo tí Ọlórun dá, dáradára ni. +yof_07505_01159479288 Ọmọ náà kò m’ará mú, àfi bíi ará oko. +yof_02484_01804504315 Lára ibi tí a dé ni ọ̀dọ̀ Aláàfin ìlú Ọ̀yọ́. +yof_09334_01365395955 Àmàlà ni Simi jẹ fún oúnjẹ ọ̀sán. +yof_09697_00233502332 Ẹlẹ́dẹ̀ náà bí ọmọ mẹ́fà péré. +yof_07049_01214603960 Òṣùwọ̀n mẹ́jọmẹ́jọ lóri omi. +yof_01208_01445895100 Ṣe o ti rí ìdí tí kò fi lè tètè ní ọ̀rẹ́bìrin? +yof_07505_01960889329 Adébọ̀wálé sọ pé òun ò mọ̀ bí aṣọ òun ṣe sọnù. +yof_00610_01053621422 Ọ̀lẹ ni ọmọ yẹn, bí mo ṣe gbọ́. +yof_03034_00023157117 Ti fèrèsé náà kí ẹfọn má baà wọlé. +yof_08421_01903647230 Gbogbo eyín Ìya Bọ̀dé ló ti yọ tán. +yof_07508_02132249236 Kátikàti bíi ọbẹ̀ onírẹsì ni gbogbo àwọn ọmọge ìsìnyín ń ṣe. +yof_03349_01182190308 Rádaràda ni gbogbo eléyìí ń ṣe. +yof_06136_01050572298 Olùṣọ́gbá ni iṣẹ́ tí mo bá ẹ rí. +yof_03397_01759774370 Dókìtà ní kí o wá sínú yàrá ìṣàyẹ̀wò. +yof_03034_00018006611 Oko obì lọ́tun, ti ọ̀gẹ̀dẹ̀ lósì. +yof_07508_00015485504 Alájápá ni iṣẹ́ tí Lọlá ń ṣe kó tó wọ iṣẹ́ Ọlọ́pàá. +yof_06136_01532254621 Wọ́n ta ọfà fun jagunjagun náà láyà. +yof_00295_00072176292 Ṣé o lè rìn kíá ju báyi lọ? +yof_06136_00798580406 Kì ń ṣe gbogbo nǹkan lèyàn ń dá sí. +yof_02436_00776893624 Onímú kékeré ni Ájàó. +yof_06136_01772505826 Ọ̀mùtí paraku ni Ọláṣayọ̀. +yof_06136_01920577611 Ẹ̀san ń bẹ fún ẹni tó bá ṣẹ̀ ìka. +yof_02436_02054636419 Ibo ni fàájì wà lálẹ́ òní? +yof_08421_00937158596 Ìmọ́tótó ṣe pàtàkì fún àti dénà ààrùn. +yof_00295_00677007677 Gẹ́rẹ́ tí wọ́n dé ọjà ni wọ́n rí wọn ní ẹ̀gbẹ́ ọ̀nà. +yof_05223_01151524736 Mo ò ní já ẹ ku’lẹ̀. +yof_03034_02139854889 Mo fẹ́ ra ọtí fún Ìya Sùlíyá. +yof_08784_00358161760 Ijó, ẹ̀rín, ayọ̀, àti ọpẹ́ ló yẹ wá. +yof_00295_01551962061 Kọ́lá ti fi ẹsẹ̀ gún ìṣó. +yof_00295_01875330645 Mo ní àǹfààní láti dé ibi tí wọ́n ti ń hun aṣọ. +yof_03034_01553782781 Ní ìgbà kan rí kò tilẹ̀ sí lítíréṣọ̀ àpilẹ̀kọ rárá débi pé wọ́n á ní ìwé ìtàn àròsọ. +yof_02121_01945338995 Iṣan apá rẹ̀ ti já. +yof_01208_01876513226 Ìjọba ìbílẹ̀ ti ń tún àwọn ọ̀nà àdúgbò wa ṣe. +yof_03034_01279003043 Ìrèti ń bẹ, bí ẹ̀mí bá ti wà. +yof_02121_00930959735 Ògúntádé ni ó gba ìwé náà wọlé. +yof_07049_00492240564 Ẹ̀kọ́ tí mo kọ́ láti ilé ló mú kí ayé mi ṣì gbádùn báyìí. +yof_03397_00377246441 Ọdún Ifá jẹ́ ọdún kan pàtàkì tí a fi ń dúpẹ́ lọ́wọ́ Elódùmarè. +yof_00610_01190059110 Wọ́n ní ká dá àjọ kí owó baà le pọ̀. +yof_06136_01392479779 A ti tọ́ka sí obì gbàǹjà àti obì àbàtà. +yof_09697_01103354325 Ata ni Bọ́láfadé ń tà láti rán ara rẹ̀ lọ sí ilé-ìwé. +yof_01208_01076239944 Ìrìn-àjò èdá láyé Ọlọ́run ló mọ̀. +yof_00610_01630073655 Ọjà ni mò ń lọ báyìí o. +yof_07505_01542908689 Ọkunrin ńlá ni Bàba Ṣọlá tó wà ní orílẹ̀-èdè Amẹ́ríkà. +yof_09334_00964886249 Ikú á poníṣègùn bí ẹni tí o ̀m’egbò. +yof_02436_00377779380 Mo ga ní ìwọ̀n ẹsẹ̀ bàtà márun pẹ̀lú díẹ̀. +yof_07505_01517742901 Oṣù kẹwá ni Adéwùnmí yóò sẹ mọ̀-mí-n-mọ̀-ẹ́. +yof_03034_01210344257 Ohun tó ṣemí ní kàyéfi ni bí àwọn gẹ̀lẹ̀dẹ́ ṣe máa ń ní ìdí ńlá. +yof_02436_00078312783 Mo mọ bí mo ṣe ń ṣiṣẹ́ tí mo fi ń rówó. +yof_07049_02135353632 Kú iṣẹ́ takuntakun, ìwọ ọmọ yìí. +yof_07508_00122902148 Tí o bá ní jésù, ohun gbogbo lo ní. +yof_07505_02012362868 Ó darí ìpàdé náà láti ìbẹ̀rẹ̀ dé òpin. +yof_03397_01399500688 Kí Hamid máa bú èyàn rọ̀ọ́ lọ́rùn gan. +yof_07049_00235830127 Àwọn èyàn ló sọ fún nípa ìyàwó rẹ̀ tó ń s’ágbèrè. +yof_05223_00442985240 Ọtí àmupara ni Akínbọ̀dé mu ló bá ń sọ bótobòto ní òru àná. +yof_07505_01182407901 Ṣé o ti ń ṣe ǹkan oṣù? +yof_07049_01324447191 Olórí ilé ló lágbára àti dáríji ẹni tó bá dá irú ẹ̀ṣẹ̀ yìí. +yof_02121_00852633768 Mi ò gbàgbọ́ pé Tinúadé lè pa ènìyàn. +yof_00610_01911482469 Ẹni yára lòòṣà òkè ń bá dá sí tirẹ̀. +yof_07049_00304333546 Mo gbà fún ọ̀gá mi, alárẹrẹ ni wọ́n ni. +yof_02436_02103674726 Ki lo kùn sí ètè? +yof_02121_02016936916 Ohùn wa ti há. +yof_07505_01631738985 Orin dadakùádà máa ń ní ìlù lílù, ijó jíjó, ẹfẹ̀ ṣís̀e, àti oríkì. +yof_07505_01617346118 B’ólóde ò kú, òde ò lè wu gbẹ́gi. +yof_07505_01899548242 [snap] Ìròyìn agogo mẹ́sàn-án àṣálẹ́ ni bàbá ń gbó l’ọ́wọ́. +yof_01208_01560372912 Ọ̀kan-ò-jọ̀kan ìdí ni a lè tọ́ka sí pé ó ṣe okùnfà pípẹ́ lẹ́yìn ìwé ìtàn àròsọ Yorùbá. +yof_08784_01824543808 Ẹ̀ya Ìgbò ni ẹni tí Mọ̀rúfù fẹ́. +yof_00295_01286080141 Kò sí èyan rere kan lára ọmọ yẹn. +yof_02484_02051757674 Ẹja méjì ni wọ́n fi mu gààrí. +yof_09697_00726950294 Sé gbogbo ìgbà ni òtútù máa ń mú ìwọ ni? +yof_03034_00391575646 Ọ̀kan pàtàkì lára àwọn ẹ̀yà lítíréṣọ àbáláyé Yòrùbá ni eré-oníṣe àbáláyé jẹ́. +yof_02484_01983019780 Má jẹ́ kó dùn mí. +yof_06136_00680095634 Àpẹẹrẹ rere ni ó fi lé‘lẹ̀. +yof_00295_01150444066 Atá ti sá páa lórí. +yof_01208_01799282569 Ẹ yí fáànù náà sókè. +yof_09697_00875588820 Ẹ gbàdúrà kí ara wọn máa ní okun àti àláfíà. +yof_02436_00053848547 Ẹ jẹ́ kí a dá ara wa ní ara yá. +yof_06136_00295644528 Gàní ti mú kọ́kọ́rọ́ lọ. +yof_02484_01813830684 Mo kí wọn pé ‘a kú ojúmọ́’. +yof_03034_00878348105 Ó dáa kí á gbàdúrà kí a tó sùn. +yof_02121_01344246827 Ó ṣeéṣe kí ọmọ ẹ̀gbọ́n wá pá lórí bíi bàbá ẹ̀. +yof_08784_00741374779 Àwọn mélòó ló wà nínú yàrá yìíi? +yof_06136_01971716735 Ọmọ ẹlẹ́pà ti ń sá lọ. +yof_07049_01031676807 Ẹ fún mi ní àsìkò díẹ̀ síi. +yof_03349_01217089714 Ọjà Ọba jẹ́ èyí tí à ń ná ní ọrọọrún. +yof_09334_01579397657 Ǹjẹ́ o mọ̀ pé ó ti ṣẹ́ oyún yẹn. +yof_03349_01668857659 Àpékẹ́ ti bá mi j’íṣẹ́ fún màmá. +yof_07505_01517896411 Ọmọ ìya ológì lókè Mẹ̀sàán ni mí. +yof_07505_00817036781 Àfá ń pè’run láago márùún. +yof_01208_00476721027 Bàtà mi dà? Níbo lo kó wọn sí? +yof_07508_01112119326 Àwọn Akẹ́kọ̀ọ́ ò ní aṣojú mó ní ilé-ẹ̀kọ́ gíga. +yof_09334_01740680086 Ta lo yí ẹ̀rọ amúlétutu sókè? +yof_07049_00326736690 Àrẹ̀mú ló ṣíṣẹ́ náà, ó sì ṣe dáadáa. +yof_07049_00400744683 Májìyàgbé, tìẹ ò ní gbé n’ílé ọkọ. +yof_03349_02073147689 Àyìnlá ní Kúnlé fẹ́ràn obìnrin, ṣé ọkùnrin ni kó wá fẹ́ràn ni? +yof_06136_01988102429 [external] Èmi àti ẹ̀ jà kúrò ni ṣùgbọ́n a ti yanjú ọ̀rọ̀ náà báyìí. +yof_03034_01406706309 Ìwé mímọ́ kún fọ́nfọ́n fún ọgbọ́n àti òye. +yof_03034_00520981556 Ṣé mo jọ òmùgọ̀ ni? +yof_07508_02109019112 Àwọn ìjọba ni wọ́n gbẹ́ ibi ìpọnmi náà. +yof_04310_01628283664 Wọ́n ti gbée lọ sí Ibojì. +yof_02484_02120824187 A sọ fún-un, ṣùgbọ́n kò gbó. +yof_03349_02044174158 Mo rí pẹ́pẹ́yẹ tí ọmọ mẹ́sàn-án wà lẹ́yìn rẹ̀. +yof_07049_00915835146 Àńjọláolúwa lorúkọ àmútọ̀runwá rẹ. +yof_02121_01436186058 Àwọn Túnjí ti pààrọ̀ ẹ̀rọ amóhùnmáwòrán wọn. +yof_02436_01553848354 Mo nífẹ̀ẹ́ ẹyin ojú rẹ. +yof_03349_01620641530 Olú Owólabí ló ko Ìwé ìtàn-àròsọ Ìjà Ọ̀rẹ̀. +yof_07505_01679855606 Ọjọ́ ìbí mi ń bọ̀ lọ́nà. +yof_08421_02115996752 Olú sùn fọnfọn lọ́run. +yof_07505_01021979323 Orúkọ Yorùbá jẹ́ àkàìmọye. +yof_07508_00503101746 Àdákọ ni gbogbo wọ́n ṣe. +yof_02121_01178327964 Kò kúkú sírú ọlọ́run, Ọba tí kò ṣeé pè lẹ́jọ́. +yof_05223_00573679356 Mo nílò olùkọ́ Yorùbá fún ọmọ mi. +yof_07049_00939517829 Ohùn dídùn ni wọ́n fi ń kífá. +yof_02484_01947347844 Níkẹ gbé ọmi sí Àdèyí lẹ́nu. +yof_02436_01958727316 Àwọn arẹwà obìnrin pọ̀ nílùú. +yof_07505_00294960765 Apá Káróunwí ti kán. +yof_09697_01666849818 Àwọn ẹgbẹ̀ agbábọ́ọ̀lù Nìjíríà ní àfojúsùn láti gba ife ẹ̀yẹ ti ilẹ̀ aláwọ̀ dúdú tó ń lọ lọ́wọ́. +yof_00610_01102417881 Èní ni màmá Kọ́ládé yóò fi ilé ìwòsàn sílẹ̀. +yof_02121_00427135576 Fìlà náà dára lórí rẹ̀. +yof_05223_00638657519 Bá mi gbá ilẹ̀ sí Bariga. +yof_07508_00460244025 Ọ̀pọ̀ akẹ́kọ̀ọ́ ní ilé ìwé náà ló mọ̀wé. +yof_03034_00362824215 Mo máa ń lérò pé Bélò ní ọpọlọ ni o, àṣé orí rẹ̀ ò pé rárá. +yof_04310_00272647249 Ṣé kò f’ara pa púpọ̀? +yof_03034_00977433668 Ẹfun ni wọ́n fi ń kọ’ṣẹ́ s’ójúu pátákó. +yof_03349_00699991876 Ìrẹsì àti ẹ̀wà ni oúnjẹ tí mo fẹ́ràn jù. +yof_00295_01897997380 Wọ́n ti da ìdọ̀tí sọ́nà lẹ́ẹ̀kansíi. +yof_06136_00175208137 Oògùn abẹnu gọ̀ǹgọ̀ ni wọ́n ń pèé. +yof_07508_00817136852 Kí la fẹ́ gbà nínú ìjà. +yof_04310_01265456913 Ta ló gbé ọmọ jù sórí àkìtàn? +yof_03034_01217469750 [snap] Aṣọ ìbora wọn dà ná; níbo ni wọ́n fi sí? +yof_08784_00754090942 Èyí ni ọmọ tí mo sọ fún ẹ ní ìjẹẹ̀ta wípé ó ní ìka mẹ́fà. +yof_02121_01888276578 Kí ló dé tí àga yí fi dọ̀tí tó báyìí? +yof_02121_00222177423 Àdògán náà wà ní ẹ̀yìnkùlé. +yof_02121_00367675809 Ọládèjọ kú ikú akin. +yof_00610_01355595385 Àwọn ọsàn náà ti pọ́n. +yof_07505_00302207587 Ẹ̀yin ni atọ́kùn ètò náà, àbí? +yof_03397_01919220752 Wọ́n wà níyẹ̀wù àgbà. +yof_07508_00547664695 Ọmọ náà fẹ́ràn eré àgbéléwo bíi ẹlẹ́dàá ni. +yof_01208_01430688171 Ta ni á kó àjọ ní oṣù tó ń bọ̀. +yof_00295_00988402403 Àwọn ìjọba ti ń da ọ̀dà sí títì ìlú wa. +yof_06136_00913564539 Dàásíkí ni dókítà Ọládìjì wọ̀. +yof_09697_00792170841 Sé o sì lè bímọ sá? +yof_01208_01634241562 Fásúre jẹ́ ògbóǹtarìgì oníṣègùn ní agbègbè yìí. +yof_07049_00834063085 Ó nífẹ láti máa mú ajá rẹ̀ kiri. +yof_05223_00570210136 Ọmọ náà gbé orí mi sí àyà rẹ. +yof_03349_00922269821 Àt’àná ni mo ti ń sùn. +yof_02436_01466352800 Àwọn kan sọ pé mi ò mọ oúnjẹ sè. +yof_07505_01010344544 Ẹsítétì náà rẹwà púpọ̀. +yof_03349_00403845633 Bẹ́ẹ̀ la rí àwọn mìíràn tí ara wọ́n balẹ̀. +yof_09697_01448984055 Ìjọba ti ní kí wọ́n ti ilé náà pa nítori wàhálà tó ń ṣẹlẹ̀ lọ́wọ́. +yof_00295_00564596981 Ìyálẹ̀ta la wà báyìí. +yof_03397_00693722552 Ọ̀rọ̀ tí mo gbó já mi láyà púpọ̀. +yof_02436_01955603978 Ọmọ mi ti wà ní ìpele kẹrin ní ilé ìwé gíga, kí a tó rí oṣù mélo kan si, yóò ṣetán. +yof_02121_01113475613 Arẹ́gbẹ́ṣọlá ti di ògbóǹtarìgì ọ̀ta nínú ayò ọlọ́pọ́n títa ò. +yof_07049_02109086861 Ganíyá fẹ́ràn kí ó ma tọ́jà kiri. +yof_08784_00238781117 Ìwọ-oòrùn Gúsù orílẹ̀-èdè Faransé. +yof_08421_01351600590 Òwúrọ̀ kùtù hàì ni ìyá wọn máa ń gbọ́jà fún àwọn méjèèjì. +yof_07505_00043653156 Ó fẹ́ dì mọ́ọ lát’ẹ̀yìn. +yof_04310_00641107401 Ibi tí wọ́n bá fi mí sí ni mo máa ń ṣọ́. +yof_01208_00434121672 Ṣé iṣẹ́ lo fẹ́ kọ́ àbí ìwé lo fẹ́ kà? +yof_07049_01266389373 Wọ́n ti mú iná lọ kí n tó jí. +yof_00295_01567518085 Bàbá mi sọ ìtàn ìlú wa fún mi, pé láti Ìkọ̀tún la ti wá tẹ̀dó sí Ìrẹ́pọ̀ọ́dùn. +yof_08421_01278137276 Àgbélébú mi ni mo gbé rù lọ́wọ́lọ́wọ́. +yof_00295_01577870447 Ọmọ yìí ò kí ń gbọ́ràn ṣá. +yof_03349_00345672879 Ẹlẹ́hàá ni Ìyàwó Àlàhájì. +yof_02484_00968759546 Ẹ fi ṣàkì mẹ́ta sórí ìrẹsì àkọ́kọ́. +yof_02121_00860975150 Ọjọ́ àbámẹ́ta nìkan ni mo máa ma lọ sí ibiiṣẹ́. +yof_06136_00908691223 Wọ́n ńi ẹgbẹ́ òṣèlú alátakò ló wọlé ní ìjọba ìbílẹ̀ Kájọlà. +yof_07505_01004952572 Ọmọ bùjẹbùdànù l’Àrẹ̀mú. +yof_09697_00259351097 Mi ò ní ìdáhùn sí ìbéérè náà. +yof_03397_00067643311 Ìgbéraga kò dára rárá. +yof_03397_00804328212 Isiah àti Arógunyò ń fẹ́ obìnrin kannáà. +yof_08421_00892616823 Ṣé wàá jẹ ìrẹsì àt’ẹ̀wà? +yof_02484_00421934951 Mo ti yọ iṣẹ́ Kòfẹ́sọ̀ dànù. +yof_01208_00819770869 Nígbà kan rí, ó ní’fẹ̀ẹ́ Bọ́lá. +yof_06136_01151773106 Jẹ́ ki mọ̀ mọ tí ó bá ti ń lọ sí ilé yin. +yof_07049_00159882110 Ẹ gba Jésù s’ayé yín. +yof_03397_00093092142 Ṣé o ti rí abọ́ ẹlẹ́ta rí? +yof_03034_00397823787 Àwọn olè ja ilé ìfowópamọ́ náà. +yof_06136_01956124024 Túndé ní ìfẹ sí àti máa fi ẹ̀wà jẹ ọ̀gọ̀dẹ̀. +yof_08421_00679894713 Wọ́n pa ọmọ yín lẹ́kún. +yof_00295_01771440187 Fájídé ò ní ọpọlọ bó tilẹ̀ wù kó kéré mọ. +yof_03034_02024877653 Ọ̀dájú ọmọ pátá gbáà ni. +yof_03349_01468949885 Àwọn mìíràn ri obìrin gẹ́gẹ́ bí ẹ̀dá tó nífẹ sí ohun ọ̀fẹ́. +yof_02121_00760901890 Ó ní ìmọ̀ púpọ́ ní ọpọlọ. +yof_04310_00506487301 Ìyàwó rẹ ní owó jùú lọ. +yof_00295_01184665114 Àwọn kọ́ọ̀sì yíì dára gan o. +yof_08784_00636772066 Ṣẹ̀ṣẹ̀ ni inú mi ń dùn. +yof_02121_02128826686 Ó wọ aṣọ kannáà tó wọ̀ lọ́sàn ijọ́ tó kọ́kọ́ kànlẹ̀kùun ẹ. +yof_03397_01827060981 Bàbá kan wà tó sọ fún egúngún pé kí ó jíṣẹ́ fún ọmọ òun pé kó fi àgùtàn rúbọ. +yof_07049_01290018931 Mo gbọ́ ìròyìn àwọn ọmọ ìyá méjì tí wọ́n fi ara wọn ṣe ògùn owó. +yof_06136_00517965312 Kí lẹ fẹ́ kọ, ṣé kí n bá ẹ kọọ́. +yof_07508_01863905447 Èdè Yorùbá dùn-ún sọ. +yof_01208_02047885288 Láti jẹ́ ọkùnrin, iṣẹ́ ńlá ni. +yof_06136_00566491540 Owó tó san ti pé. +yof_06136_00877626961 Gángan ni ọ̀rọ̀ ilé ayé, bí ó ti kọjú sẹ́nìkan, ẹ̀yìn ló kọ sẹlòmíràn. +yof_07505_00441090939 Mo fẹ́ ra àgbàdo. +yof_09334_01107654466 A fẹ́ lọ dá aṣọ náà padà sí ilé aránṣọ. +yof_03397_00760492847 Ọ̀pọ̀ ènìyàn ni mi ò kí bá sọ̀rọ̀ mọ́. +yof_02121_00226977851 Ojú ò ní tìyín lágbára ọlọ́run. +yof_08784_00484289260 Dáníẹ̀lì wọ bàtà dùbúlẹ̀. +yof_05223_01758594289 Ó dàbí ẹni pé àgùntàn Bísí sanra ju ti Bọ́lá lọ. +yof_03397_01408050296 Ejò náà gbé ẹran mì. +yof_02484_01008603985 Díẹ̀ ni tìẹ níbẹ̀, Abíkẹ́, ọmọ Monífádé, ara ìsokùn. +yof_00295_00427144639 Yọ ipin ojú ẹ kí o tó máa wo ti ẹlòmíràn. +yof_07049_01355198658 Oògùn ni wọ́n tà lọ́jà. +yof_02121_01272650038 Òkú kò le yin Olúwa. +yof_00295_01180575643 A rí erinmi ní Ìjẹ̀bú nínu igbó. +yof_02436_00554684236 Ẹnu-Ọwá la ti ń d’ádé. +yof_05223_00893102907 Ọ̀rẹ́ pàtàkì ni èmi àti ẹ̀gbọ́n bàbá e nígbà tó wà láyé. +yof_03349_01301743291 Ẹyin tútù ló wà. +yof_03034_01539186019 Ẹgbọ́n rẹ̀ ni ó rẹ̀ẹ́ lẹ́kún. +yof_08421_01351103764 Ọmọ iṣẹ́ méjì ló wà ní ibi iṣẹ́ yín. +yof_00610_01331462627 Ó tó gẹ́ẹ́ báyìí. +yof_09697_00660206593 Kókó àti àkàrà la fẹ́ jẹ lónìí. +yof_05223_01568584354 Àwọn ènìyàn kìí sábà fi ààrò dáná mọ́. +yof_00610_00486687322 Mo nífẹ̀ẹ́ láti máa jẹ edé. +yof_00295_00154186764 Ilé-iṣẹ́ agbóhùnsáfẹ́fẹ́ kan ní Jákànde ni ó fi ọ̀rọ̀ náà lọ̀. +yof_00610_00338451578 Yorùbá gbàgbọ́ pé àbíkú ọmọ́ wà lóríta mẹ́ta. +yof_08421_01771922192 Mary Slessor ló dáwọ́ kí a máa pa ìbejì dúró ní orílẹ̀-èdè Nàìjíríà. +yof_06136_01029156035 Mo nífẹ́ sí àwọn orin Lágbájá. +yof_07508_01634236773 Mẹ́ta ni àwọn òṣèrè Ìjẹ̀ṣa tó ń gbé ìlú yìí. +yof_06136_01712627096 Ẹní fẹ́ pẹ́ láyé, ṣé ojú rẹ̀ ò ní rí ibi? +yof_06136_00276239440 Ẹ wòó bó ṣe da ẹnú sílẹ̀. +yof_03397_01227075578 Aríṣekọ́lá ṣe dada nínú ìdánwò. +yof_09334_01533109059 Ìjá bẹ́ sílẹ̀. +yof_07049_02038390680 Àwọn ilé Èkó máa ń rí wọ́gọwọ̀gọ. +yof_02436_01190510905 Bàbá yẹn kìí gbọ́ràn, àfi’ìgbà tó bá súu. +yof_08421_02135494867 Ọ̀rọ̀ kátikàti wo lò ń sọ gan ná. +yof_08421_01273029204 Àwẹ̀ìwẹ̀tán ni omi ọ̀sà. +yof_06136_01430869154 Máa tọ́jú mi, Jèhóvà ńlá. +yof_07505_00702744514 Ọmọ náà fẹ́ràn láti ma wò mí. +yof_02436_02039092927 Àmọ̀jù ní ń b’ẹ́kùn sàáré jẹ́. +yof_07505_00761596969 Irú irun wo lo wá gé sórí báyi? +yof_03349_00908784246 Ọ̀lẹ ni ọkùnrin náà. +yof_04310_00976803357 Ta ló ni pángolo? +yof_03397_00386441079 Ìlẹ̀kẹ̀ mẹ́ta ló wà lọ́run Ọba. +yof_00295_00161816699 Ìfẹ́lódùn lorúkọ ẹgbẹ́ náà. +yof_03034_02033899438 Ọ̀dájú n'ikú, bó ṣe ń pa lọ́tùn-ún ló ń pa lósì. +yof_07508_00903578071 Ojọ́ mẹ́wa ni ó kù kí a kásẹ̀ gbogbo ètò nílẹ̀. +yof_07049_01386967596 Bàbá àti ìyá mi ló fún mi lówó tí mo ná. +yof_00295_00708065118 Mo júbà àwọn tó layé, àwọn tọ́ ti wà k’áwa tó dé. +yof_02484_00832296930 Ìwọ náà ti délẹ̀ yí, omí ti ta síi díẹ̀. +yof_00295_01428115987 Kí lò ń jẹ tó dà bí aràn yí? +yof_00610_01386277363 Adésuà mọ bí yóò ṣe bá wa mú orí rẹ̀ wá’lẹ̀. +yof_00295_01356537233 Ọmọ yẹn ní ẹwà. +yof_07505_00008820380 Kí ló dé tí irọ́ rẹ pọ̀ tó báyìí? +yof_09334_01502821399 Lára ìlú tó wà ní ẹkùn Ìlà-Oòrùn Àríwá ni Adamawa àti Bauchi. +yof_07049_01597535678 Wọ́n rí àjẹ́ kan l’ọ́san gangan n’íbàdàn. +yof_00610_00150274400 Ti ilẹ̀kùn kí o bá mi ní ojú ọ̀nà. +yof_00610_01172005325 Àkọtọ́ òde òní yàtọ̀ sí ti àtijọ́. +yof_00295_00061502962 Sítẹ́là ní ebi ń pa òun. +yof_03349_01977905254 Ògúnlàjà fẹ́ran kí àwon èèyàn ma sa òun. +yof_09697_01853091173 Akọ̀wé bàbá mi máa ń dá sí àwọn ẹjọ́ tí kò kàn-án. +yof_05223_02067421566 Àjàlá òun Àyìnlá ti ń ṣe ọ̀rẹ́ láti ìgbà kékeré wọn, inú agbolé kan ni wọ́n bí wọn sí. +yof_02484_01688731934 Orí ibùsùn yìí ni gbogbo ìṣẹ̀lẹ̀ yìí ti ṣẹlẹ̀. +yof_02121_00254942458 Akíntóyè ni àbígbẹ̀yìn màmá rẹ. +yof_08421_00434188710 Ipele àkọ́kọ́ ní fásitì ni mo ti pàdé ìyàwó mi. +yof_02484_00211914099 Màá ṣe iṣẹ́ náà nítorí ó dá lé orí àwọn ìwé Fágúnwà. +yof_02121_01204042551 Ẹ̀yìn ilẹ̀kùn ni a máa ń kó ìgbálẹ̀ àti ìkólẹ̀ sí. +yof_07508_00473598921 Òpó iná náà ti wó lulẹ̀. +yof_07508_02094450877 Wọ́n lọ ra ìrèké. +yof_06136_02120628850 A fẹ́ lọ ra omi ní ọjà Baṣọ̀run. +yof_03349_00019721518 Aṣọ ńlá ni ọbá máa ń wọ̀ lọ sí jímọ̀. +yof_02121_01525575070 Bọ̀dá mi yóò mú mi lọ sí ìlú òyìnbó nígbà tó bá ń padà lọ. +yof_01208_01686148829 Fi sí àarín ọkọ̀ yẹn. +yof_03397_02027479857 Yẹtí mẹ́ta ni wọ́n ṣẹ̀ṣẹ̀ rà fuń-un. +yof_02121_01194119411 Mo rí nǹkan tó jọ bẹ́ẹ̀. +yof_02436_00255535432 Ó ṣe pàtàkì láti mọ̀ pé gbogbo ohun tí Ifá sọ yìí ni wọn yó kọ sílẹ̀. +yof_01208_02088685648 Àwọn ọ̀rẹ́ Adéṣẹwà ń jowú rẹ̀ nítorí ẹni tó ń fẹ́ nísìyí ní owó púpọ̀. +yof_03034_00961577784 Ilé olókè mẹ́rin ni wọ́n kọ́. +yof_02121_01404748562 Ṣé o ti gbọ́ nípa owó tí wọ́n ní ka fi ránsẹ́? +yof_07049_00801845713 Ohun ọmọ náà dùn. +yof_00610_01355408107 Láti ojú fèrèsé ni mo ti ń rí gbogbo ohun tí wọ́n ń ṣe. +yof_00295_00635387478 Ọlọ́run má jẹ́ a rí ìjà omi. +yof_02121_00914096642 Ọjọ́ ọdún ni a bí Abíọ́dún. +yof_09697_00498508152 Atọ́batẹ́lẹ̀ ra ọ̀gẹ̀dẹ̀ wá. +yof_04310_02045852950 Bàbá mi ní ọ̀rọ̀ kán wà tí òun fẹ́ bá mi sọ. +yof_02436_01238637818 Ta ló lágbára jù nínú iwin àti egbére. +yof_00610_01503756926 Ètò ẹ̀kọ́ alákọbẹ̀rẹ̀ ṣe pàtàkì. +yof_07508_01766218068 Ẹ ò ká aṣọ wọ’lé kí òjò tó bẹ̀rẹ̀. +yof_07505_00062924003 Àwọn bàbá bàba mi ló tẹ ìlé yi dó. +yof_05223_02044544241 Ilé rere ni wọ́n ti wá. +yof_02121_00215059350 Oyín ta á, ó sì sá lọ. +yof_07505_00348278570 Kò fẹ́ kí á ṣeré ìfẹ́. +yof_08784_00327138730 Kò ní mú ọgbọ́n wá tí a ò bá dá owó tó kù padà. +yof_06136_01392507828 Wákàtí kan ni mo fún ẹ láti dé ibí. +yof_03397_01034461155 Ẹ̀sìn òkèrè ni ẹ̀sin Krìstẹ́nì. +yof_01208_01944365489 Ọ̀rẹ́ mi àtàtà, kí lo fẹ́ kí n fún ẹ jẹ. +yof_02436_01458271441 Ara ò ní ni wá o. +yof_03034_01446696064 Ìdọ̀tí ti pọ̀ jù l’Ékòó. +yof_00610_02042447831 Alágídí èyàn ni Odùújókòó. +yof_07049_00313558137 Wá bá mi re èékán mi. +yof_05223_01159658335 Onímọ̀ ìṣègùn ni ọmọ mí sọ pé òun fẹ́ fẹ́. +yof_02484_01739384373 Ọpọlọ ọmọ yẹn dà bíi ti Dámilọ́lá. +yof_07049_02051094706 Ẹni rere ni alábàágbé mi ti mo sọ fún ẹ nípa ẹ̀. +yof_02121_00227440284 Mo ti fi àtẹ̀jíṣẹ́ ránṣẹ́ sí alága lórí ọ̀rọ̀ owó orí tí a fẹ́ san. +yof_09334_00069505935 Ǹjẹ́ o ti dé olú ìlú orílẹ̀-èdè rẹ rí? +yof_07508_00190659622 Bí bàbá bá ń rìnrìn àjò, kí wọ́n má gbé àtùpà dání. +yof_00295_00069502356 Ẹ rora sáré l’ójú ọ̀nà. +yof_03034_00459752949 Bọ̀dá Táyé ti lọ sí Mecca ní ọdún tó kọjá. +yof_08784_00256254723 Ẹsẹ̀ ń ro ó púpọ̀. +yof_02121_01026302017 Oríṣi bàtà méje ni màmá mi ńi. +yof_03034_00992189887 Aláǹgbá sáwo inú ògiri lọ. +yof_09697_01145041809 Ọlọ́run má jẹ ká r’ógun àìsàn. +yof_00295_01840727886 Mo ṣàkíyèsí wípé ọmọ náà ní ìgbéraga. +yof_06136_01738843337 Olámìdé ti gbé àtẹ wàhálà rẹ̀ dé. +yof_03034_01556118428 Wọ́n ń fá irun ara òkú náà. +yof_08421_01334384825 Ijọ́ ìgbéyàwó mi, ẹ ó ríran wò. +yof_08421_01304470463 Àwọn ọlọ́jà ò tíì dé. +yof_05223_01368956376 Akínwùnmí fẹ́ kọ́ bí wọ́n ṣe ń ka ewì. +yof_08421_01717037074 Òru ni àwọn àjẹ́ máa ń ṣe ìpàdé. +yof_00610_01174380407 Ìmọ̀ràn náà dára, a ó múu lò. +yof_00295_01510746009 Ibà ló ń ṣe é látàárọ̀. +yof_05223_01388550871 Orí páànù ni wón sá ẹran oníyọ̀ sí. +yof_03349_01041962042 Aṣọ tí ìyàwó rẹ wọ̀ gbayì, ó gbẹ̀yẹ. +yof_06136_00634072030 Àkàrà àti Ògì òyìnbó ni ìyàwó mi sè l’ówurọ̀ àná. +yof_04310_00813235591 Màmá àgbà sọ fún Lájídé pé kó lọ gba àródan wá. +yof_03034_00249866285 Ó ti jí ẹran jẹ nínú ìṣasùn. +yof_05223_01594866710 Iṣẹ́ àmúrelé tí ọ̀jọ̀gbọ́n Ajíbóyè fún wa le gidi gan o. +yof_03349_00713908097 Ọmọ ló kù ta ǹ tọ́rọ́ fún wọn. +yof_02121_02033924178 Ẹyin mẹ́fa ni kí wọ́n dín fún gbogbo yín. +yof_06136_00016098074 ọkọ̀ àlùbọ́sà ni mo rà. +yof_03349_01417324168 Mo máa lọ sí Àbújá ní oṣù kẹ̀sàán. +yof_08421_00139493817 Ẹ̀gún gún ọmọ náà lẹ́sẹ̀. +yof_04310_01328630448 Wọ́n sá eré àsápájúdé. +yof_08421_01661644540 Ẹyẹ abàmì ni ẹyẹ igún. +yof_07508_01764551702 Baba ńlá ìyà ni won ìbá jẹ tí m bá rí wọn mú. +yof_08784_00479110965 Báǹkì wo lò ń lò ná? +yof_08421_00650421505 Ta ló fi omi tí mo pọn wẹ̀. +yof_05223_01772150238 Ǹjẹ́ ó dára kí a pa iṣẹ́ jẹ bí? +yof_07049_01719560442 Oò kígbe l’óhùn rárá. +yof_06136_00206021326 Iṣẹ́ tó dára ni iṣẹ́ ìmọ̀ ẹ̀dá èdè. +yof_03397_00461398457 Inú mí dùn lóríi bí àwọn elére ìdárayá náà ṣe fakọ́yọ lórí pápá ìṣeré. +yof_07505_00373776736 O jọ ẹni tí yóò ní ẹ̀mí gígùn. +yof_09697_00116176110 Iṣẹ́ alágbẹ̀dẹ ni bàbá mi yàn láàyò. +yof_03349_01469603012 Ọmọ náà dọ̀tí bí ẹlẹ́dẹ̀ igàn. +yof_07508_02036500710 Ilé-ifẹ̀ wà ní ìpínlẹ̀ Ọ̀ṣun. +yof_09334_01757345148 Àìsàn èjè ríru ló ṣekú pa olóyè. +yof_07049_00279339129 Gbogbo ara ni mo fi ń kí ẹ. +yof_09334_01138564937 Gbogbo àwọn ọ̀dọ́ ló fẹ́ sá kúrò l’órílẹ̀-èdè yìí. +yof_07505_01938142382 A ò ní gbà, ó ti hàn pé ẹ ti pàdé ọrẹ́ yín lọ́nà. +yof_09697_01599872597 Bí àwọn dókítà mìíràn ṣe máa ń bá’ni sọ̀rọ̀ kò daá rárá. +yof_07049_01352344402 Mo ya ìwé náà sí méjì nítorí inú bí mi gidigidi. +yof_06136_00605241039 Orí òkè náà ga gidi gan. +yof_08421_00320059067 Ilé ìjọsìn wa ni tósìn ti kọ́ dúrúu titẹ̀. +yof_00610_00719829330 Nígbà wo lò ń padà lọ sí ìlú yín ná? +yof_09334_00442906698 Àwámárììdí ni Olódùmarè. +yof_03034_00385355112 Ìdí Àràbà ni Ìyálọ́jà ń gbé. +yof_02121_00560325872 Inú balùwẹ̀ yìí ṣe ń rùn báyi? +yof_07508_01708018951 Gbogbo ara ló ń wọ́ mi. +yof_03034_00758919241 Mo fẹ́ran ilé ìtura náà. +yof_07049_00975173110 Àwọn mìíràn gbàgbó pé bí èyàn ṣe ń d’àgbà síi ló ṣe jẹ́ kó l’óye síi. +yof_07505_00496759467 Iṣẹ́ ṣí pọ̀ nílẹ̀ táa fẹ́ ṣe. +yof_00295_00434743286 Abẹ́ àtíbàbà ni ìpàdé náà yó ti wáyé. +yof_07505_02074988661 Ọlámide a máa fi gbogbo ọ̀rọ̀ ṣàwàdà, àwàdà sì máa ń kóbáa nígbà mìíràn. +yof_03034_00893415284 Ẹran ọ̀sìn ni àgùntàn, ewúrẹ́, òbúkọ, ẹlẹ́dẹ̀ àti màálù. +yof_07508_00288539493 Ọbaléndé ni mo gbà lọ sí Àjáh. +yof_06136_01064555289 Òkuta tó bàá lórí ló mú kí ẹyín mẹ́ẹ̀ẹ́dógún fò yọ lẹ́nu rẹ̀. +yof_03397_01499237739 Ọlọ́run, ṣàánú fún wa lórí ọ̀rọ̀ tó wà nílẹ̀ yìí. +yof_02436_00656157829 Kan ilẹ̀kùn pẹ̀lú sùúrù. +yof_00610_00938306018 Gbé kọ́ọ́pù tí ó wà ní abẹ́ ibùsùn ẹ̀gbọ́n rẹ wá. +yof_08421_01035332534 Ìyàwó ilé tí ò mọ oúnjẹ sè, kí ni ka ti gbọ́? +yof_04310_01178816266 Ṣé o ti rí ilé kòkó ní Ìbàdàn rí? +yof_08784_01606463174 Nígbà tí ogún wọ ìlú, abẹ́ àpáta ni èmi àti àwọn mòlẹ́bí mi fara ṣoko sí. +yof_03397_01070230204 Ká má baà jìyà la ṣe bí Májìyàgbé. +yof_02484_01440813087 Ibi tí mo fẹ́ yà sí pọ̀ gan. +yof_08784_00012858083 Ìbẹ́pẹ náà dùn púpọ̀. +yof_00610_01201524433 Orógbó náà gbó keke. +yof_05223_00707107553 Wọ́n ni ilé àwọn Jẹ̀lílì l’àwọn ń lò. +yof_06136_01773820677 Níjọ́ tí Herbert rí Monisọ́lá, kò lè gbójú kúrò lára rẹ̀; Ó fẹ́ẹ̀ lè ma játọ́ lẹ́nu. +yof_03034_02130000328 Túndé jẹ mí ní ẹgbẹ̀rún mẹ́wàá náírà. +yof_01208_01219855554 Kò sí bí igimú alágbàro ṣe gùn tó ẹni tó gbéṣẹ́ fún lọ̀gá. +yof_00610_00613091883 Kí Ajíjọlá wọlé kí á jọ ṣeré. +yof_05223_01782832065 Mo fẹ́ kúrò ní gbogbo sàkání tí wọ́n ti mọ̀ mí rí. +yof_02484_00426624340 Ìṣoore-olúwa ni orúkọ tí wọ́n fún ilé náà. +yof_00295_01192786224 Ẹ jẹ́ ká ṣeré nínú òjò. +yof_07508_00024816106 Ọgbà àjàrà ni ó yí ilé náà ká. +yof_07049_01950766461 Ẹ kú àṣekù ọdún. +yof_02121_01321903994 Ikú a sọ gbogbo ilé d’ahoro. +yof_07508_00761386400 [snap] Lọ já ewé efinrin wá. +yof_09334_01528222027 Yàrá àwọn Similólúwa tóbi gan. +yof_00610_01962497552 Ẹ̀rọ ìlọṣọ àwọn Bàba Péjú ti jó aṣọ Ìya Wálé. +yof_00610_00227986202 Àníyàn gidi ni ó fi kọ ìwé náà. +yof_02484_01006650717 Mo ti rí ìdí tí kò fi yẹ kí ó jẹ́ ọ̀rẹ́ mi ni. +yof_02121_00713271015 Láti mú ọjọ́ ni wàhálà. +yof_09697_01891290845 Ọ̀fẹ́ ni mo gba àwọn ike náà. +yof_02436_00043994347 Ààrẹ orílè-èdè Nàìjíríà ni Mohammadu Buhari. +yof_01208_01761474897 Làpálàpá wà l’órí ẹ. +yof_03397_00938589490 Ìjẹta ni òjó rọ̀ kẹ́yìn. +yof_02121_00479050694 Màlú mẹ́ta la pa fún ọdún. +yof_05223_00672430975 Kádírì ń jẹun bíi wọ̀bìà. +yof_01208_01727127192 Èló ni wọ́n ń ta ìwé náà? +yof_03034_00839073614 Ẹ̀kọ́ dára púpọ̀, òun sì jẹ́ ìkan lára oun tí a nílò láti di ẹni gíga l’áwùjọ. +yof_03349_00163875259 Ọwọ́ méjì ni wọ́n kó sí inú ẹ̀. +yof_00295_02141381381 Ẹ gbé iléelẹ̀ yín wá fún àwọn agbálẹ̀. +yof_02121_00451716211 Àrá ló ya ògiri yí lulẹ̀. +yof_07049_01261727959 Omi adágún kan wà ní ẹ̀yìn ilé-ìwé mi. +yof_09334_01531532599 Àárẹ̀ náà ti wọ inú ara rẹ̀ tán. +yof_00295_01899318031 Èbìtì ò ní pa eèrà láíláí. +yof_07508_00461007987 Ayé ń sáré tètè bí ọkọ̀ akérò. +yof_07505_00742649507 Ìgbàgbọ́ mi dúró lórí olúwa. +yof_07508_00250364944 Kiní kan ti fẹ́ sí mi lójú. +yof_03034_01916752308 A ó pàdé nílé ẹjọ́ tàbí àgọ́ ọlọ́pàá. +yof_08421_01662489750 Wọ́n ti fi jọba Ìlú Alábà. +yof_06136_01885345989 Pàtàkì ni àdúrà nínú ohunkóhun. +yof_09334_02080600732 Àgbọ̀nrín mẹ́ta ń sọdá. +yof_03034_01019745955 Yànmúyańmú ń kùn sí mi létí. +yof_02436_00111533593 Moyọ̀ àti Bíbí ń bínú sí ara wọn. +yof_02121_00453631041 Wọ́n rí ọmọ tuntun kan lórí ààtàn. +yof_07505_00307512205 Àwọn ìwé náà kò dára rárá. +yof_07508_01891187502 Mò ń lọ sí ilé Ìya Ṣọlá. +yof_08784_02114367389 A ti parí ìjà wa lánàá. +yof_07508_01698067682 Ìgà ni wọ́n ń pe Àfín ní Èkó. +yof_08421_01254877202 Agége ni ilé àwọn Ọlámilékan wà. +yof_03034_01044506045 Kò sí oun tó ń bọ̀ lókè tí ilẹ̀ ò gbà. +yof_07508_00371216868 Ó ṣe pàtàkì láti mọ̀ pé gbogbo èdè kọ́ ni ó wà ní ti kíkọ sílẹ̀. +yof_09334_01299705305 Mo rí àwọn alábójútó ilé ìwòsàn kan tí ó ń mú kí ohun tí a gbà sílẹ̀ dára. +yof_08421_01488517830 Inú igbó ló wà tí àwọn agbófinró fi múu. +yof_08784_01850224019 Ayé fẹ̀ ju òṣùpá lọ nítòótọ́. +yof_00610_00078296593 Tí o bá rí ọkùnrin tí ó ń bá ẹ gbọ́ bùkátà díẹ̀, o jẹ́ má jẹ kó lọ mọ́ ẹ l’ọ́wọ́. +yof_05223_01505324070 Ìbejì ọ̀ràn ni wọ́n fẹ́ yà. +yof_02121_00058395979 Omí ti dànù. +yof_00295_00278884696 Jùwọ́n ló gbà mí sílè nígbà tí wàhálà pọ̀ fún mi. +yof_02121_01828918915 Ta ló kọ ìwé náà? +yof_05223_01807961868 Ọmọ bọ̀dá Kofí ṣubú. +yof_03034_00296669137 Ọmọ rere ni ẹ́, àbí bẹ́ẹ̀ kọ́? +yof_00610_00403442400 Ọṣẹ ni mo lọ rà. +yof_08784_00260884752 Ó yà mí lẹ́nu, ètè mí yà pẹ̀lú. +yof_05223_01079017715 Nínú ere àgbéléwọ̀ náà la ti rí ibi tí ọkọ ti fọ’nu fún aya rẹ̀. +yof_05223_01923553900 Rántí jẹ ohun tí ẹ gbé kalẹ̀. +yof_06136_00677990391 Mo ò gba ǹkan tì lọ́wọ́ ẹ̀. +yof_00610_00681948748 Ìfẹ́ náà múmi lọ́kàn, mi ò rí oorun sùn. +yof_02436_00019780451 Wọ́n ti mú Èmánúẹ̀lì lọ sí ibi tí yóò ti kọ́ bí wọ́n ti ń ṣe bàtà. +yof_03349_01738541207 Àwọn ọ̀rẹ́ méjì ń ya àwòrán láàárọ̀ ọjọ́ náà. +yof_02436_00420088301 Kò bìkítà bóyá ó dára tàbí kò dára. +yof_00295_00871016206 Jẹ́ ka fi bọ̀lì ṣe oúnjẹ ọ̀sán. +yof_02121_00443892123 Ọbẹ̀ náà ta sáńsán. +yof_00610_01881016403 Èdè Yorùbá ti di kíkọ sílẹ̀ kó tó di ìgbà yí pàápàá. +yof_06136_01778669469 Ilé-iṣẹ́ tí bàbá Bọ̀dé ti ń ṣiṣẹ́ ló ṣe agbátẹrù ìdíje náà. +yof_03349_00376784731 Òkédìjí ló sọ bẹ́ẹ̀ nínú ìkan lára àwọn ìwé ẹ̀. +yof_07505_01764281793 Akànlé ni bàba Àìná ń ṣe bí iṣẹ́. +yof_08421_00964263372 Kíni a mọ Ọbásanjọ́ fún? +yof_03034_01026748314 Ṣòkòtò náà dára lára rẹ̀. +yof_01208_00906739535 Ta ló mọ̀ ẹ́? +yof_09697_00256783290 Mo ò lọ sí ibìkankan pẹ̀lú ẹ. +yof_03397_00977047253 Olúwa ọba o ṣé o, mo rí isó só bẹ́ẹ̀ ni mo rí ìtọ̀ tọ̀. +yof_01208_00346090376 Mo ti gbé omi sí ẹ̀yìn ilẹ̀kùn. +yof_02436_01068390786 Ó ti dùbúlẹ̀ sórí ibùsùn. +yof_09697_00527325678 Adéyanjú ni alága ìgbìmọ̀ ètò ìdìbò. +yof_03349_00109019121 Ṣe bí o ti mọ, ẹlẹ́wàa Ṣàpọ́n. +yof_07049_01378993031 Eégún kìí gba iwájú ilé wa kọjá. +yof_00610_01632303259 Iṣẹ́ ajé ló s’ọmọ nù bí òkò. +yof_08784_01742425591 Ẹ báwa s’àmín ẹ̀, oríi wa ò ní burú. +yof_09697_01955426968 Anímáṣahun ti gba ife ẹ̀yẹ tuntun. +yof_04310_01892910806 Ẹnu-Ọwá ni bàbá kọ́’lé tuntun rẹ̀ sí. +yof_07049_00360321482 Ó gbọ́ràn sí mi lẹ́nu. +yof_03397_00003671547 Ibi tí mo ti ń ṣiṣẹ́ nìyí. +yof_07505_00974694815 À ń lọ sí Ìfẹ́lódùn lọ ṣe ayẹyẹ. +yof_00610_02147076442 Nínú èrò tí Elédùmarè fi jíǹkí ẹ̀yà Yorùbá ni ọ̀nà tí a fi ń ṣe òǹkà tó múná dóko. +yof_00610_00532096047 Wọ́n ti ń pè’run ní mọ́ṣáláṣí. +yof_06136_00574517508 Jẹ́ kí á lọ bẹ̀rẹ̀ ìgbé ayé tuntun níbi tí enìkan ò ti mọ̀ wá. +yof_09334_00512043849 Mo gbádùn yàrá tí mo wà. +yof_03349_01416029040 Ìṣe ẹni ní ń sọni dẹni gíga. +yof_03349_00807014507 Ṣé dáadáa lo wà lásìkò yìí. +yof_08784_00344899205 Ojú Ọlọ́bùn ni ilé ìjọsìn àwọn Tósìn wà. +yof_02484_01530360621 Bọ̀dá Ràṣídì ni wọ́n fún Òkìkí ní owó oúnjẹ àárò yìí. +yof_06136_00656128867 Ìjẹ̀bú ni bàbá ọmọ náà ti máa ń wá. +yof_03349_00891839080 Ní ìrìn-àjò tí mo lọ, mo rí odò kan tí à ń pè ní odò aláró. +yof_08784_00863177358 Ta ló fi j̣ẹ oyè Ajírọ́ba? +yof_03349_01964933670 Àmínátù ní òun fẹ́ jẹ́ kí n fẹ́ òun gẹ́gẹ́ bíi ìyàwó. +yof_02436_01200814924 Ẹniyàn mẹ́rin ló ti ra ọkọ̀ tuntun láti ọdún tó kọjá. +yof_03349_01383192585 Báwo ni mo ṣe fẹ́ parí iṣẹ́ yìí na? +yof_03349_00960224235 Olóńgbò náà ń lé eku kiri nínú ilé. +yof_02121_01620419686 Dọ́kítà ní kí wọ́n máa mu omi láàárọ̀ kùtùkùtù. +yof_07505_01916019763 Ẹ má jẹ́ kí àwọn alágbára fi ọwọ́ ńlá gbá wá lójú. +yof_08421_01669660582 Ilé-ifẹ̀ ni ọdún Ifá ti máa ń bẹ̀rẹ̀ káàkiri gbogbo àgbáńlá ayé. +yof_00295_01420486087 Àwọn ajá igbó wà nínú igbó kìjikìji náà. +yof_03349_00030437901 Orí ń fọ́ mi láti oṣù kejì. +yof_09334_01949099296 Ẹ̀gbọ́n mi ti ṣe ìgbéyàwó ní ọ̀sẹ̀ tó lọ. +yof_01208_01122851509 Aré bóòlù èní dùn. +yof_08421_01651152388 Akẹ́kọ̀ọ́ ni wọ́n ń bá sọ̀rọ̀. +yof_07508_01015589913 Mi ò mọ ẹyẹ tó ṣu Adébóyè. +yof_02121_00540921862 Fásitì Èkó ni ilé ẹ̀kọ́ gíga tí Àrẹ̀mú gbà pé ó dára jù ní orílè èdè yìí. +yof_04310_00338359348 Ó bá mi mú ẹran wá. +yof_05223_01819100625 Èjì bí èjì l’àgbà ń tayò. +yof_07505_00118794674 Ikun’mú ọ̀tún ti fẹ́ bọ́ si ti òsì nígbà tí ó bí àkọ́bí rẹ̀. +yof_00295_00939989128 Àdúrà fún àwọn ológun Orílẹ̀-Èdè wa àti ìdílé wọn. +yof_02121_01763182985 Bá mi gbé ìwé wá. +yof_03349_00295023738 Ó ti ya wèrè ni? +yof_02121_01097480907 À ná tó ẹgbẹ̀rún náírà sí nǹkan ọ̀hún. +yof_08784_00301460241 Akin ti lọ ra súyà wá. +yof_08784_01510588097 Ìwé ìròyìn márùn-ún n wọ́n kọ̀ọ́ sí. +yof_07505_00541120679 A ti di àjèjì ara wa. +yof_03349_02027858799 Ejò paramọ́lẹ̀ burú púpọ̀. +yof_07508_00982432175 Ó ṣì jẹ́ ẹgbẹ ni àpo kan. +yof_06136_01623819071 Kò yé mi o, ṣé Oshòdì lo wà? +yof_03397_01988675719 Orò máa jáde lóru òní. +yof_02121_00020079300 Ẹ bu ẹmu díẹ̀ fún òun náà. +yof_09697_00041565012 Àwọn aṣọ híhun náà rẹwà púpọ̀. +yof_09697_00864832296 Nígbà tí mo ka ìwé Fágúnwà náà, mo gbé sàdáńkátà fún-un. +yof_06136_00379738451 Ṣé o ti gbọ́ nípa ọdún òkè ìtaṣe rí? +yof_06136_00959726417 Ó yẹ kí ó sọ fún mi ná kó tó di pé ó gbé ọ̀rọ̀ náà lọ sí ọ̀dọ̀ bàbá àgbà. +yof_08784_00395906675 Mo rí àrà meèrírí, ó kọjá ohun tí mo ti gbọ́ tẹ́lẹ̀. +yof_06136_00252320632 Tutù ní èjí ní eyín rẹ̀. +yof_00295_01944705955 Oríṣiríṣi ìtan dówe ló wà. +yof_09334_02129116641 Ìdàgbàsókè tí ń bá ìlò ède Yorùbá nípa ìmọ̀-sáyẹ́ǹsì. +yof_09697_01906894462 Àwọn ọmọ alásẹ́wó pọ̀ lọ̀nàa Lekki. +yof_09697_00459484733 Wọ́n ti lọ fọ’bọ́ níta. +yof_00610_00215942120 Yorùbá bọ̀ wọ́n ní kí ilà ó tó di oge, ó ni ohun ojú rí. +yof_07505_01148674606 Oríṣi bàtà kan ni àwọn ọmọ ìyá náà rà. +yof_06136_01516345648 Ó fún-un lọ́tí mu. +yof_00610_01744276413 Fẹ́rànmí ti wà ní ilé ìwé gíga. +yof_08421_02003206429 Ẹ̀sìn atọ̀húnrìnwá ni ẹ̀sìn ìsìlámù. +yof_05223_00986197833 Oúnjẹ ìrọ̀lẹ́ ni Ìya Kàfáyá sè. +yof_05223_00950675915 Bí ó ti ẹ̀ jẹ́ kó hàn ní ojú ẹ, mo mọ̀ pé ohun tí wọ́n ṣe dùn ẹ́ gidi. +yof_09334_01080974690 Ilé ìjọ ni a ti ṣe ọjọ́ ìbí ọ̀rẹ́ mi. +yof_03034_01484294019 Ìbọn jẹ́ irinṣẹ́ pàtàkì fún àwọn ọde. +yof_00610_00745334270 Àgbantara ni bàbá àgbà fi máa ń nara ní abẹ́ igi ọsàn. +yof_08784_00796412443 Ẹja ọbọ̀kún wà nínú ọ̀sà. +yof_03034_01389385018 Ifálékè wà ní’bẹ̀ nígbà tí ìyàwó rẹ̀ bímọ. +yof_08421_00821394297 Orin náà ń fa ọkàn mi. +yof_09697_00676928850 Àwọn tí wọ́n darí iná fún eré orí ìtàgé náà gbìyànjú. +yof_06136_00376415227 Ọ̀bọ́ bẹ́ lu ọmọ náà láti òkè. +yof_09697_01976051974 Ilẹ̀kùn méjì ni ó wà lọ́nà ọ̀run. +yof_09334_01532459180 Àgbàrá ti wọ́ oko bàbá àgbà lọ. +yof_03349_00932759575 Ọkọ̀ mẹ́ta ló takú sẹ́gbẹ̀ òpópónà. +yof_05223_01406099113 Kò sí ẹni tí kò lè dáa fún. +yof_00610_01502020754 Ẹni tó bá ń jini láya kò lè fojú ire wo’ni. +yof_00610_01528060645 Ọmọ màmá ẹ ni Túndé. +yof_03397_01228808555 Jẹ́wọ́ ẹ̀ṣẹ̀ rẹ fún wa. +yof_02436_00858126349 Gúsù orílẹ̀ èdè yìí ni mo ti wá. +yof_03397_00984741297 Lọ tẹ́ ibùsùn bàbá. +yof_00610_01234429160 Ó bi bàbá rẹ̀ bí òún bá lè tan ẹ̀rọ amóhùnmáwòrán náà. +yof_03034_01828481800 Irun kọjúsọ́kọ ló gbé s’órí. +yof_02436_00399497363 Kọ́ọ̀sì mẹ́wa ni wọ́n ní ká ṣe. +yof_04310_00353481540 Ẹyin àtùpà náà ti fọ́. +yof_08421_00615577434 Gaàrí yẹn ti wú tó bó ṣe yẹ. +yof_05223_00920511538 Bàbá Ọba ni wọ́n ń pè wọ́n. +yof_02121_00449006646 Ọbá ti wàjà nílú Àkúrẹ́. +yof_08421_00501390396 Jẹ́ ka fò bí ẹyẹ. +yof_02436_01810089097 Tàlàbí ti ga jù. +yof_08784_00071105258 Olódùmarè ní kí ẹ má sin òrìṣà kankan lẹ́yìn òun. +yof_09697_00690653811 O sé tí o rán mi létí. +yof_03349_00799989042 Orí mi ni kẹ́ẹ wò. +yof_08421_00231301744 Ọmọ bíbí ìlú èkó ni wọ́n pè ẹ́. +yof_00610_00056340371 Kí gbogbo ayé ó wá bá wa dá sí ọ̀rọ̀ yìí, kó tó polúkúrúmuṣu. +yof_07508_01379798988 Wọ́n ti fi pamọ́ sínú ilé ìfowópamọ́. +yof_09697_00095408131 Ìyá Fátúrótì ni ó ń se ìnáwó lọ́jọ́ yẹn. +yof_03349_00453205016 Ọ̀mọ̀wé Ọládèjì wà nínú ọ́fìsì rẹ̀. +yof_00295_01329504028 Ìfé tí a fẹ́ adìyẹ ò dénú. +yof_08421_01160034934 Wọ́n ti gbé iṣẹ́ mìíràn fún mi. +yof_07505_00965029558 Onílẹ̀ gogoro ni wọ́n ń pe ọkùnrin yẹn. +yof_00295_00092049886 Mo gba ìpè oríire kan láti ìlú òyìnbó. +yof_06136_00619601554 Oùn àti iyèkan rẹ̀ ni wọ́n ń pariwo l’óru. +yof_03349_01140749304 Lára ẹbí tó gbajúmọ̀ ní ìlú Ìlọrin ni Sàràkí. +yof_06136_00187552585 Ìfọ́tí olóyì ni mo fún ọmọ tí ó wà lẹ́gbẹ ọ̀tún mi lójú àlá rẹ̀. +yof_03397_00267961680 Ọkọ̀ ayọ́kẹ́lẹ́ náà rẹwà púpọ̀. +yof_08784_00516833474 Ẹ̀sìn ilẹ̀ wa ni ẹ̀sìn Àbáláyé. +yof_08784_01756966513 Gbádébọ n fà bí ìgbín. +yof_08421_01858024247 Ṣòkòtò funfun la wọ̀ lọ sí ilé ìjọsìn náà. +yof_00295_01261514292 Ẹ jẹ́ ká lọ fọṣọ wa kó baà lè mọ́. +yof_02436_00647648765 Mi ò n’ífẹ sí àpèjọ àbòsí. +yof_00610_01328420729 Àti ọjọ́ pípẹ́ làwọn baba wọ́n ti ń rejú ogun. +yof_05223_01987584125 Àwa la ó máa wá, ẹ̀yin la ó máa bá. +yof_02121_00813921016 Ó rẹ́rin músẹ́. +yof_07049_01952218879 Bàbá Adémọ́lá ti fayé sílẹ̀ láti ìgbà tí a ti wà ní ilé ìwé gíga. +yof_00295_01599590742 Mi ò fẹ́ oun tí o sọ rárá. +yof_02436_00377441497 Ilé-iṣẹ́ agbóhùnsáfẹ́fẹ́ ni ìyàwó mi kejì wà. +yof_08421_01188812224 Orí omi ni wọ́n gbà sá lọ. +yof_00610_00418041243 Ìyàwó ba oko rẹ̀ nínú jẹ́. +yof_03397_01826473343 Ọbá ti gbẹ́sẹ̀ lé ìyàwó Moróunfólú. +yof_07505_00486568929 Ìjọba ìpínlẹ̀ ti tún ọ̀nà náà ṣe, ọ̀kan fún àlọ, ìkejì fún àbọ̀. +yof_00610_01201903823 Dàdàkùádà jẹ́ ọ̀kan lára ọ̀na ìgbé àṣà àti ìṣe ilẹ̀ Yorùbá lárugẹ. +yof_07505_01441172211 Wọ́n ti fi Akínsọ̀yínù sínú túbú. +yof_02484_01144784609 Ṣòkòto Ọlánipẹ̀kún ò balẹ̀. +yof_09334_00458323142 Lára àwọn ìwé tí mo fẹ́ràn láti máa kà ní ìgba tí mo wà ní ilé ìwé girama ni. +yof_02121_01721398059 Ìyá àgbà fi ògùsọ̀ dáná. +yof_00610_01547707397 Ọ̀tá yín ò ní sinmi lórúkọ Jésù. +yof_05223_01215869368 Orúkọ oyè Ọba Èkó náà ni àwọn mìíràn ń pè ní Elékòó. +yof_08784_00811491742 Ìfẹ́ mi si ẹ kì í ṣe tẹ̀tàn rárá. +yof_02436_01881370795 Ó ṣèṣì kọ iye owó tó ju iyé tí ó ná lọ. +yof_02121_00294065730 Aṣèyíówùú l’Ọlọ́run wa. +yof_02436_00687922980 Adébámbọ̀ mú àfẹ́sọ́nà rẹ̀ wá s’ọ́dọ̀ ìyá àgbà. +yof_08421_01868045959 Arẹwà ni ọmọbìrin náà ní gbogbo ìgbà tí mo ríi. +yof_08784_00231961070 Mo nílò èsì ìdánwò gidi fún ìtẹ̀síwájú ẹ̀kọ́ mi. +yof_02484_01239009714 Ilée wa ni mo wà nígbà yẹn. +yof_09334_00832212265 A ṣèbà fún Ọba tó layé tó lọ̀run. +yof_09334_02087227569 Ní ibi ìdíje ni wọ́n ti pàdé ara wọn. +yof_03034_00396583484 Gbogbo wọn ni wọ́n ń forí balẹ̀ f'Ólúwa lati àárọ̀ di alẹ́. +yof_02121_00419902035 A máa ń rí ìjẹyọ ìlù lílù, ijó jíjó, ẹ̀fẹ̀ ṣís̀e, oríkì kíkì, èébú bíbú, ìkìlò ṣíṣe. +yof_07049_01155498599 Àwọn elétò ìlera ló ń se ìtójú fún àwọn aláàárẹ̀. +yof_09697_02052857083 Gbogbo ènìyàn ni ó ní ẹ̀tọ́ sí òmìnira. +yof_02436_01691894374 Ohùn Adéyọọ́lá dà bíi ti ańgẹ́lì. +yof_07505_00093022612 Mo máa wà ní àgbègbè Tinúbú ní agogo mẹ́wa ọ̀la. +yof_09334_01258716402 Kí ló dé tí o sá aṣọ tútù sí inú ilé. +yof_03349_00000032238 Dáadáa ló yẹ ká máa ṣe. +yof_03349_00579344252 Ọlọ́run ló ni dédé lọ́dọ̀. +yof_03349_01055360692 Ṣoo lè jáde kúrò nínu yàrá mi. +yof_07505_00651254141 Inú omi ni ẹja ń gbé. +yof_02436_02059392356 Ìfọkànbalẹ̀ máa ń wà ní ọ̀pọ̀ ìgbà tí ènìyàn bá lówó lọ́wọ́. +yof_07508_01002282361 Àpáta ayérayé sebi ìsádi mi. +yof_05223_00153144305 Táyé mọ ìwé ju kẹ́hìndé lọ. +yof_02436_01776844644 Nígb̀a tí mo dé ilé wọn, bàbá wọn ni mo kọ́kọ́ rí. +yof_08784_01032591250 Èébì ń gbé ìyá olóyún yẹn. +yof_02436_00635969066 Òpẹ́bí ni àwọn ọ̀rẹ́ rẹ̀ ti lọ ń ṣeré. +yof_02121_01254770550 Àwọn ará ìlú ní ìgbàgbọ́ pé ọ̀nà èrú ni ọba tuntun yí fi d’órí àléfà. +yof_02484_01606464452 Jíjí tí mo jí lówùúrọ̀ yí, ìbà rẹ ò Ọba òkè. +yof_00610_00610789786 Pọ́n ara rẹ lé kí o má baà kàbùkù. +yof_03349_00684277122 Ṣé alayé-lọ̀run ni ẹ́ ni tóo fi ń fọ́nu? +yof_07508_01526273037 Mo járọ́ọ Láídé. +yof_06136_01063669619 Kí ló lè fa kí ara máa ro èèyàn? +yof_02121_01172794064 Nígbà tí ó di ọjọ́ keje, ilẹ̀ ṣú. +yof_07505_00324040990 Bí òní ti rí ọ̀la ò lè rí bẹ́ẹ̀. +yof_00295_01723779271 Ilẹ̀ ti mọ́ bá àwọn ọ̀daràn yẹn. +yof_08784_00555010800 Kí lo fẹ́ lọ ṣe nínú ilé tí ó ti wó? +yof_02436_01711966747 Farabalẹ̀ kí o gbóhùn wọn. +yof_02121_00334458563 Mò ń jáde lọ sí ibi iṣẹ́ láti lọ gba owó oṣù. +yof_00295_00136402910 Kí Ọlọ́run jé kí orílẹ̀-èdè yí dára. +yof_02484_00963185972 Ìfẹ́ wá mi wá sílé ṣùgbọ́n mo ti lọ ìrìn àjò nígbà náà. +yof_06136_00931220222 Iyẹ̀pẹ̀ ló rọ sínú ike náà. +yof_08421_01399348741 Lọ́jọ́ tí mo dé’lu Ọba, ẹnú kọ́ láti pàdé. +yof_03349_01530257260 Lára ohun èlò aṣọ híhun ni òfì àti òwú. +yof_07049_00547174360 Bàtà tuntun náà wọ́n jojo. +yof_06136_01576530439 Àdúgbò náà máa ń dákẹ́ rọ́rọ́. +yof_01208_00284398735 Wọ́n máa gun Àràfá ní ọ̀la. +yof_07508_00210712895 Ibo ni ọkọ̀ yí ń lọ? +yof_03397_02101545755 Aláta rodo ti dé o, ṣé ẹ fẹ́ rà àbí ẹ ò rà? +yof_00610_01876726139 Àṣàkẹ́ ti lọ p’ọmi ní odò tí ó súnmọ́ Modákẹ́kẹ́. +yof_07049_01186091241 Egbére jẹ́ ìyá iwin kan. +yof_07049_01251927017 Ṣẹwẹlẹ jẹ lítíréṣọ̀ alóhun tó ń ṣe pẹ̀lú orin kíkọ, ìlù lílù, ìjó jíjó, àti bẹ́ẹ̀ bẹ́ẹ̀ lọ. +yof_08421_00431231205 Wọn ò tíì jáde ní ilé ìwé àwọn Démiláre. +yof_07505_01220961965 Ṣọ́’ra ṣe o, ayé gba jẹ́jẹ́. +yof_09697_01341240274 Wọ́n ti múná dé. +yof_02436_00715131121 Igà náà tóbi púpọ̀. +yof_03397_01603357489 Èdùmàrè jọ̀wọ́ jẹ́ káyé ó yẹ wá. +yof_08421_00699507177 Mo fẹ́ràn ìsọkúsọ lọ́jọ́ Sátidé. +yof_03034_00547294103 Ẹ̀rọ ìlọṣọ lọ̀ mí lẹ́sẹ̀. +yof_09334_00895445083 Ifálékè ti j’Ọba o. +yof_05223_00612526087 Kò sí èrò ní’ta gbangba. +yof_03349_00187906632 Ajíbádé ní òun ò lọ sí Kàdúná. +yof_07505_01351918760 Kò mọ̀ ju kí ó ma kàwé lọ. +yof_03397_01216171839 Àmì ayò mẹ́rin sí oódo ni Manchester United fi na Chelsea ní àná. +yof_08784_01122423486 Ẹni orí yọ, ó d’ilé. +yof_03349_01858971864 Àrèó máa ń fi ìwà tútù tanijẹ. +yof_00610_00636319984 Àwọn ọmọge mẹ́fà ni wọ́n ń jó ń gbìyànjú papọ̀. +yof_00610_01877809422 Omi yẹn ti tùtù ju fún mi. +yof_08421_01677949196 A tún ríi wípé o mẹ́nu bà àwọn àbíkẹ́hìn. +yof_06136_00414323577 Mo dúpẹ́ lọ́wọ́ olúwa fún gbogbo iṣẹ́ rere rẹ̀. +yof_07505_01696283173 Abọ́ wà nínú korobá náà. +yof_07049_00588967694 Ìrèké yi ò fi bẹ́ẹ̀ dùn bíi ti ọjà. +yof_07049_00528110335 Àsáró elépo rẹ̀dẹ̀rẹ̀dẹ̀ ni mo bá nígbà tí mo ti Ibi ṣẹ́ dé. +yof_04310_00141945315 Tí ọwọ́ rẹ́ bá kàn mí, mo ma yí omi yìí dà sí ẹ lórí. +yof_09697_00909991436 Kí Olúwa Ọba òkè jẹ́ kí ohun gbogbo rọrùn. +yof_00295_01083821714 Láti orí dé orúnkún ni òógùn ti ń bòó nígbà tí a gbóhùn ìbọn tí àwọn ọ̀daràn náà yìn. +yof_00295_00963887414 Gbogbo àwọn ìṣòwò pátápátá jẹ́ ti ìjọba. +yof_07508_00262166348 Ó fi ipá báa lò pọ̀ lánàá. +yof_07505_00553428416 Da ṣúgà náà padà sí ibi tóo ti gbée. +yof_08421_01532215540 Mo fẹ́ lọ gbafẹ́ l’ágbo fàájì. +yof_02121_01783640741 Pẹ́pẹ́yẹ máa ń wè nínú omi bẹ́ẹ̀ wọ́n ń rìn lórí ilẹ̀. +yof_09697_01082644369 Màá máa dúró dè ẹ́ ní ẹ̀bá ọ̀nà. +yof_00295_00654803226 Ògì ni màma Pamílẹ́rin ń tà. +yof_01208_00190748774 Ká máa gbàdúrà tí a bá jí dára púpọ̀. +yof_07508_01894057854 Ọ̀kan ni ènìyàn ó f’ọwọ́ mú. +yof_09334_00960461342 Ìlú wa ni wọn yó ti ṣe àṣekágbá òkú màmá àgbà kékeré. +yof_02436_01399592872 Mi ò lè wá kú nítorí iṣẹ́ ẹni ẹlẹ́ni. +yof_00295_01572386294 Wọ́n wà nílé ’gbọ̀nsẹ̀. +yof_07505_01806962470 Lọ gbo ewúro mu. +yof_06136_00259614219 Mo ti fi ìgbà kan ṣiṣẹ́ gẹ́gẹ́ bí olùkọ́ ìmọ̀ ẹ̀rọ. +yof_00295_01110838790 Orin àti ìlù ṣe pàtàkì níbi eré ìdánilárayá. +yof_02121_00438639497 Abẹ́ igi ọdán ni bàbá ti ń jayé. +yof_09334_01185281336 Ní ayé àtijọ́, àwọn bàbá ni wọ́n máa ń sába ṣiṣé. +yof_08421_00418889640 Bàbá rẹ̀ ló fi ṣìná jọ. +yof_09697_00934529619 Ìgbà wo ni wọ́n ma tó se ọdún ẹ̀yọ̀. +yof_03349_01856331007 Tùràrí olóòórùn dúndùn ni wọ́n lò. +yof_09697_01849583210 Oṣù kan ààbọ̀ ni mo fi dáwó láti ra ọkọ̀ bọ̀gìnì náà. +yof_03034_01665376585 Akẹ́kọ̀ọ́ ìmọ̀ èdá èdè lìgúísììkì ni mo jẹ́. +yof_00610_01552284315 Tọkọtaya ara ilẹ̀kùn náà ti bàjẹ́. +yof_00295_00612305272 Wọ́n ń dáná sí ẹ̀gbẹ́ igbó. +yof_06136_00377845639 Ọdún Olọ́jọ́ máa ń wáyé ní Ilé-Ifẹ̀. +yof_08784_01140082003 Ọdẹ náà pàdé iwin gẹ́gẹ́ bí ìtán ṣe sọ. +yof_02121_00269127136 Mú ṣíbí yẹn kúrò nílẹ̀. +yof_05223_00533851592 Lára àwọn agbẹjọ́rò àgbà ni Fálànà wà. +yof_07508_00878713381 Padà wá ní ọ̀la jàre. +yof_01208_00808064175 Kí ni m̀bá tún sọ fún ẹ ju gbogbo èyí ti mo ti sọ lọ? +yof_02436_00733357322 Fọlámí Ọlájídé lorúkọ ọ̀rẹ́ mi àtàtà. +yof_00610_02132168238 Bí ó tilẹ̀ jẹ́ pé n ò fẹ́ran ọmọ náà n ò rò pé ó lè pààyàn. +yof_07505_01337287283 Ẹ̀dá nílò láti máa ní àmójúkúrò. +yof_08421_00677947027 Aṣọ àdìrẹ pọ̀ ní ìlú Abẹ́òkúta. +yof_02121_00193940796 Lábísí yasó nígbà tí à ń jẹun. +yof_08421_02125573322 Àwọn ìbejì yíì ti jọra jù. +yof_03349_00520899394 Ìyàwó àti ẹbí sì ni wọ́n jogún gbogbo rẹ̀ fún. +yof_09697_00908382802 Ǹjẹ́ o ti gbọ́ oun tó sẹlẹ̀? +yof_07508_02122693945 Tiwatọ́pẹ́ fẹ́ Tiwaladé. +yof_07508_02146569893 Jákọ́bù ń sáré yípo ọgbà náà. +yof_00295_00151151204 Mò ń lọ sí ọjà àwọn eléwé ọmọ. +yof_07508_00219129694 Ìlú ńlá ni Èkó. +yof_09697_01342949732 Wàhálà l’ọ́tùún, rògbòdìyàn l’ósì. +yof_03034_01248305054 Ṣé o fẹ́ gbé oúnjẹ síi l’ẹ́nu ni? +yof_07049_01316255284 Bàbá àgbà ti lé ní ọgọ́rin ọdún. +yof_07505_01834248562 Ẹwà rẹ pàápàá sì ṣe rẹ́gí bí ìdodo ẹ̀fọn. +yof_08421_01243847513 Ojú mi rí kí n tó ni gbogbo dúkìá yìí. +yof_06136_00984752246 Àgbà Alfa ni à ń pèé ni Rájí. +yof_00295_02081825103 Amúdá ò fẹ́ lọ kírun. +yof_07505_00770042424 Òjó ti ṣú láti ìdájí, kò dẹ̀ tíì rọ̀. +yof_07508_01968711190 Ìwádìí fi hàn pé Ògún ni ẹni àkọ́kọ́ tí ó ṣe orò ìṣípá ọdẹ ní ìlú Ìrè. +yof_02121_00605694996 Ẹ má tẹ’wọ́ mọ́ọ. +yof_08784_01362090520 Ọ̀gá akọrin wa féraǹ mi gidi. +yof_07505_00337763425 Lọ fọn ikun’mú rẹ dànù. +yof_07508_02147105578 Àlákála ni Adéníkẹ lá pẹ̀lú Ayaba ẹ̀sítérì. +yof_02484_00976182994 Àyọnusọ Fàlí ti pọ̀ jù. +yof_03034_01627999529 Ìpàdé tí mo lọ lánàá, wọ́n pín owó n’íbẹ̀. +yof_09697_02108739293 Ọlárótìwọ́n sùn fọnfọn bí ẹfọ̀n. +yof_04310_01323536617 Ṣé o máa ń mutí? +yof_02121_00460996262 Bímpé ni mínísítà fún ètò ẹ̀kọ́ fún orílẹ̀-èdè wa. +yof_02121_00533583163 Bàba Wàídì mọ ẹni tó ni ilé epo yìí. +yof_03034_00807477395 Mo fẹ́ mu gààrí àti ẹ̀pà. +yof_08421_01573273913 Ikú M.K.O Abíọ́lá dun ọ̀pọ̀lọpọ̀ èèyàn. +yof_03349_01864562994 Adé ti lọ sí ọ̀dọ̀ bàbá rè láti lọ fi àwọn nǹkankan tó o létí. +yof_03034_00922138325 Kọ́kọ́rọ́ mọ́tò bàba Fáuśa ni àwọn ọmọ yìí fi ń ṣeré. +yof_09334_00882759651 Túńjí jẹ Yétúndé mí ní owó díẹ̀. +yof_03034_01434705197 Ọmọ mí ti pé oṣù mẹ́jo, ó sì ní eyín kan. +yof_03397_00898278541 Ẹdun náà ni wọ́n pè ní ọ̀bọ. +yof_02121_00064862320 Èèyàn mélo lo fẹ́ rí? +yof_08421_00248957161 Ọ̀rọ̀ tó bá ṣe àkàlàmàgbò tó fi dẹ́kún ẹ̀rín rín, bó ba ṣe gúnugún a wo koko sórí eyín. +yof_02121_00012746470 Ẹ wo omi tó sọ póun ò ní bá ẹja rẹ́, àṣé omi ọ̀hún ni yóò ṣekú pẹ́ja. +yof_07508_01094123540 Gbà jàre! Wọn wá ọmọ'bìrin kékeré kan o. +yof_03349_01765299691 Ajé f’ilé wa ṣe ibùgbé ẹ̀. +yof_00295_00833359533 Bó bá wu ẹ̀yíòwùnmí, kó má da ẹran lọ sínú igbó. +yof_02121_00475923549 Láti ibo ni oko bàbá wọn ti bẹ̀rẹ̀? +yof_09334_00872140784 Èmi ni Alága Ẹgbẹ́ Kásowọ́pọ̀. +yof_03034_00650227009 Ní ilẹ̀ Yorùbá, bàbá ni olórí ilé. +yof_05223_00399396004 Ìlú Ìlọrin ní àwon olorin dadakùádà wọ́pọ̀ sí. +yof_00610_00251551294 Ipò wo lo dì mú nínú ilé iṣẹ́ náà? +yof_07505_01075267765 Ẹlẹ́nu róbótó bí orí ìgò. +yof_06136_00578231299 Ọ̀gá ni Bísóyè Ẹlẹ́shin lọ́jọ́kọ́jọ́. +yof_07049_01823753028 Àwọn alápatà jẹ́ àwọn ènìyàn tó máa ń pa ẹran fún títà. +yof_09334_01991202909 Ṣé o ti ṣe iṣẹ́ àmúrelé rẹ? +yof_08784_00832364943 A máa ṣe tán kí oṣù tó parí. +yof_02436_01889846684 Obì jẹ́ ohun ìpanu àwọn àgbàlagbà. +yof_07505_01552261130 Ìpàdé tí mo lọ lánàá dára jọjọ. +yof_05223_01328846423 Etí ń rìn mí ṣá. +yof_06136_01684608292 Lọ mú irọ̀ yẹn wá. +yof_03034_01016577741 Orí ọ̀pẹ ni a ti máa ń rí ẹmu. +yof_09697_00132648621 Ìyàwó kékeré tí arákùnrin ọ̀hún fẹ́ ló ba gbogbo nǹkan jẹ́. +yof_00295_00759398392 Àwọn pẹ́pẹ́yẹ ń wẹ̀ nínú odò. +yof_00295_00876128926 Ṣé nítorí Ànọ́bi ni Ọlọ̀run ṣe dáa yín? +yof_00295_01500154955 Ògbójú ọdẹ ni wọ́n. +yof_05223_00644756392 Iṣẹ́ gèlè wíwé ni à ń ṣe. +yof_00295_02142100233 Lọ fi aṣọ bo omi mímu yẹn. +yof_01208_01914949596 Ọ̀jọ̀gbọ́n sàlàyé lórí rògbòdìyàn tó bẹ́ sílẹ̀ ní ìlú ọba ní àná òde oyìí. +yof_03349_00146932066 Ẹnu ọwá lọ ti ń dádé Ọba Èkó. +yof_09697_00567611920 Ẹyẹ agénifò tí ń fò Iójú ọ̀run, kílódé tóo ṣekú pa Akínsanmí? +yof_06136_01613006891 Àwo yìí tún dúró lórí omi fún ọjọ́ mẹ́tàdínlogun kí Fúnkẹ́ tó dé ibẹ̀ láti gbée lọ. +yof_07508_01228303447 Kí Ọlọ́run ṣe ohun gbogbo ní dédé. +yof_03034_00047358379 Àga irú èyí tí àwọn òyìnbó máa ń lò ni ó wà nílé Ọ̀túnba. +yof_07508_01022041118 Mo sì ń gbádun bi gbogbo nǹkan ṣe ń lọ. +yof_08421_01582604095 Ibi o bá lọ ni mo máa wá. +yof_02121_00687085752 Ta ló wà nínú ọgbà náà? +yof_06136_00782406218 A ń sọ̀rọ̀ sí Ọrẹolúwa bí ẹni tí ó níran. +yof_02436_00243094377 Ẹ yan aṣojú láàárín yìn. +yof_08784_00276167805 Àafin ọba náà ti kéré jù. +yof_07505_00354138746 Ọlọ́mọ jogún ayé; Erín jogún ọlá. +yof_02121_01549319508 Owó náà ká gbogbo ohun ta fẹ́ ṣe. +yof_02436_00910528190 Gbogbo àwọn ohun tí ó ṣẹlẹ̀ nínú àwùjọ ní wọ́n lò láti fi ṣe àgbékalè eré àgbéléwò. +yof_06136_01239284866 Ṣé o nífẹ́ẹ̀ mi tó bí mo ṣe nífẹ́ẹ̀ rẹ bí? +yof_07505_01448838967 Ìjọba yóò fi kún owó àwọn òṣìṣẹ́. +yof_07508_01393368373 Orísìírísìí ìgbẹ́sẹ̀ ni ó máa ń jẹyọ nínú Ọdún Ifá. +yof_07505_01416245807 Tí mo bá gbàgbé ohun gbogbo, ojú rẹ ni mi ò [external] le gbàgbé. +yof_09697_00167627039 Kí ọlọ́run fi ọ̀run kẹ́ àwọn ẹni rere. +yof_03349_00170129191 Ní àná, ọkọ mi ò wá sílé. +yof_06136_01085823195 Ọlọ́run tìẹ ni mo ṣe, ọmọ olọ́dọ̀ idẹ, àti àtíbàbá ìlẹ̀kẹ̀. +yof_06136_01224200502 Elétí kúnkun ni Túndé. +yof_07505_01311838963 Báwo la ṣe ń gbin ẹ̀gẹ́. +yof_07049_01886652624 Mi ò nífẹ sí gbogbo ìkan wọ̀nyí. +yof_07505_01089558483 Kájọlà ni ibùsọ̀ táa ma kọ́kọ́ kàn ka tó dé Káṣọpẹ́. +yof_08784_01030184175 Ọ̀pọ̀ ni ohun tí ó wà nípa ẹyẹ lèkélèké tí a ò mọ̀. +yof_00295_00024634140 Iṣu náà ti bàjẹ́. +yof_03397_00576669459 Gbogbo ohun tí mo fẹ́ ni wọ́n ṣe fún mi. +yof_02436_01775847441 Ọ̀jògbón Akínwándé wà níbi ìgbafẹ́ rẹ̀. +yof_07505_02074794688 Fúnmi dé ìgò s’ójú. +yof_02121_01383561725 Adúrú ǹkan yìí ṣẹlẹ̀, oò dẹ̀ jẹ́ kí mo gbó? +yof_07508_00855191783 Jẹ kin sìn ọ́ dé ojú ọ̀nà díẹ̀. +yof_09697_02104807819 Orí náà ń dán púpọ̀. +yof_06136_01065114100 Ajá dúdú ni ti wọn. +yof_00295_00787941514 Kí àwọn ìjọba fún àwọn ará ìlú ní amojútó àti ìbò tí ó yẹ. +yof_00610_00455162383 Mo ò nífẹ àwọn ọlọ́pàá rárá. +yof_03349_01488219667 Ó yí omi dà sínú ike mìíràn. +yof_09334_01784997317 Lọ ra ata’re wá. +yof_07049_01485518599 Òtútù ń mú ọmọ tí ń sọ ìkan fún mi yí, níṣe ló ká jọ bí i adìẹ tí òjo pa. +yof_04310_00556815597 Àyà mí máa ń já nítorí a ò mọ bí ọ̀lá ṣe máa rí. +yof_07508_00629515941 Ọpọlọ yín ni mo fẹ́ yá lò. +yof_08784_01776438841 Ifá ní pé, ìtì ọ̀gẹ̀dẹ̀ ní kí wọ́n fi máa koná àgbo fún àwọn tí ara wọn kò yá. +yof_02121_01902393029 Ọlórun má jẹ ka wáyé òfìfo. +yof_03349_00504745142 Ọ̀rẹ́ mi tuntun tí mo ṣẹ̀ pàdé ní patí kan ni. +yof_07505_00492351957 Òṣìṣẹ́ ilé-iṣẹ́ amúnáwá náà gan mórí òpó. +yof_09334_00453708986 Wọ́n kì ń fọnu fún ọmọ ìkókó. +yof_04310_01919547339 Ohun rere ni yóò ma jẹ ti wa. +yof_00295_00670146730 Ògúndípẹ̀ ni ọ̀gá wa. +yof_00295_02048849931 Àwọn adánilárayá náà mọ̀ọ́ jó púpọ̀. +yof_07049_01341924253 Iyọ̀ pọ̀jù nínú ìrẹsì tí wón sè. +yof_02121_01302764842 [snap] Ẹ fún ọmọ l’ọ́mú fún oṣù mẹ́sàn-án. +yof_06136_01186529612 Ládúru gbogbo ìdojúkọ tí ó wà ní ọ̀nà wọn, wọ́n f’orí tìí dé òpin. +yof_09334_01736005859 Ta ló ń lọ fún ìdíje náà? +yof_02436_00596346093 Àmàlà náà gbóná fẹlifẹli. +yof_03034_01184452318 Òrìṣà, bó ò le gbèmí ṣe mí bóo ti bá mi. +yof_03349_00711107668 Èdùmàrè á fún mi l’áya rere. +yof_00295_01091122606 Kí ló dé tí wọ́n ṣẹ́ oyún fún-un? +yof_02121_00148255921 Ó ti wá hàn gbangba pé gbogbo ohun tí à ń ṣe ní àwùjọ ẹ̀dá pátápátá, eré-oníṣe ni gbogbo wọn. +yof_03349_01221045308 Yin Olúwa ìwọ ọkàn mi kì o má sì ṣe gbàgbé ore rè. +yof_09697_01190846387 Sé o lè gbà mí bí mo se rí? +yof_00610_00676169728 Géètì ilé-ìwé ni mo ti pàdé Ìsìlàmíyà ní àná. +yof_03349_01120154549 Ìlù Àyándélé ń ró kokoko. +yof_07049_01619526477 Iyá ọba náà tún wà níbẹ̀. +yof_07508_01199991008 O gbọdọ̀ gbọ́ ohun tí mo bá sọ fún ẹ, èmi ni mo bí ẹ. +yof_08421_00375984995 Ẹ wo ìdí ọ̀rọ̀ náà kí ẹ tó dájọ́. +yof_07049_01725771540 Ó fẹ́ pẹ́ láyé ju bí ó ti yẹ lọ. +yof_00295_00777977849 Orí ẹni ní ń mọ àtilà ẹni. +yof_08421_00517597514 Ìjà bẹ́ sílè láàárín Pópóọlá àti Àlùfáà mọ́ṣáláṣí wọn. +yof_07508_00510677721 Ta ló gbé aṣọ tútù sí ibí? +yof_02121_01101113850 Oò tiẹ̀ bẹ̀rù bí mo ṣe ga tó. +yof_04310_01092361479 Gèlè náà gbé ẹwà rẹ̀ jáde. +yof_02436_01208289328 Sáyídì ń ta Láfún ní agbègbè Ìta Àdó. +yof_05223_01432045584 Oorun ni Adébọ̀wálé sùn táa fi lọ táa fi dé. Olórun ìyà. +yof_00610_01157819178 Ta ló fi ọṣẹ sí ibí? +yof_07049_01965969753 Ilé tí tèmi àti àwọn akẹgbé mi dé sí rẹwà púpọ̀, ọ̀rọ̀ gan kò lè ṣàpèjúwe rẹ̀. +yof_09697_00099367593 Ẹnu ẹni la fi ń kọ mé jẹ. +yof_02121_01867778534 Ẹ̀rọ amúlétutù náà ti bàjẹ́. +yof_07508_00960114240 Ẹ máa lùú bẹ́ẹ̀, àlùbáríkà ni mo tọrọ. +yof_00295_00749261129 Ọ̀nà ibo ni mo lè gbà dé Sáfẹ́jọ́? +yof_09334_00870036483 Ẹ máa sọ̀rọ̀ yín lọ. +yof_02121_01084872231 Ṣàngó gẹ́gẹ́ bí ìtàn ṣe fi yé wa ni aláàfin kẹta ní ìlú Ọ̀yọ́. +yof_00610_00244433539 Ẹja ọ̀bọ̀kún wù mí jẹ lónìí. +yof_03034_00299576843 Èmi ni mo bá àbúrò mi ṣe iṣẹ́ àmúrelé rẹ̀. +yof_07508_01984200087 Bá mi jìṣẹ́ fún bàbá wa. +yof_00610_01854813627 Ìlúmọ̀ọ́ká ni Olóyè Adégẹyè. +yof_08421_00559342942 Ilésanmí dùn ju oyè lọ. +yof_03034_01143992860 Pẹ̀lẹ́. O ṣé, mo ní’fẹ rẹ. +yof_00295_01050088204 Sọ ọ̀rọ̀ òṣèlú tàbí ìwà ìbàjẹ́ nínú àwùjọ. +yof_03034_01464979147 Ẹfọ̀n mẹ́ta la gbọ́ pé ọdẹ náà pa. +yof_00295_00099759266 Àbùbùtán bíi omi òkun. +yof_02436_02064944507 Mo fẹ́ lọ sí etí òkun láti lọ gbafẹ́. +yof_03034_00731449875 Ìnuwọ́ wà ní abẹ́ tábìlì. +yof_04310_01178909646 Bíọ́dún kìí ṣọ́ owó ná rárá, ó lè ná gbogbo owó oṣù rẹ̀ tán ní ọjọ́ kan. +yof_02484_01190303313 Ohun gidi kọ́ ni k’éyàn bá ogun lọ. +yof_02484_01481249550 Àwọn dókítà fẹ́ ṣe ìyanṣẹ́lódì f’ọ́jọ́ mẹ́ta. +yof_06136_01625531988 Ìrètí nì orúkọ ọmọ àbúrò màmá mi. +yof_03349_01799123763 Jẹ́ ka lo gbafẹ́ ní Rwanda. +yof_03397_02017342165 Ọkùnrin ni adarí ìjọ náà. +yof_09697_01585170417 Wọ́n ní kí a mú àkòrí iṣẹ́ ìwádi àṣekágbá wa wá. +yof_08784_01662518745 Ohun gbogbo ló l’ẹ́san. +yof_02121_02015408040 Ọlọ́runyọmí ló tan Iwàlọlá jẹ. +yof_03034_01401678267 Ẹ̀gbọ́n mi ò sí nílé o, ẹ padà wá nírọ̀lẹ́. +yof_02436_00653003913 Àṣé ayé kọ́ la wà nílẹ̀ wa rárá, mo kí ajé kúùkàlẹ̀. +yof_02436_01488133241 [snap] Àwọn iwin inú igbó ti ń jíròrò. +yof_07505_00437825811 Ìjíròrò yó ti máa lọ lábẹ́lẹ̀ lori ètò ìdìbò tí ń bọ̀ lọ́nà. +yof_00610_00673427012 Ọdúnm̀bákú ni wọn pe ọdún náà, nítorí àwọn ohun tó ṣẹlẹ̀. +yof_07508_01273924883 Ìdìbò tó ń bọ̀ lọ́nà ló fa gbogbo gbọ́nmi síi omi ò tó. +yof_09697_00262398794 Ìdí ni wípé èdè pọ̀ láwùjọ jàńtìrẹrẹ. +yof_02436_01805519138 Sa gbogbo ipá rẹ kí ọjọ́ ọ̀la rẹ́ lè suwọ̀n. +yof_08784_02064706564 Àríkẹ́adé tún ti fẹ́rakù. +yof_01208_00694899898 Ojú abẹ́rẹ́ náà ṣì ń dùn-ún. +yof_08784_01537408157 Mo fẹ́ lọ gba atẹ́gùn ní’ta. +yof_03349_00324095070 Àgbò tí a rà fún ọdún wọ́n gan ni. +yof_09697_00431930794 Ilé alájà méjì mẹ́ta, ọkọ̀ mẹ́rin, àti oko kòkó kan ni gbogbo dúkìá tí ó fi sílẹ́ lọ. +yof_08784_00435719150 Ikú kò gb’owó, kò gb’ẹ̀bẹ̀. +yof_08784_01080364164 Gbogbo aṣọ kọ́ la ń sá lóòrùn. +yof_00295_00964382220 Ọba gan ò rí ohun kankan ṣe sọ́rọ̀ ilẹ̀ yí. +yof_03397_01264108095 Àwọn ọ̀rọ̀ mìíràn ti ń tako àwọn ìwé mímọ́. +yof_00295_01026731934 Àjàsín kò rántí gbé ẹ̀rọ amóhùnmáwòrán fún ẹni tó ń tun-un ṣe. +yof_03397_01297201903 Mo fẹ́ lọ rí ọ̀rẹ́ mi kan ní ẹ̀yìn odi. +yof_00610_01401576616 Mo fẹ́ràn àwọn ọ̀rẹ́ mi. +yof_02121_00884012069 Àrun jẹjẹrẹ ò dára. +yof_07508_01251231478 Láti ìgbà tí Ọlákúnlé ti kàwé tán, ko tíì ríṣẹ́. +yof_03397_01836749809 Jẹ́ ka jọ lọ jẹun níta. +yof_09697_00469094337 Aya rere l’ọ́dẹ̀dẹ̀ ọkọ ni Ṣọlá. +yof_05223_00429558761 Ó ti tó lẹ̀. +yof_08421_00313709282 Lọ fi otí pa ìrònú rẹ́. +yof_02121_01751618180 Ọ́rẹ́ mi má ṣe kánjú ju kádàrá. +yof_08421_00124921259 Ṣé mò ti ṣe oun tí ó fẹ́? +yof_03397_01120133625 Bó bá yá, a ó mọ ìgbésẹ̀ tó kàn láti gbé. +yof_02436_02038636916 Àwọn ọmọ ogun orí ilẹ̀ ń bọ̀. +yof_03397_01637875819 A fẹ́ lọ wo eré ìtàgé ní Oríta Mẹ́rin. +yof_02484_00606215462 Láti mọ iṣẹ́ náà, ó gba ìfarabalẹ̀. +yof_07049_00468261470 Ilé kan wà ní Ìkòyí tí mo máa ń rí, mo fẹ́ràn ìgbékalẹ̀ rẹ̀ púpọ̀. +yof_09334_01682319679 A gbàgbọ́ pé wọ́n jẹ́ ẹ̀mí àwọn ará ọ̀run tí wọ́n máa ń bẹ ilé-ayé wò. +yof_06136_00491301918 Ẹ ò gbodọ̀ dá ẹnikẹ́ni lẹ́bi. +yof_00610_01059134152 Ẹ ṣàdúà kí ikú dáwọ́ ibi rẹ̀ dúró. +yof_07049_00078850866 Yọ ẹ̀rọ ìbánisọ̀rọ̀ kúrò nínú iná. +yof_08784_00782542948 Ebi ń pa àwọn ẹlẹ́wọ̀n o. +yof_04310_00458175426 O ṣé, mo dúpẹ́ pé ìgbàgbọ́ rẹ nínú mi ṣì múlẹ̀ ṣinṣin. +yof_08784_01161358852 Èdè mẹ́ta ni mo gbọ́ láti kékeré. +yof_09697_00386236079 Ẹsẹ̀ ẹran náà ti kán. +yof_09697_00648283669 Aago mẹ́wàá ti lù kí n tó lọ. +yof_08421_00218614665 Mo ti gun òkè Afárá rí. +yof_04310_01797835069 Bàtà ẹ ti já lẹ́yìn. +yof_03034_00067848901 Ìyá ti lọ sódò, bàbá ti lọ sóko. +yof_02436_00566377036 Tí mo bá pè ẹ́, máa dá mi lóhùn. +yof_05223_00356816840 Ìgbẹ̀yìn ní láti so rere. +yof_07508_00270089775 Nígbà tí a lọ síbẹ̀, a rí Awólọ́wọ̀ ní ìlú Ọ̀wọ̀. +yof_03349_01207699701 Ibòji máa ń palọ́lọ́, kí ló dé? +yof_07508_00976253159 Òògùn ilẹ̀ tútù ni wọ́n lò fún Ọlábíntán. +yof_07049_00087395211 Ọmọbìrin náà rẹwà púpọ̀, tẹ̀gàn ló kù. +yof_02436_01255834249 Ìrèké jẹ́ èso tó dùn bíi ṣúgà. +yof_08421_02120390184 Túwó ni wọ́n sè fún wa. +yof_08784_00425468933 Wọ́n ti dée ládé ọba. +yof_02121_01935714496 Ọ̀pọ̀lọpọ̀ ọkọ̀ bọ̀gìnì bọ̀gìnì ni mo rí lóju ́pópó nígbà ìrìn àjò náà. +yof_01208_01779612882 Ayọ̀dèjì ló fún wọn l’ówó. +yof_07505_00838659719 Baba wa ló tún wá jọ́ba. +yof_03397_00584554648 Wọ́n ṣẹ̀ṣẹ̀ bẹ̀rẹ̀ sí ní kọ́ ilé òhún ni. +yof_00295_00134108651 Mo ní’fẹ́ aṣọ òkè. +yof_02121_01254424533 A rí kínǹiún ní ibi tí a ti lọ wo àwọn ẹranko. +yof_03034_01446343771 Iṣẹ́ èní gba omi mu. +yof_07505_00717610483 Àwọn tí wọ́n máa ń tún ilé ìgbọ̀ǹsẹ̀ ṣe ń gbíyànjù gan o. +yof_08784_02132082918 Àṣejù ni irun àyà. +yof_00610_01995980793 Mo gba ààyè ní ibi iṣé láti lè lọ fún ìrìn àjò náà. +yof_08784_01884325288 Edé mẹ́fà ni Músá fi mu Gààrí. +yof_05223_01377045141 Iṣẹ́ ni wọ́n ń wá kiri. +yof_06136_01836609989 Bọ̀dá mi mọ oúnjẹ ṣe ju tìẹ lọ. +yof_04310_00038493315 Àkàyìmọye ìwé ni Ọ̀jọ̀gbọ́n Ajíbóyè Ọládìípò ti kọ. +yof_07505_00167726127 Wọ́n ti ń lo àwọn mótò ìjàpá ní ìlú yi, ọjọ́ ti pẹ́; ọ̀pọ̀lọpọ̀ yín ni kò tíì dáyé́ nígbà náà. +yof_03034_01624808350 Babátúńdé ti sọ owó nù si’lé tẹ́tẹ́. +yof_00295_01942917421 Gbogbo abọ́ ló ti dọ̀tí. +yof_02121_02076244440 Kò s’ẹ́ni tí ò ní kú, tí kò ní lọ s’ọ́run. +yof_07049_00136003666 Ibo ni ìlú tí o ti wá? +yof_09334_01053288194 Tí Àpékẹ́ bá fẹ́ lọ, a máa jọ lọ. +yof_07505_00360147414 Fún mi ní ìdajì ìgò epo. +yof_09697_01718030135 Ifo ló mú Yéwandé lójú. +yof_00295_00444601186 Iná ti tán lórí ẹ̀rọ ìbánisọ̀rọ̀ mi. +yof_07505_01416973658 Mọ́ṣáláṣí ni mo ti lọ gba kọ́kọ́rọ́ lọ́wọ Bọ̀dé. +yof_03397_01410426771 Wọ́n ń ṣe orò ní Sàágámù lọ́wọ́lọ́wọ́. +yof_00295_00732956445 Ẹ má jẹ kí n fẹ̀fun. +yof_07508_01630743107 Òun ni ẹni àkọ́kọ́ ti mo kọ́ ní ìfẹ́ sí. +yof_05223_01345280705 Ilé ìkọ́jàsí náà kún fọnfọn. +yof_03034_01191710683 Jìnádù pa ejò gígùn. +yof_07049_02016319418 Èmi náà fẹ́ ní ọ̀rẹ́bìrin nílé. +yof_00610_01213624807 Ìlúbìnrin ni wọ́n sọ pé àwọn ń lọ. [abrupt] +yof_03034_01224218751 Bí ìyá náà ṣe gbé ọmọ náà pọ̀n dára jọjọ. +yof_00295_01087215949 Mo ní ìgbáfẹ́ ní agogo mẹ́san alẹ́. +yof_05223_01673220954 Orí àga ìwàásù ni àlùfáà ti fẹnu ṣáátá àwọn alábòsí inú ìjọ. +yof_00295_01014319083 Wọ́n ti múná lọ. +yof_00295_00334963468 Gbólúwaga ṣẹ̀ṣẹ̀ dé láti ibi tí ìyá rẹ rán-an ni. +yof_02121_00579854352 Nínú bọ́ọ̀lù àfọwọ́gbá ni wọ́n ti jáwé olúborí. +yof_02121_01787218594 Èké Shíttù ti pọ̀ jù. +yof_07505_00576738266 Abíọ́nà ní òun lọ rí Adé ní ago mẹ́wa òní. +yof_08421_00969878974 Ọ̀gá mi ló kọ ìwé náà. +yof_03397_00802202432 Àwọn ẹlòmíì ò ní ìtẹ́lọ́rùn rárá. +yof_07508_00364715547 Àwọn ẹranko wo ló máa ń jẹ ọ̀gẹ̀dẹ̀? +yof_03034_02005258693 Iná ìjọba máa ń wà dáadáa ní agbègbè Ilémobọ́lá. +yof_03397_00365374581 Tí kò bá kí ń ṣe ọ̀làjú tí ó ti gbinlẹ̀ l’Ékò ni, àwọn ìlú oko gán wà pa. +yof_03349_01606359332 Ìsọkúsọ ni Àdèlé ma ń sọ ní gbogbo ìgbà. +yof_06136_01760701628 Mo fẹ́ kí èmi àti àwọn ẹ̀gbọ́n mi jọ ma lọ sí ibẹ̀ nígbà kan náà. +yof_03349_02009196297 Abọ̀rìṣà ni yín tẹ́lẹ̀. +yof_02121_02074719447 Ìwé márùn-ún la ma rà fún kọ́ọ̀sì náà. +yof_08784_01158534960 Báyọ̀ fi ọwọ́ gé fáànù. +yof_03034_00341126073 Àwọn ọlọ́pàá ti gbá mi mú. +yof_07505_00305088703 Mo dúpẹ́ ore àtìgbàdégbà olúwa. +yof_08784_01560755333 Àwọn tí wọ́n mọ ìtàn náà ò pọ̀ rárá. +yof_08421_00969899408 Ogun jà ní ìlú náà fún ọdún méje. +yof_04310_01491615865 Àgbàdo yíyan ni mo fẹ́ jẹ sùn. +yof_06136_00367673294 Tí ẹ bá wọ inu ilé wa, àwòrán kan wà lẹ́gbe ibùsùn; Ẹ bá mi múu wá. +yof_02121_01156283000 Ọ̀dọ̀ Ṣàngó ni wọ́n ti tọrọ ọmọ náà. +yof_07505_00482003654 Ilé wa ò ní dàrú, ọ̀nà wa ò ní bàjẹ́. +yof_08784_00655012520 Irun àgbọ̀n mí ti pọ̀ jù. +yof_07508_01960853622 Àkàrà òyìnbó náà dúdú. +yof_02121_00483747783 Mo ti gbìyànjú ohun tí mo lè dá lárà. +yof_09697_00630489963 Lọ gbá ilẹ̀ àárín ilé àti ti ẹ̀yìnkùlé. +yof_08421_01859320941 Àwọn àgbò ń kan ara wọn pa. +yof_05223_01728592727 Ìyá àwọn ọmọ tí ilé wọ́n wà ní ibùdókọ̀ kẹta sí ìyín ti bá àgbèrè lọ. +yof_02121_01827388353 Ìyálé mi ti ẹ̀ bá wa lálejò lọ́sè tó kọjá. +yof_07508_01381664712 Iṣẹ́ ìran dé ìran ni iṣẹ́ ọdẹ́ jẹ́. +yof_07505_00461184390 Àtòrì ńlá ni wọ́n fi nàá. +yof_02436_00087263006 Orí ibùsùn Àdìó ni Ṣẹfíù jókòó sí. +yof_02121_00443525088 Ẹ̀dá kàn wáyé nípasẹ̀ àwọn méjì tí wọ́n sùn papọ̀, tí wọ́n sì lóyún rẹ̀. +yof_07049_01210522679 Ẹsẹ̀ àga náà ti kạ́n. +yof_00610_02006706086 Lọ se ewédú ka lè fi jẹ àmàlà ní alẹ́. +yof_09697_00582600241 Ilé ìtura tí a dé sí tóbi jọjọ, ìlú Ọ̀yọ́ ló wà. +yof_03034_01633076971 Mo ti rí àwọn àbúrò mi á ti tó ọdún márùn-ún. +yof_00610_01630775644 Òde méjì ni a ní láti dé. +yof_04310_00843208575 Lára orúkọ tó gbajúmọ̀ ni Tinúbu ń jẹ́. +yof_07049_01739905760 Àkàndùn ló mú Ìyániẃurà lọ́wọ́. +yof_09334_00742087281 Ọ̀gá ọlọ́pàá náà ló gba owó àbẹ̀tẹ́lẹ̀. +yof_07049_01804489133 Wàhálà ọmọ yìí ò ní ṣ'ekú pa ẹ́ lórúkọ Jésù. +yof_09697_01224282079 Adìyẹ àti pẹ́pẹ́yẹ ni wọ́n kan pákó náà fún. +yof_02121_01849608506 Lọ gba kọ́kọ́rọ́ wá. +yof_08421_01252124057 Orí odó lo jókòó lé. +yof_03034_00719500674 Ta ló gbé ẹja àrọ̀ wá? +yof_09697_00509643171 Ìwọ̀ǹba l'omidan ń sunwọ̀n mọ. +yof_03034_01900273328 Ẹran méjì-méjì ló fi ṣe wá lálejò. +yof_03397_01352253317 Mo tiẹ̀ ríi gbọ́ pé osù tó ń bọ̀ ni ọdún ìgúnu. +yof_03034_00474128447 Mo pàdé olùdarí ilé ìwé gíga mi ní ibi ìnáwó ní ìjẹẹ̀ta. +yof_07508_01129273695 Iṣẹ́ aránṣọ ni isẹ́ tí Lọlá ń kọ́. +yof_03034_00981265646 Abẹ́rẹ́ mẹ́ta ni ó gbà sí apá rẹ̀. +yof_02121_00038358953 Ajírọ́ba l’orúkọ oyè tó jẹ lọ́dún tó kọjá, l’ásìkò ọ̀gbẹlẹ̀ tí ebi ń pa gbogbo ìlú. +yof_07505_00224569445 Ọ̀gbẹ́ni, fi mí sílẹ̀ jọ̀ọ́. +yof_01208_01663278651 Ẹni tó bá lówó lọ́wọ́ kó ṣe bí ẹni tí ò ní. +yof_02436_00691876145 Ṣé ẹ ní dòdò àti ẹran? +yof_05223_01858772536 Yé wọ́ ẹsẹ̀ nílẹ̀ mọ́. +yof_07505_01328719114 Èdè alohùn ni èdè Yorùbá. +yof_07505_01873104552 Láti ìlú Àjàṣẹ́ ni màmá ti wá. +yof_07049_00845135352 Kí ọmọ olówó má ro ọmọ tálákà pin. +yof_00610_00739537174 Ìyá àgbà ti lé ní ọgọ́ta ọdún. +yof_05223_01517740488 Olorì ní kí a pe àwọn ẹ̀sọ́ wá. +yof_07505_01806202091 Ṣé o mọ ìdí tí mo fi ṣe bẹ́ ẹ̀ bí? +yof_09697_01859571407 Ó gbèjà àbúrò rẹ̀ gan. +yof_09334_00374532932 Ààrẹ orílẹ̀ èdè ń bọ̀ ní Civic Ceter ní ọ̀la òde yìí. +yof_09334_00530099092 Mo fẹ́ran àgbàdo sísè. +yof_03349_00104686266 Bu omi ìsanwó wá fún mi, jọ̀ọ́. +yof_07508_00671291127 Ibo ni wọ́n gbé àpótí náà sí. +yof_00295_01185131835 Ìgbà tí baálé rẹ ń bínú, o f’ọwọ́ gbáa láya. +yof_02436_01252305057 Fákáyọ̀dé ni Ọba Ìbògùn. +yof_02436_01809127750 Mo máa gbìyànjú láti ríi dájú pé o jìyà ẹ̀sẹ̀ rẹ. +yof_03349_01706341410 Ní ọjà Èjìgbòmẹkùn ni a ti ra àwọn èso ọ̀hún. +yof_02436_00408573672 Àtàrí àjànàkú ni ọ̀rọ̀ náà jẹ́, kìí ṣẹrù ọmọdé. +yof_00295_00248436001 Aṣọ funfun àti fìlà olómi aró ni wọ́n pè. +yof_08421_01426955276 Amósùn ti f’ìgbà kan jẹ́ gómìnà ìṕinlẹ̀ Ògùn rí. +yof_02121_01320199001 Ìníolúwa ni orúkọ ọmọ àbúrò ìyàwó mi. +yof_03349_01484091702 Kí ló dé tí wọn ò ṣu orí fún ọmọ yìí? +yof_02436_01827143736 Àyìnlá ti lọ s’Ẹ́dẹ. +yof_00295_00613194089 Mo ra bàtà mẹ́ta l’ọ́jà Akẹ̀sán. +yof_02121_01752866356 Ìgbésẹ̀ fonọ́lọ́jì tó farahàn nínú àwọn ìlànà yìí ni àrànmọ́. +yof_01208_01400025115 Ikú p’Abírì, Àbírì ti kú. +yof_00610_01327657874 Mo ní èróngbà láti gbé àpótí ìdìbò lọ́jọ́ kan. +yof_02484_00786005763 Àìgbọ́fá là ń wò’kè, ifá kan ò sí ní párá. +yof_03349_00688281399 Gbẹ́nu sọ́un, oníbèérè ìsọlẹ́nu. +yof_02121_00136858951 Yìnyín náà pọ̀ jọjọ, ọ̀tútù ń mú. +yof_00610_01944045933 Fún mi ní ẹran àti ẹja jẹ. +yof_02436_00772719355 Láti kékeré ni mo ti ma ń gbọ́ pé obìnrin kìí fẹ́ràn kí àwọ́n pé méjì ní ọ̀ọ̀dẹ̀ ọkọ. +yof_07049_01107757511 Ọmọ mẹ́rin ni ẹran náà bí. +yof_03349_01479800419 Òyìnbó bí ọ̀pẹ́ẹ̀rẹ́ ni ó máa ń sọ ní tirẹ̀. +yof_07505_01267402712 Fáànù mẹ́ta ló wà nínú yàrá ìgbàlejò. +yof_00610_01142831127 Orísìírísìí ìgbésẹ̀ la máa gbé lórí ọ̀rọ̀ yìí. +yof_03397_00983594756 Òjò náà rọ̀ ó fẹ́rẹ̀ hú òkú ọ̀lẹ. +yof_04310_00774388707 Ọ̀mọ̀wé fún ọmọ náà ní ẹ̀bun rẹpẹtẹ. +yof_03397_00309530699 Ajá máa ń jẹ ìgbẹ́ lójú ọ̀nà. +yof_06136_01279969512 Iṣẹ́ ìjọba ni ó wù mí láti ìgbà tí mo ti wà ní kékeré. +yof_07508_01121973175 Ó ti fẹ́rakú bí mo ṣe ń wòó yìí. +yof_03349_00251213885 Bàbá mi ní ọ̀la la máa lọ ra ọkọ̀ náà. +yof_02121_01784691707 Mo ní kí Òkèjọbí [external] pè mí lórí ẹ̀rọ ìbánisọ̀rọ̀ tó bá di ọ̀la. +yof_00610_01169943444 Ó dára kí ìyàwó máa ṣisẹ́. +yof_05223_01535618206 Bàrúwá ń sa gbogbo ipá rẹ̀ láti ríi pé ohun gbogbo lọ dédé. +yof_02484_00325197657 Kòkòrò gé Baṣọ̀run jẹ. +yof_03349_00045889139 Èrí mìíràn tí ó fi ìdí ìgbàgbọ́ Yorùbá hàn nípa Àbíkú wà nínú ẹṣẹ ifá. +yof_09697_01133989426 Mo ní’fẹ̀ẹ́ àwọn ìwé D. O Fágúnwà. +yof_02484_01430850632 Hósítẹ̀lì rẹ ló ti gbé oúnjẹ fún mi. +yof_07049_00153738067 Ọlọ́kadà ló gbá ọmọ náà. +yof_06136_00394484520 Ẹ̀rọ ayélujára máa ń parọ́ nígbà mìíràn. +yof_07505_00247612154 Èmi nìkan ni mo sun yàrá mọ́jú. +yof_01208_01304309543 Adéwálé gbé egbòogi olóró wo ilẹ̀ Amẹ́ríkà. +yof_09697_00964602293 Ọ̀rẹ́ kìí ṣe ẹnìkan tí ó kàn ń ṣe alábàápín ìgbà tí nnkan rọ̀ dẹ̀dẹ̀. +yof_06136_01738523617 Ọ̀pọ̀lọpọ̀ ọ̀pọ̀lọ́ ló lọ́pọlọ lọ́pọ̀lọpọ̀. +yof_08421_01031155147 Jẹ́ ka jẹ búrẹ́dì àti ẹ̀wà. +yof_01208_00379915223 Ta ló wọ bàtà mi. +yof_08421_01357299502 Ilé ni ayé wà. +yof_03349_00495976734 Ẹlẹ́nu wèrèpè ni mo pèé. +yof_06136_01703572881 Dígí náà tóbi ó sì mọ́. +yof_04310_00152557726 A yẹgi fún òdaràn náà. +yof_07049_01570519517 Ta ló wà nínú ọjà náà? +yof_03034_01373308907 Ayẹyẹ náà yóò lárinrin yàtọ̀ sí ti tẹ́lẹ̀. +yof_09697_00598800757 Mi ò fẹ́ kí ọ̀rọ̀ mí máa dàmú ẹ. +yof_03034_01357625953 Ibo lo ti lọ fọ’bọ́? +yof_03349_01365950510 Motúnráyọ̀ ló jáwé olúborí. +yof_02484_01696956093 Gbogbo aṣọ ni Tìjání kó lọ sí ìsàlẹ̀ láti lọ fọ̀. +yof_07049_02122119774 Jẹ́ kí n fún ẹ ní gbogbo ìfẹ́ mi pátápátá. +yof_03349_00408969313 Bàbángídá ti ra mọ́tò kó tó lọ sí Hajj. +yof_00295_01438690164 Àwọn ọmọ kékeké ti pọ̀ jú ní àdúgbò yẹn. +yof_09334_01611227710 Á ṣeé ṣe lágbára ọlọ́run. +yof_03349_01412723244 Orísirísi ìtàn ìwásẹ̀ ni ó sọ nípa àwọn orísun wa, láti òkè dé’lẹ̀. +yof_02484_01390813997 Tolúwa ni ilẹ̀ àti ẹ̀kún rẹ̀. +yof_07505_00148750272 Mí ò lè bá ẹ ṣé, má bí’nú. +yof_02484_00764772991 Ṣé o ti tọrọ àforíjì? +yof_07508_00312304439 Ẹni tó ti kú ò ní ìrèti mọ́. +yof_07508_00343529757 A lọ s’éjìgbò ní’jọ̀ọ́sí. +yof_08421_01963984165 Koríko pọ̀ ní agbègbè náà. +yof_06136_00207590210 Aṣọ púpọ̀ ló wà lọ́jà, lọ ra tì ẹ. +yof_03034_01910707030 Òkè àkọ́kọ́ ilé náà ni àwọn màmá ń gbé. +yof_07505_00942247261 Ṣé àwọn ọmọ yín mọ òòṣà tí wọ́n ń pè ní ìgunnu? +yof_09334_01853861579 Àwọn ọmọ aráyé ò kìí ní sùúrù. +yof_03034_00308549077 Ìyàtọ̀ gedegbe ló wà láàárín ikú àti ìyè. +yof_03034_00194240920 Kọ́lápọ̀ jábọ́ sínu gọ́tà. +yof_07508_02091367016 Nítorí àwọn ìbéèrè pàtàkì nìkan là ń gbà sílẹ̀ kí ilẹ̀ tó ṣú. [external] +yof_09697_00979107622 [snap] Ọkọ ni bàba tó lè báa sọ̀rọ̀ ní Surulere. +yof_05223_01182310093 [snap] Kò sí Iná lórí ẹ̀rọ ìbánisọ̀rọ̀ mi. +yof_00610_01217333501 [snap] Àlùjó ni wọ́n ń lù lágbo Ayéfẹ́lẹ́. +yof_09334_01027685511 [external] Pè mí l’órúkọ mi, Ṣaléwá. +yof_09697_01879002417 [snap] Oòrùn yìí mú gan-an o. +yof_02484_00087342663 [snap] Lọ bá mi ra owó sí orí ẹ̀rọ ìbánisọ̀rọ̀ mi. [external] +yof_09697_01029057779 [snap] Sé o mọ Allen Avenue? +yof_06136_00319213356 Wọ́n gbàmí tọwọ́tẹsẹ̀ ní ilé ọkọ mi. [external] +yof_01208_00278515199 [breath] Alhaja fẹ́ràn láti máa jẹ búrẹ́dì Sẹ́nígà. +yof_02484_01631778849 [snap] Ẹniọlá ni orúkọ Màma wọn. +yof_04310_02135700449 Àmọ̀pé ni wọ́n sọ ọmọ náà, bàbá Láfẹ́nwá ló fún-un ní orúkọ yẹn. [external] +yof_00295_01021234133 [breath] Wàhálà rẹ pòjù, Àdùnní. Kí lo fẹ́ kí n ṣe fún ẹ? +yof_09697_01211584607 [snap] Alóńgẹ rẹ́rin kàkàkà. +yof_09334_01661946554 [snap] Wọ́n ṣe iṣẹ́ abẹ fun ọmọ yẹn ní inú. +yof_03349_01130496855 Pa fèrèsé dé kí o bá mi ní ìsàlẹ̀. [external] +yof_03034_01445313467 [snap] Àwọn mẹ́sàn-an ni wọ́n jọ ń dá àjọ náà. +yof_06136_01906129204 Ara rẹ̀ kìí lélẹ̀ tó bá ti wà lẹ́gbẹ ìyàwó rẹ̀ kejì. [external] +yof_01208_01028857253 [breath] [snap] Ó ti wá hàn gbangba gbàǹgbà pé ọ̀pọ̀ ohun tí à ń ṣe ni àwon ara ìlú fẹ́ràn. +yof_01208_01325492457 [breath] Gbogbo rẹ̀ ṣẹ̀ hàn kedere sí mi ni. +yof_01208_01348944590 [snap] [breath] Tí a bá ń sọ àṣìṣe ara wa, èyí kò ní jẹ́ kí okùn ìfẹ́ wa gùn. +yof_00610_00446928029 [snap] Ọmọ méjì ni Simi sọ pé òun fé bí. +yof_09697_00595639952 [snap] Ayélàágbé ò fẹ́ràn kí ó máa rí àwọn àlejò ní ilé rẹ̀. +yof_02436_01930150103 [breath] [snap] A ṣì ní ọ̀pọ̀ ǹkan láti mọ̀ nípa àwọn àdán àti iye ẹ̀yà tó wà. +yof_01208_00639508207 [breath] [snap] Wùnmí fẹ́ràn kí ó máa jẹ eegun. +yof_09334_01261601766 [snap] Gbọ̀gán àṣà ìbílẹ̀ ni ijó náà ti wáyé. +yof_08784_01766733913 [breath] Ó máa ń ṣe mí bíi kí a jọ máa wà ní gbogbo ìgbà. +yof_07049_02144487462 [snap] Ó wà lára àwọn ohun tí àwọn òyìnbó aláwọ̀ funfun ń gbà lẹ́rọ̀. +yof_05223_00251603303 [snap] Lọ gbé omi inú ọ̀rá yẹn wá. +yof_02436_01469340831 Orí ló ń sin ni táa fi ń kọ́lémọ́lé. [external] +yof_08421_00960110763 [snap] Ọbẹ̀ ẹ̀fọ́ náà ti yí dànù lórí iná. +yof_08784_01011577896 [snap] Jẹ́ ka ṣeré lọ sí ìlú ọba. +yof_01208_01099449672 [snap] Wọ́n rò pé èmi ni mo sọ fún ẹ bẹ́ẹ̀. +yof_03397_00945734245 [breath] [snap] O ṣé tọ́ọ wá sí ’lé mi lónìí. +yof_02484_00357136193 [breath] A ṣe àkíyèsí pé wàhálà yí ò ṣẹ̀ṣẹ̀ bẹ̀rẹ̀ [external] +yof_03397_01964701198 [snap] Fún mi ní sùwíìtì lá. +yof_03397_01551855798 [snap] Mo ti pinu láti má bèèrè ìrànlọ́wọ́ láti ọwọ́ enìkankan. +yof_08784_01951734912 [breath] [snap] Àwọn ìyàwó ilé náà ṣàbòsí ìyálé wọn. +yof_08784_00230982891 [snap] Ó ń polówó ọjà. +yof_04310_00415876786 Alájẹṣu ọmọ ni Táíwò. [external] +yof_09697_01579379365 [snap] Àya rẹ̀ já nígbà tó rí ẹkùn yẹn. +yof_02436_00772561831 Ìyá ọkọọ̀ rẹ ló ń pè ọ́. [external] +yof_08784_01902466684 [breath] Ẹ̀rín máa ń pa mí nígbà tí mo bá ń gbọ́ àwọn ìpolówó kọ̀ọ̀kan. +yof_09334_01469938429 [snap] [breath] Bí eṣinṣin ṣe ń kùn lórí èso náà kò dára. +yof_09334_01228340404 [breath] Àwọn wèrè l’àwọn olóṣèlúu wa o. +yof_07049_02132000637 [snap] Iṣu àti ẹyin ni mo ṣẹ̀ṣẹ̀ jẹ tán. +yof_05223_01602819783 Orúkọ fífúnni kìí ṣe ohun yẹpẹrẹ, [breath] bẹ́ẹ̀ kì í ṣe bàbàrà tó bẹ́ẹ̀. +yof_05223_00884160013 [snap] Àwọn wo ló ń pariwo láàárọ̀ kùtùkùtù báyìí. +yof_03034_00584914499 [breath] Ẹyẹ́ ti gbé ọmọ adìẹ fò lọ. +yof_05223_01728483868 [snap] Mo ní àǹfààní láti dé Adó Àwáyè. +yof_04310_00422116887 [snap] Àwámárídìí ni Ifá. +yof_07508_01646387915 [snap] Ẹniafẹ́ ti parí ilé ìwé gíga. +yof_07049_01848488355 [breath] Ní ọ̀nà àkókó, wọn ò lè ní ạ̀wọn onígbá ti wá. +yof_02436_00612313345 Ṣadé ṣiṣẹ́ ìwádi lọ sí ilẹ̀ Àríwá. [external] +yof_09334_01018087996 [snap] Èyàn mẹ́fà ló ń jẹ́ Máíkẹ̀lì ní kílàsì wa. +yof_02484_02090141456 [snap] Báyìí ni Àrẹ̀mọ ṣe fi ààfin bàbá rẹ̀ tíí se Oba ìlú sílẹ̀. +yof_03397_01078911533 [snap] Nínú ọkọ̀ táa wọ̀ lọ s’Ọ́yọ̀ ọ́, èmi Adéyọ̀ọ́lá la jọ jókòó. +yof_03397_00205083435 [snap] Mo fẹ́ kọ́ bí wọ́n ti ń tẹ dùùrù. +yof_08784_00294652516 [snap] Akíntọ́pẹ́ jẹ́ àna sí Ògúnlèsì. +yof_04310_01200382801 A gbọ́ pé wọ́n ti jí ẹní egbére lọ. [external] +yof_03397_00429798808 [snap] Tèmítáyò ti jáde pẹ̀lú àwọn ọ̀rẹ́ rẹ̀, wọ́n lọ sí’bi òde ìyàwó kan. +yof_05223_00298082843 [snap] Igi wà lóko. +yof_04310_00378435737 Táyà ọkọ̀ ayọ́kẹ́lẹ́ náà bẹ́. [external] +yof_09334_01982394183 [snap] Bóyá màá lọ ra mọ́in-mọ́in àt’ẹ̀kọ. +yof_02484_01289739568 Àwọn àgbà ló máa ń sọ pé igúnnugún kìí kú léwe. [external] +yof_08784_01456471099 [snap] Ilẹ̀ náà kìí ṣe ilẹ̀ olómi, ẹ ó gbádùn rẹ̀. +yof_03349_01724932923 Ẹ̀yà Yorùbá ti kúrò lẹ́gbẹ́ àwọn ẹ̀yà tí wọ́n máa ń ṣe àmúlò ìlànà òǹkà àwọn èdè mìíràn. [external] +yof_00295_01842317011 [external] Ó lé tìróò s’ójú. +yof_03397_00095310712 [breath] Wón ní kí a wá gba ẹran ọdún. +yof_09334_00070222160 [snap] Ẹ fún-un ní omi kó mu. +yof_02484_01952469150 [snap] Àwọn ọmọ náà ti bàlágà láti lọ́kọ. +yof_04310_01439778715 [snap] Ẹni tí ò gba kádàrá yóò gba kodoro. [external] +yof_04310_00133613790 [breath] Bákan náà ẹwẹ̀, àkíyesí tùn wà pé, àwọn okùnrin ni ó pò jù nídìí iṣẹ́ orin. [external] +yof_09334_01007870404 [breath] Fúnmi ti sọ̀rọ̀ nípa òkè kan fún mi rí níbi ìpàdé kan ní Ìkòyí. +yof_08421_01554358035 [snap] Oríṣi obì tí a ní kò fi bẹ́ẹ̀ yé ọ̀pọ̀ ènìyàn láwùjọ wa lónìí. +yof_02484_00691317878 [snap] Àgùntàn l’ẹranko tó gọ̀ jù. +yof_00610_00120418270 [snap] Ariwo yín ti pọ̀ jù. +yof_04310_00836554568 [snap] Wọ́n na Fadérẹra ní ilé ìwé ọjọ ìsinmi. [external] +yof_04310_01628595155 [snap] Mo fẹ́ràn aago yí. [external] +yof_07508_02027007599 [snap] Wọ́n ti rí ọmọ Ìya Bọ̀dé gẹ́gẹ́ bí onírọ́. +yof_08421_00775918477 [snap] Awakọ̀ náà ti di òpópónà. +yof_02484_00920524038 [snap] Ikú gbígbóná ni Ikú tí Akíntọ́lá kú. +yof_02484_00939482693 [breath] Iléèwé náà tóbi púpọ̀, ogúnlọ́gọ̀ ọmọ ni wọ́n ní. [external] +yof_07049_01184708283 [snap] Mo ò ní tó iye owó yìí. +yof_05223_00566293633 [snap] Àfín ni ọko Ìyábọ̀. +yof_09697_01761752989 [snap] Ẹ̀gbín ni ká máa bọwọ́ f’ọ́ba. +yof_07508_00480139489 Lọ gbé ẹní wá. [external] +yof_03397_01885922611 [snap] Kí ló ń s’áré jù nínú ìjàpá àti eku. +yof_02484_00003702130 [snap] Bí ó ṣe ń dún hùrùhẹrẹ yẹn ń dẹ́rù bà mí. +yof_07505_01563852683 [external] Àwọn orísìí oníṣègùn ló wà, tí wọ́n fẹ́ràn epo pupa láti mu. +yof_09334_00047190217 [snap] Kò sí epo nínú ẹ̀rọ ìdáná. +yof_05223_01730150498 [snap] Tó bá di ọdún tó ń bọ̀, mo fẹ́ lọ ṣe ọdún Kérésì ní ìlú mi. +yof_02484_00676972956 [snap] Mo ti gbọ́ ìmọ̀ràn ẹ. +yof_04310_00338152807 [breath] Àárin gbùngbùn àríwá ni Atikú ti wá. +yof_01208_00905494674 [breath] Afẹ́fẹ́ náà pò ju kí èyàn bọ́ aṣọ sílẹ̀ lọ. +yof_04310_02067836659 [breath] Kí ló dé tí ò ń tẹ̀ mí lọ́rùn? +yof_02436_01875077648 A dúpẹ́, Ṣé wọ́n ń bẹ lálàáfíà ara? [external] +yof_08784_01929022269 [snap] Ó ṣe pàtàkì láti jẹ́ kí á mọ̀ pé àṣà àti ìṣe Yorùbá ní ìpìlẹ̀ tí ó dára. +yof_04310_01728965986 [snap] Wọ́n ṣe gẹ́gẹ́ bí Ifá ṣe wí. [external] +yof_04310_01548013571 [snap] Odò kìí ṣàn kó ó má ni orísun, òwe àwọn àgbà ni. +yof_04310_00910236777 Ọmọ tí a bí tí ó ń súnkún tọ̀san tòru. [external] +yof_09697_02067085904 [snap] A kọ́kọ́ júbà ki a tó lọ òde eré. +yof_03397_01830149516 [breath] Búgan tí bàbá mú wálé dùn púpọ̀. +yof_04310_00631642349 Ọ̀rẹ́ mi gbá bọ́ọ̀lù lẹ́ẹ̀mẹta kó tó wọlé. [external] +yof_03397_01039447076 [snap] O sọ pé ki n má bínú. +yof_08421_00519067876 [snap] Tó bá yá ẹ ó máa bú ìjọba, ṣé ohun tí o ṣe bójú mu? +yof_07049_00588179307 [snap] Odidi oṣù mẹ́ta ni àwọn ará ilé wa yóò fi gba ìsimi lọ sí òkè òkun. +yof_00295_00992063984 [snap] Ó sì tún jẹ́ ẹ̀bùn pàtàkì láti ọ̀dọ̀ Olódùmarè. +yof_01208_00197123131 [snap] Owú dúdú lowó iná. +yof_03034_01991796319 [snap] Ṣé ó ń dùn mọ́ ẹ? +yof_02484_00224789119 [breath] [snap] Afẹ́fẹ́ ń kọjálọ lẹ́sọ̀lẹ́sọ̀, gbogbo ohun ń lo létòlétò. +yof_04310_01762351338 [snap] Ilé ta fi itọ́ mọ, ìrì ni yóò wóo. [external] +yof_00610_00995276252 [snap] Òfin ìjọba ò jẹ́ kí àwọn oníṣòwò jèrè rárá. +yof_02484_00413323808 [snap] Ó rò pé màá fi orí lé ọ̀nà ìlà-oòrùn padà lọsí ilé lọ sùn fún ọjọ́ díẹ̀. +yof_02484_00399648332 [snap] Olúmóyè sọ pe ìgbà tí òun bí ọkùnrin ni inú òun dùn jù. +yof_09334_00869845028 [snap] Mo ò tíì ri irú erin tó tóbi báyìí rí. +yof_01208_01025805174 [snap] Àgbo ni Mojí ń mu kiri. +yof_05223_00254808948 [snap] Ẹ̀jẹ̀ ń yọ ní etí ẹ. +yof_08784_00589730773 [snap] Adémìlúyìí ni orúkọ tí a fẹ́ mọ ọmọ náà sí. +yof_06136_01402624383 Má fi fún mi mọ́. [external] +yof_00610_00179290410 [snap] Àríkẹ́ ni mo yàn láàyò jùlọ nínú gbogbo àwọn ọ̀rẹ́ mi. +yof_01208_00470649237 [snap] Ìjọ tí mo lọ lánàá wọ́n ń pariwo. +yof_09697_01606259657 [snap] àgbọn wà ní orí igi náà. +yof_08784_01549971059 [snap] Àyànmọ́ ò gbó’gun, ṣùgbọ́n ó gbọ́ àdúrà. +yof_05223_00296269338 [snap] Òkèfúnwá ti pinu láti ríi pé gbogbo ohun tí a nílò la máa rí gbà. +yof_03397_01157459252 [snap] Púpọ̀ nínú àwọn ọmọ Nàìjíríà ni wọ́n máa ń jẹ ìrẹsì. +yof_00610_01415298660 [snap] Èèwọ̀ Orìṣà, ilẹ̀ ò ní ṣú mọ́ olóore. +yof_00610_01750671961 [snap] Kí ló dé tí o lu etí méjì? +yof_04310_00160309100 Ohun tí a ó fẹnu jóná lé lórí iṣẹ́ yìí ni èdè àwùjọ àwọn agbèrò àti awakọ̀. [external] +yof_09697_01957963974 [snap] Àwọn ẹ̀dá inú ìtàn lè jẹ́ ènìyàn tàbí ẹranko bíi ajá, Ìjàpá, àti iwin. +yof_07049_01385017817 [snap] Àwọn akẹ́kọ̀ọ́ ti wọ inú kíláásì kí òjò náà to bẹ́ sílẹ̀. +yof_02484_00391095855 [snap] Ṣé o ti gbée fún ọ̀gá ẹ? +yof_09697_00744436398 [snap] Ó fẹ́rẹ̀ má sí ìlú ilẹ̀ Yorùbá kan tí wọn kìí tí ṣe ọdún ìbílẹ̀ níbẹ̀ mọ́. +yof_08784_01039051007 [snap] Kí ló lè mú kí orí máa fọ́ ni báyìí? +yof_07049_00505571393 [breath] [snap] Alòbá fi ewé wé ọṣẹ náà. +yof_09334_00810260693 [breath] Ọba Moróunfólú ò pé lóri oyè rárá, odún mẹ́ta péré ló lò. +yof_03349_01818675421 Òjó lọ ilé ní àná láti lọ mú owó ẹ̀ wá. [external] +yof_01208_00472449628 [breath] [snap] Ọkọ ìya Bádé ti ṣaláìsí. +yof_05223_00320595286 [snap] [breath] Ìdun wà lórí ibùsùn Gbénga. +yof_03397_00812934082 [snap] [breath] Wọ́n ti ti ilé ìtajà yín pa. +yof_07508_00174866381 Ó dà bí ẹni pé ó ti rẹ olùkọ́ọ wa. [external] +yof_08421_00944649911 [snap] Kí lẹ ṣe ń kílàsì lénìí? +yof_09334_02135557276 [snap] Mọ́ṣáláṣí wà ní ara ilé òhún. +yof_05223_01497686619 [snap] Ṣé kí a fún àwọn agbasọfọ̀? +yof_02436_00173932070 Ẹyẹ méjì ló wà lórí igi ọ̀pẹ. [external] +yof_06136_01583250418 [external] Ẹ ṣùpọ̀ sí ojú kan. [external] +yof_01208_00519793916 [breath] Ọkọ́ àti àdá jẹ́ ohun èlò gbòógì fún àwọn àgbẹ̀. +yof_05223_01899691871 [breath] Kí ọba òkè jọ̀ọ́ jàre kó kà wá mọ́ àwọn onínúdídùn ọlọ́rẹ. +yof_03397_01914060254 [snap] Ewúrẹ́ ń jẹ koríko. +yof_04310_01074793906 Ó ṣẹ̀ rí’ṣẹ́ mìíràn ni. [external] +yof_08784_01457669375 [snap] Ọ̀gá ni Sàmù nínú ká ya àwòrán aláràmbarà. +yof_02436_00168409874 [external] Báwo ni ò bá ṣe dùn tó kí àwọn alágbára má fi agbára da èèyàn láàmú. +yof_00610_01082110566 [snap] Ọmọ jayéjayé ni àwọn ọ̀rẹ́ mi. +yof_03349_01541381697 Ìkejà ò jìnà sí Ọ̀pẹ̀bí. [external] +yof_02484_02116635835 [snap] Wọn ò kọ́ ẹ bí wọ́n ṣe ń wa ọkọ̀ ni? +yof_04310_00210476340 [snap] Ibí lo sùn mòjú [external] +yof_09334_00663283013 [breath] Àjòjì ni mo jẹ́ ní ilẹ̀ tí mo ti lọ ṣe ètò àgùnbánirọ̀ mi. +yof_01208_01936712482 [breath] Mo gba iwájú fásitì Ìbàdàn kọjá lónìí. +yof_07049_01311259888 [snap] [breath] Ta ló ń dìtẹ̀ mọ́ Ọba wa Aláàfin. +yof_09334_01833970354 [breath] Inú àpò ni wọ́n kó aṣọ sí. +yof_05223_00082147141 [snap] Gàní ti lọ sí Ìlúu Mẹ́kà. +yof_01208_02123973225 [breath] Ìníolúwa ti di sisí ọmọge. +yof_04310_00679911403 Kí ni àwọn ìjọba tiẹ̀ ń fi gbogbo owó tí wọ́n ń ri ṣe gan? [external] +yof_03397_00821646554 [breath] Orúkọ ìwé náà ni Mátìíkú. +yof_09334_00170259977 [snap] Tí mo bá lè ṣe’pò kíní nínú ìdíje yi, bàbá mi á ra ẹ̀bún fún mi, èyì dá mi lójú. +yof_09334_00970779937 [snap] Wọ́n ti lọ ṣan ara wọn lẹ́yìn wàhálà púpọ̀. +yof_01208_00712661610 [snap] Kí ni ká fi ṣe yín l’álejò báyìí, ṣé ẹ ó jẹ àmàlà tàbí iyán ni ká gún? +yof_01208_00847476764 [breath] Babájídé ni adájọ́ ilé ẹjọ́ gíga tuntun tó wà ní Ìkòyí. +yof_08421_01045330228 [snap] Ìgéraga Gbénga ga tó bẹ́ẹ̀ tó jẹ́ pé kìí fẹ́ ba ẹnìkan sọ̀rọ̀. +yof_01208_01062815342 [snap] Gọ́tà náà ń rùn. +yof_02484_02096050669 [snap] Ta ló jẹ gbogbo oúnjẹ inú abọ́ tán? +yof_01208_00903343718 [snap] Inú Fáṣọpẹ́ ń bí mi. +yof_00610_01562969632 [snap] Olè náà sáré gba kọ̀rọ̀. +yof_07049_01316508476 [snap] Ọ̀làjú àti ẹ̀sìn àtọ̀húnrìnwá ti ń mú kí àwọn àṣà àti ìṣe wá dẹnukọlẹ̀. +yof_01208_00638640400 [breath] [snap] Ọlọ́run má jẹ a ṣòfò èmí. +yof_03034_01581815945 [snap] Ìgbẹ́kẹ̀lé nínú Olúwa kìí yẹ̀ láéláé. +yof_04310_00408193235 [snap] Ẹran ọ̀sìn ni ewúrẹ́ àti adìyẹ. [external] +yof_01208_00601301614 [snap] Wàyí o, kí a máa rántí pé gbogbo ohun táa bá ṣe la ma ká nikẹhìn. +yof_02484_00459365705 [snap] À ń ṣiṣẹ́ kí a tó rówó ni. +yof_02436_01391519131 A ti mú Doyin lọ sẹ́nu ìkọ́ṣẹ́. [external] +yof_06136_00478058506 Ààfin ni wọ́n ń pe iga ní Ọ̀yọ́. [external] +yof_04310_01556491316 Lọ ra ẹ̀pà àti gúgúrú wá. [external] +yof_05223_01681822112 [snap] Nígbà tí ó di òru, Ìjàpá múra, ó gbé agbọ̀n kan rù. +yof_02436_00842707344 [external] Ìyá náà pàdánù ọmọ rẹ̀ láàárín ọdún kan. +yof_08421_01778612081 [breath] Bàbá mi gbọ́ òyìnbó ̣sùgbọ́n kò fi bẹ́ẹ̀ mọ̀ọ́ sọ. +yof_08784_00544152911 [snap] Owó ẹyọ là ń ná láyé àtijọ́. +yof_09697_01494581564 [snap] Fọlá Àgòrò ni bàbá ìyàwó mi kó lọ. +yof_08784_01896109786 [snap] Mo fẹ́ràn irun orí rẹ̀. +yof_01208_00990579992 [breath] Òróró gbígbóná ta bà mí nígbà tí à ń dín ẹran. +yof_07049_00923649568 [snap] Àra mí ń ko’ná ní òru m’ọ́jú, ọpẹ́lọpẹ́ Ṣayọ̀ tó tọ́jú mi. +yof_09697_01656476329 [snap] Ọjà ńlá ni Akẹ̀sán jẹ́. +yof_08784_00742493444 [breath] Ọmọ ọ̀lẹ ò ṣeé yá ní tọ́rọ́. +yof_05223_02094567934 [snap] Ojíkutú wà ní ilé ìwé gíga ti Ìlú Èkó. +yof_08421_01336941773 [snap] Ìlù àti agogo máa ń sábà jẹyọ nínu orin. +yof_02436_00361836010 Ó pọn dandan láti rán wa létí pé Káàárọ̀ Oò Jíire ni wá. [external] +yof_08784_01226295413 [snap] Lọ wo ẹ̀wà tí mò ń sè nínú kíṣìnì. +yof_03397_01332634983 [snap] Ìbálòpò tọkọtaya ni a ń sọ. +yof_03397_01839557474 [snap] Bàba Bísí na Bísí lálẹ́ ìjẹta. +yof_07505_00823664251 [external] Èdè ni à ń lò ní àwùjọ èèyàn púpọ̀, kí àgbọ́yé àti àsọyé lè wà. +yof_02484_01094305838 [snap] Gbogbo ara ni mo fi kí ẹ jàre, àbúrò mi. +yof_03349_00898841129 A ní ìbálòpọ̀ pẹ̀lú ara wa. [external] +yof_04310_00614899915 [snap] Ní ọjọ́ ìbí Adérónkẹ́, pẹ́pẹ́yẹ p’ọmọ, a f’ilé pọtí, a f’ònà rokà. [external] +yof_03349_00970310332 Mo ti sùn lé ọrùn mi. [external] +yof_07049_01984456055 [snap] Ọ̀gá ni Bísóyè níbi ká máa ṣe ìwádìí nípa ìmọ̀ èrò. +yof_02484_01636644213 [snap] Ọ̀rọ̀ ìfẹ́, bí i àdánwò ni. +yof_03349_00566422663 Orí ń yún mi láti ìjẹta. [external] +yof_01208_01649157536 [snap] [breath] Aáyán fò sí Adéọlá ní ẹ̀yìn ọrùn. +yof_08784_01088575745 [snap] [breath] Ọmọ ọkùrin yẹn dá èkááná sí. +yof_07508_00501211983 Àgbẹ̀ r’oko b’ódún dé [external] +yof_04310_01284468210 [breath] Èdè Gẹ̀ẹ́si ti di gbajúmọ̀ láàárín àwọn èdè àgbáyé. [external] +yof_06136_00342631254 [external] Pọ́ọ̀lù ló bá mi wá iṣẹ́ náà. +yof_07508_00739318175 Bí Ọládùnúní àti Ọláfibọ̀ ti lè d’ẹ́sẹ̀ náà, wọn ti tọrọ àforíjì. [external] +yof_02436_01661108333 [snap] Ire Owó ni mo yàn kó wọ’lé mi wá. +yof_01208_00149021540 [snap] Ìyá wọn ti dolóògbé. [breath] +yof_08421_01593132978 [breath] Gbogbo àwọn nǹkan tí ó ṣàjèjì sí wa nípa epo pupa ni a ti tú jáde yékéyéké. +yof_04310_01542210037 [breath] Tí mo bá rí aláboyún, àyà mí ma ń là gàràgà. +yof_00610_02021134051 [snap] Ajá là n pa b’ọ̀gún. +yof_03034_01619608827 [snap] Wọ́n pa Olúwa wa, ó sì jíǹde. +yof_04310_01677090287 [breath] Ilé ẹjọ́ ti tú ìgbéyàwó náà ká. +yof_08784_01203824640 [snap] Àwọn ọmọ ogun orí omi wà níbẹ̀. +yof_08421_00396477740 [snap] [breath] Bí ọdẹ bá ro iṣẹ́ ro ìyà inú igbó, tí ó lọ pa ẹran kò ní f’ẹ́ni kan jẹ. +yof_08421_01198565027 [snap] Ìṣẹ̀lẹ̀ náà ní agbára jọ̀jọ̀, ó fẹ́rẹ̀ da àárín gbogbo ebí rú. +yof_09697_00307454277 [snap] Àwọn méjì ń jà lójú títì. +yof_03034_02061554891 [snap] Ẹ̀gbọ́n mi ti ṣe ìkómọ ní ọ̀sẹ̀ tó lọ. +yof_02484_00654316610 [breath] Ilé ò ní lé wa, ọ̀nà ò sì ní nà wá. +yof_02436_01868930179 Mo rò pé ẹnìkan ti tọwọ́ bọ̀ọ́ ni kò fi ṣiṣẹ́. [external] +yof_02484_01012955131 [breath] Ìgbéyàwó kìí s’ohun kékeré. +yof_05223_01583517800 [snap] Atẹ́ ti kúrò ní ile ìwé wa. +yof_09334_00667825269 [breath] Oríṣiríṣi ọgbọ́n ni àwọn bàbá wa máa ń ta láti de ọmọ tí ó bá jẹ́ àbíkú mọ́lẹ̀. [breath] +yof_07508_01198964831 ọ̀fà ba ọmọ ogun rè l’ẹ́sẹ̀ [external] +yof_09697_01046463469 [snap] Ẹwọ̀n egbére ni a dá fun Aníní. +yof_04310_01466171125 [breath] Akọ̀wé Ẹgbẹ́ ni Tẹ̀là. +yof_04310_00904609684 [snap] [breath] Adájọ́ dáa lébi ẹ̀sùn táa fi kàn-án. +yof_01208_01239175573 [breath] Oyíndà ti sọnù lọ́nà. +yof_05223_01828699056 [snap] Gbogbo àwọn ènìyàn náà ti lọ sí àárín ìlú. +yof_09697_00946372743 [snap] A ti parí isẹ́, a dúpẹ́. +yof_01208_01598808957 [breath] Àárò Wọnúọlá sọ mí. +yof_03397_01709815471 [snap] Irun rẹ̀ ta kókó. +yof_02484_01064046949 [snap] Àwọn ilé alájà ńlá ńlá ló wà ní ọ̀nà ibiṣẹ́ bàbá mi. +yof_07505_02005553197 [snap] A nílò ọgbà ńlá láti gbin àwọn èso náà. +yof_00610_00596366605 [snap] Ẹgbẹ̀rún ahọ́n kò tó láti yìn ọ́. +yof_06136_00615215021 A ò ní rìn ní ọjọ́ tí ebí ń pa ọ̀nà. [external] +yof_03349_00682505549 Àwọn ènìyàn súnmọ́ olódùmárè pẹ́kípẹ́kí. [external] +yof_02436_01299205830 À ń lùú, ó ń dun. Ọpẹ́ ló yẹ wá. [external] +yof_07508_00972680292 Ìrìn àjò ànà ò dẹrùn rárá, ẹnu gan kò lè ròyìn rẹ̀ tán. [abrupt] +yof_01208_01740136044 [breath] Kẹ́ẹ tún ilé ṣe kí a tó dé. +yof_03397_01945747888 [external] Ìgbà tí ó ti ilẹ̀ mímọ́ dé ni ó ṣe sàráà. +yof_02484_00339367392 [snap] Aṣọ ìbora náà kò nípọn. +yof_03397_01443818787 [snap] Ẹ kú ìjóko o, gbogbo ilé àti ọjà. +yof_03397_01876359592 [snap] Ta ló gbé omi tí mo pọn? +yof_03397_00061704958 [snap] Ọba nìkan ló lè jó sí ìlu gbẹ̀du. +yof_01208_00385349272 [snap] Ọba òyìnbó kìí dé Adé rẹ̀ ní gbogbo ìgbà rárá. +yof_02436_00265556124 [snap] Igi tí wọ́n fi ń koná àgbo òhún ti jó tán. +yof_02484_00046062764 [breath] Mo nífẹ̀ẹ́ àwọn mọ̀lẹ́bí mi púpọ̀. +yof_09697_02140218167 [snap] Àwọn olópò náà gbìyànjú púpọ̀. +yof_08421_01762397439 [snap] Àwọn ọmọ náà mọ̀ pé ó dára láti wùwà rere. +yof_03397_00295107415 [snap] Báwo ni wàá ṣe máa da ilẹ̀ sí ojú àgbàrá báyìí? +yof_03397_01192744519 [external] Àwọn ọdẹ etílé kìí wọnú igbó kìjikìji. +yof_01208_00437196948 [breath] Tóo bá dé oko àwọn Àkànmú, wàá fẹ́ràn iṣẹ́ àgbẹ̀. +yof_08784_00531215237 [snap] Ó ti rẹ̀ wá sínú ọkọ̀ tí a wà, àti òwúrọ̀ ni ọkọ̀ náà ti ń wà wá kiri. +yof_07508_01736533545 [snap] Búrẹ́dì ni wón tà ní iwájú ṣọ́ọ̀ṣì yìí tẹ́lẹ̀. +yof_09697_00305319491 [snap] Òrìsà ọmọ ni Òrìsà Ọ̀sun. +yof_03397_01091309012 [snap] Ó máa ń ni elégbè rẹ̀ lọ́dọ̀. +yof_02436_02010584865 [breath] Ilé ẹ̀kọ́ girama tó wà ní Jíbówú ni Akíntádé ti bẹ̀rẹ̀ iṣẹ́. +yof_04310_00956240726 [snap] Sọ̀rọ̀sọ̀rọ̀ ni gbogbo wa, àbí? +yof_03397_00517287199 [breath] Ìdí rèé tí ó fi jẹ́ pé àwọn àgbà ilé, bíi báálẹ̀, ló máa ń fún ọmọ tuntun lórúkọ. +yof_07508_01736765902 [snap] Ìyàwó Adéfarasín bàá nínú jẹ́. +yof_03349_01690857219 Lára àwọn ohun tí a fi máa ń dáná nílé ni ìkòkò àti àdògán. [external] +yof_00295_00216817283 [breath] Ibi ọ̀rẹ́ náà ló ti ń bẹ̀rẹ̀. +yof_04310_00015303829 [snap] Ilé ilẹ̀ náà ti kún. [external] +yof_09334_02133435737 [snap] [breath] Ọmọ Ọba ni Adédọlápọ̀. +yof_03349_00511312448 Àlùfáà yín tuntun ti ṣiṣẹ́ ní ìjọ wa rí. [external] +yof_02484_00877011242 [snap] Ó yẹ kí a gbádùn ayé ni. +yof_01208_00647822231 [breath] Nígbà tí a wà ní kékeré ìya Lábísí máa ń na ẹni tó bá súfe nínú ilé. +yof_09334_01179626818 Nínú yàrá náà, ènìyàn márùn-ún ló ń sùn síbẹ̀. [breath] Ọ̀rẹ́ làwọn máràrùn. +yof_04310_00533620836 [external] Ó bí ìkẹta, bákan náà tún ni. [external] +yof_05223_01387174438 [snap] Àwọn adájọ́ mẹ́sàn-an ni wọ́n dá ẹjọ́ náà. +yof_03397_00789135904 [breath] Ibo ni Sànúsí wà? +yof_08784_00987193471 [snap] Wẹ̀mímọ́ rò pé òún gbọ́n. +yof_08784_01267253520 [snap] Ọ̀kẹ́rẹ́ náà sá gorí igi. +yof_07049_00780852618 [breath] Ǹjẹ́ ìwọ́ tí dé Ìdúmọ̀tà rí? +yof_01208_01644559069 [snap] Títa ni àkekèé máa ń tani. [external] +yof_03397_00273694937 [snap] Ọ̀gágun Abéégúnrín àti àwọn ọmọ ogun àpapọ̀ ti lọ sí ojú ogun. +yof_08784_01452515597 [snap] Mo y’ọjú wo àwọn àlejò náà l’átòkè. +yof_06136_01854493514 [external] Mí o gbé omí dání. [external] +yof_09697_01968734524 [snap] Oyè jíjẹ jẹ́ oun tí a máa ń lò láti bọ̀wọ̀ fún àwọn èèyàn jànkanjànkàn. +yof_00295_01000028539 [snap] Ìrìn àjò yí lárinrin láìní àwọn kọ́núukọ́họ kankan kankan.. +yof_01208_00920881957 [breath] Inú omi àti orílẹ̀ ni èyàn ti lè rí ọ̀ọ̀nì. +yof_01208_01446619232 [snap] Àbẹ̀kẹ́ mu àgbo títí tí ó fi fẹ́ bì. +yof_09334_00036718185 [breath] Ikú dóró, ó mú ìyá àgbà kékeré lọ! +yof_09334_01696965458 [breath] Nígbà tí ọmọ yìí dàgbà, ó tọ́jú ilé àti ọgbà. +yof_08421_01026307869 [snap] Wàyí, ó ye ká yànàná rẹ̀ wípé bí a ṣe ń lo èdè yàtọ̀ sí ara wọn. +yof_04310_00433700017 Ṣé o ti gbé ẹ̀bùn ọ̀hún fún ẹni tí mo rán ẹ sí? [external] +yof_01208_01487943501 [snap] A ti sanwó tí wọ́n ní ká san. +yof_02484_00085407980 [snap] Ǹjẹ́ ó ṣeéṣe kí Àrólé pa ọ̀rẹ́ rè? +yof_03397_00128241889 [breath] Wọ́n gbin òdòdó sí àárín ọgbà ilé náà. +yof_08784_00272071394 [snap] A ti tọ́ka sí igi obì gẹ́gẹ́ bí igi owó pàtàkì kan láwùjọ Yorùbá. +yof_02436_00264730319 Aṣọ híhun jẹ́ iṣẹ́ kan tí àwọn obìnrin yàn láàyò ní ìlú wa. [external] +yof_02484_00258843478 [snap] [breath] Mo mọ̀ bẹ́ẹ̀, pé o ti lọ sí Ìkòròdú. +yof_02121_01108029577 [snap] Gẹ́gẹ́ bí ifá yìí ṣe ṣàlàyé, ire lojú owó ń rí. +yof_04310_01940084104 [snap] Kí ni ìdí pàtàkì tó fi yẹ kí a kọ́ ilé yìí? +yof_09334_00336834348 [breath] Igbó lótun lósì, àwọn ilẹ̀ náà yóò wúlò fún ìjọba lọ́jọ́ iwájú, àbí kí lẹ rọ̀? +yof_01208_01689550347 [breath] Ìyá àgbà ti s’olóògbé. +yof_04310_00232948022 [breath] [snap] Mo máa bọ́’lè ní oríta-mẹ́rin yẹn o, ẹ jọ̀wọ́ ẹ rọra tẹná mọ́’kọ̀. [external] +yof_08421_01315588850 [breath] Ìmọ̀ ti fi yé wa pé Òrìṣa Ògún ni àwọn alágbẹ̀dẹ. +yof_03397_00077615792 [snap] Ìjọ mà ń jẹyọ̀ nínú rẹ̀. +yof_02484_02051319706 [breath] [snap] Ìgbà tí Olùwa rẹ̀ dé ni Fadérẹra dákẹ́. +yof_09334_01556622805 [breath] Alábòsí ni wọ́n, [breath] àfàìmọ̀ kí ìṣe burúkú náà má bá wọn dàgbà. +yof_09697_01447898899 [snap] Wọ́n máa ń ṣe orò fún ẹnikẹ́ni tó bá fẹ́ j’̣ọba. +yof_04310_00570515222 [breath] Jẹ́ ka jẹ ègbo àti ẹ̀wà. +yof_05223_00567029601 [snap] Wàhálà tí àwọn ènìyàn ṣe láti lè jẹ́ ènìyàn láyé kìí ṣe kèrémí o. +yof_00610_00894937637 [external] Kìí ṣe gbogbo ènìyàn ló mọ ìtumọ̀ orúkọ mi àfi àwọn tó ní ìmọ̀ tó jíire nípa orúkọ. +yof_07049_01623034007 [snap] Alhaji èyí ò dára tó, ó kù díẹ̀ káà tó. +yof_00610_00315589023 [snap] Èyí tí ó wá tún ṣe pàtàkì jùlọ ni wípé àwọn eniyan gbàgbọ́ pe ẹ̀mí ń bẹ lẹ́yìn ikú. +yof_08784_01986960003 [snap] Ṣé oṣó ni ẹ́ ni tàbí iwin? +yof_01208_01330865557 [snap] Ọmọkọ́mọ ni Dèjì. +yof_09697_01759056954 [snap] Ẹ máa sọ̀dí wùkẹ́wụ̀kẹ́. +yof_03397_00919605004 [snap] Ọmọ dada ni mí látijọ́. +yof_04310_01551487218 [breath] Tírélà náà ti dànù sí òpópónà Àpápá. +yof_00610_00345865767 [snap] Mo ṣèṣẹ̀ dé láti Califonia ni. +yof_00295_01687502216 Àsàwọ́ wà nínú oúnjẹ náà. [external] +yof_09697_01073186386 [snap] Ọlọ́run nìkan ló mọ ohun tó ń ṣe fún àwọn ará ìlú. +yof_01208_01881223794 [snap] [breath] Yá mi ní gègé ìkọ̀wé rẹ. +yof_00610_00181656093 [snap] Màmá ni ki a máa fọ ẹsẹ̀ kí a tó bọ́ sórí ìbùsùn. +yof_05223_00032169015 [breath] Ìtan fèyíkọ́gbọ́n ni eléyìí fún gbogbo ẹ̀dá Ádámọ̀. +yof_09334_00716656866 [snap] Orúkọ ṣe pàtàkì, ó ṣe kókó; kò sí nǹkan tí a dá tí kò ní orúkọ. +yof_06136_00981963925 [snap] Àdùkẹ́ ń ta Mọ́sà ní àdúgbò kan ní Olúwọlé. +yof_02436_00005256703 [snap] Òdòdó kan ni a wá já n’ílée yín. +yof_07049_01147957480 [snap] Túndé sọ pé kábíyèsí wá sí ibi òde náà. +yof_07508_01851147890 Ayọ̀mídé ti rí’ṣẹ́ sí ìlú ọba. [external] +yof_04310_00856689436 [snap] Balùwẹ̀ ni mo bọ́ sí tí mo ti ń jó. [external] +yof_02484_01511236377 [snap] Gba owó yìí kí o fi jẹun àárọ̀. +yof_02484_01508867112 [snap] Egúngún náà ni Yorùbá máa ń pè ní ará ọ̀run. +yof_04310_00905639906 [breath] Faransé ló gba ife ẹ̀yẹ àgbáyé bọ́ọ̀lù ní ọdùn tó kọjá. +yof_08421_00594106710 [snap] Olúwa, má ṣe ìgbọràn. Àánú ni mo tọrọ. +yof_07508_00016356171 Omi tí mo fẹ́ mu wà nínu kòkò irin. [external] +yof_08784_01125828407 [snap] Ọdún egúngún yóò bẹ̀rè láìpẹ́. +yof_04310_00700503650 Ó ja ọbẹ̀ sí aṣọ. [external] +yof_03397_01762543893 [snap] Kọ́bọ́ọ̀dù rẹ̀ ti bàjẹ́. +yof_06136_01371642069 Ẹni tó lówó layé yẹ. [external] +yof_04310_00993834189 [breath] Àmì ayò mẹ́ta sí méjì ni Sàlámì fi na Sàláwà. +yof_08784_02107619366 [snap] Mo sọ fún Ajírébi pé tí ó bá ti ráyè kí ó wá kí mi nílé. +yof_04310_01719598923 [breath] Kòsọ́kọ́ ni àbígbẹ̀yìn bàbá tìrẹ. +yof_09697_00388958749 [snap] Ilé ti sú mi, ibo ni a lè lọ? +yof_02484_00129353296 [snap] T’akọ t’abo la dálé ayé. +yof_07508_00113880867 [snap] Ọkọ̀ náà ti bàjẹ́. +yof_03397_00732935162 [breath] [snap] Mo rántí ijọ́ tí ọmọ náà na ẹ̀gbọ́n rẹ̀ pa. +yof_02436_00514619092 [snap] Igi gogoro ni wọ́n gé. +yof_04310_00469190884 [breath] Akíntúndé ti ṣètò gbogbo ìwé ìrìn àjò mi. +yof_07049_01383219624 [breath] Ọmọ́yẹlẹ́ ti yọ fáìlì náà kúrò ní ibi tí a kóo sí. +yof_00295_01810873549 [snap] Àṣá gbé ọmọ adìẹ fò lọ. +yof_07049_00278461185 [snap] Ibi ìjà kan ní kétu ni wọ́n ti fọ́ ojú ọmọ náà. +yof_07508_00925096036 Ogun ni ìlú yìí wà ní òní bó tilẹ̀ jẹ́ pé wọ́n máa ń fẹ́ kí gbogbo ayé rò pé àlááfíà ni. [external] +yof_08784_01273461739 [snap] Bíbíire, Tìmílẹ́yìn àti Ṣẹ́gun jẹ́ ọ̀rẹ́ tímọ́tímọ́. +yof_01208_01374661369 [breath] Òkè àjà la gbée sí. +yof_00610_00060159369 [snap] Akéré fi inú ṣe ọgbọ́n ni wọ́n ń pèé. +yof_02484_01995229507 [breath] Òkè gíga pọ̀ ní àdúgbò yín. +yof_09697_01250179382 [snap] Akíntópé kìí ṣẹgbẹ́ẹ Ọládíji rárá. +yof_04310_00927801921 [breath] Àbá ni ikán ń dá, ikán ò le j’òkuta. +yof_05223_02066223744 [breath] Kìí ṣe awọn ọmọlóòkú nìkan ni o ti ṣe ní àǹfàní tipẹ́tipẹ́. +yof_03034_00500474867 [snap] Akokoro ló múu l’ẹ́yin. +yof_09334_00702481759 [breath] [snap] Bí ọmọ yìí ṣe máa ń sọ̀rọ̀ máa ń múmi lọ́kàn. +yof_08784_00184067496 [breath] Ẹ ṣe kíákíá kí a má baà pẹ́ dé. +yof_07508_01897127743 [snap] Kí wa ló tún kù tí ìyá Bọ̀dé ń wá káàkiri báyìí? +yof_05223_02014655312 [snap] Fálànà jẹ́ ògbóǹtarìgì agbejọ́rò àgbà ní orílẹ̀ èdè yìí. +yof_07505_02079668596 Gbogbo wa ni ọ̀rọ̀ yìí kàn. [external] +yof_09334_02077328449 [snap] Akálolo ni Bídèmí nígbà tí ó ṣì kéré ṣùgbọ́n ó ti yàtọ̀ díẹ̀ ní sìnyí. +yof_03397_00943400655 [snap] Mo kórira irọ́ láyé mi. +yof_09697_00503862354 [snap] Wọ́n ni ilè àwọn Jẹ̀mílá l’àwọ́n wà. +yof_02436_01686003422 Ìwé mẹ́rin ni ọ̀gbẹ́ni Caleb ní ka rà. [external] +yof_05223_01516609173 [snap] Atọ̀ọ́lé ni ọmọ náà. +yof_09334_00199388967 [breath] Àkìtàn ni gbogbo àdúgbò náà ní ayé ìgbà kan. +yof_09334_01229972431 [breath] Èdè ni ọ̀nà ìgbà báni-sọ̀rọ̀, èyí tí a fi ń gbé èrò-ọkàn wa jáde. +yof_03349_01726220586 [external] Ní àkótán ìwúrí láti ẹnu àwọn àgbà dára púpọ̀. +yof_07049_01634490943 [snap] Àwọn gangan ni àpẹ̀ẹ̀rẹ̀ ọ̀rẹ́ kítíkítí àti ìyékan kàtàkàtà. +yof_02484_01318183615 [snap] Ọtí ẹlérin dòdò ni wọ́n fi ṣe mí lálejò ní’bi òde ìyàwó tí mo lọ. +yof_01208_02144560182 [breath] [snap] Eṣinṣín wá tìlẹ̀kùn ṣáláńgá mọ́rí, ó l’óun ò ní jáde àf’ìgbà tí wọ́n bá fún-un níyàwó. +yof_02484_00509715747 [snap] Ilà gọ̀m̀bọ̀ ni Tìmílẹ́yìn kọ. +yof_01208_01947924185 [snap] Jẹ́ ká jọ jó. +yof_09334_00766999305 [breath] Adémọ́lá nìkan ni ẹni tó mọ̀ ẹ̀dùn ọkàn mi. +yof_04310_00890520978 [snap] Kí ló ń ṣẹlẹ̀ ní ìlú yẹn ná? +yof_00295_00849678849 [snap] Ṣé o ti jẹ ẹran ajá rí. +yof_04310_00329742582 [breath] Ọbabìrin Ilẹ̀ Gẹ̀ẹ́sì ti pẹ́ lórí oyè gan ò. +yof_02484_01981452867 [snap] Aláriwo ọmọ ni ẹ́. +yof_07049_01783255606 [snap] Ó ní èyí tóun mú lọ́wọ́ yìí ńkọ́, ṣé k’óun fi sílẹ̀ ni? +yof_02484_00346763200 [snap] Ó ti tóbi jù, mí ò lè gbée. +yof_09697_01676277070 [snap] Adébánjọ fẹ́ran ẹja tútù láti jẹ. +yof_08421_00630972670 [breath] Ní ọjọ́ kan, o múra oko dé, pẹ̀lú ìhámọ́ra. +yof_02484_00724222816 [snap] Ẹ́sítérì máa ń hùwà òmùgọ̀. +yof_09334_00548346321 [breath] Kí a ní ìyàwó tó rẹwà kò ṣe pàtàkí tó èyí tó n’íwà. +yof_04310_01398412702 [breath] Àlùfáà ń wàásù fún àwọn ọmọ ìjọ. +yof_00610_00210141640 [snap] Iṣẹ́ atọ́kọ̀ṣe ni Kọ̀tún kọ́. +yof_01208_02100893630 [breath] Agbọ́n ta Ṣubúọ́lá. +yof_05223_01438796130 [snap] Mo bẹ̀rù olóńgbò púpọ̀. +yof_00295_00626766260 [snap] Ilé títúnṣe àti ọmọ títọ́ ni iṣẹ́ ti àwọn ìyá nígbà yẹn. +yof_02436_00449019537 [snap] Bí ènìyàn ṣe ń lo èdè bẹ́ẹ̀ náà ni àwọn ẹrankọ ní bí wọ́n ṣe máa ń bára wọn sọ̀rọ̀. [external] +yof_09697_00984469114 [snap] Wá rí mi, mo ní ǹkan tí mo fẹ́ fún ẹ. +yof_07508_01183278413 [snap] Ìmọ́tótó borí ààrùn mọ́lẹ̀ bí ọyẹ́ ṣe ń borí ooru. +yof_02484_01043432786 [breath] Àlùbọ́sà ni ó ń tà. +yof_09697_01757038540 [snap] Oúnjẹ náà ti rà. +yof_02484_00536208042 [breath] [snap] Wọ́n gbàgbọ́ pé iṣẹ́ tí àwọn fi orúkọ náà rán sí ọmọ bẹ́ẹ̀ yóò kó ipa ribiribi. +yof_02484_01547076484 Ọmọ yẹn ò lẹ́kọ̀ọ́. [external] +yof_07049_01177255698 [external] Ilé ìwòsàn ní Ládòkè ti padà rí ẹni tí ó ń wá. +yof_03034_00020547990 [snap] Mo fẹ́ dá ilé iṣẹ́ atẹ̀wé ìròyìn sílẹ̀. +yof_01208_01086644624 [snap] Ó ti padà dé láti òkè òkun. +yof_04310_01165246344 [snap] Bẹ́ẹ̀ àṣejù wọ́n ti bẹ̀rẹ̀ níkẹyìn. +yof_08421_00164286573 [breath] Oò sì ní ṣ’aláì bímọ. +yof_02484_00632943504 [snap] Olówó ló layé ni wọ́n máa ń wí. +yof_01208_00887501793 [external] Gbogbo àwọn ọmọ tó bí ti kú mọ́ọ lójú. +yof_05223_00456699097 [snap] Kò sí bí èèyàn kan ṣe le kàwé tó, kò lè mọ gbogbo ǹkan tán nílé ayé. +yof_02484_01087002126 [snap] Ní ìgbà láíláí, ọ̀rẹ́ ni ìjàpá àti àdàbà jẹ́ sí ara wọn. +yof_02436_01286460121 Ọ̀dẹ̀ burúkú l’ọmọ Ajíbóyè yìí tó dá mi dúró. [external] +yof_00610_01607947502 [snap] Ẹ̀fọ́rí ló kọ lùú. +yof_03397_01226004504 [snap] Alágbára ọdẹ ni bàbá náà. +yof_00610_00628508754 [snap] Etí rẹ̀ pẹ̀lú a sì máa gbọ́ ìgbọ́kùgbọ̀ọ́. +yof_03034_00264939782 [snap] Adétọ́lá wà ní ilé ìwé gíga. +yof_02436_00666998882 [snap] Ẹ̀rọ ayárabíàṣá ni mo fi ṣe iṣẹ́ náà. +yof_01208_00067224728 [snap] Ẹ kú ọjọ́ ìbí ooo, ọ̀jọ̀gbọ́n Ṣóyínká. +yof_02436_01737761830 [breath] Akẹ́kọ̀ọ́ ilé ìwé girama ni Ọládiípọ̀. +yof_05223_00247005512 [snap] Ìjàm̀bá ọkọ̀ òfurufú tó ṣẹlẹ̀ níjọ́sí ò tíì lọ lórí àwọn ènìyàn. +yof_04310_01620390540 Ẹ̀ṣọ́ dára fún ara. [external] +yof_05223_01876027689 [breath] Alákọrí ni Àkànbí tó k’àkànpọ̀ nínú ooru. +yof_03397_01922915596 [snap] Iké màlú náà tóbi. +yof_09334_02113816538 [snap] Olúwa, má jẹ ka pàdánù. +yof_04310_01932829824 [snap] Gbà gbà gbà lọkọ̀ ń dún lóríi títì. [external] +yof_05223_00512519783 [snap] Ó ti rẹ̀ wá púpọ̀. +yof_04310_00056710885 [breath] Pẹ̀lúmi pè mí láti dúpẹ́ oore. +yof_05223_00560233785 [snap] Lọ wẹ̀ kí o yé rùn. +yof_06136_00298333158 [external] Ìyàwó ẹlẹ́sẹ̀ osùn, rọra máa wolẹ̀. +yof_09334_00112746173 [breath] Níbi tí mo rìnriǹ àjò lọ, [snap] ará oko gbáà ni wọ́n. [snap] Wọn-òn dá ohun kan mọ̀. +yof_00610_01514205008 Ẹ̀mí á ṣe púpọ̀ ọdún láyé. [abrupt] +yof_09334_02080052422 [snap] Ilẹ̀ẹ ta lèyí? +yof_01208_00306821414 [breath] Ìya oní gaàrí ti ń bọ̀. +yof_00610_00614095697 [snap] Adìẹ ti yé ẹyin sílẹ̀. +yof_07049_01340613298 [snap] Àwọn ohun amáyédẹ̀rún ti pọ̀ lóde. +yof_03397_00432926679 [snap] Ìréde òru ti àwọn ọ̀dọ́mọgé ìsíyìín rawọ́ lé mà ti wá peléke. +yof_02484_00382079201 [snap] Ṣé pé a lè dolówó dọlọ́rọ̀ látara gbíngbin igi obì. +yof_04310_01092495014 [snap] Aláfẹ́ ni bọ̀dá Ládi. +yof_08784_00244900176 [breath] O fẹ́ bá ọmọ yẹn sùn àbí bẹ́ẹ̀ kọ́ ni? +yof_09334_02102071074 [breath] Àbẹ̀kẹ́ ti kiri àgbàdo lọ. +yof_05223_01859615563 [snap] Adéforítì ní ìforítì. +yof_02484_01513293074 [snap] Tùràrí olóòórùn dídùn ni wọ́n fi sí ibi ìtẹ́ òkú. +yof_00610_01106522957 [snap] Ikún wà ní imú rẹ. +yof_00610_01837148160 [snap] Láfihàn ló gba àmì ẹ̀yẹ Ọba. +yof_03397_01579483526 [snap] Ìgbàyí ni ọlá mi tó kún. +yof_02436_00242635634 [snap] Àná ò le jọ t’òní, tòní ò sì jọ t’ọ̀la. [external] +yof_03349_00052507588 Akọ ń lé ‘rin, abo ń gbè é. [external] +yof_02484_01903695751 [snap] Wọ́n fẹ́ràn láti máa jẹ àkàrà. +yof_02436_01123459149 [snap] Kí ló dé tí o wà nínú àhámọ́. +yof_08421_01377849773 [breath] Ẹ̀yin ará ẹ jọ̀wọ́, ìwé ìdánimọ̀ mi àtẹ̀yìnwá ní àwọn ìṣọ̀rọ̀ kan. +yof_08421_01131178845 [snap] [breath] Adéẹ̀kọ́ ní òun nífẹ̀ẹ́ omí jù ó ti lọ. +yof_00610_00424989564 [snap] Àgbàlagbà ara lọ́ fi bí’mọ. +yof_02484_00585273800 [snap] Ó gbe ọmọ rẹ̀ wá kí mi ní’lé. +yof_04310_00516337811 [snap] Bíyi ti padà sí Èbúté Mẹ́ta. +yof_03034_01688012815 [snap] [breath] Ó dá mi lójú pé mo mọ iṣẹ́ náà ṣe. +yof_02484_01712528763 [breath] Túndé ti lọ gẹ’run ẹ̀. +yof_07049_00274271992 [snap] Akọ́lédowó ti kọ́lẹ́ alájà méje. +yof_08784_01164044378 [snap] Kílàsì àkọ́kọ́ ni a ti kọ́ nípa Fonọ́lọ́jì. +yof_02436_01717699348 [snap] Kí Ọlọ́run má fi oúnjẹ wa síbi tó nira. +yof_02484_00072556300 [breath] Ìró wà ní orí ilẹ̀kùn. +yof_07049_00923023128 [snap] Ta ló tẹ ìlù yìí dó? +yof_01208_01931207025 [breath] Àwọn ohun èlò akọrin ni ìlù, fèrè, jìtá, àti agogo. +yof_09334_01438189706 [snap] Ẹ má lọ sínú igbó lóru o. +yof_01208_00891249071 [snap] Òkè pọ̀ ní Ìṣẹ̀yìn ju Ọ̀yọ́ lọ. +yof_03034_01047522616 [breath] Ẹsẹ̀ ń ro mí ooo, ta ló rán mi n’íṣẹ bọ́ọ́lù gbígbá. +yof_09334_02132717687 [breath] Ẹ̀wọ̀n gbére ni wọ́n ju ọ̀daràn náà sí. +yof_07049_00928611031 [snap] Moróunkẹ́ fọ́ ọkàn mi sí wẹ́wẹ́. +yof_07505_02069377383 [external] Kò sí bí òǹkọ̀wé Yorùbá ṣe fẹ́ tẹ̀lé òfin àkọ́kọ́ gẹ́gẹ́ bí àpẹẹrẹ. +yof_05223_01872549474 [snap] Ìjàkùmọ̀ kìí rìnde ọ̀sán. +yof_08784_00500830446 [snap] Mi ò lè dé mọ́ lónìí, torí àwọn ọ̀rẹ́ méji yìí ti bá mi jà. +yof_01208_00525095815 [breath] Inú ilé ni mo bá ìyàwó kékeré tí wọ́n fẹ́ fún bàbá. +yof_07049_01228983958 [snap] Ó yẹ kí n yọjú síi yín láìpẹ́. +yof_02436_00212847507 Kí màmá tó lọ sọ́jà ló ti sọ fún mi kí n pàrọ̀ aṣọ àbúrò mi. [external] +yof_08421_00566794110 [snap] Àwọn Ọmọ náà fẹ́ kọ́ èdè Yorùbá. +yof_02484_01096901911 [snap] [breath] Bí a ṣe ń gbà ó nínú wàhálà kan lo ń bọ́ sí òmíràn. +yof_03397_01401887020 [breath] Èyí ni ó mú wa fi òwe wá àwọn oun tó sọnù sínú ọ̀rọ̀ Yorùbá. +yof_05223_02094549470 [snap] Àdùké àti Adémọ́lá ni àbúrò Bánkẹ́. +yof_03349_00065717155 Ṣọ̀pọ̀ná ò ní mọ ‘lé wa o. Àmin. [external] +yof_04310_01425946679 [breath] Ẹlẹ́sìn ìgbàgbọ́ ni àwọn Táyọ̀ [external] +yof_01208_01835714869 [snap] [breath] Ohun tí Ajétúnmọbí fún mi ni mo dà kọ. +yof_05223_01011084610 [snap] Ṣé ki n wá gba kiníyẹn ni? +yof_08784_00895855937 [snap] Irú àṣìtẹ̀ burúkú wo ni èyí? +yof_01208_00460381223 [breath] Mi ò nífẹ kí n máa bẹ̀bẹ̀, [breath] ìdí nìyí tí mo máa fi ń gbìyànjú láti má t’asẹ̀ àgẹ̀ẹ̀rẹ̀ sí ẹ́nikẹ́ni. +yof_03349_00092397148 Mo fẹ́ mu àgbo jẹ̀díjẹ̀dí. [external] +yof_03397_01181772654 [breath] Àwámárììdí ni ọlọ́run. +yof_02484_01466316633 [breath] Agbẹjọ́rò ní kí o wá sínú yàrá ìgbẹ́jọ́ láti wá jẹun. +yof_05223_01542302581 [snap] Awólọ́wọ̀ ṣe díẹ̀ nínú ètò òṣèlù orílẹ̀ èdè yìí. +yof_02484_01776498885 [snap] Jalabíà dúdú ni mo wọ̀ lọ kí ìrun yídì ní ọjọ́ ọdún. +yof_04310_01382698134 [breath] Ní àná, ò ń wò bí ẹyẹ t’ójò pa. +yof_04310_01174196641 [snap] Òkè ni ẹyẹ ti máa ń fò. +yof_08784_00060011757 [snap] Àwọn ọ̀rẹ́ mi ni wọ́n kọ́ mi bí wọ́n ṣe máa ń se oúnjẹ. +yof_09334_00180022407 [snap] Erín tóbi ju ajá lọ. +yof_02436_00522373037 [snap] Ṣ’ara gírí kí o lo àwọn ògùn tí Dókítà kọ fún ẹ. +yof_05223_01972194135 [snap] A máa lọ gba ilé sí Àkóbọ̀. +yof_08784_00124410846 [snap] Lọ ra èlùbọ́ wa lọ́dọ Ìya Mọ́ríá. +yof_04310_00896135803 [breath] Àwọn ará ọjà ti kó aṣọ lọ. +yof_02436_00199181946 Èkúté náà ti jẹ gbogbo ẹja inú ìṣasùn. [external] +yof_02484_00031636491 [breath] Àgbà ò ní tán lórílẹ̀. +yof_03397_00396341299 [snap] Iṣẹ́ àmúrelé tí olùkọ́ àgbà fún wa yìí le gan o. +yof_04310_00056726027 [breath] Ọ̀pọ̀lọpọ̀ ọmọdé fẹ́ràn patí. +yof_08784_01803506501 [snap] O ṣé pàtàkì púpọ̀ kí n báa jẹun. +yof_01208_00617512044 [breath] Bàtà náà rẹwà l’ẹ́sẹ̀ rẹ̀. +yof_02484_00660906556 [snap] Ṣé bí à ṣe dúdú náà ni ọpọlọ wa ṣe dúdú ni? +yof_09334_02088800517 [breath] Súnkẹrẹ-fàkẹrẹ ọkọ̀ pọ̀ ní ọ̀nà Ìkòròdú. +yof_09697_00729852212 [snap] Ọkọ̀ akérò ni mo wọ̀. +yof_02484_01814388192 [snap] Èsì ìdánwò fún sáà yí dára púpọ̀ jọjọ. +yof_02436_01932860051 [snap] Ìgbín jẹ́ ẹranko kan tí ó nífẹ láti máa sìn. [external] +yof_07508_01248309922 [breath] [snap] Gbogbo ìgbìyànjú mi ò gbọdọ̀ já s’ásán. +yof_02436_00958216775 Tí mo bá ní mi ò rin ìrìn àjò báyi rí, irọ́ ni mo pa. [external] +yof_08421_00288312893 [breath] Ohun tí ó dára ni láti wà pẹ̀lú enìkan tì èèyàn fẹ́ràn. +yof_03034_00293147965 [snap] Ìrìn àjò láti Èkó sí Ìbàdàn tó wákàtí méjì ààbọ̀. +yof_03349_01414107079 [snap] Irú èyí ò lè ṣẹlẹ̀ ní’lu òkè rárá. [external] +yof_07505_02043036677 [snap] Ayé dùn-ún jẹ jùyà lọ ni ọ̀rọ̀ tó bọ́ lẹ́nu Ṣùbòmí nígbà tó jẹ àmàlà tán. +yof_02484_01306054110 [breath] Àlùfáà tuntun tí a gbé wá ni ó ni aṣọ náà. +yof_09334_01594138566 [snap] Ọmọ yìí fẹ́ fi ijó ṣe mí léṣe. +yof_08784_01467928007 [snap] [breath] Ọdẹ adẹdò ni Ọdẹ́wálé jẹ́ nígbà èwe rẹ̀. +yof_04310_00407639306 [breath] Ṣé ó dẹ̀ ma yó báyìí? +yof_07049_01549341197 [snap] Ọ̀gá ọlọ́pàá ni Bàba Kúdí. +yof_01208_01966675312 [snap] Ó f’ọwọ́ lérán ó ń wò’ṣe olúwa. +yof_02121_02095828028 [snap] Ògo ọmọ náà tàn kálẹ̀. +yof_05223_01775748092 [snap] Mo wá ṣe bí àdán orí igi tó so ara rẹ̀ rọ̀ bí ẹni tó ń tòògbé. +yof_07508_00263762178 [snap] Iná gbé Adétiba nígbà tó fọwọ́ kan òpó iná. +yof_09334_00777001644 [breath] Bọ́lá máa ń ṣe ìrànrán tí kò bá tètè sùn. +yof_03349_01901953740 Báwo ni ọmọ ogójì ọdún ṣe máa fẹ́ ọmọ ọdún mẹ́rìndínlógún? [external] +yof_03034_00083466670 [snap] Nígbà mìíràn, tí ìfẹ́ bá pọ̀jù, kò dára. +yof_04310_01908374575 [breath] [snap] Dígí tí a gbé sí balùwẹ̀ ti fọ́ ní àná. [external] +yof_07508_00090606035 Àti ìjẹ́rin la ti ri’ra gbẹ̀yin. [external] +yof_04310_00820007304 [breath] Mo gbádùn eré náà dáadáa láti ìjẹta. +yof_02436_00153699613 [snap] Aṣọ títà ni iṣẹ́ ìya Bùkọ́lá. +yof_01208_01104666347 [snap] Màmá mi ṣẹ̀ṣẹ se ọbẹ̀ mìíràn ni. +yof_05223_02016086701 [snap] Ìbẹ́pẹ náà pọ̀n púpọ̀. +yof_04310_00097013035 [snap] Ibo ni kí n fi fìlà yìí sí? +yof_03349_01538712004 Ayé là á jẹ, ka tó jọ̀run. [external] +yof_03397_00730282820 [breath] Miò kí n fi bẹ́ẹ̀ ṣeré níta. +yof_00295_00480434341 [snap] Ire ló yẹ ní ṣíṣe, ìkà kọ́. +yof_02484_01640200660 [snap] Mo nífẹ màmá mi. +yof_09334_01840359516 [snap] [breath] Mo nílò láti ra àwọn èwù tuntun. +yof_08421_01043861819 [snap] Igi náà rí ràbàtà. +yof_05223_01186842869 [breath] Bí èkùrọ́ ṣe jẹ́ alábákú ẹ̀wà bẹ́ẹ̀ ni ìfẹ mi sí o. +yof_08784_00130747319 [snap] Mo fẹ́ rán ọmọ méjì ní’ṣẹ́. +yof_09334_00548752163 [breath] O kú àdúrótì mi. +yof_04310_00967300235 [breath] [snap] Gbogbo yàra ti sùn lọ. +yof_05223_00365169300 [snap] Mo fẹ́ lọ sí ọdún Ọ̀ṣun Òṣogbo. +yof_02484_00494017459 [snap] Ẹ máa gbọ́ o, kẹ́ẹ bá wa dá síi. +yof_01208_00828059334 [snap] [breath] Ẹsẹ̀ kan ayé ẹsẹ̀ kan ọ̀run ni ó wà. +yof_05223_00363408145 [snap] [breath] Ó ra ọtí fún wa, ẹ bá wa dúpẹ́ lọ́wọ́ ẹ̀. +yof_04310_01990795795 [breath] Áà! inú òjò l’àwọn omọ yí ti ń ṣeré. +yof_02484_01722485657 [snap] Ìtara mú adájọ́ náà. +yof_00295_00318039388 [snap] Nínú ẹ̀wọ̀n ọdún méjìlá tí wọ́n dá fún Tájù, ọdún mẹ́wàá ló lò níbẹ̀. +yof_08784_01411182671 [snap] Ipin máa ń wà l’ójú ajá náà ní gbogbo ìgbà. +yof_09334_01795725585 [snap] Mo fẹ́ ra oògùn. +yof_05223_01694466211 [breath] Pìrìgìdì ìyà ni wàá jẹ kúrò nídiìi ayò yìí lónìí. +yof_04310_01840517382 [breath] A tiẹ̀ ríi gbọ́ pé ilé alájà mẹ́ta ni bàbá yìí kọ́ sí ìlú rẹ̀. [external] +yof_07508_01962260204 [snap] Báàgì tuntun ni Titó gbé wá sí ode àríyá náà. +yof_09334_00569275927 [breath] Ìjàpá gbọ́n gan ni nínú àwọn ìtàn Yorùbá. +yof_08421_01597361236 [breath] Adéyinká sọ pé òun ò lè jẹ́ kí ẹnikan máa ku akoko òun danù bíi èlùbọ́. +yof_05223_00097603716 [snap] Agbejọ́rò náà kú l’ówurọ̀ yìí. +yof_01208_00660221195 [breath] A gbé òṣùbà fún iṣẹ́ ńlá tí àwọn bàbá wá ṣe sí ìletò yìí. +yof_04310_00869740967 [snap] Ikú á pa babaláwo bí ẹni tí ò gbọ́fá rí. +yof_06136_00679852471 [external] Inú ń ro mí o. [external] +yof_05223_00902017986 [breath] Mo rántí ìgbà èwe mi àti àwọn oun tí mo ṣe. +yof_01208_01869898966 [breath] Kí ló dé tí ojú rẹ k’ọ́rẹ́ lọ́wọ́? +yof_02484_00918450504 [snap] Ọ̀rẹ́ mi Adisa fẹ́ràn eẹ̀yan púpọ̀. +yof_08784_02123173312 [breath] Àwọn Àńjọlá yóò dé láti Amẹ́ríkà láìpẹ́. +yof_00610_02072699785 [snap] Fún mi ní aṣọ yìí, mo ní’fẹ rẹ̀. +yof_07049_02070301853 [snap] Ṣé ẹranko ni ikún ni? +yof_04310_00630696266 [breath] Olúwa ọlọ́run, ọba atẹ́rere kárí ayé. [external] +yof_04310_01437630549 Ọmọ yìí gọ̀ gan, kò tiẹ̀ mọ̀ èèyàn-án kí. [external] +yof_02121_00716918197 [breath] Mi ò tiẹ̀ mọ ìlú tí ó ní òkè jù láàárín Ìsẹ́yìn àti Oǹdó. +yof_01208_00813699308 [breath] Mo gba ìpè láti ọ̀dọ̀ olólùfẹ́ mi, ó ní òun fẹ́ wá kí mi nílé. +yof_01208_00897433715 [snap] [breath] Àwọn bíríkìlà ń tún ilé náà ṣe. +yof_07508_01057177445 [external] Ìjà náà bẹ́ sílẹ̀ nìgbà tí awakọ̀ kọ̀ láti wa ọkọ rẹ̀ kúrò lójúu pópó. [external] +yof_02484_02037251366 [breath] Ilé olórogún ni ó ti wá. +yof_06136_00908610451 Òjo pa wá dé ìbàdàn ni níjọ́ náà. [external] +yof_07508_01237670321 [snap] Ibo lẹ fi ọ̀bẹ sí? [external] +yof_07049_00778904123 [snap] A jeun nínú àwo kanáà fún ìgbà àkọ́kọ́. +yof_01208_01885514616 [snap] Aṣá ló lọ gbé ọmọ adìyẹ lórí ibẹ̀. +yof_02484_00333971769 [snap] Gbogbo ọmọ ìyá ìbejì ló ti bí’mọ. +yof_09334_01470182466 [snap] Nígbà tí bàbá lọ sí oko ní ijọ́ kan ló rí ọmọ ìkókó náà ní abẹ́ igi ọsàn. +yof_08421_00780594409 [snap] Ẹlẹ́pà ìjẹ̀bú — èyí tí o fẹ́rà gaan — wà ní ìtòsí. +yof_04310_01860843961 [breath] Irun dúdú ni kìkì gbogbo ara olóńgbò náà. +yof_09334_01767552332 [snap] Jẹ́ kí ó ṣe bí ó bá ṣe fẹ́. +yof_03034_01222630776 [snap] Ìdí ọkọ̀ ni mo gbé ẹrù lọ ní àná nígbà tí ọkọ̀ gbá ajá àwọn màmá. +yof_02436_00016433968 Abúlé wọn tóbi gan. [external] +yof_01208_01053492099 [snap] Asọ̀rọ̀ sọ bótò ni Kòfowórọlá. +yof_08784_01283956546 [snap] Mo túbá fún gbogbo àṣìṣe tí mo ti ṣe s’ẹ́yìn. +yof_05223_01431473872 [snap] Wọ́n n bá ara wọn sọ̀rọ̀ lówelówe. +yof_09697_00852675940 [snap] Ọ̀pọ̀lọpọ̀ ọmọ ni wọ́n ma ń bá ìyá wọn rẹ́ ṣùgbọ́n báyi kọ́ lọ̀rọ̀ rí fún Jayé. +yof_03034_01380443131 [snap] Ọmọ yìí fi ewúrẹ́ rúbọ bí babalawo ti sọ fún un. +yof_04310_01284367189 Mi ò tíì mọ oun tí mo máa jẹ lónìí. [external] +yof_01208_00495524477 [breath] Kí ló dé ti ò kìí kan ilẹ̀kùn? +yof_03397_00963710396 [external] Irú ìbéèrè wo lèyí? +yof_01208_01232592328 [breath] Alákadá ni ọ̀gá rẹ̀. +yof_01208_00057903736 [breath] Mo gbá bọ́ọ̀lù wọ’nú àwọ̀n fún ìgbà àkọ́kọ́. +yof_09697_01367652327 [snap] Ẹ̀sin mùsùlùmí ò fàyè sílẹ̀ fún ajá jíjẹ. +yof_09334_00813397137 [breath] Onígèlè yaya ni màmá yẹn. diff --git a/datasets/line_index_male.tsv b/datasets/line_index_male.tsv new file mode 100644 index 0000000000000000000000000000000000000000..a4475fbc9a992593e36a4e3d4f8c3a291bf36eca --- /dev/null +++ b/datasets/line_index_male.tsv @@ -0,0 +1,1691 @@ +yom_03034_01418840084 Ẹ máa sọ̀rọ̀ yín lọ. +yom_04310_01581232845 Àwa la ó máa wá, ẹ̀yin la ó máa bá. +yom_02436_00889863484 Alágídí l’ọmọ náà, ó fi jọ ẹ̀gbọ́n rẹ̀ ni. +yom_02121_00137890896 Isaiah àti Arógunyọ̀ ń fẹ́ obìnrin kannáà. +yom_03034_00406378535 Mo fẹ́ mu àgbo jẹ̀díjẹ̀dí. +yom_07049_00139563981 Ìyá àgbà fi ògùsọ̀ dáná. +yom_08421_00831872975 Mo dúpẹ́ lọ́wọ́ olúwa fún gbogbo iṣẹ́ rere rẹ̀. +yom_04310_00224640928 A jeun nínú àwo kanáà fún ìgbà àkọ́kọ́. +yom_08421_01471313862 Bí àwọn dókítà mìíràn ṣe máa ń bá’ni sọ̀rọ̀ kò daa rárá. +yom_08784_00515252578 Mo ti sùn lé ọrùn mi. +yom_02436_01194726021 Iṣan apá rẹ̀ ti já. +yom_08421_01007218935 Ta ló ń lọ fún ìdíje náà? +yom_04310_00934704293 Ẹni tó bá lówó lọ́wọ́ kó ṣe bí ẹni tí ò ní. +yom_04310_01478059469 Koríko ni ewúré máa ń jẹ. +yom_02121_01420882609 Ó fi ipá báa lò pọ̀ lánàá. +yom_06136_00578784597 Ìfẹ́ wá mi wá sílé ṣùgbọ́n mo ti lọ ìrìn àjò nígbà náà. +yom_03397_00065684393 Iṣẹ́ atọ́kóṣẹ̀ ni Kòtún kọ́. +yom_04310_00451919045 Mo rántí ijọ́ tí ọmọ náà na ẹ̀gbọ́n rẹ̀ pa. +yom_07505_01422865584 Ṣé kò f’ara pa púpọ̀? +yom_01208_00915651858 Ṣé mò ti ṣe oun tí o fẹ́? +yom_04310_01758552797 Akọ̀wé Ẹgbẹ́ ni Tẹ̀là. +yom_02484_02124275391 Jẹ kin sìn ọ́ dé ojú ọ̀nà díẹ̀. +yom_09334_01974111425 Kúnlé ti lọ ra àgádàgodo wá. +yom_02484_00760491974 Ọlọ́runyọmí ló tan Ìwàlọlá jẹ. +yom_08784_01161043078 Mo ò tí ì dé Àbújá rí. +yom_01208_00010936322 Ẹniafẹ́ ti parí ilé ìwé gíga. +yom_02484_01050275125 Iṣẹ́ ìran dé ìran ni iṣẹ́ ọdẹ́ jẹ́. +yom_00295_00543855072 Ìfẹ́lódùn lorúkọ ẹgbẹ́ náà. +yom_08421_01980727509 Èdùmàrè á fún mi l’áya rere. +yom_08784_00403277753 Akẹ́kọ̀ọ́ ilé ìwé girama ni Ọládiípọ̀. +yom_02121_00708252982 Tàlàbí ti ga jù. +yom_06136_01531486951 Àwọn ènìyàn kìí sábà fi àrò dáná mọ́. +yom_04310_01552778313 Ikú gbígbóná ni Ikú tí Akíntọ́lá kú. +yom_02121_01719185423 Ká má tètè kú lawo ìbànújẹ́. +yom_01208_00808346730 Ọ̀pọ̀lọpọ̀ ọmọdé fẹ́ràn patí. +yom_04310_01804139119 Gbogbo ara ni mo fi kí ẹ jàre, àbúrò mi. +yom_02436_01020115343 Ojú mi rí kí n tó ni gbogbo dúkìá yìí. +yom_03034_00105438646 Ẹ fi ṣàkì mẹ́ta sórí ìrẹsì àkọ́kọ́. +yom_06136_00742549179 Ìrẹsì àti ẹja ni èmi àti Élújọbí jẹ ní òwúrọ òní. +yom_07049_00404981893 Ẹsẹ̀ àga náà ti kạ́n. +yom_07508_00738689089 Mò ń lọ sí ilé Ìya Ṣọlá. +yom_03034_02001897562 Kí lẹ ṣe ní kílàsì lénìí? +yom_08421_01105719994 Ọgbà àjárá ni ó yí ilé náà ká. +yom_07505_01331061060 Ilé ìjọsìn wa ni tósìn ti kọ́ dùrù títẹ̀. +yom_04310_00136067945 Ìjà bẹ́ sílè láàárín Pópóọlá àti Àlùfá mọ́sálásí wọn. +yom_00610_01571797236 Olú Owólabí ló ko Ìwé ìtàn-àròsọ Ìjà Ọ̀rẹ̀. +yom_02121_00000125239 Ìyá àgbà ti s’olóògbé. +yom_09334_01138071764 Bí ọmọ yìí ṣe máa ń sọ̀rọ̀ máa ń múmi lọ́kàn. +yom_07508_01340339424 Ọ̀jọ̀gbọ́n sàlàyé lórí rògbòdìyàn tó bẹ́ sílẹ̀ ní ìlú ọba ní àná òde yìí. +yom_03034_00113683944 Tí ọwọ́ rẹ́ bá kàn mí, mo ma yí omi yìí dà sí ẹ lórí. +yom_07508_01906115820 Ohun gidi kọ́ ni k’éyàn bá ogun lọ. +yom_02121_01728330279 A gbọ́ pé wọ́n ti jí ẹní egbére lọ. +yom_04310_00491607396 Nígbà tí ènìyàn tó burú báyìí bá ń ronú kó jáwọ́ nínú ìwà ìbàjẹ́, mélòómélòó ìwọ. +yom_03397_01135790070 Àwọn aṣọ híhun náà rẹwà púpọ̀. +yom_02484_00977886050 Wàhálà rẹ pòjù, Àdùnní. Kí lo fẹ́ kí n ṣe fún ẹ? +yom_01208_00578093947 A tiẹ̀ ríi gbọ́ pé ilé alájà mẹ́ta ni bàbá yíì kọ́ sí ìlú rẹ̀. +yom_01523_00008321762 Òyìnbó bí ọ̀pẹ́ẹ̀rẹ́ ni ó máa ń sọ ní tirẹ̀. +yom_07508_01126822000 Bákan náà ẹwẹ̀, àkíyesí tùn wà pé, àwọn okùnrin ni ó pò jù nídìí iṣẹ́ orin. +yom_01523_01498522701 Túndé jẹ mí ní ẹgbẹ̀rún mẹ́wàá náírà. +yom_07508_01974100140 Wọ́n ti fi Akínsọ̀yínù sínú túbú. +yom_07049_01406295206 Ibo ni kí n fi fìlà yìí sí? +yom_03397_01615082850 Etí ń rìn mí ṣá. +yom_08421_00430751064 Ọmọ ọkùnrin yẹn da èkan náà sí. +yom_07508_01795437934 Nínú yàrá náà, ènìyàn márùn-ún ló ń sùn síbẹ̀. Ọ̀rẹ́ làwọn máràrùn. +yom_08784_00089607710 Kí Ajíjọlá wọlé kí á jọ ṣeré. +yom_07508_02095438771 Mo máa ń lérò pé Bélò ní ọpọlọ ni o, àṣé orí rẹ̀ ò pé rárá. +yom_07049_01211642354 Orin dàdàkùádà máa ń ní ìlù lílù, ijó jíjó, ẹfẹ̀ ṣís̀e, àti oríkì. +yom_09334_01820594769 Wọ́n dáná sí ẹ̀gbẹ́ igbó. +yom_08421_02028440715 Èmi náà fẹ́ ní ọ̀rẹ́bìrin nílé. +yom_02484_01591805308 Gbogbo aṣọ kọ́ la ń sá lóòrùn. +yom_00295_01894974080 Onílẹ̀ gogoro ni wọ́n ń pe ọkùnrin yẹn. +yom_04310_00623693494 Gbogbo abọ́ ló ti dọ̀tí. +yom_07505_00572150945 Mo ò tíì ri irú erin tó tóbi báyìí rí. +yom_02121_00028996665 Ẹni tó ti kú ò ní ìrèti mọ́. +yom_00610_01356498746 Ìkọ̀tún ni ibi tí àwọn ayálégbé wa tẹ́lẹ̀ ń gbé báyìí. +yom_07505_00450757097 A rí kínǹiún ní ibi tí a ti lọ wo àwọn ẹranko. +yom_02121_01262704472 Òkè gíga pọ̀ ní àdúgbò yín. +yom_07505_01936711064 Yá mi ní gègé ìkọ̀wé rẹ. +yom_02121_00674722638 Adésuà mọ bí yóò ṣe bá wa mú orí rẹ̀ wá’lẹ̀. +yom_09334_00430138346 Tí mo bá pè ẹ́, máa dá mi lóhùn. +yom_00295_01230133341 Àwọn ẹgbẹ́ agbábọ́ọ̀lù Nìjíríà ní àfojúsùn láti gba ife ẹ̀yẹ ti ilẹ̀ aláwọ̀ dúdú tó ń lọ lọ́wọ́. +yom_02484_01954084679 Bọ̀dá táyé ti lọ sí Mecca ní ọdún tó kọjá. +yom_08421_01751112489 Gbogbo aṣọ kọ́ là ń sá lóòrùn. +yom_07508_02066394496 Alágbára òde ni bàbá náà. +yom_00295_00180834323 Kì ń ṣe gbogbo nǹkan lèyàn ń dá sí. +yom_02121_00290465209 Mo fẹ́ mu gaàrí àti ẹ̀pà. +yom_02436_01988144562 Mo fẹ́ ra ọtí fún Ìya Sùlíyá. +yom_08421_01200800536 Adébánjọ fẹ́ran ẹja tútù láti jẹ. +yom_06136_00003960212 Ó ní èyí tóun mú lọ́wọ́ yìí ńkọ́, ṣé k’óun fi sílẹ̀ ni? +yom_02436_01585584486 Ọmọ náà fẹ́ràn láti ma wò mí. +yom_01523_02109343690 Bàbá àgbà ti lé ní ọgọ́rùn-ún ọdún. +yom_09334_01384291349 Tẹ̀là ló jẹ́ kí gbogbo ọ̀rọ̀ yí lọ di òkòtó báyìí. +yom_03397_00672719018 Ìsọkúsọ ni Àdèlé ma ń sọ ní gbogbo ìgbà. +yom_06136_01319047427 Kìí ṣe dúndùn inú ẹnikẹ́ni kí ọmọ rẹ́ kú. +yom_01523_00690218507 Òkun kìí gùn jù ká má mọ ibi tó ti gùn wá. +yom_02436_01154895931 Àtòrì ńlá ni wọ́n fi nàá. +yom_00610_00581746407 Ta ló gbé ẹ̀fọ́ tí mo gbé wọlé. +yom_04310_01458918306 Ẹgbọ́n rẹ̀ ni ó rẹ̀ẹ́ lẹ́kún. +yom_02121_00083063400 Ọmọ ìya ológì lókè Mẹ̀sàán ni mí. +yom_07508_01283773434 Òtútù ń mú ọmọ tí ń sọ ìkan fún mi yí, níṣe ló ká jọ bí i adìẹ tí òjo pa. +yom_07508_01933655369 Àwọn wo ló ń pariwo láàárọ̀ kùtùkùtù báyìí. +yom_07505_01456994714 Láfihàn ló gba àmì ẹ̀yẹ Ọba. +yom_02436_00703168072 Àjásin kò rántí gbé ẹ̀rọ amóhùnmáwòrán fún ẹni tó ń tun-un ṣe. +yom_04310_00273816675 Ìya oní gaàrí ti ń bọ̀. +yom_04310_01848067936 Ọbá ti wàjà nílú Àkúrẹ́. +yom_00610_01911961373 Ta ló gbé omi tí mo pọn? +yom_09334_00633050115 Gbẹ́nu sọ́un, oní’bèérè ìsọlẹ́nu. +yom_01208_00586805366 Ìsọkúsọ àwọn mìíràn pọ̀ jù. +yom_02484_00456320159 Oúnjẹ náà ti rà. +yom_04310_00235468565 O fẹ́ bá ọmọ yẹn sùn àbí bẹ́ẹ̀ kọ́ ni? +yom_07049_01580320228 Bíyi ti padà sí Èbúté Mẹ́ta. +yom_07505_01482096004 Àgbélébú mi ni mo gbé rù lọ́wọ́lọ́wọ́. +yom_02121_00356564615 Oko àlùbọ́sà ni mo rà. +yom_07508_00616314586 Tírélà náà ti dànù sí òpópónà Àpápá. +yom_02484_01687850033 Adétọ́lá wà ní ilé ìwé gíga. +yom_00295_01566713030 Àwọn ará ọjà ti kó aṣọ lọ. +yom_07049_00985777771 Ìdí ni wípé èdè pọ̀ láwùjọ jáńtìrẹrẹ. +yom_07508_01062218695 Ǹjẹ́ ó ṣeéṣe kí Àrólé pa ọ̀rẹ́ rè? +yom_02484_01286683001 Dáníẹ̀lì wọ bàtàa dùbúlẹ̀. +yom_02436_01094241710 Mo fẹ́ lọ gbafẹ́ l’ágbo fújì. +yom_04310_00039804096 Ẹranko burúkú kan ló pa àwọn ẹran náà jẹ. +yom_01208_01175241306 Ìjẹ̀bú ni bàbá ọmọ náà ti máa ń wá. +yom_08784_00687048590 Ṣé ki n gbé oúnjẹ rẹ lọ fún-un? +yom_03034_01651774540 Ọ̀rẹ́ mi Adisa fẹ́ràn eẹ̀yan púpọ̀. +yom_02484_01756094488 Ó ti wá hàn gbangba gbàǹgbà pé ọ̀pọ̀ ohun tí à ń ṣe ni àwon ara ìlú fẹ́. +yom_02436_00502570507 Bàtà náà rẹwà l’ẹ́sẹ̀ rẹ̀. +yom_02436_01439348281 Àwọn ọsàn náà ti pọ́n. +yom_01523_02104085397 Ní ìgbà kan rí kò tilẹ̀ ní lítíréṣọ̀ àpinlẹ̀kọ rárá débi pé wọ́n á ní ìwé ìtàn àrósọ. +yom_08421_00588643783 Ibo ni fàájì wà lálẹ́ òní? +yom_07505_00409167380 Àwọn Ọḷ́opàá ya wo àdúgbò tí ìjà ti bẹ́ sí’lẹ̀. +yom_08421_02139408884 Ganíyá fẹ́ràn kí ó ma tọ́’jà kiri. +yom_07049_01784945750 Lọ fi aṣọ bo omi mímu yẹn. +yom_01208_02125664889 Omi yẹn ti tùtù ju fún mi. +yom_02484_01784056295 Ilé wa ò ní dàrú, ọ̀nà wa ò ní bàjẹ́. +yom_02436_00735769236 Èyàn mẹ́fà ló ń jẹ́ Máíkẹ̀lì ní kílàsì wa. +yom_04310_01019575995 Ìró wà ní orí ilẹ̀kùn. +yom_02121_00595505462 Mi ò ní tó iye owó yìí. +yom_01208_00896307834 Ó gbọ́ràn sí mi lẹ́nu. +yom_01208_01893355283 Afọpẹ́fólúwa ní ìdodo ńlá. +yom_09334_00416375472 Ọdún Ifá jẹ́ ọdún kan pàtàkì tí a fi ń dúpẹ́ lọ́wọ́ Olódùmarè. +yom_01208_01349848651 Túndé ní’fẹ sí àti máa fi ẹ̀wà jẹ ọ̀gọ̀dẹ̀. +yom_08421_00298781439 Ó gbe ọmọ rẹ̀ wá kí mi ní’lé. +yom_01208_01417905598 Akànlé ni bàba Àìná ń ṣe bí iṣẹ́. +yom_03034_01606444575 Kí ọmọ olówó má ro ọmọ tálákà pin. +yom_08421_01276848509 Àrá ló ya ògiri yí lulẹ̀. +yom_08784_01716814128 Wọ́n ni ilè àwọn Jẹ̀mílá l’àwọ́n wà. +yom_08784_01732153693 Wá rí mi, mo ní ǹkan tí mo fẹ́ fún ẹ. +yom_07508_01661444061 Òṣìṣẹ́ ilé-iṣẹ́ amúnáwá náà gan mọ́ orí òpó. +yom_02121_00766885645 Aṣọ funfun àti fìlà olómi aró ni wọ́n pè. +yom_04310_01044698400 Ìgà ni wọ́n ń pe Àfin ní Èkó. +yom_02121_00660612475 Mo gbádùn eré náà dáadáa láti ìjẹta. +yom_04310_00239113163 Ìdìbò tí ń bọ̀ lọ́nà ló fa gbogbo gbómi si omi ò tóo. +yom_01208_01702841608 Mo fẹ́ ra oògùn. +yom_08421_00942326564 Ọ̀nà ibo ni mo lè gbà dé Sáfẹ́jọ́? +yom_04310_00730116824 Àlùfáà tuntun tí a gbé wá ni ó ni aṣọ náà. +yom_07049_01716546573 Ifálékè ti j’Ọba o. +yom_01208_01598155255 Ọjọ́ àbámẹ́ta nìkan ni mo máa ma lọ sí ibiiṣẹ́. +yom_03034_02143956112 Ẹ ṣùpọ̀ sójú kan. +yom_00295_00597850178 Ọ̀pọ̀lọpọ̀ ọkọ̀ bọ̀gìnì bọ̀gìnì ni mo rí lóju ́pópó nígbà ìrìn àjò náà. +yom_07508_00237062454 Òru ni àwọn àjẹ́ máa ń ṣe ìpàdé. +yom_07505_01459476689 Ìyàwó kékeré tí arákùnrin òhún fẹ́ ló ba gbogbo nǹkan jẹ́. +yom_03034_00497993947 Wọ́n ní ká dá owó fún ọmọ tí ó rẹ̀. +yom_02484_01517239911 Ọkọ́ àti àdá jẹ́ ohun èlò gbòógì fún àwọn àgbẹ̀. +yom_01523_01286078923 Àṣàkẹ́ ti lọ p’ọmi ní odò tí ó súnmọ́ Modákẹ́kẹ́. +yom_00295_01863644465 Ẹ̀rọ ìbánisọ̀rọ̀ mi ti sọnù. +yom_08784_02088649450 Hohùn dídùn ni wọ́n fi ń kí’fá. +yom_07505_00165421972 Kò sí ẹni tí kò lè dáa fún. +yom_03034_01362132030 Iṣẹ́ la fẹ́ ṣe, a kìí ṣ’ọ̀lẹ. +yom_03397_00057426270 Mo ní àǹfààní láti dé Adó Àwáyè. +yom_01208_01081503596 Sọ fún bàba ọlọ́kọ̀ kó lọ gbé àwọn èrò tó wà ní ibùsọ̀ lọ́un yẹn. +yom_09334_00759620162 Mo fẹ́ kí èmi àti àwọn ẹ̀gbọ́n mi jọ ma lọ sí ibẹ̀ nígbà kan náà. +yom_06136_01374471095 Àbíkú l’ọmọ yẹ́n jẹ́. +yom_02436_01393638712 Irú irun wo lo wá gẹ̀ s’órí báyi? +yom_07049_01731012721 Mo ti lo rí ọ̀gá mi kan lorí ọ̀rọ̀ ọ̀hún. +yom_02436_00469642151 Jẹ́ ka jẹ ègbo àti ẹ̀wà. +yom_01208_00005375433 Ṣe ìlérí fún mi pé ò ní fi mí sílẹ̀. +yom_02436_01484341679 Òkédìjí ló sọ bẹ́ẹ̀ nínú ìkan lára àwọn ìwé ẹ̀. +yom_06136_02135927693 Orí òkè náà ga gidi gan. +yom_07508_00242160806 Ta ló mọ̀ ẹ́? +yom_04310_00972272422 Ìṣe ẹni ní ń sọni dẹni gíga. +yom_00610_00293625811 Wón ní kí a wá gba ẹran ọdún. +yom_00295_00034835661 Ẹ wá ra bèbí fún mi. +yom_01208_00174769871 Àwọn pẹ́pẹ́yẹ ń wẹ̀ nínú odò. +yom_01523_00174158141 Ṣoò lè jáde kúrò nínu yàrá mi. +yom_00295_01260639509 Egbére jẹ́ ẹ̀yà iwin kan. +yom_02121_00124746688 Iléèwé náà tóbi púpọ̀, ogunlọ́gọ̀ ọmọ ni wọ́n ní. +yom_02121_01706494052 Aà jí ire bí, ẹ̀yin ọmọ Oòduà? +yom_00610_01670116872 Ta ló lágbára jù nínú iwin àti egbére. +yom_09334_01534537951 Kí la fẹ́ gbà nínú ìjà. +yom_06136_00580369772 O ṣé, mo dúpẹ́ pé ìgbàgbọ́ rẹ nínú mi ṣì múlẹ̀ ṣinṣin. +yom_06136_00657725130 Simisọ́lá lorúkọ ìyàwó Adékúnlé. +yom_08421_02063753297 Àwọn Àbẹ́gbẹ́ yóo tó dé láti Ísírẹ́lì ní ọ̀sẹ̀ méjì sí òní. +yom_01523_01660300224 Oṣù kan ààbọ̀ ni mo fi dáwó [external] láti ra ọkọ̀ bọ̀gìnì náà. +yom_08421_00023894524 Akínwùnmí fẹ́ kọ́ bí wọ́n ṣe ń ka ewì. +yom_02484_00779312525 Kí ló dé tí ojú rẹ k’ọ́rẹ́ lọ́wọ́? +yom_02484_01538339078 Mo ní èróngbà láti gbé àpótí ìdìbò lọ́jọ́ kan. +yom_02121_01252162815 Alájàpá ni iṣẹ́ tí Lọlá ń ṣe kó tó wọ iṣẹ́ Ọlọ́pàá. +yom_08421_01478345402 Òkè àjá lẹ [external] gbée sí. +yom_02121_02055597144 Ẹ gbé iléelẹ̀ yín wá fún àwọn agbálẹ̀. +yom_03034_00338793085 Ǹjẹ́ o mọ̀ pé ó ti ṣẹ́yún yẹn. +yom_02121_00985154016 Ọ̀rọ̀ tí mo gbó já mi láyà púpọ̀. +yom_03397_00197060505 Àárẹ̀ náà ti wọ inú ara rẹ̀ tán. +yom_07505_01087369798 Ní àkótán ìwúrì láti ẹnu àwọn àgbà dára púpọ̀. +yom_02121_00642777643 Olúwa, má jẹ ka pàdánù. +yom_07508_00241238816 Ẹ̀san ń bẹ fún ẹni tó bá ṣẹ̀’ka. +yom_09334_01240000515 Ààfáà ń pè’run láago márùún. +yom_07505_01283653413 Ṣé o mọ Allen Avenue? +yom_02121_00080327297 Gbogbo ara ló ń wọ́ mi. +yom_07505_01940282405 À ń ṣiṣẹ́ kí a tó rówó ni. +yom_09334_00466064750 Ṣé o lè yá mi l’ówó títí di ìparí oṣù. +yom_03034_00123246306 Sọ̀rọ̀sọ̀rọ̀ ni gbogbo wa, àbí? +yom_06136_01245332301 Àlùjó ni wọ́n ń lù lágbo Ayéfẹ́lẹ́. +yom_07508_01766470605 Kí Ọlọ́run jé kí orílẹ̀-èdè yí dára. +yom_07505_00077322538 Ògbójú ọdẹ ni wọ́n. +yom_00610_01237322476 Èékánná tí o lé sọ́wọ́ rẹwà púpò. +yom_09334_01981832140 Àfàìmọ̀ kí ọ̀rọ̀ rẹ́ má da gbogbo nǹkan rú. +yom_07508_00466262251 Ayẹyẹ náà yóò lárinrin yàtọ̀ sí ti tẹ́lẹ̀. +yom_00295_00965293189 Ọjọ́ ìbí mi ń bọ̀ lọ́nà. +yom_00295_00262443531 Iná ti tán lórí ẹ̀rọ ìbánisọ̀rọ̀ mi. +yom_02484_01241521546 Elétí kunkun ni Túndé. +yom_09334_01075378594 Ẹ̀kọ́ dára púpọ̀, òun sì jẹ́ ìkan lára oun tí a nílò láti di ẹni gíga l’áwùjọ. +yom_04310_00481083763 Afẹ́fẹ́ ń kọjálọ lẹ́sọ̀lẹ́sọ̀, gbogbo ohun ń lo létòlétò. +yom_09334_00967297963 Mi ò tiẹ̀ mọ ìlú tí ó ní òkè jù láàárín Ìsẹ́yìn àti Òǹdó. +yom_01208_01534119960 Kò ye ká máa sọ̀rọ̀ ṣàkàṣàkà torí a ò mọ ẹni tó lè ranni ĺọ́wọ́. +yom_03034_01222801439 Bẹ́ẹ̀ àṣejù wọ́n ti bẹ̀rẹ̀ ní ìkẹyìn. +yom_02484_00173311565 Ọyún ń yọ ní etí ẹ̀. +yom_00295_01636505434 Àwọn àgbà ló máa ń sọ pé ‘igúnnugún kìí kú léwe.’ +yom_03034_00470022244 Àwọn arẹwà obìnrin pọ̀ nílùú. +yom_01208_01504531078 Ohun rere ni yóò ma jẹ ti wa. +yom_00295_01761232169 Bàbá rẹ̀ ló fi ṣìná jọ. +yom_01208_01999303623 Ọ̀kan nínú àwọn òṣìṣẹ́ ní ilé-iṣẹ́ wa fẹ́ràn omi tútù. +yom_00295_00251722977 Mo fẹ́ dá ilé iṣẹ́ atẹ̀wé ìròyìn sílẹ̀. +yom_06136_00971138091 Olú sùn fọnfọn lóru. +yom_01523_01769113672 Ọtí àmupara ni Akínbọ̀dé mu ló bá ń sọ bótobòto ní òru àná. +yom_02484_00993896185 Ọgbọ́n ló gbà tó bá ti jẹ́ ọ̀rọ̀ obìnrin. +yom_08421_01229325486 Ajíbádé fẹ́ràn obìnrin púpọ̀. +yom_06136_01484524698 Màálù mi ti kú. +yom_07505_00212637414 Kí ló dé tí wọn ò ṣu orí fún ọmọ yìí? +yom_00610_01705448296 Iṣẹ́ ṣí pọ̀ nílẹ̀ táa fẹ́ ṣe. +yom_01208_00411920037 Ògo ọmọ náà tàn kálẹ̀. +yom_08421_01269214491 Ọba Moróunfólú ò pé lóri oyè rárá, odún mẹ́ta péré ló lò. +yom_02484_00995434762 Ajò ò le dùn bí ilé. +yom_09334_01868507598 Ẹ̀sìn àtọ̀húnrìnwá ni ẹ̀sìn ìsìlámù. +yom_03034_00216218638 Àwámárììdí ni Olódùmarè. +yom_03034_01498022930 Wọ́n rò pé èmi ni mo sọ fún ẹ bẹ́ẹ̀. +yom_07049_01040320261 Láti orí dé orúnkún ni òógùn ti bòó nígbà tí a gbọ́ ohùn ìbọn tí àwọn ọ̀daràn náà yìn. +yom_01208_00033598683 Erín tóbi ju ajá lọ. +yom_06136_01554189850 Mi ò nífẹ kí n máa bẹ̀bẹ̀, ìdí nìyí tí mo fi ń gbìyànjú láti má t’asẹ̀ àgẹ̀ẹ̀rẹ̀ s’ẹ́nikẹ́ni. +yom_09334_00720552665 Àkàrà òyìnbó náà dúdú. +yom_08421_01517793806 Àlákála ni Adéníkẹ lá pẹ̀lú Ayaba Èṣítẹ̀rí. +yom_07508_02088307942 Fásúre jẹ́ ògbóǹtarìgì oníṣègùn ní agbègbè. +yom_07508_00959403919 O kú àdúrótì mi. +yom_02121_01938602530 Ṣé pé a lè dolówó dọlọ́rọ̀ látara gbíngbin igi obì. +yom_00295_00858153167 Ó ti tó lẹ̀. +yom_00295_01762325604 Ìrìn àjò láti Èkó sí Ìbàdàn tó wákàtí méjì ààbọ̀. +yom_02436_01543144546 Lọ já ewé efinrin wá. +yom_03034_00404748370 Láfún ni a jẹ. +yom_06136_01141892864 Ṣàngó gẹ́gẹ́ bí ìtàn ṣe fi yé wa ni aláàfin kẹta ní ìlú Ọ̀yọ́. +yom_04310_02076343383 Kí lẹ fẹ́ kó, ṣé kí n bá ẹ kóo. +yom_06136_01196494509 Pọ́ọ̀lù ló bá mi wá iṣẹ́ náà. +yom_07508_01781551619 Ọ̀ṣínbájò ni igbákejì àrẹ orílẹ̀-èdè Nìgíríà. +yom_04310_00425358829 Kò bìkítà bóyá ó dára tàbí kò dára. +yom_01208_00842353243 Ipin máa ń wà l’ójú ajá náà ní gbogbo ìgbà. +yom_00610_00581757758 Ọ̀kan-ò-jọ̀kan ìdí ni a lè tọ́ka sí pé ó ṣokùnfà pípẹ́ lẹ́yìn ìwé ìtàn àròsọ Yòrùbá. +yom_01523_00285220760 Aṣọ kaánà ni t’ọko t’ìyàwó wọn wọ̀ lọ sí ilé ìjọsìn l’énìí. +yom_06136_00291346566 Ijọ́ ìgbéyàwó mi, ẹ ó ríran wò. +yom_04310_00661357128 Ọkunrin ńlá ni Bàba Sọlá tó wà ní orílẹ̀-èdè Amẹ́ríkà. +yom_03397_02118425909 Ẹniọlá ni orúkọ Màma wọn. +yom_06136_00575235639 Ẹ jẹ́ ká lọ fọṣọ wa kó ba lè mọ́. +yom_07508_00331831273 Mo mọ bí mo ṣe ń ṣiṣẹ́ tí mo fi ń rówó. +yom_07049_01072765912 Àmọ̀pé ni wọ́n sọ ọmọ náà, bàbá Láfẹ́nwá ló fún-un ní orúkọ yẹn. +yom_08784_00397135975 Ìyá ti lọ sódò, bàbá ti lọ sóko. +yom_07049_00048629329 Mo ní kí Òkèjọbí pè mí lórí ẹ̀rọ ìbánisọ̀rọ̀ tó bá di ọ̀la. +yom_02121_00143985059 Láti ojú fèrèsé ni mo ti ń rí gbogbo ohun tí wọ́n ń ṣe. +yom_07505_02115488038 Ọ̀gọ̀njọ́ òru ni àwọn eléyi tún pariwo. +yom_08421_01501094045 Ta ni á kó àjọ ní [external] oṣù tó ń bọ̀. +yom_03034_00898647102 Ó kígbe l’óhùn rara. +yom_04310_01920145996 Wàyíì, ó ye ká yànàná rẹ̀ wípé bí a ṣe ń lo èdè yàtọ̀ sí ara wọn. +yom_03034_02076520520 Túndé ti lọ gẹ’run ẹ̀. +yom_07505_00913634903 Májìyàgbé, tìẹ ò ní gbé n’ílé ọkọ. +yom_08421_01134010782 Aṣọ ìbora náà kò nípọn. +yom_04310_01015966740 Alóńgẹ rẹ́rin kàkàkà. +yom_02121_01459930082 Àwọn ajá igbó wà nínú igbó kìjikìji náà. +yom_04310_00870319925 Ọ̀rọ̀ ìfẹ́, bí àdánwò ni. +yom_02121_00316330604 Mo pàdé olùdarí ilé ìwé gíga mi ní ibi ìnáwó ní ìjẹẹ̀ta. +yom_04310_01153510146 Kí ló dé ti àga yí fi dọ̀tí tó báyi? +yom_01523_01360676927 Àya rẹ̀ já nígbà tó rí ẹkùn yẹn. +yom_07505_00846535485 Wọ́n ńi ẹgbẹ́ òṣèlú alátakò ló wọlé ní ìjọba ìbílẹ̀ Kájọlà. +yom_03034_02088660657 Mo fẹ́ lọ sí etí òkun láti lọ gbafẹ́. +yom_01208_00447792945 Abúlé wọn tóbi gan. +yom_07049_00711556234 Yẹtí mẹ́ta ni wọ́n ṣẹ̀ṣẹ̀ rà fuń-un. +yom_00610_01210690763 Ìgbéraga kò dára rárá. +yom_03397_00422737555 Màá máa wá wò yìn nílé láìpẹ́. +yom_07049_02084001817 Ojútikú wà ní ilé ìwé gíga ti Ìlú Èkó. +yom_02484_01400837035 Kò sí èrò ní’ta gbangba. +yom_07508_01668590473 Babátúńdé ti sọ owó nù si’lé tẹ́tẹ́. +yom_00295_01260038205 Ẹlẹ́dẹ̀ náà bí ọmọ mẹ́fà péré. +yom_01523_01995936510 Oò sì ní ṣ’aláì bímọ. +yom_04310_01892171200 Ìmọ́tótó ṣe pàtàkì fún àti dénà ààrùn. +yom_02121_00333509503 Kẹ́ẹ tún ilé ṣe kí a tó dé. +yom_07508_01538910519 Mo fẹ́ rán ọmọ méjì ní’ṣẹ́. +yom_01208_01865287844 Jìnádù pa ejò gígùn. +yom_07049_02073638799 Mo rí pẹ́pẹ́yẹ tí ọmọ mẹ́sàn-án wà lẹ́yìn rẹ̀. +yom_00610_01804423807 Mí ò ṣeré o; òdodo ọ̀rọ̀ ni. +yom_07508_01827557252 Omi tí mo fẹ́ mu wà nínu kòkò irin. +yom_07049_01544244103 Dáre ni akọ̀wé ẹgbẹ́ akọrin inú ìjọ wa. +yom_02121_01902805525 Bàba Wàídì mọ ẹni tó ni ilé epo yìí. +yom_03034_01879578919 Kíni m̀bá ti ṣe sọ pé mo gbọ́? +yom_08421_00848985328 Sa gbogbo ìpaà rẹ kí ọjọ́ ọ̀la rẹ́ lè suwọ̀n. +yom_03397_01379694402 Wọ́n ń ṣe orò ní Sáàgámù lọ́wọ́lọ́wọ́. +yom_02484_01433035770 Wọ́n gbàmí tọwọ́tẹsẹ̀ ní ilé ọkọ mi. +yom_08421_01180079847 Mo gbọ́ ìròyìn àwọn ọmọ ìyá méjì tí wọ́n fi ara wọn ṣe ògùn owó. +yom_09334_01870515349 Egúngún náà ni Yòrùbá máa ń pè ní ará ọ̀run. +yom_08784_01804526408 Ìlú ńlá ni Èkó. +yom_02121_00752498240 Ìṣoore-olúwa ni orúkọ tí wọ́n fún ilé náà. +yom_07505_00535928257 Wọ́n wà nílé ìgbọ̀nsẹ̀. +yom_09334_01835771974 Lọ mú ìró yẹn wá. +yom_06136_00024825562 Ta ló ni pángolo? +yom_04310_00698349134 A ti tọ́ka sí obì gbàǹja àti obì àbàtà. +yom_02484_00035892457 Mo fẹ́ràn aago yìí. +yom_01208_01871340549 A fẹ́ kí wọ́n ó dàgbà kí wọn ó dògbó. +yom_03034_02103527432 Ọṣẹ ni mo lọ rà. +yom_06136_01046994608 A ní ìbálòpọ̀ pẹ̀lú ara wa. +yom_02484_00342983781 Kí á mà dan ìgbàgbọ́ wa wò. +yom_04310_01040078318 Òdòdó kan ni a wá já n’ílée yín. +yom_00295_00439317932 Kò sí oun tó ń bọ̀ lókè tí ilẹ̀ ò gbà. +yom_04310_00645421127 Àwọn ènìyàn súnmọ́ olódùmárè pẹ́kípẹ́kí. +yom_02484_00757715666 Ọbẹ̀ ẹ̀fọ́ náà ti yí dànù lórí iná. +yom_00295_00896983271 Ta ló fi j̣ẹ oyè Ajírọ́ba? +yom_01523_00447820718 Ọfà ba ọmọ ogun rè l’ẹ́sẹ̀. +yom_02436_01062104356 Kí ló ṣe ẹ́ ní’mú? +yom_08421_00902730074 Àwọn ọlọ́pàá ti gbá mi mú. +yom_06136_00327789705 Ti fèrèsé náà kì ẹfọn má baà wọlé. +yom_07508_00331434484 Àpò ìwé ẹ̀ wà nínú aṣọ mi. +yom_01523_00683960062 Ọmọ náà fẹ́ràn eré àgbéléwò bíi ẹlẹ́dàá ni. +yom_00295_01495670377 Ẹran méjì-méjì ló fi ṣe wá lálejò. +yom_01208_01895390007 Àrun jẹjẹrẹ ò dára. +yom_06136_01350542840 Aṣọ ńlá ni ọbá máa ń wọ̀ lọ sí jímọ̀. +yom_03397_00334420973 Mo máa dáàbò bò ẹ lọ́wọ́ gbogbo ìjọ̀gbọ̀n ayé. +yom_07508_01609673711 Ìbàjẹ́ ènìyàn kò dáṣẹ́ ọlọ́run dúró. +yom_07505_00449231923 Tí a bá ń sọ àṣìṣe ara wa, èyí kò ní jẹ́ kí okùn ìfẹ́ wa gùn. +yom_04310_01669842088 Lọ gbá ilẹ̀ àárín ilé àti ti ẹ̀yìnkùlé. +yom_00610_00512922597 Ṣé o ti gbée fún ọ̀gá ẹ? +yom_00610_01122977341 Owó ẹyọ là ń ná láyé àtijọ́. +yom_00295_01759262518 Láti mọ iṣẹ́ náà, ó gba ìfarabalẹ̀. +yom_01208_00663157705 Yàrá àwọn Similólúwa tóbi gan. +yom_07505_01041889526 Orí àdògán ni wọ́n ti ń ro’kà. +yom_08421_00026187240 Ẹ bá mi fi díẹ̀ sí oúnjẹ yíì. +yom_02436_01205162726 Wọ́n ti múná lọ. +yom_02121_01646619163 Èyí ni ọmọ tí mo sọ fún ẹ ní ìjẹẹ̀ta wípé ó ní ìka mẹ́fà. +yom_03034_01238324645 Àpadàsáburú ò ní jẹ́ ìpín wa o. +yom_02121_00782760176 Ìyá àwọn ọmọ tí ilé wọ́n wà ní ibùdókọ̀ kẹta sí ìhín ti bá àgbèrè lọ. +yom_02121_01845269710 Inú omi ni ẹja ń gbé. +yom_02121_00563827200 Àwẹ̀ìwẹ̀tán ni omi ọ̀sà. +yom_07508_01765724710 Ìgbésẹ̀ fonọ́lọ́jì tó farahàn nínú àwọn ìlànà yìí ni àrànmọ́. +yom_07049_01241482870 Mo fẹ́ ra àgbàdo. +yom_01208_01480310098 Ìwé ìròyìn márùn-ún n wọ́n kọ̀ọ́ sí. +yom_07508_00436597889 Àyà mí máa ń já nítorí a ò mọ bí ọ̀lá ṣe máa rí. +yom_08784_00300967158 Làpálàpá wà l’órí ẹ. +yom_07508_00199663363 Ìbejì ọ̀ràn ni wọ́n fẹ́ yà. +yom_09334_01998666685 Jẹ́ ki mo mọ̀ tí o bá ti ń lọ sí ilé yin. +yom_00295_00734378792 Gúsù orílẹ̀ èdè yìí ni mo ti wá. +yom_00295_02069760396 Máa tọ́jú mi, Jèhóvà ńlá. +yom_04310_00996132431 Mo ra bàtà mẹ́ta l’ọ́jà Akẹ̀sán. +yom_07508_01862185631 Bàbá àti ìyá mi ló fún mi lówó tí mo ná. +yom_09334_00053208406 Ilẹ̀ Gẹ̀ẹ́sì ni ó wù mí kí n ti ka ìwé fún Másítàsì mi. +yom_00295_01797274674 Abẹ́ igi ọdán ni wọ́n ti máa ń sábà pa ààló. +yom_09334_01576800326 Wá bá mi rẹ́ èékánnáà mi. +yom_08784_00818036389 Ṣòkòtò náà dára lára rẹ̀. +yom_04310_01326155867 Ẹ̀rín máa ń pa mí nígbà tí mo bá ń gbọ́ àwọn ìpolówó kànkan. +yom_01523_01987127766 Ìyàwó rẹ ní owó jùú lọ. +yom_00295_00677272420 Àwọn mìíràn gbàgbó pé bí èyàn ṣe ń d’àgbà si ló ṣe jẹ kó l’óye si. +yom_02436_01072540162 Tí óúnjẹ yẹ́n bá tutù, kò ní ṣe é jẹ mọ́. +yom_01523_01608900385 Bá mi gbé ìwé wá. +yom_02436_01876894428 Ó ti fẹ́rakù bí mo ṣe ń wòó yìí. +yom_03397_00584387189 Ó máa ń ṣe mí bíi kí a jọ máa wà ní gbogbo ìgbà. +yom_01208_01278650394 Àlùbọ́sà ni ó ń tà. +yom_08784_01487348786 Mo ti gun òkè Afárá rí. +yom_03034_01900356850 Mo nífẹ màmá mi. +yom_07049_01127285005 Wọ́n gbàgbọ́ pé iṣẹ́ tí àwọn fi orúkọ náà rán sí ọmọ bẹ́ẹ̀ yóò kó ipa ribiribi. +yom_02484_00266879461 Ilé-iṣẹ́ agbóhùnsáfẹ́fẹ́ ni ìyàwóò mi kejì wà. +yom_08784_02001327460 Àwọn Ọmọ náà fẹ́ kọ́ èdè Yòrùbá. +yom_07508_00960226556 Ara ò ní ni wá o. +yom_00610_01983991795 Ọjọ́ burúkú èṣù gb’omi mu ni ọjọ́ náà jẹ́. +yom_04310_00784459878 Aṣá ló lọ gbé ọmọ adìyẹ lórí ibẹ̀. +yom_03397_00683716873 Ẹ̀yin ni atọ́kùn ètò náà, àbí? +yom_01208_01142657335 Mo túbá fún gbogbo àṣìṣe tí mo ti ṣe s’ẹ́yìn. +yom_03034_00629276215 Ìyàwó ẹlẹ́sẹ̀ osùn, rọra máa wolẹ̀. +yom_06136_00513610746 Gbólúwaga ṣẹ̀ṣẹ̀ dé láti ibi tí ìyá rẹ rán-an ni. +yom_04310_01992336275 Oko obì lọ́tun, ti ọ̀gẹ̀dẹ̀ lósì. +yom_00295_01808625699 Ọlọ́fin ní orúkọ ẹni tí ó tẹ ìlú Ọ̀tà dó. +yom_08784_01792196659 Ó sọ pé ki n má bínú. +yom_03397_00451394405 Wọ́n na Àdùnní játijàti. +yom_00295_01100371474 O gbọdọ̀ gbọ́ ohun tí mo bá sọ fún ẹ, èmi ni mo bí ẹ. +yom_03034_00045415866 Atọ́batẹ́lẹ̀ ra ọ̀gẹ̀dẹ̀ wá. +yom_06136_00706013777 Adúrú ǹkan yìí ṣẹlẹ̀, oò dẹ̀ jẹ́ kí mo gbó? +yom_02484_00575387344 Ìyàtọ̀ gedegbe ló wà láàárín ikú àti ìyè. +yom_07505_01380730347 Àjàká lọ sí Ìlú Èkó. +yom_02121_01831412677 Ǹjẹ́ ìwọ́ tí dé Ìdúnmọ̀tà rí? +yom_02436_00384928509 Orí ẹní ni mo sùn mọ́jú. +yom_07508_01585466389 Àkàyìmọye ìwé ni Ọ̀jọ̀gbọ́n Ajíbóyè Ọládìípò ti kọ́. +yom_07505_00309679014 Àárin gbùngbùn àríwá ni Atikú ti wá. +yom_00610_01663746697 Ṣé o mọ ìdí tí mo fi ṣe bẹ́ ẹ̀ bi? +yom_08421_00493295037 Lọ wo ẹ̀wà tí mò ń sè nínú kíṣìnì. +yom_02121_00206639101 Ó yà mí lẹ́nu, ètè mí ya pẹ̀lú. +yom_06136_01698663849 Ǹjẹ́ o ti gbọ́ oun tó ṣẹlẹ̀? +yom_00295_02097610485 Orí ibùsùn Àdìó ni Ṣẹfíù jókòó sí. +yom_01208_01854833424 Ní àná, ọkọ mi ò wá sílé. +yom_08784_00383847516 Jẹ́ kí n fún ẹ ní gbogbo ìfẹ́ mi pátápátá. +yom_01523_00756340215 Bísí jẹ́ ìyàwó kejì. +yom_08421_01509728815 Inú omi àti orí ilẹ̀ ni èyàn ti lè rí oònì. +yom_03034_01010138513 Ajé f’ilé wa ṣe ibùgbé ẹ̀. +yom_08421_02009201914 Ikúu M.K.O Abíọ́lá dun ọ̀pọ̀lọpọ̀ èèyàn. +yom_00295_01009533577 Gángan ni ọ̀rọ̀ ilé ayé, bí ó ti kọjú sẹ́nìkan, ẹ̀yìn ló kọ sí ẹlòmíràn. +yom_02121_00900745843 Ààfin ni wọ́n ń pe Ìgà ní Ọ̀yọ́. +yom_08421_01276850983 Inú ń ro mí o. +yom_01208_01099480720 Bàbá yín ò ní pẹ́ dé o. +yom_03034_00663144384 Àwọ̣n ọmọ wọ̀nyí ti jáde lọ. +yom_00295_02013147966 Abẹ́ àtíbàbà ni ìpàdé náà yó ti wáyé. +yom_04310_01967338071 Bàbáa wa ló tún wá jọ́ba. +yom_00295_01090465200 Wùnmí fẹ́ràn kí ó máa jẹ eegun. +yom_09334_00730161997 Owó náà ká gbogbo ohun ta fẹ́ ṣe. +yom_07049_01162914798 Lọ wẹ̀ kí o yé rùn. +yom_07508_01520693898 Ìyá tó mọ ìbẹ̀rẹ̀ ayé mi kó má ṣe mọ ìgbẹ̀yin ayé mi. +yom_08421_01266563036 Inuwọ̀ wà ní abẹ́ tábìlì. +yom_04310_00142694911 Kò mọ̀ ju kí ó ma kà’wé lọ. +yom_07505_00328639836 Ilé ò ní lé wa, ọ̀nà ò sì ní nà wá. +yom_03034_00554207733 Ó ń polówó ọjà. +yom_02121_00216027048 Fẹ́rànmi ti sá kúrò nílé iṣẹ́ ìjọba. +yom_00610_01109755410 Ìrètí nì orúkọ ọmọ àbúrò màmá mi. +yom_00295_01052693823 Tí mo bá gbàgbé ohun gbogbo, ojú rẹ ni mi ò le gbàgbé. +yom_03034_00921743636 Kí màmá tó lọ sọ́jà ló ti sọ fún mi kí n pàrọ̀ aṣọ àbúrò mi. +yom_08421_00705794618 Ọ̀rẹ́ pàtàkì ni èmi àti ẹ̀gbọ́n bàbá ẹ nígbà tó wà láyé. +yom_02121_02034423957 Kí ló ń s’áré jù nínú ìjàpá àti eku. +yom_07049_01655323368 Olódùmarè ní kí ẹ má sin òrìṣà kankan lẹ́yìn òun. +yom_01523_00556139804 Ifá ní pé, ìtì ọ̀gẹ̀dẹ̀ ní kí wọ́n fi máa kóná àgbo fún àwọn tí ara wọn kò yá. +yom_08421_02094124628 Pa fẹ́rẹ́sẹ́ dé kí o bá mi ní ìsàlẹ̀. +yom_03034_00096760735 O jọ ẹni tí yóò ní ẹ̀mí gígùn. +yom_00295_01769793281 Èdùmàrè jọ̀wọ́ jẹ́ káyé ó yẹ wá. +yom_04310_00733516550 Ó ra ọtí fún wa, ẹ bá wa dúpẹ́ lọ́wọ́ ẹ̀. +yom_07049_00102692105 Ayé laá jẹ, ka tó jọ̀run. +yom_02484_00434404389 Mi ò gbàgbọ́ pé Tinúadé lè pa ènìyàn. +yom_02436_01373670277 Ọ̀rọ̀ tó ṣ’àkàlàmàgò tó fi dẹ́kùn ẹ̀rín rínrín, bó ba ṣe gúnugún a wo kókò sórí ẹyìn ni. +yom_00295_00211433715 Bí Ọládùnúní àti Ọláfibọ̀ tilẹ̀ d’ẹ́se náà, wọn ti tọrọ àforíjì. +yom_03034_01842627620 Alágídí èyàn ni Odùújókòó. +yom_03034_02014226570 Ní àná, ò ń wò bí ẹyẹ t’ójò pa. +yom_00610_01451481032 Àwọn okùnrin ni ó pọ̀ njù nídìí iṣẹ́ orin dadakùádà. +yom_02121_01814534607 Ọ̀jọ̀gbọ́n ni ọmọ náà. +yom_00295_00031013716 Díẹ̀ ni tìẹ níbẹ̀, Abíkẹ́, ọmọ Monífádé, ará ìsokùn. +yom_04310_00158953253 Lọ gbé ẹní wá. +yom_00295_01309711201 Ọ̀dọ̀ Ṣẹ̀fíù ni mo ti yá ẹ̀rọ ìbánisọ̀rọ̀ náà. +yom_08421_00373763601 Àwọn ọmọ náà mọ̀ pé ó dára láti wùwà rere. +yom_00295_01149569587 Ìrìn àjò ànà ò dẹrùn rárá, ẹnu gan kò lè ròyìn rẹ̀ tán. +yom_00295_00062289378 Akẹ́kọ̀ọ́ ni wọ́n ń bá sọ̀rọ̀. +yom_02484_01608540149 Ṣọ́’ra ṣe o, ayé gba jẹ́jẹ́. +yom_08421_00934950855 Olè náà sáré gba kọ̀rọ̀. +yom_09334_00645040800 Atẹ́ ti kúrò ní ile ìwée wa. +yom_09334_01892073005 Ajá dúdú ni ti wọn. +yom_02484_01213496884 Jẹ́ ká jọ jó. +yom_08784_00528036130 Mo rí nǹkan tó jọ bẹ́ẹ̀. +yom_03034_01843115561 Oṣù kẹwá ni Adéwùnmí yóò sẹ mọ̀-mí-n-mọ̀-ẹ́. +yom_00610_00861023794 Ẹyẹ agénifò tí ń fò Iójú ọ̀run, kílódé to ṣekú pa Akínsanmí? +yom_07508_01367220977 Bí ọkọ̀ náà ṣe bọ́ sinu kòtò ló mú kí ó forí gbá. +yom_02484_00039799196 Ìwé mẹ́rin ni ọ̀gbẹ́ni Caleb ní ka rà. +yom_03034_00395831951 Wón kun àtíkè sí ọrùn Àńjọlá. +yom_03034_02054899976 Ìdàgbàsókè tí ń bá ìlò ède Yorùbá nípa ìmọ̀-sáyẹ́ǹsì. +yom_07508_00745844924 Ìbálòpò tọkọtaya ni a ń sọ. +yom_07508_00957942018 Ọmọ ló kù ta ǹ tọ́rọ́ fún wọn. +yom_07508_00981058538 Orí páànù ni wón sá ẹran oníyọ̀ sí. +yom_09334_01977117935 T’akọ t’abo la dálé ayé. +yom_04310_00888149686 Ipele àkọ́kọ́ ní fásitì ni mo ti pàdé ìyàwó mi. +yom_03034_00631718384 Kò sí èyan rere kan lára ọmọ yẹn. +yom_07508_01290286199 Ilé-iṣẹ́ agbóhùnsáfẹ́fẹ́ kan ni Jákànde ni ó fi ọ̀rọ̀ náà lọ̀. +yom_08421_01993288533 Kò ní mú ọgbọ́n wá tí a ò bá dá owó tó kù padà. +yom_01208_02048199037 Ìjọ tí mo lọ lánàá wọ́n ń pariwo. +yom_02484_00126078684 Kò rí oorun sùn lálẹ́ àná; èyí múu bínú. +yom_02121_00424840599 Ọ̀rẹ́ kìí ṣe ẹnìkan tí ó kàn ń ṣe alábàápín ìgbà tí nnkan rọ̀ dẹ̀dẹ̀. +yom_04310_01855565612 Mo gba ààyè ní ibi iṣé láti lè lọ fún ìrìn àjò náà. +yom_07505_00035428769 Ohun tí a ó fẹnu jóná lé lórí iṣẹ́ yìí ni èdè àwùjọ àwọn agbèrò àti awakọ̀. +yom_03034_01392332855 Àwọn ọdẹ etílé kìí wọ inú igbó kìjikìji. +yom_07508_00841986848 Ó lé tìróò s’ójú. +yom_09334_01567489824 Ó bá mi mú ẹran wá. +yom_08784_01485984985 Kò kúkú sírú ọlọ́run, Ọba tí kò ṣeé pè lẹ́jọ́. +yom_00295_00999748557 Etí rẹ̀ pẹ̀lú a sì máa gbọ́ ìgbọ́kùgbọ̀ọ́. +yom_02121_00211120486 Wọ́n fẹ́ràn láti máa jẹ àkàrà. +yom_00610_00064644867 Ìdíje ńlá gbáà ni àwọn ẹgbẹ ọdẹ ń fi Ìrèmọ̀jẹ́ Ògún ṣe. +yom_07508_01052355386 Ọ̀kan pàtàkì lára àwọn ẹ̀yà lítíréṣọ àbáláyé Yorùbá ni eré-oníṣe àbáláyé jẹ́. +yom_02121_00772251437 Olúwa yóò ṣọ́ ẹ di ọjọ́ ìkúnlẹ̀ o. +yom_00295_01975678703 Ó ti wa wèrè ni? +yom_07505_01353857074 Lọ ra ata’re wá. +yom_01208_00101690108 Aríìkẹ́ ni mo yàn láàyò jùlọ nínú gbogbo àwọn ọ̀rẹ́ mi. +yom_01208_00463155729 Kí ló dé tí irọ́ rẹ pọ̀ tó báyìí? +yom_06136_00372800060 Òpó iná náà ti wó lulẹ̀. +yom_07508_00812206214 Àwọn tí wọ́n darí iná fún eré orí ìtàgé náà gbìyànjú. +yom_02436_01678221006 Jẹ́ kí á lọ bẹ̀rẹ̀ ìgbé ayé tuntun níbi tí enìkan ò ti mọ̀ wá. +yom_00610_00048492133 Akáloló ni Bídèmí nígbà tí ó ṣì kéré ṣùgbọ́n ó ti yàtọ̀ díẹ̀ ní sìnyí. +yom_01208_00100923599 Ìrìn-àjò èdá láyé Ọlọ́run ló mọ̀. +yom_01208_01227004455 Irun rẹ̀ ta kókó. +yom_07049_01473111251 Láti ojú fèrèsé mi, mo rí àwọn ọ̀dọ́ méjì̀ tí wọ́n ń tami oge. +yom_06136_00066077105 Edé mẹ́fà ni Músá fi mu gààrí. +yom_06136_01143703620 Ó ti jí ẹran jẹ nínú ìṣasùn. +yom_09334_00720332405 Ṣòkòtò funfun la wọ̀ lọ sí ilé ìjọ́sìn náà. +yom_01208_00938323361 Bí ìyá náà ṣe gbé ọmọ náà pọ̀n dára jọjọ. +yom_04310_01121296372 Àwọn ọ̀rẹ́ mi ni wọ́n kọ́ mi bí wọ́n ṣe máa ń se oúnjẹ. +yom_09334_00091591408 Ayé ń lọ, à ń tọ̀ ọ́. +yom_03034_01510768014 Nínú gbogbo ìdáwọ́lé mi mo ríre. +yom_09334_01492453488 Ṣadé ṣiṣẹ́ ìwádi lọ sí ilẹ̀ Àríwá. +yom_04310_00068034721 Kí ni wọ́n ń polówó. +yom_02121_02084135875 Àṣé ayé kọ́ la wà nílẹ̀ wa rárá, mo kí ajé kúùkàlẹ̀. +yom_09334_00231754677 Ìwé mélòó lo ti kà. +yom_08784_01039888998 Nínú ère àgbéléwọ̀ náà la ti rí ibi tí ọkọ ti fọ’nu fún aya. +yom_07505_01304643046 Ẹ̀gbọ́n mi ti ṣe ìbéyàwó ní ọ̀sẹ̀ tó lọ. +yom_09334_00479501198 Irú ìbéèrè wo lèyí? +yom_08784_00353698143 Wọn fi ẹ̀mí ìmoore hàn. +yom_00295_00922485420 Gbogbo ara ni mo fi ń kí ẹ. +yom_09334_00206407521 Tóbi ní òun ò fẹ́ rí ẹnikẹ́ni lénìí. +yom_07505_00714441660 Oríṣiríṣi ọgbọ́n ni àwọn bàbá wa máa ń ta láti de ọmọ tí ó bá jẹ́ àbíkú mọ́lẹ̀. +yom_08784_00908923873 Wọ́n ti lọ ṣán ara wọn lẹ́yìn lẹ́yìn wàhálà púpọ̀. +yom_02484_00688622874 Wọ́n ṣe iṣẹ́ abẹ fun ọmọ yẹn ní inú. +yom_04310_00767913939 Tí mo bá lè ṣe’pò kíní nínú ìdíje yìíì, bàbá mi á ra ẹ̀bún fún mi, èyì dá mi lójú. +yom_00295_00625392818 Oṣhòdì ni ilé iṣẹ́ Alfa wà. +yom_02436_02078539238 Ní ‘jọ́ tí Herbert rí Monisọ́lá, kò lè gbójú kúrò lára rẹ̀; Ó fẹ́ẹ̀ lè ma játọ́ lẹ́nu. +yom_08421_00812246475 Àná ò le jẹ́ t’òní, tòní ò sì jọ t’ọ̀la. +yom_09334_00007045236 Mo fẹ́ràn ìsọkúsọ lọ́jọ́ Sátidé. +yom_07508_00149954221 Mo fẹ́ kọ́ bí wọ́n ti ń tẹ dùùrù. +yom_08784_00466800209 Ẹ̀yọ̀, Gẹ̀lẹ̀dẹ́ àti Eégún ni àwọn ọdún ìbílẹ̀ tí mo fẹ́ràn jù. +yom_08784_00975824168 Ìyá wọn ti dolóògbé. +yom_03397_00442217461 Nínú bọ́ọ̀lù àfọwọ́gbá ni wọ́n ti jáwé olúborí. +yom_06136_01221339237 Ọmọ́yẹlẹ́ ti yọ fáìlì náà kúrò ní ibi tí a kóo sí. +yom_00295_00318803215 Onímọ̀ ìṣègùn ni ọmọ mí sọ pé òun fẹ́ fẹ́. +yom_09334_01361517602 Ọjọ́ ọla mi ló jẹmí lógún. +yom_01523_02091535034 Eṣinṣín wá tìlẹ̀kùn ṣáláńgá mọ́rí, ó l’óun ò ní jáde àf’ìgbà tí wọ́n bá fún-un n’íyàwó. +yom_07505_02111388719 Ki lo kùn sí ètè? +yom_06136_00645370566 Èrí mìíràn tí ó fi ìdí ìgbàgbọ́ Yorùbá hàn nípa Àbíkú wà nínú ẹṣẹ̀ ifá. +yom_07508_01439327770 Ọkọ̀ akérò ni mo wọ̀. +yom_00610_01855639877 Aríṣekọ́lá ṣe dáadáa nínú ìdánwò. +yom_08421_01705164982 Ẹlẹ́nu róbótó bí orí ìgò. +yom_07049_00554372530 A gbàgbọ́ pé wọ́n jẹ́ ẹ̀mí àwọn ará ọ̀run tí wọ́n máa ń bẹ ilé-ayé wò. +yom_06136_00386272214 Ó darí ìpàdé náà láti ìbẹ̀rẹ̀ dé òpin. +yom_03034_01116358683 Bàtà mi dà? Níbo lo kó wọn sí? +yom_00610_02084800822 Wọ́n ti mú Èmánúẹ̀lì lọ sí ibi tí yóò ti kọ́ bí wọ́n ti ń ṣe bàtà. +yom_00295_00581377590 Òṣùwọ̀n mẹ́jọmẹ́jọ lóri omi. +yom_09334_00673066578 Kádírí ń jẹun bíi wọ̀bìà. +yom_08421_01952557156 Pẹ́pẹ́yẹ máa ń wè nínú omi bẹ́ẹ̀ wọ́n ń rìn lórí ilẹ̀. +yom_07505_00849493580 Ẹfọ̀n mẹ́ta la gbọ́ pé ọdẹ náà pa. +yom_00610_01205115570 Omí ti dànù. +yom_07505_00417269241 Ṣé oṣó ni ẹ́ ni tàbí iwin? +yom_02121_00689998337 Kí ló dé tí o sá aṣọ tútù sí inú ilé. +yom_07049_00866136075 Ìyá ọkọọ̀ rẹ ló ń pè ọ́. +yom_09334_01196567084 Ilé-iṣẹ́ ti bàbá Bọ̀dé tí ń ṣiṣẹ́ ló ṣe agbátẹrù ìdíje náà. +yom_00610_02053275484 Àwámárììdí ni Ifá. +yom_02436_00928708939 Aláriwo ọmọ ni ẹ́. +yom_02436_00701300944 Ta ẹ̀pà fún mi kí ebi má pa mí kú. +yom_08784_01964755890 A ṣì ní ọ̀pọ̀ ǹkan láti mọ̀ nípa àwọn àdán àti iye ẹ̀ya tó wà. +yom_03034_00228069615 Wọ́n pa ọmọ yín lẹ́kún. +yom_04310_01733840109 Ètò ẹ̀kọ́ alákọbẹ̀rẹ̀ ṣe pàtàkì. +yom_01208_00236356618 Mary Slessor ló dá’wọ́ kí a máa pa ìbejì dúró ní orílẹ̀-èdè Nìgéríà. +yom_01208_00748619928 Olùyàwòrán ni Olúwatóbilọ́ba. +yom_02121_01545187415 Àdúrà fún àwọn ológun Orílẹ̀-Èdè wa àti ìdílé wọn. +yom_08421_01357255384 Ọ̀gá ni Bísóyè níbi ká máa ṣe ìwádìí nípa ìmọ̀ èrò. +yom_08421_01458559247 Àpá kan wà lẹ́yìn ọrùn mi. +yom_07049_01700911293 Àgbàrá ti wọ́ oko bàbá àgbà lọ. +yom_02436_01193063263 Pàtàkì ni àdúrà nínú ohunkóhun. +yom_07508_00629646897 Ẹ̀yìn ilẹ̀kùn ni a máa ń kó ìgbálẹ̀ àti ìkólẹ̀ sí. +yom_03034_02036646410 Ìjọba ti ní kí wọ́n tilé náà pa nítori wàhálà tó ń ṣẹlẹ̀ lọ́wọ́. +yom_07508_02113659767 Orí ibùsùn yìí ni gbogbo ìṣẹ̀lẹ̀ yìí ti ṣẹlẹ̀. [abrupt] +yom_00610_00750798937 Orúkọ ìwé náà ni Mátìíkú. +yom_06136_01020370776 Òǹkà Yorùbá ni mo kọ́ àwọn ènìyàn níbi ìpàdé àná. +yom_03034_01911907681 Èmi ni mo bá àbúrò mi ṣe iṣẹ́ àmúrelé rẹ̀. +yom_03034_00010441476 Ẹnu-Ọwá la ti ń d’ádé. +yom_06136_00293511194 Òòrùn yìí mú gan-an o. +yom_00295_02006503027 Ibo lo ti lọ fọ’bọ́? +yom_09334_00857266005 Mo kórira irọ́ láyé mi. +yom_07049_01576880734 Mo fẹ́ran àgbàdo sísè. +yom_04310_01416816876 Ọlọ́mọ jogún ayé; Erín jogún ọ̀la. +yom_04310_01329108058 Àńjọláolúwa lorúkọ àmútọ̀runwá rẹ̀. +yom_08784_01415110186 Èdè ni à ń lò ní àwùjọ èèyàn púpọ̀, kí àgbọye àti àsọyé lè wà. +yom_00295_00700005909 Níbi tí mo rìnriǹ àjò lọ, ará oko gbáà ni wọ́n. Wọn-òn dá ohun kan mọ̀. +yom_00295_00862359161 Ikú á poníṣègùn bí ẹni tí o ̀m’egbò. +yom_00610_00868771372 Ìgbà wo ni wọ́n ma tó ṣe ọdún ẹ̀yọ̀. +yom_07049_00305661349 Bóyá màá lọ ra mọ́in-mọ́in àt’ẹ̀kọ. +yom_08784_01965579882 Ọpọlọ ọmọ yẹn dà bíi ti Dámilọ́lá. +yom_08421_00500408617 Ọmọ ọba kìí sùn ìta. +yom_03034_00791101288 Ọ̀kan ni ènìyàn ó f’ọwọ́ mú. +yom_07505_00237028149 Imú ọmọ ìkókó náà dọ̀tí. +yom_04310_00655668377 Olorì ní kí a pe àwọn ẹ̀sọ́ wá. +yom_00610_00324773543 Ọ̀dájú n'ikú, bó ṣe ń pa lọ́tùn-ún ló ń pa lósì. +yom_00295_00803217198 Ọmọbìnrin kán wà, ó bímọ méjì, orúkọ àwọn ọmọ náà ni Ọmọ́ṣewà àti Adétutù. +yom_01208_00109215192 Àbùbùtán bíi omi òkun. +yom_08784_01555446232 Ṣé o ti rí ẹran ajá rí. +yom_02121_00210178810 Tí ẹ bá wọ inu ilé wa, àwòrán kan wà lẹ́gbe ibùsùn; Ẹ bá mi múu wá. +yom_03397_01376360817 A ti gé igi kan lulẹ̀. +yom_08421_00321336704 Ọmọ màmá ẹ̀ ni Túndé. +yom_06136_01842897105 Mo máa wà ní agbègbè Tinúbú ní agogo mẹ́wa ọ̀la. +yom_09334_02067295485 Ọdúnm̀bákú ni wọn pe ọdún náà, nítorí àwọn ohun tó ṣẹlẹ̀. +yom_07505_01797491011 Èèyàn mélo lo fẹ́ rí? +yom_03397_00742019698 Mo ò tíì wẹ láti àárọ̀. +yom_08784_00859217672 Ìwọ náà ti délẹ̀ yí, omí ti ta síi díẹ̀. +yom_06136_01797301507 Ọ̀dẹ̀ burúkú l’ọmọ Ajíbóyè yìí tó dá mi dúró. +yom_07505_00715844895 Fọlámí Ọlájídé lorúkọ ọ̀rẹ́ mi àtàtà. +yom_03034_00389072605 Gbogbo wa ni ọ̀rọ̀ yìí kàn. +yom_09334_00936642366 Jàlabíà dúdú ni mo wọ̀ lọ kí ìrun yídì ní ọjọ́ ọdún. +yom_06136_00074953127 Ikú á sọ gbogbo ilé d’ahoro. +yom_04310_01007763877 Òkè pọ̀ ní Ìṣẹ̀yìn ju Ọ̀yọ́ lọ. +yom_09334_01393187332 Ilé ìjọ ni a ti ṣe ọjọ́ ìbí ọ̀rẹ́ mi. +yom_02484_02142632962 Nígbà tí ogún wọ ìlú, abẹ́ àpáta ni èmi àti àwọn mòlẹ́bí mi fara ṣọkọ sí. +yom_01523_00762007073 Nínú èrò tí Elédùmarè fi jíǹkí ẹ̀yà Yòrùbá ni ọ̀nà tí a fi ń ṣe òǹkà tó múná dóko. +yom_00610_00453295415 Mọ́ṣáláṣí wà ní ara ilé òhún. +yom_00295_00873388232 Ata ni Bọ́láfadé ń tà láti rán ara rẹ̀ lọ sí ilé-ìwé. +yom_00295_00724947800 Àwọn ọmọ tí kò bá ti f’etí sílẹ̀, ẹgba ni irú wọn máa ń jẹ. +yom_09334_00861134524 Àwon ìyàwó ilé náà ṣàbòsí ìyálé wọn. +yom_00610_01843860486 Ọmọ Ọba ni Adédọlápọ̀. +yom_07505_00172057367 Ẹ yan aṣojú láàárín yìn. +yom_08421_00418454270 Bùgan tí bàbá mú wálé dùn púpọ̀. +yom_06136_00990047285 Fálànà jẹ́ ògbóǹtarìgì agbẹjẹ́rò àgbà ní orílẹ̀ èdè yìí. +yom_03397_00332537205 Àwọn mẹ́sàn-an ni wọ́n jọ ń dá àjọ náà. +yom_00295_00099754894 Gbàjarè! Wọ́n ń wá ọmọ'bìrin kékeré kan o. +yom_00610_01955642474 Ilà gọ̀m̀bọ̀ ni Tìmílẹ́yìn kọ. +yom_01523_02052744662 Wọ́n wáa níyẹ̀wù àgbà. +yom_04310_01789265150 Màlú mẹ́ta la pa fún ọdún. +yom_02484_00441035951 Ẹ̀gbín ni ká má bọ̀wọ̀ f’’ọ́ba. +yom_07505_00820187801 Ọlọ́run má jẹ a ṣòfò èmí. +yom_08421_00307169252 Ìfẹ́ tí a fẹ́ adìyẹ ò dẹ́nu. +yom_01523_01284150094 Fi sí àarín ọkọ̀ yẹn. +yom_00295_02056888342 Kí la lè jẹ lówurọ̀ yìí, ebi gan ni mo bá jí. +yom_00610_01866214145 Nínú̀ ẹ̀wọ̀n ọdún méjìlá tí wọ́n dá fún Tájù, ọdún mẹ́wàá ló lò níbẹ̀. +yom_02436_01538779565 Àkàndùn ló mú Ìyániẃurà lọ́wọ́. +yom_02436_01534267201 Ìyàwó Adéfarasín bàá nínú jẹ́. +yom_01208_01378886596 Ọ̀lẹ ni ọmọ yẹn, bí mo ṣe gbọ́. +yom_09334_02069558960 Àwọn mélòó ló wà nínú yàrá yìíi? +yom_01208_00480893374 Orin àti ìlù ṣe pàtàkì níbi eré ìdánilárayá. +yom_04310_00216530353 Pè mí l’órúkọ mi, Ṣaléwá. +yom_01523_00383617355 Orí ló ń sin ni tá fi ń kọ́lémọ́lé. +yom_08784_00821931402 Ọ̀dẹ̀ ò wù mí lọ. +yom_01208_01466942069 Kí Ọlọ́run ṣe ohun gbogbo ní dédé. +yom_03034_00763007047 A fẹ́ lọ dá aṣọ náà padà sí ilé aránṣọ. +yom_00295_01804506403 Akíntọ́pẹ́ jẹ́ àna sí Ògúnlésì. +yom_02436_01798286718 Orí ọ̀pẹ ni a ti máa ń rí ẹmu. +yom_01208_00136240102 Ó ti padà dé láti òkè òkun. +yom_04310_01048959711 Jákọ́bù ń sáré yípo ọgbà náà. +yom_00610_00455420976 Ọ̀mùtí paraku ni Ọláṣayọ̀. +yom_02436_00715757019 Ó ti rẹ̀ wá púpọ̀. +yom_00610_01434916828 Lọ ra ẹ̀pà àti gúgúrú wá. +yom_09334_01494947492 Wọ́n ni ilé àwọn Jẹ̀lílì l’àwọn ń lò. +yom_01208_00610197141 Aṣọ àdìrẹ pọ̀ ní ìlú Abẹ́òkúta. +yom_09334_00305642474 Ọjà ńlá ni Àkẹ̀sán jẹ́. +yom_00295_00996793569 Mi ò n’ífẹ sí àpèjọ àbòsí. +yom_02121_01642377449 Ẹ wo bó ṣe da ẹnú sílẹ̀. +yom_00295_01402978861 Mo ga ní ìwọ̀n ẹsẹ̀ bàtà márun pẹ̀lú díẹ̀. +yom_04310_00981044538 Ẹ̀sìn òkèrè ni ẹ̀sin Krìstẹ́nì. +yom_02484_01334574030 Ẹnikẹ́ni tí ìwọ́ bá nípá láti ṣe ìrànlọ́wọ́ fún òun ni ẹnìkejì re. +yom_04310_00971636263 Ṣ’ara gírí kí o lo àwọn ògùn tí Dókítà kọ fún ẹ. +yom_00295_02040290647 Ẹ̀rín pa mí gidi nígbà tí mo gbọ́. +yom_07505_00482042486 Ní ọjọ́ kan, ó múra oko ọdẹ, pẹ̀lú ìhámọ́ra. +yom_08784_01994577354 Mo ṣèṣẹ̀ dé láti Kalifóníà ni. +yom_07049_00939672341 Fi ara balẹ̀ ṣá, má ṣè’jọ̀gbọ̀n. +yom_08421_00139174380 Wọn ó tíì jáde ní ilé ìwé àwọn Démiládé. +yom_00295_00012717311 Tọkọtaya ara ilẹ̀kùn náà ti bàjẹ́. +yom_00295_00220077901 Ayélàágbé ò fẹ́ràn kí ó máa rí àwọn àlejò ní ilé rẹ̀. +yom_08784_02008752195 A ṣèbà fún Ọba tó layé tó lọ̀run. +yom_01523_00823489175 Wọ́n ti ti ilé ìtajà yín pa. +yom_04310_01237282335 Òkuta tó bá lórí lo mú kí ẹyín mẹ́ẹ̀ẹ́dógún fò yọ lẹ́nu rẹ̀. +yom_03034_01614905881 Iṣẹ́ aránṣọ ni isẹ́ tí Lọlá ń kọ́. +yom_04310_01044682943 Ó dára kí ìyàwó máa ṣisẹ́. +yom_07049_00029708044 Ibo ni Sànúsí wà? +yom_02121_01663709904 A ti mú Doyin lọ sẹ́nu ìkọ́ṣẹ́. +yom_08421_01962445886 Mo ò ní já ẹ ku’lẹ̀. +yom_06136_01510824765 Ibí lo sùn mòjú. +yom_06136_00080388109 Ibo lẹ fi ọ̀bẹ sí? +yom_00610_01125538231 Ìtan fèyíkọ́gbọ́n ni eléyìí fún gbogbo ẹ̀dá Ádámọ̀. +yom_02484_01480541024 Olórí ilé ló lágbára àti dáríji ẹni tó bá dá irú ẹ̀ṣẹ̀ yìí. +yom_09334_00045442417 Mo tọrọ àforíjì pé mi ò lè dé ibi tí wọ́n wà lónìí. +yom_02121_00319176995 Ìyàwó ilé tí ò mọ oúnjẹ sè, kí ni ká ti gbọ́? +yom_02121_01352279665 Abọ̀rìṣà ni yín tẹ́lẹ̀. +yom_07049_01259466954 Ojúmọ́ ire, ojúmọ́ ayọ̀. +yom_01208_01404835296 Ẹ ò ká aṣọ wọ’lé kí òjò tó bẹ̀rẹ̀. +yom_03034_00513461231 Ṣòkòtò olómi aró ló wọ̀ lána. +yom_03034_01575312581 Ó fẹ́rẹ̀ má sí ìlú ilẹ̀ Yorùbá kan tí wọn kìí tií ṣe ọdún ìbílẹ̀ níbẹ̀ mọ́. +yom_07505_00046942163 Ẹdun náà ni wọ́n pè ní ọ̀bọ. +yom_02484_00419337325 Motúnráyọ̀ ló jáwé olúborí. +yom_09334_00832525318 Ògì ni màma Pamílẹ́rin ń tà. +yom_00610_01132427614 Koríko pọ̀ ní agbègbè náà. +yom_08421_01990905309 Ìjíròrò yó ti máa lọ lábẹ́lẹ̀ lori ètò ìdìbò tí [hesitation] ń bọ̀ lọ́nà. +yom_07508_01180990019 Nígbà tí ó di òru, Ìjàpá múra, ó gbé agbọ̀n kan rù. +yom_07508_01790608095 Ohùn ọmọ náà dùn. +yom_08784_01322726195 Àwọn ohun èlò akọrin ni ìlù, fèrè, jìtá, àti agogo. +yom_08421_00350518548 Igi gogoro ni wọ́n gé. +yom_00295_00666649904 Ẹ̀sìn ilẹ̀ wa ni ẹ̀sìn Àbáláyé. +yom_02436_01951602507 Ẹ̀yà Ìgbò ni ẹni tí Mọ̀rúfù fẹ́. +yom_01208_00519809786 Obì jẹ́ ohun ìpanu àwọn àgbàlagbà. +yom_03034_00427324499 Ọlọ́run nìkan ló mọ ohun tó ń ṣe fún àwọn ará ìlú. +yom_02484_01938363849 Ijó, ẹ̀rín, ayọ̀, àti ọpẹ́ ló yẹ wá. +yom_04310_00260318438 Àwọn ọmọ ẹgbẹ́ kò káàárẹ̀ láti máa wá sí ìpàdé. +yom_07049_00178547600 Àwọn ọmọ ogun orí omi wà níbẹ̀. +yom_01208_01899731466 Olówó ló layé ni wọ́n máa ń wí. +yom_04310_00866563516 Kú iṣẹ́ takuntakun, ìwọ ọmọ yìíì. +yom_08784_00328061139 Fúnmi dé ìgò s’ójú. +yom_07508_00520149587 Ìlù àti agogo máa ń sábà jẹyọ nínu orin. +yom_09334_00822812376 Àwọn ọmọ kékeké ti pọ̀ jú ní àdúgbò yẹn. +yom_02484_00042594609 Mo fi ẹnu kòó l’ẹnu. +yom_09334_01934823276 Ó fẹ́ pẹ́ láyé ju bí ó ti yẹ lọ. +yom_00295_01444086181 Kí ni ìdí tí àwọn èyàn mìíràn fi máa ń jẹ́ àfín? +yom_04310_01088045075 Àlùfáà ń wàásù fú àwọn ọmọ ìjọ. +yom_09334_01740820195 Àti ọjọ́ pípẹ́ làwọn baba wọ́n ti ń rejú ogun. +yom_07505_00313635721 Fásitì Èkó ni ilé ẹ̀kọ́ gíga tí Àrẹ̀mú gbà pé ó dára jù ní orílè èdè yìí. +yom_07505_01893585555 Orí ń yún mi láti ìjẹta. +yom_00610_01525645610 Àsáwọ̀ wà nínú oúnjẹ náà. +yom_02121_01777314155 Bàbá kan wà tó sọ fún egúngún pé kí ó jíṣẹ́ fún ọmọ òun pé kó fi àgùtàn rúbọ. +yom_01208_01867186819 Àmínátù ní òun fẹ́ jẹ́ kí mo fẹ́ òun gẹ́gẹ́ bíi ìyàwó. +yom_08421_01306989105 Àkàndé ti kiri ọjà lọ. +yom_01523_01202984853 Àkọtọ́ òde òní yàtọ̀ sí ti àtijọ́. +yom_07505_00579423714 Ẹ kú àṣekù ọdún. +yom_08784_01855888561 Ó nífẹ láti máa mú ajá rẹ̀ kiri. +yom_04310_01397844421 Ení bí ení lọ́mọdé ń kawó. +yom_02484_00207524819 Ó ṣì jẹ ẹgbẹ́ ní àpo kan. +yom_02121_01893640880 Òjó ti ṣú láti ìdájí, kò dẹ̀ tíì rọ̀. +yom_04310_01782056209 Ìfẹ́ mi si ẹ kì í ṣe tẹ̀tàn rárá. +yom_06136_00920807766 Awakọ̀ náà ti dí òpópónà. +yom_03397_01185231523 Kòsọ́kọ́ ni àbígbẹ̀yìn bàbá tirẹ̀. +yom_00610_01212953550 Ṣé ó ń dùn mọ́ ẹ? +yom_08784_01368443599 Ìgbà yí ni ọ̀la mi tó kún. +yom_01523_00906421838 Mo júbà àwọn tó layé, àwọn tọ́ ti wà k’áwa tó d'áyé. +yom_02121_00059074559 Mi ò tíì mọ oun tí mo máa jẹ lónìí. +yom_07505_01016357100 Gàní ti lọ sí Ìlúu Mẹ́kà. +yom_02121_02049095677 Owó ni kókó o. +yom_02121_01719214746 Àmọ̀jù ní ń b’ẹkùn sàárè jẹ́. +yom_01208_01871593788 A máa lọ gba ilé sí Àkóbọ̀. +yom_07508_00577892423 Kí ló dé tí o jí Bídèmí sílè. +yom_07508_00762047642 Ifo ló mú Yéwandé lójú. +yom_03034_00275928826 Tó bá yá ẹẹ́ máa bú'jọba, ṣóun tó ṣe ó bójú mu? +yom_00295_00725663214 Màmá ni ki a máa fọ ẹsẹ̀ kí a tó bọ́ sórí ibùsùn. +yom_02121_00437973576 Ó ti fi orí gbé òwú aláǹtakùn. +yom_07508_01571809569 Wọ́n mú ọmọ náà ṣeré. +yom_00610_01079386645 Àt’àná ni mo ti ń sùn. +yom_09334_00922149296 Inú igbó ni ẹfọ̀n máa ń wà. +yom_00610_01976240685 Bàbángídá ti ra mọ́tò kó tó lọ sí Hajj. +yom_02121_01099526752 Mo máa dúró dè ẹ́ ní ẹ̀bá ọ̀nà. +yom_08421_00439142911 Kátikàti bíi ọbẹ̀ onírẹsì ni gbogbo àwọn ọmọge ìṣẹ̀yín ń ṣe. +yom_02484_00803394816 Ọ̀làjú àti ẹ̀sìn àtọ̀húnrìnwá ti ń mú kí àwọn àṣà àti ìṣe wá dẹnukọlẹ̀. +yom_08784_01928806076 Bẹ́ẹ̀ la rí àwọn mìíràn tí ara wọ́n balẹ̀. +yom_09334_00444693824 Owó tó san ti pé. +yom_08421_00869088347 Ẹ̀yin àtùpà náà ti fọ́. +yom_00295_00275172322 Má jẹ́ kó dùn mí. +yom_06136_00140292369 Èyí tí ó wá tún ṣe pàtàkì jùlọ ni wípé àwọn eniyan gbàgbọ́ pe ẹ̀mí ń bẹ lẹ́yìn ikú. +yom_03034_00779424400 Kò fẹ́ kí á ṣeré ìfẹ́. +yom_08784_00683982952 Kí ló dé tí o ní ìkàánú fún mi tó bẹ́ẹ̀? +yom_02436_01353362184 A ti parí ìjà wa lánàá. +yom_07049_00180309358 Ó dà bí ẹni pé dàda ni ọmọ náà fẹ́ jẹ́. +yom_06136_01446187454 Arẹwà ni ọmọbìrin náà ní gbogbo ìgbà tí mo ríi. +yom_04310_01189473556 Ìwọ-oòrùn Gúsù orílẹ̀-èdè Faransé. +yom_08421_01708699375 Akókóró ló múu l’ẹ́yìn. +yom_04310_01573522146 Ọ̀nà ibo ni Admiralty wà? +yom_09334_00167629780 Ẹ̀gbọ́n mi ti ṣe ìkómọ ní ọ̀sẹ̀ tó lọ. +yom_01208_00592577753 Mo nílò èsì ìdánwò gidi fún ìtẹ̀síwájú ẹ̀kọ́ mi. +yom_08784_01760811678 Ọ̀gá ni Bísólì Ẹlẹ́shin lọ́jọ́kọ́. +yom_01208_00550202474 Akẹ́kọ̀ọ́ ìmọ̀ èdá èdè lìgúísììkì ni mo jẹ́. +yom_08784_00872735207 Kílàsì àkọ́kọ́ ni a ti kọ́ nípa Fònọ̀lọjí. +yom_07508_01969958196 Mo gbádùn yàrá tí mo wà. +yom_03034_00211138659 Tutù ní èjí ní eyín rẹ̀. +yom_08421_00383274940 Ẹ fún ọmọ l’ọ́mú fún oṣù mẹ́sàn-án. +yom_04310_01093720849 Bí a ṣe ń gbà ó nínú wàhálà kan lo ń bọ́ sí òmíràn. +yom_08784_01592165107 Mo fẹ́ jẹ̀’ka. +yom_08421_02046466727 Ilé ìtura tí a dé sí tóbi jọ̀jọ̀, ìlú Ọ̀yọ́ ló wà. +yom_08784_00946854537 Ilé ta fi ìtọ́ mọ, ìrì ni yóò wọ̀ọ́. +yom_09334_01724595781 Ọkọ ìya Bádé ti ṣaláìsí. +yom_04310_01703374574 Akitiyan àwọn ajíhìnrere tí wọ́n ṣe àkọsílẹ̀ àkotọ́ èdè Yorùbá kò ṣe é fọwọ́ rọ́ sẹ́yìn. +yom_03034_01657340547 Òjo pa wá dé ìbàdàn ni níjọ́ náà. +yom_03034_02137475519 A ti tọ́ka sí igi obì gẹ́gẹ́ bí igi owó pàtàkì kan láwùjọ Yorùbá. +yom_07505_01326785119 Àtakọ àtabo, èwo ni kì í ṣ’ọmọ. +yom_01208_01130805551 Kí ló dé tí wọ́n ṣẹ́ oyún fún-un? +yom_02121_01783333043 Olámìdé ti gbé àtẹ wàhálà rẹ̀ dé. +yom_07508_01077551043 A kọ́kọ́ júbà ki a tó lọ òde eré. +yom_08421_01497838425 Èkée Shíttù ti pọ̀ jù. +yom_00295_00336522760 Ọmọ náà ní ìgbéraga púpọ̀. +yom_00610_02143975402 Mo ti pinu láti má bèèrè ìrànlọ́wọ́ láti ọwọ́ enìkankan. +yom_08421_01986900203 Ọba nìkan ló lè jó sí ìlu gbẹ̀du. +yom_00610_01215408282 Tó bá di ọdún tó ń bọ̀, mo fẹ́ lọ ṣe ọdún Kérésì ní ìlú mi. +yom_07508_01809240756 Ejò paramọ́lẹ̀ burú púpọ̀. +yom_04310_01743306004 Mo fẹ́ ra ẹyin bíbọ̀. +yom_02121_00652214627 Agbejọ́rò náà kú l’ówurọ̀ yìí. +yom_02121_01228047902 Orúkọ ṣe pàtàkì, ó ṣe kókó; kò sí nǹkan tí a dá tí kò ní orúkọ. +yom_01208_01663739947 Tí mo bá rí aláboyún, àyà mí ma ń là gàràgà. +yom_01208_00599789243 Awólọ́wọ̀ ṣe díẹ̀ nínú ètò òṣèlù orílẹ̀ èdè yìí. +yom_00295_00721744525 Alájẹṣu ọmọ ni Táíwò. +yom_02484_00841559974 Ẹ má lọ sínúu'gbó lóru o. +yom_08421_01567028528 Wákàtí kan ni mo fún ẹ láti dé ibí. +yom_04310_00067333103 Ṣé o wà ní orí Twitter? +yom_08421_00837672219 Ejò náà gbé ẹran mì. +yom_08784_00269988761 Àwọn alápatà jẹ́ àwọn ènìyàn tó máa ń pa ẹran fún títà. +yom_01208_01750388120 Orísirísi ìtàn ìwásẹ̀ ni ó sọ nípa àwọn orísun wa, láti òkè dé’lẹ̀. +yom_08784_01381441667 Ìmọ̀ràn náà dára, a ó múu lò. +yom_03034_01431651662 Jẹ́wọ́ ẹ̀ṣẹ̀ rẹ fún waà. +yom_03034_01763492281 Wọ́n lọ ra ìrèké. +yom_02121_01606560487 Nígbà tí mo dé ilé wọn, bàbá wọn ni mo kọ́kọ́ rí. +yom_08421_00409214249 Mo ò lè wá kú nítorí iṣẹ́ ẹni ẹlẹ́ni. +yom_00295_01606240263 Mo sọ fún Ajírébi pé tí ó bá ti ráyè kí ó wá kí mi nílé. +yom_03034_01318895762 Òòrùn ò tíì wọ̀ tán. +yom_09334_01968339391 Bàbá mi ní ọ̀rọ̀ kán wà tí òun fẹ́ bá mi sọ. +yom_07505_00044171147 [breath] Ọ̀pọ̀lọpọ̀ ọmọ ni wọ́n ma ń bá ìyá wọn rẹ́ ṣùgbọ́n báyi kọ́ lọ̀rọ̀ rí fún Jayé. +yom_00610_01442561638 Fájídé ò ní ọpọlọ bó tilẹ̀ wù kó kéré mọ. +yom_07505_00023944927 Wọ́n ta ọfà fun jagunjagun náà láyà. +yom_01523_02088776890 Ó ní ìmọ̀ púpọ́ ní ọpọlọ. +yom_08784_00278467841 Ìdí tí mo fi fẹ́ràn ayé oko ni pé gbogbo nǹkan ló wà létòlé. +yom_01208_01408955045 Màmá mi, mo ti yó. +yom_02484_00593913844 Ọ̀pọ̀lọpọ̀ ohun ni mo rí kọ níbi ìpàdé yẹn. +yom_07505_01853542095 Ajá máa ń jẹ ìgbẹ́ lójú ọ̀nà. +yom_03034_01689635070 Gbogbo òbí ló ń gbàdúrà ọmọ tó máa sanjọ́. +yom_03034_01496456227 Ìgbà tí ó ti ilẹ̀ mímọ́ dé ni ó ṣe sàráà. +yom_00295_00054866397 Mo dúpẹ́ ore àtìgbàdégbà olúwa. +yom_03397_01839425777 Dadakùádà jẹ́ ọ̀kan lára ọ̀na ìgbé àṣà àti ìṣẹ́ ilẹ̀ Yorùbá lárugẹ. +yom_04310_00467020071 Àkàrà àti Ògì òyìnbó ni ìyàwó mi sè l’ówurọ̀ àná. +yom_04310_01672980641 Oríṣiríṣi ẹja ló wà níbẹ̀. +yom_08421_01239481855 Mo ti gbọ́ ìmọ̀ràn ẹ. +yom_00295_01634346315 Àmàlà ni Simí jẹ fún oúnjẹ ọ̀sán. +yom_08421_01180764639 Ọ̀gbẹ́ni, fi mí sílẹ̀ jọ̀ọ́. +yom_04310_00028596448 Inú kòtò ni mọ́tò náà já sí. +yom_00295_00358190062 Ọ̀mọ̀wé Ọládèjì wà nínú ọ́fìsì rẹ̀. +yom_07508_00719536244 Ológbò náà ń lé eku kiri nínú ilé. +yom_07505_01726861980 Àwọn wèrè l’àwọn olóṣèlúu wa o. +yom_01523_00630204368 Fúnmi ti sọ̀rọ̀ nípa òkè kan fún mi rí níbi ìpàdé kan ní Ìkòyí. +yom_01208_01650468848 Ó fún-un lọ́tí mu. +yom_07505_01010882409 Ẹ má jẹ kí n fẹ̀fun. +yom_02484_00745643273 Ìgbàgbọ́ mi dúró lórí olúwa. +yom_00295_00973380766 Ẹgbẹ̀rún ahọ́n kò tó láti yìn ọ́. +yom_03034_00778554989 Asọ̀rọ̀ sọ bótó ni Kòfowórọlá. +yom_03397_01751668117 Mú ṣíbí yẹn kúrò nílẹ̀. +yom_01208_00802242885 Moyọ̀ àti Bíbí ń bínú sí ara wọn. +yom_01523_01849720673 Ó dàbí ẹni pé àgùntàn Bísí sanra ju ti Bọ́lá lọ. +yom_06136_00900668750 Ikún wà ní imú rẹ. +yom_08784_00320911436 Ẹ̀rọ ayélujára máa ń parọ́ nígbà míràn. +yom_06136_02060261766 Moróunkẹ́ fọ́ ọkàn mi sí wẹ́wẹ́. +yom_00610_01058564775 Mo ra ìwé mẹ́ta níbẹ̀. +yom_08784_01657941598 Ní ìgbà láíláí, ọ̀rẹ́ ni ìjàpá àti àdàbà jẹ́ sí ara wọn. +yom_00295_00195528151 Àwọn ọjà yìí ò tutù. +yom_07505_01562111994 Tí mo bá ní mi ò rin ìrìn àjò báyi rí, irọ́ ni mo pa. +yom_07508_01901526502 Ta ló gbé ọmọ jù sórí àkìtàn? +yom_09334_01693570278 Ikú á pa babaláwo bí ẹnI tí ò gbọ́fá rí. +yom_06136_01808207611 Iná gbé Adétiba nígbà tó fọwọ́ kan òpó iná. +yom_01208_01499827517 Lọ fá irun rẹ kó tó wù. +yom_00295_01472739218 Táyé mọ ìwé ju kẹ́hìndé lọ. +yom_09334_01965207567 A dúpẹ́, Ṣé wọ́n ń bẹ lálàáfíà ara? +yom_09334_00138039360 Bíbíire, Tìmílẹ́yìn àti Ṣẹ́gun jẹ́ ọ̀rẹ́ tímọ́tímọ́. +yom_03397_01431436647 Púpọ̀ nínú àwọn ọmọ Nàìjíríà ni wọ́n máa ń jẹ ìrẹsì. +yom_00295_00548509757 Ìlú wa ni wọn yó ti ṣe àṣekágbá òkú màmá àgbà kékeré. +yom_02436_00301172841 Gbọ̀gàn àṣà ìbílẹ̀ ni ijó náà ti wáyé. +yom_02484_01414325790 Bá mi bu omi mímu wá nínu ìkòkò tó wà l'ábàáwọlé. +yom_00295_00943694618 Fún mi ní aṣọ yìí, mo ní’fẹ rẹ̀. +yom_03397_00526371421 Ohun tí ó dára ni láti wà pẹ̀lú enìkan tì èèyàn fẹ́ràn. +yom_09334_00652380149 Lọ fọn ikun’mú rẹ dànù. +yom_03034_01604613434 Ẹ gba Jésù s’ayé yín. +yom_08421_01419614822 Ó yẹ kí n yọjú síi yín láìpẹ́. +yom_03034_00374297711 Wẹ̀mímọ́ rò pé òún gbọ́n. +yom_08784_00378471014 Kan ìlẹ̀kùn pẹ̀lú sùúrù. +yom_00610_00207358726 Baba ńlá ìyà ni won ìbá jẹ tí m bá rí wọn mú. +yom_01208_01235079614 Ìgbà tí Olùwa rẹ̀ dé ni Fadérẹra dákẹ́. +yom_07049_01092361563 Hoògùn abẹnu gọ̀ǹgọ̀ ni wọ́n ń pèé. +yom_07508_01590641493 Mo fẹ́ràn irun orí rẹ̀. +yom_03397_01023928001 Orin náà ń fa ọkàn mi. +yom_08784_01134309283 Ó bí ìkẹta, bákan náà tún ni. +yom_02484_01744777048 Mò ń lọ sí ọjà àwọn eléwé ọmọ. +yom_00610_01941449940 Èdè mẹ́ta ni mo gbọ́ láti kékeré. +yom_09334_00334143599 Wàhálà l’ọ́tùún, rògbòdìyàn l’ósì. +yom_09334_00181171924 Ta ló fi ọṣẹ síbí? +yom_06136_00956618144 Ó ti dùbúlẹ̀ sórí ìbùsùn. +yom_03034_02085750267 Bọ̀dá Ràṣídì ni wọ́n fún Òkìkí ní owó oúnjẹ àárò yìí. +yom_04310_00341276759 Oyún náà ti pé oṣù mẹ́jo, Ìyá Bọ́lá oò ní pẹ́ já ẹrù náà kalẹ̀. +yom_02484_00263547793 Bíléèdì gé ọmọ náà ní’ka. +yom_02484_00770349984 Ilẹ̀kùn yàrá Tádé ti bàjẹ́. +yom_01208_00743266915 Jẹ́ ka jọ lọ jẹun níta. +yom_03034_01772889151 Irú àṣìtẹ̀ burúkú wo ni èyí? +yom_02484_01417319851 Àṣá gbé ọmọ adìẹ fò lọ. +yom_07505_01264896815 Abíọ́nà ní òun lọ rí Adé ní ago mẹ́wa òní. +yom_01208_00740667051 Ẹniyàn mẹ́rin ló ti ra ọkọ̀ tuntun láti ọdún tó kọjá. +yom_09334_01962555696 Nínú gbogbo ilé ìwòsàn agbègbè yí, ti ọ̀nà òpópónà òkìtìpupa ni ó dára díẹ̀. +yom_07508_00108608081 Ọmọ náà kò m’ará mú, àfi bíi ará oko. +yom_07508_00674666895 Ọ̀gá ni Sàmù nínú ká ya àwòrán aláràmbar. +yom_07505_01699823013 Ọpọlọ yín ni mo fẹ́ yá lò. +yom_06136_00327339250 Orúkọ Yòrùbá jẹ́ àkàìmọye. +yom_04310_01644923220 Ọ̀rẹ́ mi tuntun tí mo ṣẹ̀ pàdé ní patí kan ni. +yom_01208_01390796101 Ikú kò go’owó, kò gb’ẹ̀bẹ̀. +yom_01208_01368057340 Ọlárótìwọ́n sùn fọnfọn bí ẹ̀fọ̣n. +yom_07505_00550362230 Kọ́lápọ̀ jábọ́ sínu gọ́tà. +yom_02121_00968107226 Ẹni tó bá ń jini láya kò lè fojú ire wo’ni. +yom_08784_00620139062 Ọmọ ẹlẹ́pà ti ń sá lọ. +yom_01208_01795496177 Ọmọ bàba olówó ni mí. +yom_00610_01008803339 Kọ́bọ́ọ̀dù rẹ̀ ti bàjẹ́. +yom_01208_00003694961 Oyíndà ti sọnù lọ́nà. +yom_01208_02001837444 Ó ń bọ̀ wá, àwọn làá dẹẹ́ dèé. +yom_03397_00821101412 Ìkọta ni ilé tí Similólúwa ń gbé wà. +yom_00295_01516697189 Oúnjẹ kékeré ló sè lọ fún-un. +yom_09334_00390581647 Ẹsítẹ́tì náà rẹwà púpọ̀. +yom_01208_00347783993 Gbogbo àwọn ìṣòwò pátápátá jẹ́ ti ìjọba. +yom_07049_01606231622 Ní ọjọ́ ìbí Adérónkẹ́, pẹ́pẹ́yẹ p’ọmọ, a f’ilé pọtí, a f’ònà rokà. +yom_01523_01798327026 Ọlámide a máa fi gbogbo ọ̀rọ̀ ṣàwàdà, àwàdà sì máa ń kóbáa nígbà mìíràn. +yom_00295_00068075043 Ilé-ifẹ̀ ni ọdún Ifá ti máa ń bẹ̀rẹ̀ káàkiri gbogbo àgbáńlá ayé. +yom_00610_00390435055 Ikú Olóògbé Dúró Ládiípọ̀ dun gbogbo ìlú. +yom_00295_01846007335 Ọlórun má jẹ ka wáyé òfìfo. +yom_02436_01642623780 Ìbọn jẹ́ irinṣẹ́ pàtàkì fún àwọn ọde. +yom_01208_01968509398 Mo rí àwọn alábójútó ilé ìwòsàn kan tí ó ń mú kí ohun tí a gbà sílẹ̀ dára. +yom_04310_00251924654 Jẹ́ kí ó ṣe bí ó bá ṣe fẹ́. +yom_00295_00428773031 Tiwátọ́pẹ́ fẹ́ Tiwaladé. +yom_08784_00334479509 Ó yẹ kí a gbádùn ayé ni. +yom_08421_00044394656 Ṣé gbogbo ìgbà ni òtútù máa ń mú ìwọ ni? +yom_04310_00935632064 Gbogbo àwọn ọ̀dọ́ ló fẹ́ sá kúrò l’órílẹ̀-èdè yíì. +yom_08421_01108237170 Kí ló dé tí ò ń tẹ̀ mí lọ́rùn? +yom_08784_02117083096 Bàbá Ọba ni wọ́n ń pè wọ́n. +yom_01523_00927691986 Iṣẹ́ tó dára ni iṣẹ́ ìmọ̀ ẹ̀dá èdè. +yom_07508_01963431820 Wàhálà ti mo fi ara ṣé pò lénìí. +yom_09334_01929843062 Nígbà kan rí, ó ní’fẹ̀ẹ́ẹ Bọ́lá. +yom_01208_00537794162 Mo rí àrà meèrírí, ó kọjá ohun tí mo ti gbọ́ tẹ́lẹ̀. +yom_08421_00859421512 Iná ìjọba máa ń wà dada ní agbègbè Ilémobọ́lá. +yom_04310_00363799652 Orí mi ni kẹ́ẹ wò. +yom_03034_01108250737 Ọ̀gágun Abéégúnrín àti àwọn ọmọ ogun àpapọ̀ ti lọ sójú ogun. +yom_01208_00965521122 Mọ́ṣáláṣí ni mo ti lọ gba kọ́kọ́rọ́ lọ́wọ Bọ̀dé. +yom_08421_01153477805 Báwo ni ọmọ ogójì ọdún ṣe máa fẹ́ ọmọ ọdún mẹ́rìndínlógún? +yom_00295_00169173375 Èyí ni ó mú wa fi òwe wá àwọn oun tó sọnù sínú ọ̀rọ̀ Yorùbá. +yom_07505_01680519436 Ẹni yára lòòṣà òkè ń bá dá sí tirẹ̀. +yom_01208_00877350591 Mo máa lọ sí Àbújá ní oṣù kẹ̀sàán. +yom_08784_01106209021 Àwọn bàba bàbá mi ló tẹ ìlé yìí dò. +yom_08784_01571599993 Kí ni ìdí pàtàkì tó fi yẹ kí a kọ́ ilé yìí? +yom_09334_00171721525 Ibi tí mo fẹ́ yà ṣì pọ̀ gan. +yom_00295_01762428209 Padà wá ní ọ̀la jàre. +yom_00610_00853828643 Ta ló jẹ gbogbo oúnjẹ inú abọ́ tán? +yom_03034_00583522172 Ilé títúnṣe àti ọmọ títọ́ ni iṣẹ́ ti àwọn ìyá nígbà yẹn. +yom_02484_00448533237 Dáfídì ní ọmọ bàba olówó ni òún jẹ́. +yom_00610_00294361933 Lára àwọn ohun tí a fi máa ń dáná nílé ni ìkòkò àti àdògán. +yom_08421_00131681191 Ibà ló ń ṣe é látàárọ̀. +yom_02436_01609851330 Ǹjẹ́ wọ́n ti kọ ilà fún ọmọ náà bí? +yom_01208_00285346229 Kòkòrò gé Baṣọ̀run jẹ. +yom_01208_00969842204 Bá mi gbá ilẹ̀ sí Bariga. +yom_00610_00737387534 Ìwọ̀ǹba l'omidan ń sunwọ̀n mọ. +yom_00295_01662511646 Ọkọ̀ náà ti bàjẹ́. +yom_01208_00714708877 Ra ọtí tàbí ẹmu fún wa. +yom_07508_00859742057 Ọmọ tí a bí tí ó ń súnkún tọ̀san tòru. +yom_02436_00768720921 Ilé ìgbọ̀nsẹ̀ náà rẹwà. +yom_07508_01575305546 Ẹ jẹ́ kí a na sùúrù sí gbogbo wàhálà tó ń tàn kálẹ̀ yí. [abrupt] +yom_03034_01649696210 Ìfọkànbalẹ̀ máa ń wà ní ọ̀pọ̀ ìgbà tí ènìyàn bá lówó lọ́wọ́. +yom_07505_01808844321 Ta ló fi omi tí mo pọn wẹ̀. +yom_07505_01059831021 Ọọ̀ purọ́, bẹ́ẹ̀ gan lọ̀rọ̀ rí. +yom_01208_01569138650 Ìyá Fátùrótì ni ó ń ṣe ìnáwó lọ́jọ́ yẹn. +yom_00610_00350946758 Àwọn ọmọ ogun orí ilẹ̀ ń bọ̀. +yom_03034_00959264315 Mo ti gba Jésù sáyé mi. +yom_08421_00680851017 Lára ohun èlò aṣọ híhún ni òfì àti òwú. +yom_00295_02005063581 Ó yẹ kí ó sọ fún mi ná kó tó di pé ó gbé ọ̀rọ̀ náà lọ sí ọ̀dọ̀ bàbá àgbà. +yom_02484_00393542891 A ti sanwó tí wọ́n ní ká san. +yom_00610_01699666508 Ó ń gbìyànjú láti tú mi jẹ. +yom_09334_00514058743 Àwọn adánilárayá náà mọ̀ọ́ jó púpọ̀. +yom_03034_00866573487 Kò s’ẹ́ni tó mọ Ifá tán. +yom_07505_00114060363 Mi ò kí n fi bẹ́ẹ̀ ṣeré níta. +yom_04310_00457696226 Òṣogbo ni wọ́n ti gbé àgbò náà bọ̀. +yom_08421_02028849954 Ọ̀rẹ́ mi àtàtà, kí lo fẹ́ kí n fún ẹ jẹ. +yom_02484_02071999374 Kí lò ń jẹ tó dà bí aràn yìí? +yom_08784_00339558484 Ibo ni ọkọ yí ń lọ? +yom_04310_00048858685 Ọjà ni mò ń lọ báyìíì o. +yom_07508_00613809703 Ẹran ọ̀sìn ni ewúrẹ́ àti adìyẹ. +yom_08421_01265504326 Wọ́n gbin ọ̀dọ̀dọ̀ sí àárín ọgbà ilé náà. +yom_04310_01719631246 Ẹ gbàdúrà kí ara wọn máa ní okun àti àláfíà. +yom_07505_00736105483 Mo járọ́ọ Láídé. +yom_03397_00988160910 B’ólóde ò kú, òde ò le wu gbẹ́gi. +yom_00295_01437278801 Nígbà tí a lọ síbẹ̀, a rí Awólọ́wọ̀ ní ìlú Ọ̀wọ̀. +yom_08421_01931321247 Gbogbo yàra ti sùn lọ. +yom_07049_01750297745 Ayọ̀mídé ti rí’ṣẹ́ sí ìlú ọba. +yom_08421_00103735777 Dókítà sọ pé àwọn oní gbèsè òun ò tíì sanwó. +yom_08784_01532411102 Ọlọ́run má jẹ ká r’ógun àìsàn. +yom_00610_01350548292 Èré orí ìtàgé ni iṣẹ́ tí Jídé Kòsókó ń ṣe. +yom_03034_00931282056 Orun ni Adébọ̀wálé sùn táa fi lọ táa fi dé. Olóorun ìyà. +yom_08784_01782784584 Ajíbádẹ ní òun ò lọ sí Kàdúná. +yom_09334_01501210047 Ó gbèjà àbúrò rẹ̀ gan. +yom_08784_00334093871 Bàbá àti màmá ti lọ sí òde òkú àwọn Ṣeun. +yom_03034_01243547611 Rántí jẹ ohun tí ẹ gbé kalẹ̀. +yom_08421_00732642445 Àwọn gángan ni apèèrè ọ̀rẹ́ kìtìtìtì àti ìyekàn kàtàkàtà. +yom_00295_00772891661 Ṣé o ní’fẹ mi tó bí mo ṣe ní’fẹ rẹ bí? +yom_07508_00532440359 Òògùn ilẹ̀ tútù ni wọ́n lò fún Ọlábìntán. +yom_08421_00603010627 Ibi ijà kan ní Kétu ni wọ́n ti fọ́ ojú ọmọ náà. +yom_03034_01115540083 Àwọn Yorùbá kò fi ọwọ́ yẹpẹrẹ mú ọrọ ọmọ bíbí láwùjọ. +yom_03034_02007981721 Lọ́jọ́ tí mo dé’lùú Ọba, ẹnú kọ̀ láti padé. +yom_02436_00208158235 Ẹ̀rọ ayárabíàṣá ni mo fi ṣe iṣẹ́ náà. +yom_09334_02096435129 Ẹyin tútù ló wà. +yom_01523_00947972943 Èdè ni ọ̀nà ìgbà báni-sọ̀rọ̀, èyí tí a fi ń gbé èrò-ọkàn wa jáde. +yom_07049_01666876564 Ìjọ kérúbù la ti jọ́sìn lọ́ṣẹ̀ tó kọjá. +yom_01208_00531224427 Ẹlẹ́sìn ìgbàgbọ́ ni àwọn Táyọ̀. +yom_00295_00794779003 Àbá ni ikán ń dá, ikán ò le j’òkuta. +yom_07505_01577437713 Àwọn dókítà fẹ́ ṣe ìyanṣẹ́lódì f’ọ́jọ́ mẹ́ta. +yom_02121_01463000436 Ṣé alayé-lọ̀run ni ẹ́ ni tóo fi ń fọ́nu? +yom_07505_00565274272 Ilé ti sú mi, ibo ni a lè lọ? +yom_03034_00251066903 Wọ́n ti ń pè’run ní mọ́ṣáláṣí. +yom_02484_01663235147 Ògúnlájà fẹ́ran kí àwon èèyàn máa sa òun. +yom_00295_01030152059 Ẹ̀yin ará ẹ jọ̀wọ́, ìwé ìdánimọ̀ mi àtẹ̀yìnwá ní àwọn ìṣòro kan. +yom_07508_01453126064 Alákadá ni ọ̀gá rẹ̀. +yom_09334_00254251377 Ẹ ò gbodọ̀ dá ẹnikẹ́ni l’ẹ́bi. +yom_02121_00306721033 Báǹkì wo lò ń lò ná? +yom_04310_01586639190 Ohun gbogbo tí Ọlórun dá, dáradára ni. +yom_02121_00686650169 Aṣèyíówùú l’Ọlọ́run wa. +yom_09334_00287685875 Àwọn ẹ̀dá inú ìtàn lè jẹ́ ènìyàn tàbí ẹranko bí ajá, Ìjàpá, àti iwin. +yom_09334_01517228476 Wọ́n ti mú iná lọ kí n tó jí. +yom_00295_01603249535 Àfín ni ọko Ìyábọ̀. +yom_02436_00041044282 Ajá là n pa b’ọ̀gún. +yom_00610_01950705791 Fún mi ní ìdajì ìgò epo. +yom_08421_00439984515 Ìdun wà lórí ibùsùn Gbénga. +yom_00295_01295474307 Láti mú ọjọ́ ni wàhálà. +yom_04310_01361544805 Ẹ̀kọ́ tí mo kọ́ láti ilẹ̀ ló mú kí ayé mi ṣì gbádùn báyìí. +yom_02436_02039529359 Báwo ni ò bá ṣe dùn tó kí àwọn alágbára má fi agbára da èèyàn láàmú. +yom_02484_00822244846 Gbogbo àwọn ènìyàn náà ti lọ sí àárín ìlú. +yom_01208_01054098295 Báyọ̀ fi ọwọ́ gé fáànù. +yom_08784_01248746700 Kò sí epo nínú ẹ̀rọ ìdáná. +yom_07508_01976579507 Àpẹẹrẹ rere ni ó fi lé‘lẹ̀. +yom_04310_00398156349 Irun kọjúsọ́kọ ló gbé s’órí. +yom_08784_01064839292 Àdògán náà wà ní ẹ̀yìnkùlé. +yom_04310_01385314574 Àwọn ọ̀rọ̀ mìíràn ti ń tako àwọn ìwé mímọ́. +yom_09334_01759233467 Ṣe bí o ti mọ, ẹlẹ́wàa Ṣàpọ́n. +yom_09334_01093914595 Àwọn kan sọ pé mi ò mọ oúnjẹ sè. +yom_04310_00536979079 Yọ ipin ojú ẹ kí o tó máa wo ti ẹlòmíràn. +yom_04310_00179525844 A ṣe àkíyèsí pé wàhálà yí ò ṣẹ̀ṣẹ̀ bẹ̀rẹ̀. +yom_03034_01235071468 Wọ́n ti rí ọmọ Ìya Bọ̀dé gẹ́gẹ́ bí onírọ́. +yom_02121_00540274684 Ṣé o ṣì lè bímọ ṣá? +yom_04310_00043047586 Bí ènìyàn ṣe ń lo èdè bẹ́ẹ̀ náà ni àwọn ẹrankọ ní bí wọ́n ṣe máa ń bára wọn sọ̀rọ̀. +yom_08784_00737495306 Gba owó yìí kí o fi jẹun àárọ̀. +yom_04310_00657137508 Kò s’ẹ́ni tí ò ní kú, tí kò ní lọ s’ọ́run. +yom_04310_01687613927 Iṣẹ́ ni wón ń wá kiri. +yom_00295_00110014835 Àkìtàn ọ̀hún wà níwájú. +yom_02484_00224743060 Inú ilé ni mo bá ìyàwó kékeré tí wọ́n fẹ́ fún bàbá. +yom_01208_00784200761 Báwo la ṣe ń gbin ẹ̀gẹ́. +yom_02121_00318427891 Ìyàwó àti ẹbí sì ni wọ́n jogún gbogbo rẹ̀ fún. +yom_00295_01312022545 Ìbẹ́pẹ náà pọ̀n púpọ̀. +yom_04310_00642310364 Ẹ̀wọ̀n gbére ni wọ́n ju ọ̀daràn náà sí. +yom_01208_00753509488 Arómáṣọdún bímọ ọkùnrin làǹtilanti. +yom_09334_00934868543 Oò tiẹ̀ bẹ̀rù bí mo ṣe ga tó. +yom_08421_00329169601 Ìlúbìnrin ni wọ́n sọ pé àwọn ń lọ. +yom_07505_01267585172 Orí ń fọ́ mi láti oṣù kejì. +yom_03034_01944400468 Mo ní’fẹ́ aṣọ òkè. +yom_01523_00103497208 Ó wà lára àwọn ohun tí àwọn òyìnbó aláwọ̀ funfun ọ̀hún gbà lérò. +yom_04310_00022287278 Lọ bá mi ra owó sí orí ẹ̀rọ ìbánisọ̀rọ̀ mi. +yom_09334_01811232110 Òun ni ẹni àkọ́kọ́ ti mo kọ ní ìfẹ́ sí. +yom_02484_01820271617 Wọ́n máa ń ṣe orò fún ẹnikẹ́ni tó bá fẹ́ j’̣ọba. +yom_01208_00869633746 Ẹ fún mi ní àsìkò díẹ̀ síi. +yom_07049_01107342053 Bàbá mi gbọ́ òyìnbó ̣sùgbọ́n kò fi bẹ́ẹ̀ mọ̀ọ́ sọ. +yom_03034_01309080939 Rájí ni òun fẹ́ kọ́’lé kí òun tó bí’mọ. +yom_02484_01597914663 Àágùn bọ́ lára rẹ̀. +yom_01208_01405522201 Lọ mú aṣọ ìbora fún Adúnmáradán. +yom_02436_02140173580 Aṣọ funfun méje ni ó sá sí ìta. +yom_03034_01080986113 Kíni a mọ Ọbásanjọ́ fún? +yom_07508_00912338378 Irú èyí ò lè ṣẹlẹ̀ ní’lu òkè rárá. +yom_00610_01810315913 Ẹ máa gbọ́ o, kẹ́ẹ bá wa dá síi. +yom_02484_01866419909 Mò ń lọ sí Apọ́ngbọ̀n. +yom_03034_01276465065 Ìwé márùn-ún la ma rà fún kọ́ọ̀sì náà. +yom_07049_01135577802 Rádaràda ni gbogbo eléyìí ń ṣe. +yom_06136_01755766946 Ó rẹ́rìín músẹ́. +yom_02121_00019762439 Ikú p’Abírí, Abírí ti kú. +yom_07505_01967020082 A máa ṣe tán kí oṣù tó parí. +yom_02436_01062352977 Rọra máa gbá èyàn jàre, ṣé ò mọ̀ pé ọwọ́ rẹ máa ń dùyan ni? +yom_07505_00853197788 Ẹ fún-un ní omi kó mu. +yom_02436_00430291818 Ẹran ìgbẹ́ ni ìgalà àti àgbọ̀nrín. +yom_00610_00455386315 Ọlọ́kọ́ ńlá ni bàbá àgbẹ̀ náà. +yom_00295_01486802285 Búrẹ́dì ni wón tà ní iwájú ṣọ́ọ̀ṣì yìí tẹ́lẹ̀. +yom_01523_00779544353 Mo máa bọ́’lè ní oríta-mẹ́rin yẹn o, ẹ jọ̀wọ́ ẹ rọra tẹná mọ́’kọ̀ o. +yom_00295_00868709560 Ó ti tóbi jù, mí ò lè gbée. +yom_00295_00940187494 Ẹnu ẹni la fi ń kọ mé jẹ. +yom_07508_01785489165 Ó figbe s’ẹ́nu pariwo. +yom_02121_00094790439 Kí Ọlọ́run má fi oúnjẹ wa síbi tó nira. +yom_01523_01715875934 Gẹ̀rẹ̀ tí wọ́n dé ọjà ni wọ́n rí wọn ní ẹ̀gbẹ́ ọ̀nà. +yom_06136_01335643238 Ẹnu ọwá lọ́ ti ń dádé Ọba Èkó. +yom_08784_00316579548 Àṣejù ni irun àyà. +yom_02436_01940295652 Ká má baà jìyà la ṣe bí Májìyàgbé. +yom_02484_01248213963 Ohùn ìsàlẹ̀ ni wọ́n fi ń gbé orin náà jáde. +yom_03034_00165712426 Ọ̀gá mi ló kọ ìwé náà. +yom_07049_02074688623 Ṣùgbọ́n, mo já èso kan lórí igi. +yom_00610_02123143856 Láti jẹ́ ọkùnrin, iṣẹ́ ńlá ni. +yom_08784_01388354195 Lára àwọn ìlú tí ọdún Ọ̀sún ti gbélẹ̀ ni ìlú Ìrẹ̀, ìlú Ọ̀yọ́, ìlú Ìkírè, àti Ìlú Ìjẹ̀bú. +yom_00610_01688342948 Ẹní fẹ́ pẹ́ láyé, ṣé ojú rẹ̀ ò ní rí ibi? +yom_08784_01603724673 Ta lo yí ẹ̀rọ amúlẹ̀tutu sókè? +yom_07505_01266135425 Adìẹ ti yé ẹyin sílẹ̀. +yom_03034_00206346331 Ilé ilẹ̀ náà ti kún. +yom_01208_01086402910 Ọmọ náà dọ̀tí bí ẹlẹ́dẹ̀ igàn. +yom_00295_01125120471 Kò sí bí igimú alágbàro ṣe gùn tó ẹni tó gbéṣẹ́ fún lọ́gá. +yom_06136_01536109513 Ìjá bẹ́ sílẹ̀. +yom_06136_00573447371 Ìjọba yóò fi kún owó àwọn òṣìṣẹ́. +yom_02121_01563504575 Ilé ẹjọ́ ti tú ìgbéyàwó náà ká. +yom_03034_00225406939 Ṣé nítorí Ànọ́bi ni Ọlọ̀run ṣe dáa yín? +yom_06136_00478536386 [snap] Ọbá ti gbẹ́sẹ̀ lé ìyàwó Moróunfólú. +yom_08784_00272840736 Irun dúdú ni kìkì gbogbo ara olóńgbò náà. +yom_00610_00278336235 Ìjọba ìpínlẹ̀ ti tún ọ̀nà náà ṣe, ọ̀kan fún àlọ, ìkejì fún àbọ̀. +yom_08421_01358966129 Ọmọ bíbí ìlú èkó ni wọ́n pè ẹ́. +yom_02484_01407899030 Gbogbo ọmọ ìyá ìbejì ló ti bí’mọ. +yom_02121_00285279058 Mo rántí ìgbà èwe mi àti àwọn oun tí mo ṣe. +yom_01208_01779153644 Akin ti lọ ra súyà wá. +yom_07508_00399342887 Ọmọ pupa ni ó bí lẹ́yìn àkọ́bí ẹ̀. +yom_02121_00511825314 Ẹni rere ni alábàágbé mi ti mo sọ fún ẹ nípa ẹ̀. +yom_04310_01000861379 Ẹyẹlé funfun kìí bí dúdú. +yom_07049_00434646843 Pìrìgìdì ìyà ni wàá jẹ kúrò nídiìi ayò yìí lónìí. +yom_00610_01025339121 Àwọn tí wọ́n mọ ìtàn náà ò pọ̀ rárá. +yom_02484_00848771759 Àìsàn ti kọ lù wọ́n. +yom_01208_01239505436 Ó ti rẹ̀ wá sínú ọkọ̀ tí a wà, àti òwúrọ̀ ni ọkọ̀ náà ti ń wà wá kiri. +yom_02121_00987072196 Àgbò ni Mojí ń mú kiri. +yom_06136_02123537606 Ọmọ bọ̀dá Kofí ṣubú. +yom_07505_00124219932 Iyẹ̀pẹ̀ ló rọ sínú ike náà. +yom_07505_00401987764 Lára àwọn ìwé tí mo fẹ́ràn láti máa kà ní ìgba tí mo wà ní ilé ìwé girama ni. +yom_00295_00884439196 Ayọ̀dèjì ló fún wọn l’ówó. +yom_01523_00116259153 Ijó máa ń jẹyọ nínú rẹ̀. +yom_03034_01111242845 Àga irú èyí tí àwọn òyìnbó máa ń lò ni ó wà nílé Ọ̀túnba. +yom_02121_01804362596 Ibi o bá lọ ni mo máa wà. +yom_04310_01975608134 Táyà ọkọ̀ ayọ́kẹ́lẹ́ náà bẹ́. +yom_07505_00173236478 Kí lo fẹ́ lọ ṣe nínú ilé tí ó ti wó? +yom_07049_01155105413 Gbogbo èyí ni mo ti ṣe fún ẹ, ǹjẹ́ ìwọ́ lè ṣe èyí fún mi? +yom_01523_00553132018 A ń sọ̀rọ̀ sí Ọrẹolúwa bí ẹni tí ò níran. +yom_04310_01404281261 A sọ fún-un, ṣùgbọ́n kò gbó. +yom_07508_02047227550 Ọ́rẹ́ mi má ṣe kánjú ju kádàrá. +yom_00295_00111480369 Àmídà ló kúrú jù ní kílàsì. +yom_00295_01307538904 Ibo ni wọ́n gbé àpótí náà sí. +yom_07049_01171430479 Ọdẹ náà pàdé iwin gẹ́gẹ́ bí ìtán ṣe sọ. +yom_00295_01721288413 Ọjà Ọba jẹ́ èyí tí à ń ná ní ọrọọrún. +yom_04310_01478906672 Ilé ìfowópamọ́ yapa nì àgbègbè Adéọlá Ọdẹ́kù. +yom_07049_00667014222 Ọmọ jayéjayé ni àwọn ọ̀rẹ́ mi. +yom_08784_00557152487 Adetìmí fẹ́ràn ìlu sákárà. +yom_08784_00670686500 Ìjọba ìbílẹ̀ ti ń tún àwọn ọ̀nà àdúgbò wa ṣe. +yom_06136_01340031572 Ìpàdé tí mo lọ lánàá, wọ́n pín owó n’íbẹ̀. +yom_04310_01985103813 Ọba gan ò rí ohun kọ̀kan ṣe sọ́rọ̀ ilẹ̀ yíì. +yom_06136_00636935093 Olúwa ọlọ́run, ọba atẹ́rere kárí ayé. +yom_00610_01147702795 O ṣé tí o rán mi létí. +yom_01208_01398361088 Àwámárììdí ni Olórun. +yom_06136_01539725135 Ó máa ń ni elégbè rẹ̀ lọ́dọ̀. +yom_00610_00217179663 Ẹyẹ abàmì ni ẹyẹ igún. +yom_03034_01760537447 Mi ò ní ìdáhùn sí ìbéérè náà. +yom_00295_00377411334 Mo y’ọjú wo àwọn àlejò náà l’átòkè. +yom_01523_01933994146 Ọ̀kẹ́rẹ́ náà sá gorí igi. +yom_08421_01373096942 Gẹ́gẹ́ bí ifá yìí ṣe ṣàlàyé, ire lojú owó ń rí. +yom_07508_00431635100 Kí a ní ìyàwó tó rẹwà kò ṣe pàtàkí tó èyí tó n’íwà. +yom_02484_01654690373 Ire owó ni mo yàn kó wọ’lé mi wá. +yom_07508_01264881795 Àwọn òṣìṣé ìjọba ti da’ṣé lẹ̀. +yom_08784_00890988377 Àgbà Alfa ni à ń pè ni Rájí. +yom_09334_01973795918 Wọ́n ti fi pamọ́ sínú ilé ìfowópamọ́. +yom_00295_00399949848 Ṣé iṣẹ́ lo fẹ́ kọ́ àbí ìwé lo fẹ́ kà? +yom_09334_02107500029 Kí ló lè fa kí ara máa ro èèyàn? +yom_02121_00777936106 Ẹlẹ́pa ìjẹ̀bú — èyí tí o fẹ́ràn gaan — wà ní ìtòsí. +yom_09334_02086205435 Ọ̀bọ́ bẹ́ lu ọmọ náà láti òkè. +yom_02121_00327354025 Ọlọ́run, ṣàánú fún wa lórí ọ̀rọ̀ tó wà nílẹ̀ yìí. +yom_08421_01398537785 Amúdá ò fẹ́ lọ kírun. +yom_00610_01714835290 Oríṣi obì tí a ní kò fi bẹ́ẹ̀ yé ọ̀pọ̀ ènìyàn láwùjọ wa lónìí. +yom_01523_00387763688 Ó ti wá hàn gbangba pé gbogbo ohun tí à ń ṣe ní àwùjọ ẹ̀dá pátápátá, eré-oníṣẹ́ ni gbogbo wọn. +yom_01208_02075575553 Bímpé ni mínísítà fún ètò ẹ̀kọ́ fún orílẹ̀-èdè wa. +yom_00295_00263338725 Orí ẹni ní ń mọ àtilà ẹni. +yom_02484_01876048184 Gèlè náà gbé ẹwà rẹ̀ jáde. +yom_07508_00147882996 Bàbá mi sọ ìtàn ìlú wa fún mi, pé láti Ìkọ̀tún la ti wá tẹ̀dó sí Ìrẹ́pọ̀ọ́dùn. +yom_06136_01209879143 Yìnyín náà pọ̀ jọjọ, ọ̀tútù ń mú. +yom_04310_00349960103 Ládúru gbogbo ìdojúkọ tí ó wà ní ọ̀nà wọn, wọ́n f’orí tìí dé òpin. +yom_08784_00313470161 [snap] Ó ti sá lọ, ọ̀rọ̀ náà kọjá ohun tí agbára rẹ ká. +yom_01523_01171270749 [breath] Ìkejà ò jì́nà sí Ọ̀pẹ̀bí. +yom_01523_00492956627 [breath] Ṣé o fẹ́ràn aṣọ tí ẹ̀gbọ́n rẹ fi ránṣẹ́ láti òkè òkun? [external] +yom_02436_01098056185 [snap] [breath] Ọmọ méjì ni Simi sọ pé òun fé bí. +yom_09334_01756999669 [snap] [breath] Mo máa gbìyànjú láti ríi dájú pé o jìyà ẹ̀sẹ̀ rẹ. +yom_06136_00915399749 [snap] [external] Ààrẹ orílè-èdè Nàìjíríà ni Mohammadu Buhari. +yom_01523_00373940695 [breath] Atá ti sá paá lórí. +yom_00610_01785578568 [snap] Bí èkùrọ́ ṣe jẹ́ alábákú ẹ̀wà bẹ́ẹ̀ ni ìfẹ mi sí o. +yom_08784_00080262926 Ọláwùnmí jẹ́ ẹni tí ó ní ìrẹ̀l. [abrupt] +yom_08784_00940513995 [breath] Wọ́n pa Olúwa wa, ó sì jíǹde. [abrupt] +yom_08784_01759450416 [breath] Wọ́n kì ń fọnu fún ọmo ̣ìkókó. +yom_08784_01503898276 [breath] Ojú rẹ̀ funfun, ó dà bí ẹni tí ara ẹ̀ kò yá. +yom_07508_01024177992 [breath] Ẹ wo ìdí ọ̀rọ̀ náà kí ẹ tó dájọ́. +yom_03397_01398413670 [snap] [breath] Ẹ̀gún gún ọmọ náà lẹ́sẹ̀. +yom_02436_01256159647 [breath] Balùwẹ̀ ni mo bọ́ sí tí mo ti ń jó. +yom_06136_01508728698 [snap] Ẹsẹ̀ kan ayé ẹsẹ̀ kan ọ̀run ni ó wà. +yom_01523_00617327305 [external] Ọkàn mí wúwo púpọ̀. [external] +yom_01523_00908761472 [breath] Kí ló lè mú kí orí máa fọ́ ni báyìí? +yom_02436_00892169512 [breath] [snap] Ọba òyìnbó kìí dé Adé rẹ̀ ní gbogbo ìgbà rárá. +yom_02484_01632098502 [breath] Màmá àgbà sọ fún Lájídé pé kó lọ gba àródan wá. +yom_06136_01525985206 [snap] Onígèlè yayaya ni màmá yẹn. +yom_08784_00278005388 [breath] Mo bẹ̀rù olóńgbò púpọ̀. +yom_06136_01528901990 [snap] Àlùfáà yín tuntun ti ṣiṣẹ̀ ní ìjọ wa rí. +yom_00610_00704781149 [breath] Ṣé ẹ ní dòdò àti ẹran? +yom_00610_01280935006 [snap] Èdè Gẹ̀ẹ́si ti di gbajúmọ̀ láàárín àwọn èdè àgbáyé. +yom_07049_01528856074 [snap] Àwọn bíríkìlà ń tún ilé náà ṣe. +yom_07049_01273855916 [breath] Ẹyẹ méjì ló wà lórí igi ọ̀pẹ. [breath] +yom_03397_00323372903 [snap] Ní ìrìn-àjò tí mo lọ, mo rí odò kan tí à ń ́pè ní odò aláró. [snap] +yom_02436_01183044336 [snap] [breath] Kò sí bí òǹkọ̀wé Yorùbá ṣe fẹ́ tẹ̀lẹ́ òfin àkọ́kọ́ gẹ́gẹ́ bí àpẹẹrẹ.[abrupt] +yom_08421_00546023265 [breath] Ìfẹ́ náà múmi lọ́kàn, mi ò rí oorun sùn. +yom_03397_00120623157 [breath] Nígbà tí ó di ọjọ́ keje, ilẹ̀ ṣú. +yom_02484_02069861304 [snap] [breath] Súnkẹrẹ-fàkẹrẹ ọkọ̀ pọ̀ ní ọ̀nà Ìkòròdú. +yom_01523_01585700502 [snap] Kò sí Iná lórí ẹ̀rọ ìbánisọ̀rọ̀ mi. [external] +yom_08421_00840311012 [snap] Ọ̀pọ̀ ni ohun tí ó wà nípa ẹyẹ lékeléke tí a ò mọ̀. +yom_00610_00268612766 [breath] Kí ló dé ti ò kìí kan ilẹ̀kùn? +yom_01208_01655016650 [breath] Bí ọdẹ bá rò iṣẹ́ ro ìyà inú igbó, tí ó ló pa ẹran kò ní f’ẹ́ni kan jẹ. +yom_03397_01729574051 [breath] Mo fẹ́ kúrò ní gbogbo sàkánì tí wọ́n ti mọ̀ mí rí. +yom_03397_01117611970 [breath] Mi ò fẹ́ kí ọ̀rọ̀ mí máa dàmú ẹ. +yom_07049_01002258700 [snap] Bí òní ti rí ọ̀la ò lè rí bẹ́ẹ̀. +yom_06136_00115654801 [external] O ṣé tóo wá sí ’lé mi lónìí. +yom_06136_00756587928 [snap] Ọlọ́kadà ló gbá ọmọ wọn. +yom_03397_00985497268 [breath] Àwọn èyàn ló sọ fún nípa ìyàwó rẹ̀ tó ń s’ágbèrè. +yom_07049_00308862133 [snap] Adé ti lọ sí ọ̀dọ̀ bàbá rè láti lọ fi àwọn nǹkan kan tó o létí. +yom_08784_00674343988 [snap] Tí kò bá kí ń ṣe ọ̀làjú tí ó ti gbinlẹ̀ l’Ékò ni, àwọn ìlú oko gán wà pa. [abrupt] +yom_06136_02031016539 [snap] Kí ni ìṣẹ̀lẹ̀ tó ń da ọkàn rẹ rú? +yom_02436_00760032605 [snap] A máa ń rí ìjẹyọ ìlù lílù, ijó jíjó, ẹ̀fẹ̀ ṣís̀e, oríkì kíkì, èébú bíbú, ìkìlò ṣíṣe. +yom_01523_01990719203 Ọ̀tá yín ò ní sinmi lórúkọ Jésù. [external] +yom_00610_01572593808 [snap] Ọkọ̀ ni bàba tóo lè bá sọ̀rọ̀ ní Surulere. +yom_01523_01708456640 A rí erinmí ní Ìjẹ̀bú nínu igbó. [external] +yom_08421_00387029447 [snap] Ọ̀sán kan ṣoṣo ni ìṣẹ̀lẹ̀ yí ṣẹlẹ̀. +yom_01523_01576014547 [breath] Orí odó lo jókòó lé. +yom_07049_01609742458 [snap] Ó yí omi dà sínú ike mìíràn. +yom_01523_01100692952 [snap] Òwe lẹ ó máa pa, ẹ ò ní pà’nìyàn. [external] +yom_00610_01011419110 [snap] Ẹ̀rọ amúlétutù náà ti bàjẹ́. +yom_07049_02028314081 [snap] Ìrèké jẹ́ èso tó dùn bíi ṣúgà. +yom_01208_00435070465 [snap] Mi ò nífẹ sí gbogbo ìkan wọ̀nyí. +yom_02121_00510983065 [snap] Ọbabìrin Ilẹ̀ Gẹ̀ẹ́sì ti pẹ́ lórí oyè gan ò. +yom_07505_00014589644 [snap] [breath] Ìsọkúsọ Àmọ́dù ti pọ̀ jù. +yom_02436_00308431132 [snap] Nígbà tí ọmọ yìí dàgbà, ó tọ́jú ilé àti ọgbà. +yom_01523_00496456020 [breath] Bàrúwá ń sa gbogbo ipá rẹ̀ láti ríi pé ohun gbogbo lọ dédé. +yom_03034_00658154501 [snap] Lọ se ewédú ka lè fi jẹ àmàlà ní alẹ́. +yom_02484_01070683287 [snap] Nínú ọkọ̀ táa wọ̀ lọ s’Ọ́yọ̀ ọ́, èmi Adéyọọ́lá laá jọ jókòó. +yom_07505_00199182522 [breath] Àpótí tí mo sọnù kéré ju èyí tí mo gbé lọ s'ọ́jà lọ. +yom_03397_01984530007 [breath] Mo ṣàkíyèsí wípé ọmọ náà ní ìgbéraga. +yom_02436_02017462417 [snap] Agbọ́n ta Ṣubúọlá. +yom_07508_01690377335 [breath] Lára ibi tí a dé ni ọ̀dọ̀ Aláàfin ìlú Ọ̀yọ́. +yom_02484_01233106851 [breath] Iṣẹ́ gèlè wíwé ni à ń ṣe. +yom_07505_01763150504 [breath] Gbé kọ́ọ́pù tí ó wà ní abẹ́ ibùsùn ẹ̀gbọ́n rẹ wá. +yom_03397_00544010536 [breath] Ẹ báwa s’àmín ẹ̀, oríi wa ò ní burú. +yom_06136_01008826631 [snap] Mo ti gbé omi sí ẹ̀yìn ilẹ̀kùn. +yom_08784_01355386777 [snap] Lára orúkọ tó gbajúmọ̀ ni Tinúbu ń jẹ́. [abrupt] +yom_01523_01316314279 [snap] [breath] Iṣu náà ti bàjẹ́. +yom_02436_00818203334 [breath] Kí wa ló tún kù tí ìyá Bọ̀dé ń wá káàkiri báyìí? +yom_03397_01157193156 [breath] Eegún ti wọnù ẹran, ẹrán sì ti wọnú eegun. +yom_07508_00834585297 [snap] A nílò ọgbà ńlá láti gbin àwọn èso náà. +yom_02436_01550551307 [breath] [snap] Ẹlẹ́nu bíi ti pẹ́pẹ́yẹ ni Tàmẹ̀dùn. +yom_02436_01577997914 [snap] Jùwọ́n ló gbà mí sílè nígbà tí wàhálà pọ̀ fún mi. +yom_08784_00122616393 [breath] Tí o bá rí ọkùnrin tí ó ń bá ẹ gbọ́ bùkátà díẹ̀, o jẹ́ má jẹ kó lọ mọ́ ẹ l’ọ́wọ́. +yom_02484_00536474671 [snap] Ohun tó ṣemí ní kàyéfi ni bí àwọn gẹ̀lẹ̀dẹ́ ṣe máa ń ní ìdí ńlá. +yom_02436_01168501945 [snap] Wọ́n rí ọmọ tuntun kan lórí ààtàn. +yom_03397_00605134215 [breath] Wọ́n na Fadérẹra ní ilé ìwé ọjọ ìsinmi. +yom_02121_00123236106 Pẹ̀lúmi pè mí láti dúpẹ́ oore. [external] +yom_01523_01377168875 [external] Àbẹ̀kẹ́ mu àgbo títí tí ó fi fẹ́ bì. [external] +yom_03397_00254890397 [snap] Iṣẹ́ ìjọba ni ó wù mí láti ìgbà tí mo ti wà ní kékeré. +yom_07505_00531019790 [external] Ẹnu-Ọwá ni bàbá kọ́’lé tuntun rẹ̀ sí. +yom_07505_00079653289 [breath] Ẹni tí ò gba kádàrá yóò gba kodoro. +yom_09334_01127557080 [snap] Ìmọ̀ ti fi yé wa pé Òrìṣa Ò [hesitation] gún ni àwọn alágbẹ̀dẹ. +yom_02436_01183866596 [snap] Ẹ̀sin mùsùlùmí ò fàyè sílẹ̀ fún ajá jíjẹ. +yom_08784_02027960426 [breath] Mo ò lọ sí ibìkankan pẹ̀lú ẹ. +yom_07049_01002068821 [snap] Gbogbo eyín Ìya Bọ̀dé ló ti yọ tán. +yom_07505_00972815832 [breath] Gbogbo wọn ni wọ́n ń forí balẹ̀ f'Ólúwa lati àárọ̀ di alẹ́. +yom_09334_00928642807 [breath] Mẹ́ta ni àwọn òṣèrè Ìjẹ̀ṣa tó ń gbé ilú yìí. +yom_06136_01033074681 [snap] Ẹ bu ẹmu díẹ̀ fún òun náà. +yom_03397_01921307701 [breath] Títà ni akekèé máa ń tani. +yom_06136_00231561177 [snap] Ọmọ ọ̀lẹ ò ṣeé yá ní tọ́rọ́. +yom_02484_00566263510 [breath] Ìyàwó ba oko rẹ̀ nínú jẹ́. +yom_01523_01316050929 [external] Ó ja ọbẹ̀ sí aṣọ. [external] +yom_02436_02078723804 [breath] Mò ń jáde lọ sí ibi iṣẹ́ láti lọ gba owó oṣù. +yom_02484_01907761520 [snap] Mo nífẹ sí àwọn orin Lágbájá. +yom_02484_00315615013 [snap] Ẹ̀fọ́rí ló kọ lùú. +yom_08784_01141316408 [snap] Àríkẹ́adé tún ti fẹ́rakù. +yom_02436_02014915639 [snap] [breath] Olúmòye sọ pe ìgbà tí òun bí ọkùnrin ni inú òun dùn jù. +yom_08784_00096882913 Pọ́n ara rẹ le kí o má baà kàb. [abrupt] +yom_07049_00162359991 [snap] Wọ́n ti gbé iṣẹ́ mìíràn fún mi. +yom_06136_02047234338 [snap] Géètì ilé-ìwé ni mo ti pàdé Sìlàmíyà ní àná. +yom_02484_00480100440 [snap] Yorùbá bọ̀ wọ́n ní kí ilà ó tó di oge, ó ni ohun ojú rí. +yom_02484_00772195576 [snap] Ti ilẹ̀kùn kí o bá mi ní ojú ọ̀nà. +yom_02484_01225861895 [snap] Àwọn ọ̀rẹ́ Adéṣẹwà ó ń jowú rẹ̀ nítorí ẹni tó ń fẹ́ nísìyí ní owó púpọ̀. +yom_01523_00640950974 [snap] Nígbà tí a wà ní kékeré ìya Lábísí máa ń na ẹni tó bá súfe nínú ilé. [external] +yom_01523_00435681775 [breath] Ẹ̀mí á ṣe púpọ̀ ọdún láyé. +yom_01523_01904723431 [breath] Láti ibo ni oko bàbá wọn ti bẹ̀rẹ̀? [external] +yom_00610_01680364787 [breath] Bàbá àgbà, ṣé ẹ ti jí? +yom_02121_01297858066 [snap] Orógbó náà gbó keke. +yom_01523_00313184870 [breath] Akọ́lédowó ti kọ́lẹ́ alájà méje. [external] +yom_02436_01143945455 [snap] Àtàrí àjànàkú ni ọ̀rọ̀ náà jẹ́, kìí ṣẹrù ọmọdé. +yom_06136_00459195959 [snap] A fẹ́ lọ wo eré ìtàgé ní Oríta Mẹ́rin. +yom_02436_01444941079 [breath] Ọmọ rere ni ẹ́, àbí bẹ́ẹ̀ kọ́? +yom_01523_00944464995 Kọ́ọ̀sì mẹ́wa ni wọ́n ní ká se. [external] +yom_00610_01343629839 [breath] Ṣé dáadáa lo wá lásìkò yìí. +yom_06136_01575860011 [snap] Àwọn ohun amáyédẹrùn ti pọ̀ lóde. +yom_09334_01684902125 [snap] Ta ló ń dìtẹ̀ mọ́ Ọba wa Aláàfin. +yom_02436_01777757244 [snap] Ṣé ẹranko ni ikún ni? +yom_07049_00385895616 [snap] Mo gba ìpè oríireè kan láti ìlú òyìnbó. +yom_06136_00531615210 [snap] Ẹ kú ọjọ́ ìbí ooo, ọ̀jọ̀gbọ́n Ṣóyínká. +yom_07049_00704927809 [breath] Abọ́ wà nínú korobá náà. +yom_01523_01027459857 [breath] Báwo ni mo ṣe fẹ́ parí iṣẹ́ yìí na? +yom_03034_00343189987 [snap] Wọ́n ti lé àwọn ẹbí Ayọ̀bámi kúrò ní agboolé. +yom_07049_00636047280 [snap] Ẹ́sítérì máa ń hùwà òmùgọ̀. +yom_08421_00452539703 [breath] Ṣé bí à ṣe dúdú náà ni ọpọlọ wa ṣe dúdú ni? +yom_02484_00432712261 [breath] Ó dà bí ẹni pé ó ti rẹ olùkọ́ọ wa. +yom_02484_01731488785 [snap] Ọmọ yìí ò ní àpọ́nlé kankan rárá. +yom_03397_00766455445 [snap] Dáadáa ló yẹ ká máa ṣe. +yom_01523_01689055566 [snap] Ààrẹ orílẹ̀ èdè ń bọ̀ ní Civic Ceter ní ọ̀la òde yìí. +yom_02121_01114822567 [breath] Aṣọ títà ni iṣẹ́ ìya Bùkọ́lá. +yom_03397_01091579391 [breath] Àwọn ìjọba ni wọ́n gbẹ́ ibi ìpọnmi náà. +yom_08421_01678375678 [snap] Yorùbá bọ̀ wọ́n ní, “Kò sí bí a ó ṣe se ebòlò tí kò ní run ìgbẹ́.” +yom_08421_00448603685 [snap] Lára àwọn olùkọ́ tí mo ò le gbàbé ni ọmọ̀wé Shèyí Kenny. +yom_06136_01711286767 [external] Orúkọ fífúnni kìí ṣe ohun yẹpẹrẹ, bẹ́ẹ̀ kì í ṣe bàbàrà tó bẹ́ẹ̀. +yom_02121_01963752838 [snap] Adéyinká sọ pé òun ò lè jẹ́ kí ẹnikẹ́ni máa ku akókò òun dànù bí èlùbọ́. +yom_08421_00242094176 [snap] Ṣé o ti gbọ́ nípa ọdún òkè ìtàsẹ́ rí? +yom_03397_02078062575 [snap] Ilé ayé gba jẹ́jẹ́ ni bàbá máa ń sọ. +yom_07049_00107647614 [snap] Ìlù Àyándélé ń ró kókó. +yom_09334_01080802520 [breath] Dígí tí a gbé sí balùwẹ̀ ti fọ́ ní àná. +yom_06136_00819762698 [snap] Ẹsẹ̀ ẹran náà ti kán. +yom_03397_00529031080 [snap] Ra àgbálùmọ́ fún mi tí o bá ń bọ̀. +yom_07505_01273201217 [snap] Omi adágún kan wà ní ẹ̀yìn ilé-ìwé mi. +yom_01523_01685339721 [snap] Lọ fi otí pa ìrònú rẹ́. [external] +yom_02436_01592863715 [snap] Adájọ́ dáa lébi ẹ̀sùn táa fi kàn-án. +yom_08784_00120686302 [breath] Orísìírísìí ìgbésẹ̀ ni ó máa ń jẹyọ nínú Ọdún Ifá. +yom_07049_01111732904 [snap] Wọ́n ń fá irun ara òkú náà. +yom_09334_01308506040 Tóo bá dé oko àwọn Àkànmú, wàá fẹ́ràn iṣẹ́ àgbẹ̀. [external] +yom_02436_00573336572 [breath] Adéẹ̀kọ́ ní òun nífẹ omi ju ọtí lọ. +yom_02484_00213408661 [breath] Ṣọ̀pọ̀ná ò ní mọ ‘lé wa o. Àmin. +yom_08784_00685000259 [breath] Ariwo yín ti pọ̀ jù. +yom_03397_01404578582 Àwọn ọmọ aráyé ò kí ní sùúrù. [breath] +yom_03397_01099061384 [breath] Ṣé àwọn ọmọ yín mọ òòṣà tí wọ́n ń pè ní ìgunnu? +yom_08784_01448534749 Ìrẹsì àti ẹ̀wà ni oúnjẹ tí mo fẹ́ràn jù. [abrupt] +yom_07049_01449857967 [snap] Aṣọ ìbora wọn dà ná; níbo ni wọ́n fi sí? +yom_03397_00439759270 [breath] Ẹ jẹ́ kí a dá ara wa ní ara yá. +yom_03397_01441263050 [breath] Èèwọ̀ Orìṣà, ilẹ̀ ò ní ṣú mọ́ olóore. [breath] +yom_01523_01541734074 Àmì ayò mẹ́ta sí méjì ni Sàlámì fi na Sàláwà. [snap] +yom_07049_00234203788 [snap] [breath] Ká máa gbàdúrà tí a bá jí dára púpọ̀. +yom_07049_01445571874 [snap] Ìdí ọkọ̀ ni mo gbé ẹrù lọ ní àná nígbà tí ọkọ̀ gbá ajá àwọn màmá. +yom_02484_00034624627 [breath] A fẹ́ ṣe ìṣàfihàn àwọn ohun abẹ̀mí nínú litírésọ̀ Yorùbá. +yom_01208_00268887688 [snap] Ilé alájà méjì mẹ́ta, ọkọ̀ mẹ́rin, àti oko kòkó kan ni gbogbo dúkìá tí ó fi sílẹ́ lọ. +yom_03034_00161043567 [snap] Àwọn ará ìlú ní ìgbàgbọ́ pé ọ̀nà èrú ni ọba tuntun yí fi d’órí àléfà. +yom_03397_00583031395 [breath] Tájù àti Tọ́lá ń lọ sí Àkúrẹ́ ní ọ̀la. +yom_03397_01779080380 [breath] Olùṣọ́gbà ni iṣẹ́ tí mo bá ẹ rí. +yom_02484_00239445724 [snap] Ọtí ẹlérìn dòdò ni wọ́n fi ṣe mí lálejò ní’bi òde ìyàwó tí mo lọ. +yom_02436_01655777112 [snap] Ṣé ki n wá gba kiníyẹn ni? +yom_02484_01960744204 [snap] Ẹ jẹ́ ká ṣeré nínú òjò. +yom_07049_02039879295 [snap] Wọ́n ti gbée lọ sí Ibojì. +yom_02121_00899698592 [snap] Èmi nìkan ni mo sun yàrá mọ́’jú. +yom_03397_00660192729 [snap] Ọmọ yìí fẹ́ fi ijó ṣe mí léṣe. +yom_02436_00378049870 [snap] Àyọnusọ Fàlí ti pọ̀ jù. +yom_07505_00360243999 [breath] Ìsèkúsè ni àwọn olópàá máa ń sè fún wa. +yom_01208_00587267142 [snap] Òun ló tọ́ sí láti máa sọ̀rọ̀. +yom_02436_00153654326 [snap] Kọ́kọ́rọ́ mọ́tò bàba Fáuśa ni àwọn ọmọ yíì fi ń ṣeré. +yom_03397_00363326547 [breath] Gaàrí yẹn ti wú tó bó ṣe yẹ. [breath] +yom_06136_00804435337 [snap] Yóò dára fún ẹ, mo dúpé púpọ̀ lọ́wọ́ rẹ. +yom_01523_00363686407 [external] Mo fẹ́ran ilé ìtura náà. [external] +yom_07505_00565955965 [snap] Àti ìjẹrin la ti ri’ra gbẹ̀yin. +yom_07049_00727404490 [snap] Ìyẹn ni pé àwọn ìlú kékèké nínú igbó yìí náà máa ń lo iná ìjọba. +yom_07505_00272648229 [snap] Ilé rere ni wọ́n ti wá. +yom_02484_02129685643 [snap] Yèyé mi a máa bínú ní ọ̀pọ̀ ìgbà lórí ohun tí kò tó nǹkan. +yom_02121_00519630873 [snap] Bọ̀dá mi yóò mú mi lọ sí ìlú òyìnbó nígbà tó bá ń padà lọ. +yom_01523_01562317434 [snap] Ilẹ̀ ti mọ́ bá àwọn ọ̀daràn yẹn. [external] +yom_06136_00656527706 [snap] Ó sì tún jẹ ẹ̀bùn pàtàkì láti ọ̀dọ̀ Olódùmarè. +yom_06136_00049774741 [snap] Bọ́lá máa ń ṣe ìrànrán tí kò bá tètè sùn. +yom_01523_01955334894 [snap] Àrẹ̀mú ló ṣíṣẹ́ náà, ó ṣì ṣee dáadáa. [external] +yom_02484_01673041038 [snap] Àìgbọ́fá là ń wò’kè, ifá kan ò sí ní párá. +yom_01523_00136367294 Kí ló dé tí o wà nínú àhámọ́ [external] +yom_03397_01566492596 [snap] Bí oò ti ẹ̀ jẹ́ kó hàn ní ojú ẹ, mo mọ̀ pé ohun tí wọ́n ṣe dùn ẹ́ gidi. +yom_03397_00916968644 [snap] Bí babaláwo náà ṣẹ̀ gba ibẹ̀ kọjá ni. +yom_00610_01369429256 [snap] Yọ ẹ̀rọ ìbánisọ̀rọ̀ kúrò nínú iná. +yom_02121_01438483831 [snap] Àwọn ẹranko wo ló máa ń jẹ ọ̀gẹ̀dẹ̀? +yom_07049_01742657151 Ọmọ mí ti pé oṣù mẹ́jo, [snap] ó sì ní eyín kan. +yom_00610_02007363442 [breath] Ọládèjọ kú ikú akin. +yom_08784_00982258662 [snap] Wọ́n ti da ìdọ̀tí sọ́nà lẹ́ẹ̀kansíi. +yom_08784_00039111695 [snap] Bá mi jìṣẹ́ fún bàbá wa. +yom_07508_00240132972 [snap] Gbogbo ìgbìyànjú mi ò gbọdọ̀ já s’ásán. +yom_07508_01768981701 Ó ṣeéṣe kí ọmọ ẹ̀gbọ́n wá pá lórí bíi bàbá rẹ̀. [abrupt] +yom_07049_01667951075 [snap] Èyí já sí pé, gbogbo ìmọ̀ pátá ló ń bẹ nínú ifá. +yom_02436_01287097361 [snap] Ẹran ọ̀sìn ni àgùntàn, ewúrẹ́, òbúkọ, ẹlẹ́dẹ̀ àti màálù. +yom_08784_00243107069 [breath] Ṣé o lè rìn kíá ju báyi lọ? +yom_03397_01771472448 [breath] Aya rere l’ódèdè ọkọ ni Ṣọlá. +yom_07508_01972685591 [snap] Ẹ ṣàdúà kí ikú dáwọ́ ibi rẹ̀ dúró. +yom_09334_00237012890 [breath] Lọ mú àtòrì wá l’ẹ́yìn ilẹ̀kùn. +yom_02121_00859460733 [snap] Èébì ń gbé ìyá olóyún yẹn. +yom_02436_01821957426 [breath] Mo ní’fẹ láti bá wọn lọ fún ìnáwó náà. +yom_09334_01695578672 [breath] Èjì bí èjì l’àgbà ń tayò. +yom_01523_00433843222 [snap] Eré orí ìtàgé náà yo lárinrin púpọ̀. +yom_03397_01396506552 [snap] Ọmọ iṣẹ́ méjì ló wà ní ibi iṣẹ́ yin. +yom_03397_00429905102 [breath] Tolúwa ni ilẹ̀ àti ẹ̀kún rẹ̀. +yom_07508_00977257609 [external] Ìlẹ̀kẹ̀ mẹ́ta ló wà lọ́run Ọba. +yom_03397_00643000118 [breath] Àwọn ẹlòmíì ò ní ìtẹ́lọ́rùn rárá. +yom_01523_01457996845 [snap] Oríṣi bàtà méje ni màmá mi ńi. [external] +yom_02484_01109636234 [snap] Kókó àti àkàrà la fẹ́ jẹ lónìí. +yom_02121_01506029086 [external] Adébámbọ̀ mú àfẹ́sọ́nà rẹ̀ wá s’ọ́dọ̀ ìyá àgbà. +yom_03397_00881664179 [breath] Farabalẹ̀ kí o gbóhùn wọn. +yom_01523_01150558994 [breath] Àgbọn wà ní orí igi náà. +yom_07049_00730255367 [snap] Ọ̀pọ̀ akẹ́kọ̀ọ́ ní ilé ìwé náà ló mọ̀wé. +yom_02436_01080639434 [snap] Ògúndípẹ̀ ni ọ̀gá wa. +yom_08421_00211080379 [snap] Odidi oṣù mẹ́ta ni àwọn ará ilé wa yóò fi gba ìsimi lọ sí òkè òkun. +yom_02436_00261727794 [breath] Báwo ni wàá ṣe máa da ilẹ̀ sí ojú àgbàrá báyìí? +yom_07505_01301092163 [external] Kọ́lá ti fi ẹsẹ̀ gún ìṣó. +yom_00610_01623386266 [snap] Wọ́n rí àjẹ́ kan l’ọ́san gangan n’íbàdàn. +yom_03397_00745720052 [snap] Ogun ni ìlú yìí wà ní òní bó tilẹ̀ jẹ́ pé wọ́n máa ń fẹ́ kí gbogbo ayé rò pé àlááfíà ni. +yom_02121_00919171997 [snap] Ìròyìn agogo mẹ́sàn-án àṣálẹ́ ni bàbá ń gbó l’ọ́wọ́. +yom_07505_01838521374 [breath] Yà sí apá ọ̀tún tí o bá dé Òpópónà Ìṣẹri. +yom_07049_00514957360 [snap] Ẹja méjì ni wọ́n fi mu gààrí. +yom_00610_00347886994 [snap] Ẹ wo omi tó sọ póun ò ní bá ẹja rẹ́, àṣé omi ọ̀hún ni yóò ṣekú pẹ́ja. +yom_06136_00686675533 [snap] Gbogbo ohun tí mo fẹ́ ni wọ́n ṣe fún mi. +yom_07049_01569229563 [snap] Ẹ má tẹ̀ẹ́wọ́ mọ́. +yom_00610_01105196618 [snap] Olúwa, màá ṣe ìgbọràn. Àánú ni mo tọrọ. +yom_02436_00930978382 [breath] Kájọlà ni ibùsọ̀ táa ma kọ́kọ́ kàn ka tó dé Káṣọpẹ́. +yom_06136_01956912474 [snap] Fìlà náà dára lórí rẹ. +yom_02436_00106979017 [snap] Sọ ọ̀rọ̀ òṣèlú tàbí ìwà ìbàjẹ́ nínú àwùjọ. +yom_02121_00010444101 [snap] Ìdí Àràbà ni Ìyálọ́jà ń gbé. +yom_08421_00128576148 [breath] Àgbàlá Bàbá Fọlákẹ́ ni àwọn ọmọ ti máa ń ṣ’eré ní ìrọ̀lẹ́. +yom_07508_01575138751 [snap] Túwó ni wọ́n sè fún wa. +yom_00610_00726808973 [breath] Ó bi bàbá rẹ̀ bí òún bá lè tan ẹ̀rọ amóhùnmáwòrán náà. +yom_07508_01445645895 [snap] Òfin ìjọba ò jẹ́ kí àwọn oníṣòwò jèrè rárá. +yom_01523_01747338017 Ilẹ̀kùn ilé náà ti bàjẹ́. [external] +yom_03034_02139099150 [snap] Òrìṣà, bó ò le gbèmí ṣe mí bó o ti bámi. +yom_01523_00698237397 [breath] Èròjà tí a fẹ́ fi se ọbẹ̀ kò tí ì pé o. +yom_08421_01106977022 [snap] Ìwádìí fi hàn pé Ò [hesitation] gún ni ẹni àkókò tí ó ṣe ọ̀rò ìṣípa òde ní ìlú Ìrè. +yom_08784_00647227591 [snap] Orísìírísìí ìgbésẹ̀ la máa ń gbé lórí ọ̀rọ̀ yìí. +yom_02436_01900185584 [snap] Adémìlúyìí ni orúkọ tí a fẹ́ mọ ọmọ náà sí. +yom_00610_01801059315 [snap] Láfún loúnjẹ wọn nílé Àl̀àkẹ́. +yom_08421_00868622672 [external] Àdùkẹ́ ti sanra ju ọjọ́ orí rẹ̀ lọ. +yom_08784_01803012405 Nítorí àwọn ìbéèrè pàtàkì nìkan là ń gbà sílẹ̀ kí ilẹ̀ tó ṣú. [abrupt] +yom_01523_00113246113 Ṣé o ti rí abọ́ ẹlẹ́ta rí? [external] +yom_02436_01036315115 [breath] Òkè ni ẹyẹ ti máa ń fò. +yom_03034_02026907496 [snap] Ní ọjà Èjìgbòmẹkùn ni a ti ra àwọn èso ọ̀hún. +yom_02121_01266388114 [snap] Ta ló wà nínú ọjà náà? +yom_08784_01254456400 [breath] Ipò wo lo dì mú nínú ilé iṣẹ́ náà? +yom_07049_01882276626 [snap] Mo ti fi ìgbà kan ṣiṣẹ́ gẹ́gẹ́ bí olùkọ́ ìmọ̀ ẹ̀rọ. +yom_02436_00735834672 [snap] Ojúṣe àwọn olùkọ́ ni láti ríi dájú pé àwọn ọmọ tí wọn kọ́ ní òye kíkún nípa iṣẹ́ ohùn. +yom_08784_01087198874 [snap] Oríṣi bàtà kan ni àwọn ọmọ ìyá náà rà. +yom_03397_01595328562 [breath] Ilé olókè mẹ́rin ni wọ́n kọ́. +yom_08784_00992079469 [snap] Ẹkùn lè ṣe ìnàkí léṣe. +yom_02121_01685777743 [snap] Alákọrí ni Àkànbí tó k’àkànpọ̀ nínú ooru. +yom_07508_00253762213 [snap] Mo ya ìwé náà sí méjì nítorí inú bí mi gidigidi. +yom_09334_00904907634 [breath] Mo ti rí ìdí tí kò fi yẹ kí ó jẹ́ ọ̀rẹ́ mi ni. +yom_02121_01692346848 [snap] Àdùké kò ní pẹ́ gboyè ìmọ̀ nínú òfin. +yom_02484_00041341513 [snap] Ṣé kí a fún àwọn agbasọfọ̀? +yom_07508_00581043285 [snap] Ẹsẹ̀ ń ro ó púpọ̀. +yom_07049_01934407297 [snap] Ẹ jẹ́ ká sùn díẹ̀, ṣùgbọ́n oorun ò kùn mí. +yom_02436_01110654433 [breath] Iyá ọba náà tún wà níbẹ̀. +yom_01523_01853382303 Ṣe o ti rí ìdí tí kò fi lè tètè ní ọ̀rẹ́kùnrin. [external] +yom_07049_01973898147 [snap] Òun àti ìyekan rẹ̀ ni wọ́n ń pariwo l’óru. +yom_03397_01914261822 [breath] Adébọ̀wálé sọ pé òun ò mọ̀ bí aṣọ òun ṣe sọnù. +yom_03034_00681924550 [breath] Màmá rán mi kí n lọ ra ẹja díndín wá ní ìsọdá. +yom_07049_00113104748 [snap] Òjó lọ ilé ní àná láti lọ mú owó ẹ̀ wá. +yom_06136_00803488750 [snap] Tùràrí olóòórùn dídùn ni wọ́n fi sí ibi ìtẹ́ òkú. +yom_09334_01576985469 [breath] Ojú ò ní tìyín lágbára ọlọ́run. +yom_08421_01793284451 [breath] Iṣu àti ẹyin ni mo ṣẹ̀ṣẹ̀ jẹ tán. +yom_07049_00870877285 [breath] [snap] Aṣọ híhun jẹ́ iṣẹ́ kan tí àwọn obìnrin yàn láàyò ní ìlú wa. +yom_01523_00312896002 Adéforítì ní ìforítì. [snap] +yom_07508_00755235955 [snap] Sáyídì ń ta Láfún ní agbègbè Ìta Àdó. +yom_07505_00879744298 [breath] [snap] Gìgísẹ̀ ọmọ naà ló ṣe léṣe. +yom_07508_00337705986 [snap] Mo ti gbìyànjú ohun tí mo lè dá lárà. +yom_07505_01211850621 [snap] Ebi ń pa àwọn ẹlẹ́wọ̀n o. +yom_07049_01988574147 [snap] Èní ni màmá Kọ́ládé yóò fi ilé ìwòsàn sílẹ̀. +yom_01523_01875565026 Mi ò mọ ẹyẹ tó ṣu Adébóyè. [external] +yom_06136_01372511024 [external] Yàrá ìgbàlejò náà tóbi. +yom_07508_00965345335 [snap] Ọmọ mẹ́rin ni ẹran náà bí. +yom_03397_00674292892 [snap] Ìmọ́tótó borí ààrùn mọ́lẹ̀ bí ọyẹ́ ṣe ń borí ooru. +yom_09334_01477672338 [breath] Àdúgbò náà máa ń dákẹ́ rọ́rọ́. +yom_03397_02037042366 [snap] Olórí ilé aṣòfin wà ní agbègbè náà. +yom_06136_00232881290 [snap] Ọmọ náà gbé orí mi sí àyà rẹ. +yom_07505_00376906867 [snap] Wàyí o, kí a máa rántí pé gbogbo ohun táa bá ṣe la ma ká nikẹhìn. +yom_02484_00870733190 [snap] Áà! inú òjò l’àwọn omọ yí ti ń ṣeré. +yom_00610_01446001123 [snap] Ní ayé àtijọ́, àwọn bàbá ni wọ́n máa ń sába ṣiṣẹ́. +yom_07508_01950161981 [breath] [snap] Ìbọn ló bàá l’ẹ́sẹ̀. +yom_06136_00112118729 [breath] 'Ayé dùn-ún jẹ juùyà lọ' ni ọ̀rọ̀ tó bọ́ lẹ́nu Ṣùbòmí nígbà tó jẹ àmàlà tán. +yom_00610_01971869248 [snap] Wọ́n ti dée ládé ọba. +yom_07049_01897895824 [breath] Wọ́n ní kí a mú àkòrí iṣẹ́ ìwádi àṣekágbá wa wá. +yom_01208_00717404914 [snap] À ń lùú, ó ń dun. Ọpẹ́ ló yẹ wá. +yom_02436_01051296181 [snap] [breath] Ọmọbìrin náà rẹwà púpọ̀, tẹ̀gàn ló kù. +yom_07505_00068989097 [breath] [snap] Ọmọ bùjẹbùdànù l’Àrẹ̀mú. +yom_03397_02005216126 [snap] Àrèó máa ń fi ìwà tútù tanijẹ. +yom_07505_01415421171 [breath] Kìí ṣe gbogbo ènìyàn ló mọ ìtúmọ̀ orúkọ mi àfi àwọn tó ní ìmọ̀ tó jíire nípa orúkọ. +yom_07049_01799615454 [snap] Ojú Ọlọ́bùn ni ilé ìjọsìn àwọn Tósìn wà. +yom_08784_01292655400 [snap] Ìyá náà pàdánù ọmọ rẹ̀ láàárín ọdún kan. +yom_07049_01314002336 [snap] Kò yé mi o, ṣé Oshòdì lo wà? +yom_03397_00007754824 [snap] Ẹ̀jẹ̀ ń yọ ní etí ẹ. +yom_03397_01826257088 [breath] Ọ̀gẹ̀dẹ̀ inú ọgbà bàbá dùn púpọ̀. +yom_02436_00064032752 [breath] Mo kí wọn pé a kú ojúmọ́. +yom_02484_01558489131 [snap] Ògúntádé ni ó gba ìwé náà wọlé. +yom_08784_00259580593 [snap] Ìyá wa ṣe àkíyèsí ìwà ìmele Ọmọṣẹwà, ó sì ti pè ẹ́ lọ́pọ̀ ìgbà láti bá sọ̀rọ̀ ní ìjìnlẹ̀. +yom_03397_00866133086 [snap] Kìí ṣe awọn ọmọlóòkú nìkan ni o ti ṣe ní àǹfàní tipẹ́tipẹ́. +yom_07505_00501299177 [external] Ìjàpá gbọ́n gan nínú àwọn ìtàn Yorùbá. +yom_01523_00649698362 [breath] [snap] A ò ní rìn ní ọjọ́ tí ebí ń pa ọ̀nà. [external] +yom_03397_01612232194 [breath] Gbà gbà gbà lọkọ̀ ń dún lóríi títì. +yom_07049_01212888034 [snap] Àwọn ilé alájà ńlá ńlá ló wà ní ọ̀nà ibiṣẹ́ bàbá mi. +yom_03397_01750196608 [snap] Mọ fẹ́ràn ẹlẹ́dẹ̀. +yom_02436_00487673064 [snap] Kí ló dé tò ń pè mí lánàá? +yom_02484_01749446654 [breath] Ẹwà rẹ pàápàá sì ṣe rẹ́gí bí ìdodo ẹ̀fọn. +yom_07049_01373015271 [snap] Bàtà tuntun náà wọ́n jọjọ. +yom_07505_01323850336 [external] Arẹ́gbẹ́ṣọlá ti di ògbóǹtarìgì ọ̀ta nínú ayò ọlọ́pọ́n títa ò. +yom_02436_01369779581 [snap] Ojú abẹ́rẹ́ náà ṣì ń dùn-ún. +yom_02121_00173407981 [breath] Àǹkárá olójúméje ni Ṣaléwá wọ̀. +yom_06136_00455153014 [snap] Adìyẹ àti pẹ́pẹ́yẹ ni wọ́n kan pákó náà fún. +yom_00610_00594754355 [breath] Gbogbo àwọn ohun tí ó ṣẹlẹ̀ nínú àwùjọ ní wọ́n lò láti fi ṣe àgbékalè eré àgbéléwò. +yom_00610_00832012711 [breath] A ó pàdé nílé ẹjọ́ tàbí àgọ́ ọlọ́pàá. +yom_03397_00477880827 [snap] Èmi àti ẹ̀ jà kúrò ni ṣùgbọ́n a ti yanjú ọ̀rọ̀ náà báyìí. +yom_09334_01450090815 [snap] Akíntópé kì í ṣẹgbẹ́ẹ Ọládìjì rárá. +yom_03397_00855663516 [breath] Àjàlá òun Àyìnlá ti ń ṣe ọ̀rẹ́ láti ìgbà kékeré wọn, inú agbolé kan ni wọ́n bí wọn sí. +yom_01523_01240809446 [snap] Àkìtàn ni gbogbo àdúgbò náà ní ayé ìgbà kan. [external] +yom_02484_02035775934 [snap] Ìjẹta ni òjó rọ̀ kẹ́yìn. +yom_07049_00284564638 [snap] Inúu Fáṣọpẹ́ ń bí mi. +yom_00610_00515852810 [breath] Àwọn olè ja ilé ìfowópamọ́ náà. +yom_02436_01219135889 [breath] Ilé epo náà tóbi, ẹ̀bá ọ̀nà ló wà. +yom_01523_00922422428 Lára ìlú tó wà ní ẹkùn Ìlà-Oòrùn Àríwá ni Adamawa àti Bauchi. [external] +yom_02484_01745173141 [snap] Ọ̀rọ̀ kátikàti wo lò ń sọ gan ná. +yom_07505_01121169833 [breath] Ìrìn àjò yí lárinrin láìní àwọn kọ́núukọ́họ kàǹkan. +yom_02436_01059066012 [breath] Mo fẹ́ lọ rí ọ̀rẹ́ mi kan ní ẹ̀yìn odi. +yom_02436_01363970755 [snap] Ẹ̀gbọ́n mi ò sí nílé o, ẹ padà wá nírọ̀lẹ́. +yom_03397_02146955738 [snap] Ó pọn dandan láti rán wa létí pé Káàárọ̀ Oò Jíire ni wá. [snap] +yom_02484_00833597350 [breath] Mo wá ṣe bí àdán orí igi tó so ara rẹ̀ rọ̀ bí ẹni tó ń tòògbé. +yom_01523_00426748645 Àwọn méjì ń jà lójú títì. [external] +yom_07049_00608347854 [breath] Ṣé o mọ ìdí tí mo fi sọ bẹ́ ẹ̀? +yom_09334_01818834122 [breath] Adéwálé gbé egbòogi olóró wo ilẹ̀ Amẹ́ríkà. +yom_07049_01127248937 [breath] Ó ṣèṣì kọ iye owó tó ju iyé tí ó ná lọ. +yom_02121_00419187291 [breath] Abẹ́ igi ọdán ni bàbá ti ń jayé. +yom_06136_01848457428 [snap] Àwọn ọmọge mẹ́fà ni wọ́n ń jó ń gbìyànjú papọ̀. +yom_01208_01193308750 [breath] Mo nífẹ̀ẹ́ àwọn mọ̀lẹ́bí mi púpọ̀. +yom_07505_01656667535 [snap] [breath] Níkẹ gbé omi sí Àdèyí lẹ́nu. +yom_07049_01994824495 [snap] Ewúrẹ́ ń jẹ koríko. +yom_08784_00715263258 [breath] Ayé fẹ̀ ju òṣùpá lọ nítòótọ́. +yom_03397_01164049831 [breath] Mò ń ṣe iṣẹ́ mi dáadáa. +yom_03034_00808117227 [snap] Ìlú Ìlọrin ní àwon olorin dadakùádà wọ́pọ̀ sí. +yom_06136_01282811083 [external] [snap] Aṣọ púpọ̀ ló wà lọ́jà, lọ ra tì ẹ. +yom_00610_01553745417 [snap] Jẹ́ ka fi bọ̀lì ṣe oúnjẹ ọ̀sán. +yom_02436_01766436833 [breath] Ṣé wàá jẹ́ bàbá àwọn ọmọ mi? +yom_07049_00557808337 [snap] Lọ ra èlùbọ́ wa lọ́dọ Ìya Mọ́ríá. +yom_08784_01312589667 Òjò náà rọ̀ ó fẹ́rẹ̀ hu òkú ọ̀l [abrupt] +yom_03397_00599339971 [breath] Òwú dúdú lowó iná. +yom_08784_01153848160 [breath] Ó fẹ́ dì mọ́ọ lát’ẹ̀yìn. +yom_03397_00222239239 [snap] Wọ́n sá eré àsápájúdé. +yom_08421_00547836933 [breath] [snap] Ní ilẹ̀ Yorùbá, bàbá ni olórí ilé. +yom_03397_00411341696 [breath] Ẹwọ̀n egbére ni a dá fun Aníní. +yom_01523_00783775740 [breath] Ta ló gbé aṣọ tútù sí ibí? +yom_07508_00813365935 [snap] Àwọn kọ́ọ̀sì yí dára gan o. +yom_09334_00142792615 [breath] Sàfúrátù ti gbé obì wá fún bàbá. +yom_07049_02057650742 [snap] Gbogbo ènìyàn ni ó ní ẹ̀tọ́ sí òmìnira. +yom_01523_00641611182 [breath] Mo ní ìgbáfẹ́ ní agogo mẹ́san alẹ́. +yom_07505_01401523141 [external] Wọ́n ṣẹ̀ṣẹ̀ bẹ̀rẹ̀ sí ní kọ́ ilé òhún ni. +yom_07508_00645835667 [snap] Ẹlẹ́nu bótobòto, a ó ma wírú yó ma wírù. +yom_08421_00627964110 [breath] [snap] Orí páànù ilé àwọn Ajírébi ni adìẹ náà fò sí. +yom_02484_00634026122 [breath] Ìjà náà bẹ́ sílẹ̀ nìgbà tí awakọ̀ kọ̀ láti wa ọkọ rẹ̀ kúrò lójúu pópó. [breath] +yom_06136_02067430849 [snap] Bíọ́dún kìí ṣọ́ owó náà rárá, ó lè ná gbogbo owó oṣù rẹ̀ tán ní ọjọ́ kan. +yom_03397_01356689494 [snap] I [hesitation] Ilé kan wà ní Ìkòyí tí mo máa ń rí, mo fẹ́ràn ìgbékalẹ̀ rẹ̀ púpọ̀. +yom_01523_00612617448 Yànmúyańmú ń kùn sí mi létí. [external] +yom_02121_00891361339 [snap] Ìjàm̀bá ọkọ̀ òfurufú tó ṣẹlẹ̀ níjọ́sí ò tíì lọ lórí àwọn ènìyàn. +yom_01523_02104291580 Òkè kẹta ni àwọn Bánkẹ́ ń gbé. [snap] +yom_06136_00699650691 [snap] Màá ṣe iṣẹ́ náà nítorí ó dá lé orí àwọn ìwée Fágúnwà. +yom_02436_01292201432 [snap] Gàní ti mú kọ́kọ́rọ́ lọ. +yom_07508_01016747625 [breath] Ìníolúwa ti di sisí ọmọge. +yom_08421_01064995519 [breath] Ṣé o ti ṣe iṣẹ́ àmúrelé rẹ? +yom_03397_02101059719 Ìníolúwa ni orúkọ ọmọ àbúrò ìyàwó mi. [breath] +yom_02484_01645587418 [snap] Ọmọ dada ni mí látijọ́. +yom_01523_01749196738 [breath] Ṣé o ti tọrọ àforíjì? +yom_02436_00454047651 [breath] Ṣé mo jọ òmùgọ̀ ni? +yom_03397_01919677732 [breath] Ara rẹ̀ kìí lélẹ̀ tó bá ti wà lẹ́gbẹ ìyàwó rẹ̀ kejì. +yom_02436_01761870840 [snap] Àkèré fi inú ṣe ọgbọ́n ni wọ́n ń pèé. +yom_03397_01912975545 [breath] Ìrèti ń bẹ, bí ẹ̀mí bá ti wà. +yom_03034_01271607144 [snap] Ìgéraga Gbénga ga tó bẹ́ẹ̀ jẹ́ pé kìí fẹ́ ba ẹnikéni sọ̀rọ̀. +yom_06136_00822519227 [snap] Àdúrà gbogbo òbí ni kí ọmọ wọ́n ṣ’oríire. +yom_01208_00354564693 [snap] A lọ s’éjìgbò ní’jọ̀ọ́sí. +yom_00610_01639484202 [snap] Àgbantara ni bàbá àgbà fi máa ń nara ní abẹ́ igi ọsàn. +yom_00610_00025765484 [snap] Alọ́ba fi ewé wé ọṣẹ náà. +yom_07505_01673859391 [external] Adémọ́lá nìkan ni ẹni tó mọ̀ ẹ̀dùn ọkàn mi. +yom_01523_01379832398 [breath] [snap] Àafin ọba náà ti kéré jù. +yom_09334_01369287282 Ọwọ́ mi ni kẹ́ẹ wò. [external] +yom_03397_01791068891 [snap] Mo nífẹ̀ẹ́ ẹyin ojú rẹ̀. +yom_07505_01134318847 [external] Á ṣeé ṣe lágbára ọlọ́run. +yom_02436_00352999611 [breath] Alábòsí ni wọ́n, àfàìmọ̀ kí ìṣe burúkú náà má bá wọn dàgbà. +yom_09334_01002382004 [external] Ó dá mi lójú pé mo mọ iṣẹ́ náà ṣe. +yom_01523_00291489596 [breath] Lọ tẹ́ ibùsùn bàbá. [breath] +yom_06136_01985489204 [snap] Kí èdùmàrè dá èmí sí. +yom_02436_01399583303 [breath] Gbogbo rẹ̀ ṣẹ̀ hàn kedere sí mi ni. +yom_02121_00429881221 Ẹlẹ́nu wèrèpè ni mo pèé. [breath] +yom_02121_01331414256 [snap] Ìgbẹ́kẹ̀lé nínú Olúwa kìí yẹ̀ láéláé. +yom_08421_02063846741 [snap] Wọ́n ṣe gẹ́gẹ́ bí Ifá ṣe wí. +yom_09334_00893058030 A ò ní gbà, [breath] ó ti hàn pé ẹ ti pàdé ọrẹ́ yín lọ́nà. +yom_07505_00795586720 [external] Nígbà mìíràn, tí ìfẹ́ bá pọ̀jù, kò dára. +yom_01523_02109066820 [breath] Faransé ló gba ife ẹ̀yẹ àgbáyé bọ́ọ̀lù ní ọdùn tó kọjá. [external] +yom_07049_00867906662 [breath] Ṣòkòto Ọláànipẹ̀kún ò balẹ̀. +yom_01523_00380071467 [breath] [snap] Kí ló dé tí àwọn kan ma ń bínú tí wọ́n bá̀ ṣàpèjú wọn gẹ́gẹ́ bí i ènìyàn sísanra? +yom_01523_01458350798 [breath] Àwọn ìjọba ti ń da ọ̀dà sí títì ìlú wa. +yom_00610_02027817433 [snap] [breath] Ṣé o ti rí ilé kòkó ní Ìbàdàn rí? +yom_02436_00905089491 [breath] Ilẹ̀kùn méjì ni ó wà lọ́nà ọ̀run. +yom_09334_01263677076 [snap] Ire ló yẹ ní ṣíṣe, ìkà kọ́. +yom_07049_02055844857 [snap] Igi náà rí ràbàtà. +yom_06136_01799256743 [snap] Ẹni orí yọ, ó d’ilé. +yom_00610_01969882534 [snap] Ọkọ̀ ayọ́kẹ́lẹ́ náà rẹwà púpọ̀. +yom_07049_01942148149 [snap] Ó ti y’óhùn padà. +yom_02484_01825904800 [snap] Àwọn ọmọ náà ti bàlágà láti lọ́kọ. +yom_02436_01956909162 [breath] Wàhálà tí àwọn ènìyàn ṣe láti lè jẹ́ ènìyàn láyé kìí ṣe kèrémí o. +yom_08784_00540604285 [breath] Wọ́n n bá ara wọn sọ̀rọ̀ lówelówe. +yom_02121_00636745987 [snap] Ọ̀rúnmìlà nìkan ló gbọ́ ohùn ẹnu Olódùmarè yékéyéke. +yom_01208_01530861092 [snap] Àwọn adájọ́ mẹ́sàn-an ni wọ́n dá ẹjọ́ náà. +yom_07049_00676007103 [snap] Àyìnlá ní Kúnlé fẹ́ràn obìnrin, ṣé ọkùnrin ni kó kwá fẹ́ràn ni? +yom_01208_00518855357 [external] Àwọn Túnjí ti pààrọ̀ ẹ̀rọ amóhùnmáwòrán wọn. +yom_03397_01710524227 [breath] Àyànmọ́ ò gbó’gun, ṣùgbọ́n ó gbọ́ àdúrà. +yom_02436_00682828921 [snap] Yin Olúwa ìwọ ọkàn mi kì o má ṣì ṣe gbàgbé ore rè. +yom_03397_00884869351 [breath] [snap] Ìjọba àpapọ̀ ti ṣe ìgbéga fún àwọn òṣìṣẹ́ ilé-iṣẹ́ ìròyìn kan. +yom_02436_01589893130 [breath] Ilé ẹ̀kọ́ girama tó wà ní Jíbówú ni Akíntádé ti bẹ̀rẹ̀ iṣẹ́. +yom_03397_00716640676 [snap] Afẹ́fẹ́ náà pò ju kí èyàn bọ́ aṣọ sílẹ̀ lọ. +yom_02436_01198761674 [snap] [breath] Lára ẹbí tó gbajúmọ̀ ní ìlú Ìlọrin ni Sàràkí. +yom_08421_01255874008 [snap] Igbó lótun lósì, àwọn ilẹ̀ náà yóò wúlò fún ìjọba lọ́jọ́ iwájú, àbí kí lẹ rọ̀? +yom_02436_01077511316 [snap] Iṣẹ́ alágbẹ̀dẹ ni bàbá mi yàn láàyò. +yom_07508_01169314638 [snap] Ṣé o máa ń mutí? +yom_02484_00402715192 [snap] Fáànù mẹ́ta ló wà nínú yàrá ìgbàlejò. +yom_03397_00638872276 [breath] Ìfọ́tí olóyì ni mo fún ọmọ tí ó wà lẹ́gbẹ ọ̀tún mi lójú àlá rẹ̀. +yom_02484_00044246585 [snap] Ọ̀mọ̀wé fún ọmọ náà ní ẹ̀bun rẹpẹtẹ. +yom_07049_00532380796 [breath] [snap] Àṣáró elépo rẹ́dẹ́rẹ́dẹ́ ni mo bá nígbà tí mo ti Ibi’ṣẹ́ dé. +yom_02436_02129872860 [snap] Àwọn mìíràn ri obìrin gẹ́gẹ́ bí ẹ̀dá tó nífẹ sí ohun ọ̀fẹ́. +yom_02121_01262071535 [snap] Ọwọ́ méjì ni wọ́n kó sí inú ẹ̀. +yom_03034_00463295136 [snap] Babájídé ni adájọ́ ilé ẹjọ́ gíga tuntun tó wà ní Ìkòyí. +yom_07049_00636441008 [snap] Wọ́n ti fi jọba Ìlú Alábà. +yom_06136_00804124815 [snap] Oyè Balógun ni idílé náà máa ń jẹ láti ìgbà yìí wá. +yom_02436_00428024882 [breath] Ọ̀rúnmìlà sọ fún Ògún pé Ìrémọjẹ ni a ó máa pe orúkọ orin arò yìí. +yom_07049_00369738026 [snap] Olúwa ọba o ṣé o, mo rí isó só bẹ́ẹ̀ ni mo rí ìtọ̀ tọ̀. +yom_03397_00131895109 [breath] Èmi àti àwọn àbúrò mi la sun yàrá mọ́’jú. +yom_07505_02131160624 [snap] Láti ìlú Àjàṣẹ́ ni màmá ti wá. +yom_07508_01087474451 [snap] Mo fẹ́ràn àwọn ọ̀rẹ́ mi. +yom_07049_01543594653 [snap] Kí Ọlóṛun mú ìgbà padà bọ̀ sí’pò. +yom_07505_01004000945 [snap] Wàhálà ọmọ yìí ò ní ṣ'ekú pa ẹ́ lórúkọ Jésù. +yom_01523_00045183386 Ilée wa ni mo wà nígbà yẹn. [external] +yom_02484_01347205651 [snap] Ìyálé mi ti ẹ̀ bá wa lálejò lọ́sè tó kọjá. [snap] +yom_02121_01720574192 [snap] Òpẹ́bí ni àwọn ọ̀rẹ́ rẹ̀ ti lọ ń ṣeré. +yom_00610_00272412504 [snap] Àwọn elétò ìlera ló ń se ìtójú fún àwọn aláàárẹ̀. +yom_01523_01656064431 Ní ọ̀nà àkọ́kọ́, wọn ò lè ní ạ̀wọn ò ní gba ti wa. [snap] +yom_06136_01398365269 [snap] Ọ̀gá ọlọ́pàá náà ló gba owó àbẹ̀tẹ́lẹ̀. +yom_07049_01141203318 [snap] Ìjàkùmọ̀ kìí rìn’de ọ̀sán. +yom_01523_02042697707 [breath] Sùúrùlérè ni ibi tí a ó ti ṣe ìpàdé ọ̀sẹ̀ tó n bọ̀. +yom_01523_00858808849 Olójú dúdú ni wá tẹ́lẹ̀. [external] +yom_03397_00872186519 [breath] Òkèfúnwa ti pinu láti ríi pé gbogbo ohun tí a nílò la máa rí gbà. +yom_03397_01877983138 [breath] Iṣẹ́ àmúrelé tí olùkọ́ àgbà fún wa yìí le gan o. [breath] +yom_07049_01615482826 [breath] Nígbà wo lò ń padà lọ sí ìlú yín náà? [breath] +yom_00610_01444639037 [breath] Àdùkẹ́ ń ta Mọ́sà ní àdúgbò kan ní Olúwọlé. +yom_03397_00379284769 [breath] Ẹ yí fáànù náà sókè. +yom_03397_01806434024 Irun àgbọ̀n mí ti pọ̀ jù. [breath] +yom_07505_01357520734 Ohùn wa ti há. [external] +yom_06136_01999865713 Bí bàbá bá ń rìnrìn àjò, kí wọ́n má gbé àtùpà dání. [snap] +yom_01523_00555988505 [breath] Gọ́tà náà ń rùn. +yom_03034_01450632096 [snap] Ogun jà ní ìlú náà fún ọdún méje. +yom_02484_01550343499 [snap] Kí ni ká fi ṣe yín l’álejò báyìí, ṣé ẹ ó jẹ àmàlà tàbí iyán ni ká gún? +yom_09334_01602376118 [external] Ìréde òru ti àwọn ọ̀dọ́mọge ìsẹ̀yín rawọ́ lè má wàá ti peléke síi. +yom_07508_00783170538 [snap] Wọ́n ti lọ fọ’bọ́ níta. +yom_08784_01068917187 [breath] Àárò Wọnúọlá sọ̀ mí. +yom_02436_00839891534 [snap] Lára àwọn agbẹjọ́rò àgbà ni Fálànà wà. +yom_02484_01565204340 [snap] Nígbà tí bàbá lọ sí oko ní ijọ́ kan ló rí ọmọ ìkókó náà ní abẹ́ igi ọsàn. +yom_03397_01322486103 [snap] Ẹ rora sáré l’ójú ọ̀nà. +yom_03397_02035612405 [snap] Iṣẹ́ ajé ló s’ọmọ nù bí òkò. +yom_06136_01783801765 Oyín ta á, ó sì sá lọ. [external] +yom_00610_00202952083 [snap] Mo ti fi àtẹ̀jíṣẹ́ ránṣẹ́ sí alága lórí ọ̀rọ̀ owó orí tí a fẹ́ san. +yom_07049_01082141419 [breath] Fálétí ti lọ ra àwọn ṣòkòtò ní ọjà Èjìgbò. +yom_01523_00492431435 [breath] Ọ̀gá akọrin wa féraǹ mi gidi. +yom_07049_00243527409 [snap] Ẹ̀dá kan wáyé nípasẹ̀ àwọn méjì tí wọ́n sùn papọ̀, tí wọ́n sùn ì lóyún rẹ̀. +yom_03034_01245173600 Lọ gba kọ́kọ́rọ́ wá. [snap] +yom_01523_01979038882 [breath] Bàbá yẹn kìí gbọ́ràn, àfi’ìgbà tó bá súu. +yom_07508_00122380614 [snap] Ó ṣẹ̀ rí’ṣẹ́ mìíràn ni. +yom_03034_01569789295 [snap] Mo ti rí àwọn àbúrò mi á ti tó ọdún márùn-ún. +yom_01523_01416005370 Àgbò náà sanra. [external] +yom_02436_01878910410 [snap] Ìsàlè àpótí ni màmá máa ń kó àwọn aṣọ olówó iyebíye wọn sí. +yom_07505_00310661790 [external] Iṣẹ́ alágbẹ̀dẹ ni ó yàn láyò. +yom_03397_01408413858 [breath] Atọ̀ọ́lé ni ọmọ náà. [breath] +yom_00610_00259482647 [breath] Ìṣẹ̀lẹ̀ náà ní agbára jọjọ, ó fẹ́rẹ̀ da àárín gbogbo ebí rú. +yom_06136_01129683886 [external] Ó le kú, ìjà ọ̀rẹ́. +yom_06136_02025147386 [snap] Àwọn Akẹ́kọ̀ọ́ ò ní aṣojú mó ní ilé-ẹ̀kọ́ gíga. +yom_03397_00043840630 [breath] Ọdẹ àdẹ́dọ̀ ni Ọdẹ́wálé jẹ́ nígbà èwe rẹ̀. +yom_01208_01689805111 [snap] Bó bá wu Ẹyíòwùnmí, kó má da ẹran lọ sínú igbó. +yom_03397_02082064921 [snap] Fún mi ní ẹran àti ẹja jẹ. +yom_07505_00618049974 [snap] Ilésanmí dùn ju oyè lọ. +yom_00610_00005485361 [breath] Àdàkọ ni gbogbo wọ́n ṣe. +yom_07049_00209589373 [snap] Ta ló wà nínú ọgbà náà? +yom_02484_00394689344 [snap] Ó f’ọwọ́ lérán ó ń wò’ṣe olúwa. +yom_07049_00404432022 [snap] Òde méjì ni a ní láti dé. +yom_03397_02131593374 [breath] Hósítẹ̀lì rẹ ló ti gbé oúnjẹ fún mi. [breath] +yom_03397_00832369199 [breath] Mo gbà fún ọ̀gá mi [breath] , àlá rere ni wọ́n ní. +yom_09334_00954091592 [snap] Ẹ̀yà Yorùbá ti kúrò lẹ́gbẹ́ àwọn ẹ̀yà tí wọ́n máa ń ṣe àmúlò ìlànà òǹkà àwọn èdè mìíràn. +yom_00610_01503680423 [breath] Ojọ́ mẹ́wa ni ó kù kí a kásẹ̀ gbogbo ètò nílẹ̀. +yom_01523_01067899408 Lẹ́báa títì ni a ti rí atọ́kọ̀sẹ tí ń yẹ ọkọ̀ kan wò. [external] +yom_06136_00227150227 [snap] Ẹ máa sọ̀dí wùkẹ̀wụ̀kẹ̀. +yom_06136_00069134347 Ọmọ yìí fi ewúrẹ́ rúbọ bí babalawo ti sọ fún un. [external] +yom_02121_01464131542 Ọmọ yẹn ní ẹwà. [breath] +yom_08421_00502456730 [breath] Àra mí ń kóná ní ooru m’ọ́jú, ọpẹ́lọpẹ́ Ṣayọ̀ tó tọ́jú mi. +yom_08784_01793238062 [breath] Kòkòrò àárùn tí kò gbóògun ti pọ̀ ní ìlú yìí. +yom_03034_00024854036 [breath] Ilé tí èmi àti àwọn akẹgbẹ́ mi dé sí rẹwà púpọ̀, [snap] ọ̀rọ̀ gan kò lè ṣàpèjúwe rẹ̀. +yom_06136_00349885157 [snap] Ikọ́ burúkú wo ni ò ń wú báyìí. +yom_09334_01108683012 [breath] Ọ̀jọ̀gbọ́n lọmọ náà. +yom_07049_00173157252 [snap] Mo ò dára nínú eré bọ́ọ̀lù gbígbá. +yom_03397_00569054665 [breath] Ó rò pé màá fi orí lé ọ̀nà ìlà-ọ̀run padà lọsí ilé lọ sùn fún ọjọ́ díẹ̀. +yom_09334_01126847228 [breath] Bí kò bá sí èdè kò ní sí ìtakùrọ̀sọ láàárín ọmọ ẹ̀dá ádámọ̀ méjì tàbí jù bẹ́ẹ̀ lọ. +yom_00610_01784848179 [breath] [snap] Ọmọkọ́mọ ni Dèjì. +yom_00610_01058800129 [snap] Àpò ṣaka ni wọ́n kó gbogbo ẹrù wọn sí nígbà tí wọ́n lọ sí ìrìn àjò náà. +yom_02436_01069058378 [snap] Ìlà-Oòrùn Gúúsù orílẹ̀ èdè yìí ni mo ti wá. +yom_00610_02145323610 [breath] Bí ó tilẹ̀ jẹ́ pé n ò fẹ́ran ọmọ náà n ò rò pé ó lè pààyàn. +yom_08784_00008811946 Abẹ́rẹ́ mẹ́ta ni ó gbà sí apá rẹ̀. [abrupt] +yom_09334_01515918722 [breath] Èmi ni Alága Ẹgbẹ́ Kásowọ́pọ̀. +yom_00610_00887863353 [snap] Àmì ayò mẹ́rin sí òdo ni Manchester United fi na Chelsea ní àná. +yom_00610_01374871372 [breath] Eéwo mú mi lábẹ́ etí. +yom_01523_01346428924 [breath] Àwọn iwin inú igbó ti ń jíròrò. +yom_07049_01449980905 [snap] Bàbá Adémọ́lá ti fayé sílẹ̀ láti ìgbà tí a ti wà ní ilé ìwé gíga. +yom_08421_01191226543 [snap] Mo fẹ́ lọ gba atẹ́gùn ní’ta. +yom_02436_01396806081 [breath] [snap] Ọmọ yẹn ò lẹ́kọ̀ọ́. +yom_02484_00504699215 [snap] [breath] À ná tó ẹgbẹ̀rún náírà sí nǹkan ọ̀hún. +yom_01208_00474791844 [breath] [snap] Aláta rodo ti dé o, ṣé ẹ fẹ́ rà àbí ẹ ò rà? +yom_07508_01040838676 [snap] Ọ̀rọ̀ máa jáde lóru òní. +yom_03397_01310927765 [breath] Apá Káróunwí ti kán. +yom_01523_01824503554 Àwọn àgbò ń kan ara wọn pa. [external] +yom_03397_01455201401 [breath] Ọkùnrin ni adarí ìjọ náà. +yom_02484_00762506968 [snap] Wọ́n máa ń lo orin dadakùádà lati fi ki oríkì ènìyàn. +yom_03034_00920838859 [snap] Àwọn ọ̀rẹ́ méjì ń ya àwòrán láàárọ̀ ọjọ́ náà. +yom_04310_00053494786 [external] Akíntúndé ti ṣètò gbogbo ìwé ìrìn àjò mi. +yom_00610_00339543300 [snap] Àgùntàn l’ẹranko tó gọ̀ jù. +yom_07508_00110980675 [snap] Kí gbogbo ayé ó wá bá wa dá sí ọ̀rọ̀ yìí, kó tó pokúlúrúmuṣu. +yom_08784_01544027142 [snap] Ilẹ̀ náà kìí ṣe ilẹ̀ olómi, ẹ ó gbádùn rẹ̀. +yom_06136_00906913714 [external] Wọ́n máa gun Àràfá ní ọ̀la. +yom_07505_01297869791 [breath] Kò sí bí èèyàn kan ṣe le kàwé tó, kò lè mọ gbogbo ǹkan tán nílé ayé. +yom_07508_00870120725 [snap] Àgbònrín mẹ́ta ń sọdá. +yom_03397_01968666909 [breath] Ọlárótìmí fẹ́ràn ṣẹ̀kẹ̀rẹ̀, ohun èlò tí ó fẹ́ràn láti máa lù nìyẹn. diff --git a/datasets/nigerian_cv/.gitattributes b/datasets/nigerian_cv/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..1ef325f1b111266a6b26e0196871bd78baa8c2f3 --- /dev/null +++ b/datasets/nigerian_cv/.gitattributes @@ -0,0 +1,59 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mds filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +# Video files - compressed +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text diff --git a/datasets/nigerian_cv/english/test-00000-of-00001.parquet b/datasets/nigerian_cv/english/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7f367c595fb55497d0b2a4e4a4cf1789d85b1577 --- /dev/null +++ b/datasets/nigerian_cv/english/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e91815159650ffa4776b18d0183a95370475697bf16d7ae0bd27a3a8095942 +size 11485340 diff --git a/datasets/nigerian_cv/english/train-00000-of-00001.parquet b/datasets/nigerian_cv/english/train-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ad2ab02653cd4a13d799209de3eb09f18cf641a3 --- /dev/null +++ b/datasets/nigerian_cv/english/train-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d40ff99b48e26cb7df7cb9ea7b1073cfd0689b1ec3064822b00a30bab19511 +size 98009893 diff --git a/datasets/nigerian_cv/english/validation-00000-of-00001.parquet b/datasets/nigerian_cv/english/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a2a83e1a735eed209b5b6d98f1ba2f1be632528f --- /dev/null +++ b/datasets/nigerian_cv/english/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be4fa9459ae86b60d47e4fc1ef76b15a4b7266e427fa238304463f144ca28bc +size 12009651 diff --git a/datasets/nigerian_cv/hausa/test-00000-of-00001.parquet b/datasets/nigerian_cv/hausa/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d90596b43d5a2eae16ac1bb9e23f58c57e9a1f1d --- /dev/null +++ b/datasets/nigerian_cv/hausa/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b551e5c09affc1435fd06f907c5d904fcd932aa83d2967c263a624b8c8b8bcaf +size 23863151 diff --git a/datasets/nigerian_cv/hausa/train-00000-of-00001.parquet b/datasets/nigerian_cv/hausa/train-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..54fc1afec9efc7d93791f01f4c128cd9f0794587 --- /dev/null +++ b/datasets/nigerian_cv/hausa/train-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40716b5ac43e58bc67c98cf79074dfc8c02a120fb5252f6cbe45b76c1ce57e7 +size 187611204 diff --git a/datasets/nigerian_cv/hausa/validation-00000-of-00001.parquet b/datasets/nigerian_cv/hausa/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e580aa90d01d03465332035228cbc8ad6b29ff86 --- /dev/null +++ b/datasets/nigerian_cv/hausa/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb217dbffbc5fce9553d52097659a9f4013de5b0d4315e1afa516b3bb305133 +size 23112615 diff --git a/datasets/nigerian_cv/igbo/test-00000-of-00001.parquet b/datasets/nigerian_cv/igbo/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a8950dcac3ffae4b1d0757ab7ca7a057a2069a93 --- /dev/null +++ b/datasets/nigerian_cv/igbo/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b82a320a1f0e9678b41bba8440634aed3dac69a07328bba96af13c76389c770 +size 18815086 diff --git a/datasets/nigerian_cv/igbo/train-00000-of-00001.parquet b/datasets/nigerian_cv/igbo/train-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..4d71715a43104903a609db0df20c091aec7f594b --- /dev/null +++ b/datasets/nigerian_cv/igbo/train-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a4597f3d858bdb7ae7f4d3845dffcb5fc4713c00c7a040c48540731064cba7 +size 148330328 diff --git a/datasets/nigerian_cv/igbo/validation-00000-of-00001.parquet b/datasets/nigerian_cv/igbo/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..44a709e10f1cf0d518168f769b7eb8419fd4b1bf --- /dev/null +++ b/datasets/nigerian_cv/igbo/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8382df8a6c39d80c6e83acf52bd4280aa66cf3862f5ce53100b77413055f806 +size 18841250 diff --git a/datasets/nigerian_cv/yoruba/test-00000-of-00001.parquet b/datasets/nigerian_cv/yoruba/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..157e591989e03de0be279d4c91a4118775d4175f --- /dev/null +++ b/datasets/nigerian_cv/yoruba/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d18fa06b39618261b1eb35d05f2d757d4c66fcc9c437292f09c897af9c6587 +size 15019665 diff --git a/datasets/nigerian_cv/yoruba/train-00000-of-00001.parquet b/datasets/nigerian_cv/yoruba/train-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..12d6a7bfb8a73835862cc67b79f5247425c0b6e1 --- /dev/null +++ b/datasets/nigerian_cv/yoruba/train-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0526817fdd543e2e6dd96d1c5dc08a7b7896bf05cae1f7960b0806ff85e18d +size 117359064 diff --git a/datasets/nigerian_cv/yoruba/validation-00000-of-00001.parquet b/datasets/nigerian_cv/yoruba/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..31430013d26009ab547baedd01fb54c2198bdbab --- /dev/null +++ b/datasets/nigerian_cv/yoruba/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f48f234bf13e167b6975861dac451bd7664840d67ec3951ec64c802fc107c7 +size 15111185 diff --git a/datasets/nigerian_pidgin/.gitattributes b/datasets/nigerian_pidgin/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..55cab133643a2a73e083373d2106533678d0edd5 --- /dev/null +++ b/datasets/nigerian_pidgin/.gitattributes @@ -0,0 +1,58 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +# Video files - compressed +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text diff --git a/datasets/nigerian_pidgin/data/test-00000-of-00001-16c049b6814bb7ff.parquet b/datasets/nigerian_pidgin/data/test-00000-of-00001-16c049b6814bb7ff.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5ebda3d84bf2a34d11f9fbc26669e274624a316c --- /dev/null +++ b/datasets/nigerian_pidgin/data/test-00000-of-00001-16c049b6814bb7ff.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b441e2c00fc5386d60675e2db89af092e985e10d32341c7524e61ed37a2510d7 +size 195493858 diff --git a/datasets/nigerian_pidgin/data/train-00000-of-00002-06caf65bef6a8834.parquet b/datasets/nigerian_pidgin/data/train-00000-of-00002-06caf65bef6a8834.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d8e913e89fb5d0da69ea151d4a45b7f9ed8520ec --- /dev/null +++ b/datasets/nigerian_pidgin/data/train-00000-of-00002-06caf65bef6a8834.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5578d97529de95d3eb6406a1ca32adb59cde0e701e0d36d2620d29194ca39d +size 298848257 diff --git a/datasets/nigerian_pidgin/data/train-00001-of-00002-541a3212bc85a73b.parquet b/datasets/nigerian_pidgin/data/train-00001-of-00002-541a3212bc85a73b.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f7fe5442bdb605849518ecf27b3d389d8f72edf0 --- /dev/null +++ b/datasets/nigerian_pidgin/data/train-00001-of-00002-541a3212bc85a73b.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84bd673a5510ef12fa524216509daf32ed533a6eb437ee921fcfcc13f574eee +size 307844694 diff --git a/datasets/nigerian_pidgin/data/validation-00000-of-00001-b91747625e760fc5.parquet b/datasets/nigerian_pidgin/data/validation-00000-of-00001-b91747625e760fc5.parquet new file mode 100644 index 0000000000000000000000000000000000000000..160149e2addb8a7641b536bfcc28114d4099bc91 --- /dev/null +++ b/datasets/nigerian_pidgin/data/validation-00000-of-00001-b91747625e760fc5.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddbf9a25ad4193993e44e3233019738792e5a829fa2689f22661a328a43cfe4 +size 153689547 diff --git a/datasets/openslr_yoruba/LICENSE b/datasets/openslr_yoruba/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..2e72ca1121b413a67745f02f679eb5caef6c7bef --- /dev/null +++ b/datasets/openslr_yoruba/LICENSE @@ -0,0 +1,427 @@ +Attribution-ShareAlike 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-ShareAlike 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-ShareAlike 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. BY-SA Compatible License means a license listed at + creativecommons.org/compatiblelicenses, approved by Creative + Commons as essentially the equivalent of this Public License. + + d. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + e. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + f. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + g. License Elements means the license attributes listed in the name + of a Creative Commons Public License. The License Elements of this + Public License are Attribution and ShareAlike. + + h. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + i. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + j. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + k. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + l. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + m. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. Additional offer from the Licensor -- Adapted Material. + Every recipient of Adapted Material from You + automatically receives an offer from the Licensor to + exercise the Licensed Rights in the Adapted Material + under the conditions of the Adapter's License You apply. + + c. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + b. ShareAlike. + + In addition to the conditions in Section 3(a), if You Share + Adapted Material You produce, the following conditions also apply. + + 1. The Adapter's License You apply must be a Creative Commons + license with the same License Elements, this version or + later, or a BY-SA Compatible License. + + 2. You must include the text of, or the URI or hyperlink to, the + Adapter's License You apply. You may satisfy this condition + in any reasonable manner based on the medium, means, and + context in which You Share Adapted Material. + + 3. You may not offer or impose any additional or different terms + or conditions on, or apply any Effective Technological + Measures to, Adapted Material that restrict exercise of the + rights granted under the Adapter's License You apply. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material, + + including for purposes of Section 3(b); and + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/datasets/openslr_yoruba/line_index.tsv b/datasets/openslr_yoruba/line_index.tsv new file mode 100644 index 0000000000000000000000000000000000000000..a4475fbc9a992593e36a4e3d4f8c3a291bf36eca --- /dev/null +++ b/datasets/openslr_yoruba/line_index.tsv @@ -0,0 +1,1691 @@ +yom_03034_01418840084 Ẹ máa sọ̀rọ̀ yín lọ. +yom_04310_01581232845 Àwa la ó máa wá, ẹ̀yin la ó máa bá. +yom_02436_00889863484 Alágídí l’ọmọ náà, ó fi jọ ẹ̀gbọ́n rẹ̀ ni. +yom_02121_00137890896 Isaiah àti Arógunyọ̀ ń fẹ́ obìnrin kannáà. +yom_03034_00406378535 Mo fẹ́ mu àgbo jẹ̀díjẹ̀dí. +yom_07049_00139563981 Ìyá àgbà fi ògùsọ̀ dáná. +yom_08421_00831872975 Mo dúpẹ́ lọ́wọ́ olúwa fún gbogbo iṣẹ́ rere rẹ̀. +yom_04310_00224640928 A jeun nínú àwo kanáà fún ìgbà àkọ́kọ́. +yom_08421_01471313862 Bí àwọn dókítà mìíràn ṣe máa ń bá’ni sọ̀rọ̀ kò daa rárá. +yom_08784_00515252578 Mo ti sùn lé ọrùn mi. +yom_02436_01194726021 Iṣan apá rẹ̀ ti já. +yom_08421_01007218935 Ta ló ń lọ fún ìdíje náà? +yom_04310_00934704293 Ẹni tó bá lówó lọ́wọ́ kó ṣe bí ẹni tí ò ní. +yom_04310_01478059469 Koríko ni ewúré máa ń jẹ. +yom_02121_01420882609 Ó fi ipá báa lò pọ̀ lánàá. +yom_06136_00578784597 Ìfẹ́ wá mi wá sílé ṣùgbọ́n mo ti lọ ìrìn àjò nígbà náà. +yom_03397_00065684393 Iṣẹ́ atọ́kóṣẹ̀ ni Kòtún kọ́. +yom_04310_00451919045 Mo rántí ijọ́ tí ọmọ náà na ẹ̀gbọ́n rẹ̀ pa. +yom_07505_01422865584 Ṣé kò f’ara pa púpọ̀? +yom_01208_00915651858 Ṣé mò ti ṣe oun tí o fẹ́? +yom_04310_01758552797 Akọ̀wé Ẹgbẹ́ ni Tẹ̀là. +yom_02484_02124275391 Jẹ kin sìn ọ́ dé ojú ọ̀nà díẹ̀. +yom_09334_01974111425 Kúnlé ti lọ ra àgádàgodo wá. +yom_02484_00760491974 Ọlọ́runyọmí ló tan Ìwàlọlá jẹ. +yom_08784_01161043078 Mo ò tí ì dé Àbújá rí. +yom_01208_00010936322 Ẹniafẹ́ ti parí ilé ìwé gíga. +yom_02484_01050275125 Iṣẹ́ ìran dé ìran ni iṣẹ́ ọdẹ́ jẹ́. +yom_00295_00543855072 Ìfẹ́lódùn lorúkọ ẹgbẹ́ náà. +yom_08421_01980727509 Èdùmàrè á fún mi l’áya rere. +yom_08784_00403277753 Akẹ́kọ̀ọ́ ilé ìwé girama ni Ọládiípọ̀. +yom_02121_00708252982 Tàlàbí ti ga jù. +yom_06136_01531486951 Àwọn ènìyàn kìí sábà fi àrò dáná mọ́. +yom_04310_01552778313 Ikú gbígbóná ni Ikú tí Akíntọ́lá kú. +yom_02121_01719185423 Ká má tètè kú lawo ìbànújẹ́. +yom_01208_00808346730 Ọ̀pọ̀lọpọ̀ ọmọdé fẹ́ràn patí. +yom_04310_01804139119 Gbogbo ara ni mo fi kí ẹ jàre, àbúrò mi. +yom_02436_01020115343 Ojú mi rí kí n tó ni gbogbo dúkìá yìí. +yom_03034_00105438646 Ẹ fi ṣàkì mẹ́ta sórí ìrẹsì àkọ́kọ́. +yom_06136_00742549179 Ìrẹsì àti ẹja ni èmi àti Élújọbí jẹ ní òwúrọ òní. +yom_07049_00404981893 Ẹsẹ̀ àga náà ti kạ́n. +yom_07508_00738689089 Mò ń lọ sí ilé Ìya Ṣọlá. +yom_03034_02001897562 Kí lẹ ṣe ní kílàsì lénìí? +yom_08421_01105719994 Ọgbà àjárá ni ó yí ilé náà ká. +yom_07505_01331061060 Ilé ìjọsìn wa ni tósìn ti kọ́ dùrù títẹ̀. +yom_04310_00136067945 Ìjà bẹ́ sílè láàárín Pópóọlá àti Àlùfá mọ́sálásí wọn. +yom_00610_01571797236 Olú Owólabí ló ko Ìwé ìtàn-àròsọ Ìjà Ọ̀rẹ̀. +yom_02121_00000125239 Ìyá àgbà ti s’olóògbé. +yom_09334_01138071764 Bí ọmọ yìí ṣe máa ń sọ̀rọ̀ máa ń múmi lọ́kàn. +yom_07508_01340339424 Ọ̀jọ̀gbọ́n sàlàyé lórí rògbòdìyàn tó bẹ́ sílẹ̀ ní ìlú ọba ní àná òde yìí. +yom_03034_00113683944 Tí ọwọ́ rẹ́ bá kàn mí, mo ma yí omi yìí dà sí ẹ lórí. +yom_07508_01906115820 Ohun gidi kọ́ ni k’éyàn bá ogun lọ. +yom_02121_01728330279 A gbọ́ pé wọ́n ti jí ẹní egbére lọ. +yom_04310_00491607396 Nígbà tí ènìyàn tó burú báyìí bá ń ronú kó jáwọ́ nínú ìwà ìbàjẹ́, mélòómélòó ìwọ. +yom_03397_01135790070 Àwọn aṣọ híhun náà rẹwà púpọ̀. +yom_02484_00977886050 Wàhálà rẹ pòjù, Àdùnní. Kí lo fẹ́ kí n ṣe fún ẹ? +yom_01208_00578093947 A tiẹ̀ ríi gbọ́ pé ilé alájà mẹ́ta ni bàbá yíì kọ́ sí ìlú rẹ̀. +yom_01523_00008321762 Òyìnbó bí ọ̀pẹ́ẹ̀rẹ́ ni ó máa ń sọ ní tirẹ̀. +yom_07508_01126822000 Bákan náà ẹwẹ̀, àkíyesí tùn wà pé, àwọn okùnrin ni ó pò jù nídìí iṣẹ́ orin. +yom_01523_01498522701 Túndé jẹ mí ní ẹgbẹ̀rún mẹ́wàá náírà. +yom_07508_01974100140 Wọ́n ti fi Akínsọ̀yínù sínú túbú. +yom_07049_01406295206 Ibo ni kí n fi fìlà yìí sí? +yom_03397_01615082850 Etí ń rìn mí ṣá. +yom_08421_00430751064 Ọmọ ọkùnrin yẹn da èkan náà sí. +yom_07508_01795437934 Nínú yàrá náà, ènìyàn márùn-ún ló ń sùn síbẹ̀. Ọ̀rẹ́ làwọn máràrùn. +yom_08784_00089607710 Kí Ajíjọlá wọlé kí á jọ ṣeré. +yom_07508_02095438771 Mo máa ń lérò pé Bélò ní ọpọlọ ni o, àṣé orí rẹ̀ ò pé rárá. +yom_07049_01211642354 Orin dàdàkùádà máa ń ní ìlù lílù, ijó jíjó, ẹfẹ̀ ṣís̀e, àti oríkì. +yom_09334_01820594769 Wọ́n dáná sí ẹ̀gbẹ́ igbó. +yom_08421_02028440715 Èmi náà fẹ́ ní ọ̀rẹ́bìrin nílé. +yom_02484_01591805308 Gbogbo aṣọ kọ́ la ń sá lóòrùn. +yom_00295_01894974080 Onílẹ̀ gogoro ni wọ́n ń pe ọkùnrin yẹn. +yom_04310_00623693494 Gbogbo abọ́ ló ti dọ̀tí. +yom_07505_00572150945 Mo ò tíì ri irú erin tó tóbi báyìí rí. +yom_02121_00028996665 Ẹni tó ti kú ò ní ìrèti mọ́. +yom_00610_01356498746 Ìkọ̀tún ni ibi tí àwọn ayálégbé wa tẹ́lẹ̀ ń gbé báyìí. +yom_07505_00450757097 A rí kínǹiún ní ibi tí a ti lọ wo àwọn ẹranko. +yom_02121_01262704472 Òkè gíga pọ̀ ní àdúgbò yín. +yom_07505_01936711064 Yá mi ní gègé ìkọ̀wé rẹ. +yom_02121_00674722638 Adésuà mọ bí yóò ṣe bá wa mú orí rẹ̀ wá’lẹ̀. +yom_09334_00430138346 Tí mo bá pè ẹ́, máa dá mi lóhùn. +yom_00295_01230133341 Àwọn ẹgbẹ́ agbábọ́ọ̀lù Nìjíríà ní àfojúsùn láti gba ife ẹ̀yẹ ti ilẹ̀ aláwọ̀ dúdú tó ń lọ lọ́wọ́. +yom_02484_01954084679 Bọ̀dá táyé ti lọ sí Mecca ní ọdún tó kọjá. +yom_08421_01751112489 Gbogbo aṣọ kọ́ là ń sá lóòrùn. +yom_07508_02066394496 Alágbára òde ni bàbá náà. +yom_00295_00180834323 Kì ń ṣe gbogbo nǹkan lèyàn ń dá sí. +yom_02121_00290465209 Mo fẹ́ mu gaàrí àti ẹ̀pà. +yom_02436_01988144562 Mo fẹ́ ra ọtí fún Ìya Sùlíyá. +yom_08421_01200800536 Adébánjọ fẹ́ran ẹja tútù láti jẹ. +yom_06136_00003960212 Ó ní èyí tóun mú lọ́wọ́ yìí ńkọ́, ṣé k’óun fi sílẹ̀ ni? +yom_02436_01585584486 Ọmọ náà fẹ́ràn láti ma wò mí. +yom_01523_02109343690 Bàbá àgbà ti lé ní ọgọ́rùn-ún ọdún. +yom_09334_01384291349 Tẹ̀là ló jẹ́ kí gbogbo ọ̀rọ̀ yí lọ di òkòtó báyìí. +yom_03397_00672719018 Ìsọkúsọ ni Àdèlé ma ń sọ ní gbogbo ìgbà. +yom_06136_01319047427 Kìí ṣe dúndùn inú ẹnikẹ́ni kí ọmọ rẹ́ kú. +yom_01523_00690218507 Òkun kìí gùn jù ká má mọ ibi tó ti gùn wá. +yom_02436_01154895931 Àtòrì ńlá ni wọ́n fi nàá. +yom_00610_00581746407 Ta ló gbé ẹ̀fọ́ tí mo gbé wọlé. +yom_04310_01458918306 Ẹgbọ́n rẹ̀ ni ó rẹ̀ẹ́ lẹ́kún. +yom_02121_00083063400 Ọmọ ìya ológì lókè Mẹ̀sàán ni mí. +yom_07508_01283773434 Òtútù ń mú ọmọ tí ń sọ ìkan fún mi yí, níṣe ló ká jọ bí i adìẹ tí òjo pa. +yom_07508_01933655369 Àwọn wo ló ń pariwo láàárọ̀ kùtùkùtù báyìí. +yom_07505_01456994714 Láfihàn ló gba àmì ẹ̀yẹ Ọba. +yom_02436_00703168072 Àjásin kò rántí gbé ẹ̀rọ amóhùnmáwòrán fún ẹni tó ń tun-un ṣe. +yom_04310_00273816675 Ìya oní gaàrí ti ń bọ̀. +yom_04310_01848067936 Ọbá ti wàjà nílú Àkúrẹ́. +yom_00610_01911961373 Ta ló gbé omi tí mo pọn? +yom_09334_00633050115 Gbẹ́nu sọ́un, oní’bèérè ìsọlẹ́nu. +yom_01208_00586805366 Ìsọkúsọ àwọn mìíràn pọ̀ jù. +yom_02484_00456320159 Oúnjẹ náà ti rà. +yom_04310_00235468565 O fẹ́ bá ọmọ yẹn sùn àbí bẹ́ẹ̀ kọ́ ni? +yom_07049_01580320228 Bíyi ti padà sí Èbúté Mẹ́ta. +yom_07505_01482096004 Àgbélébú mi ni mo gbé rù lọ́wọ́lọ́wọ́. +yom_02121_00356564615 Oko àlùbọ́sà ni mo rà. +yom_07508_00616314586 Tírélà náà ti dànù sí òpópónà Àpápá. +yom_02484_01687850033 Adétọ́lá wà ní ilé ìwé gíga. +yom_00295_01566713030 Àwọn ará ọjà ti kó aṣọ lọ. +yom_07049_00985777771 Ìdí ni wípé èdè pọ̀ láwùjọ jáńtìrẹrẹ. +yom_07508_01062218695 Ǹjẹ́ ó ṣeéṣe kí Àrólé pa ọ̀rẹ́ rè? +yom_02484_01286683001 Dáníẹ̀lì wọ bàtàa dùbúlẹ̀. +yom_02436_01094241710 Mo fẹ́ lọ gbafẹ́ l’ágbo fújì. +yom_04310_00039804096 Ẹranko burúkú kan ló pa àwọn ẹran náà jẹ. +yom_01208_01175241306 Ìjẹ̀bú ni bàbá ọmọ náà ti máa ń wá. +yom_08784_00687048590 Ṣé ki n gbé oúnjẹ rẹ lọ fún-un? +yom_03034_01651774540 Ọ̀rẹ́ mi Adisa fẹ́ràn eẹ̀yan púpọ̀. +yom_02484_01756094488 Ó ti wá hàn gbangba gbàǹgbà pé ọ̀pọ̀ ohun tí à ń ṣe ni àwon ara ìlú fẹ́. +yom_02436_00502570507 Bàtà náà rẹwà l’ẹ́sẹ̀ rẹ̀. +yom_02436_01439348281 Àwọn ọsàn náà ti pọ́n. +yom_01523_02104085397 Ní ìgbà kan rí kò tilẹ̀ ní lítíréṣọ̀ àpinlẹ̀kọ rárá débi pé wọ́n á ní ìwé ìtàn àrósọ. +yom_08421_00588643783 Ibo ni fàájì wà lálẹ́ òní? +yom_07505_00409167380 Àwọn Ọḷ́opàá ya wo àdúgbò tí ìjà ti bẹ́ sí’lẹ̀. +yom_08421_02139408884 Ganíyá fẹ́ràn kí ó ma tọ́’jà kiri. +yom_07049_01784945750 Lọ fi aṣọ bo omi mímu yẹn. +yom_01208_02125664889 Omi yẹn ti tùtù ju fún mi. +yom_02484_01784056295 Ilé wa ò ní dàrú, ọ̀nà wa ò ní bàjẹ́. +yom_02436_00735769236 Èyàn mẹ́fà ló ń jẹ́ Máíkẹ̀lì ní kílàsì wa. +yom_04310_01019575995 Ìró wà ní orí ilẹ̀kùn. +yom_02121_00595505462 Mi ò ní tó iye owó yìí. +yom_01208_00896307834 Ó gbọ́ràn sí mi lẹ́nu. +yom_01208_01893355283 Afọpẹ́fólúwa ní ìdodo ńlá. +yom_09334_00416375472 Ọdún Ifá jẹ́ ọdún kan pàtàkì tí a fi ń dúpẹ́ lọ́wọ́ Olódùmarè. +yom_01208_01349848651 Túndé ní’fẹ sí àti máa fi ẹ̀wà jẹ ọ̀gọ̀dẹ̀. +yom_08421_00298781439 Ó gbe ọmọ rẹ̀ wá kí mi ní’lé. +yom_01208_01417905598 Akànlé ni bàba Àìná ń ṣe bí iṣẹ́. +yom_03034_01606444575 Kí ọmọ olówó má ro ọmọ tálákà pin. +yom_08421_01276848509 Àrá ló ya ògiri yí lulẹ̀. +yom_08784_01716814128 Wọ́n ni ilè àwọn Jẹ̀mílá l’àwọ́n wà. +yom_08784_01732153693 Wá rí mi, mo ní ǹkan tí mo fẹ́ fún ẹ. +yom_07508_01661444061 Òṣìṣẹ́ ilé-iṣẹ́ amúnáwá náà gan mọ́ orí òpó. +yom_02121_00766885645 Aṣọ funfun àti fìlà olómi aró ni wọ́n pè. +yom_04310_01044698400 Ìgà ni wọ́n ń pe Àfin ní Èkó. +yom_02121_00660612475 Mo gbádùn eré náà dáadáa láti ìjẹta. +yom_04310_00239113163 Ìdìbò tí ń bọ̀ lọ́nà ló fa gbogbo gbómi si omi ò tóo. +yom_01208_01702841608 Mo fẹ́ ra oògùn. +yom_08421_00942326564 Ọ̀nà ibo ni mo lè gbà dé Sáfẹ́jọ́? +yom_04310_00730116824 Àlùfáà tuntun tí a gbé wá ni ó ni aṣọ náà. +yom_07049_01716546573 Ifálékè ti j’Ọba o. +yom_01208_01598155255 Ọjọ́ àbámẹ́ta nìkan ni mo máa ma lọ sí ibiiṣẹ́. +yom_03034_02143956112 Ẹ ṣùpọ̀ sójú kan. +yom_00295_00597850178 Ọ̀pọ̀lọpọ̀ ọkọ̀ bọ̀gìnì bọ̀gìnì ni mo rí lóju ́pópó nígbà ìrìn àjò náà. +yom_07508_00237062454 Òru ni àwọn àjẹ́ máa ń ṣe ìpàdé. +yom_07505_01459476689 Ìyàwó kékeré tí arákùnrin òhún fẹ́ ló ba gbogbo nǹkan jẹ́. +yom_03034_00497993947 Wọ́n ní ká dá owó fún ọmọ tí ó rẹ̀. +yom_02484_01517239911 Ọkọ́ àti àdá jẹ́ ohun èlò gbòógì fún àwọn àgbẹ̀. +yom_01523_01286078923 Àṣàkẹ́ ti lọ p’ọmi ní odò tí ó súnmọ́ Modákẹ́kẹ́. +yom_00295_01863644465 Ẹ̀rọ ìbánisọ̀rọ̀ mi ti sọnù. +yom_08784_02088649450 Hohùn dídùn ni wọ́n fi ń kí’fá. +yom_07505_00165421972 Kò sí ẹni tí kò lè dáa fún. +yom_03034_01362132030 Iṣẹ́ la fẹ́ ṣe, a kìí ṣ’ọ̀lẹ. +yom_03397_00057426270 Mo ní àǹfààní láti dé Adó Àwáyè. +yom_01208_01081503596 Sọ fún bàba ọlọ́kọ̀ kó lọ gbé àwọn èrò tó wà ní ibùsọ̀ lọ́un yẹn. +yom_09334_00759620162 Mo fẹ́ kí èmi àti àwọn ẹ̀gbọ́n mi jọ ma lọ sí ibẹ̀ nígbà kan náà. +yom_06136_01374471095 Àbíkú l’ọmọ yẹ́n jẹ́. +yom_02436_01393638712 Irú irun wo lo wá gẹ̀ s’órí báyi? +yom_07049_01731012721 Mo ti lo rí ọ̀gá mi kan lorí ọ̀rọ̀ ọ̀hún. +yom_02436_00469642151 Jẹ́ ka jẹ ègbo àti ẹ̀wà. +yom_01208_00005375433 Ṣe ìlérí fún mi pé ò ní fi mí sílẹ̀. +yom_02436_01484341679 Òkédìjí ló sọ bẹ́ẹ̀ nínú ìkan lára àwọn ìwé ẹ̀. +yom_06136_02135927693 Orí òkè náà ga gidi gan. +yom_07508_00242160806 Ta ló mọ̀ ẹ́? +yom_04310_00972272422 Ìṣe ẹni ní ń sọni dẹni gíga. +yom_00610_00293625811 Wón ní kí a wá gba ẹran ọdún. +yom_00295_00034835661 Ẹ wá ra bèbí fún mi. +yom_01208_00174769871 Àwọn pẹ́pẹ́yẹ ń wẹ̀ nínú odò. +yom_01523_00174158141 Ṣoò lè jáde kúrò nínu yàrá mi. +yom_00295_01260639509 Egbére jẹ́ ẹ̀yà iwin kan. +yom_02121_00124746688 Iléèwé náà tóbi púpọ̀, ogunlọ́gọ̀ ọmọ ni wọ́n ní. +yom_02121_01706494052 Aà jí ire bí, ẹ̀yin ọmọ Oòduà? +yom_00610_01670116872 Ta ló lágbára jù nínú iwin àti egbére. +yom_09334_01534537951 Kí la fẹ́ gbà nínú ìjà. +yom_06136_00580369772 O ṣé, mo dúpẹ́ pé ìgbàgbọ́ rẹ nínú mi ṣì múlẹ̀ ṣinṣin. +yom_06136_00657725130 Simisọ́lá lorúkọ ìyàwó Adékúnlé. +yom_08421_02063753297 Àwọn Àbẹ́gbẹ́ yóo tó dé láti Ísírẹ́lì ní ọ̀sẹ̀ méjì sí òní. +yom_01523_01660300224 Oṣù kan ààbọ̀ ni mo fi dáwó [external] láti ra ọkọ̀ bọ̀gìnì náà. +yom_08421_00023894524 Akínwùnmí fẹ́ kọ́ bí wọ́n ṣe ń ka ewì. +yom_02484_00779312525 Kí ló dé tí ojú rẹ k’ọ́rẹ́ lọ́wọ́? +yom_02484_01538339078 Mo ní èróngbà láti gbé àpótí ìdìbò lọ́jọ́ kan. +yom_02121_01252162815 Alájàpá ni iṣẹ́ tí Lọlá ń ṣe kó tó wọ iṣẹ́ Ọlọ́pàá. +yom_08421_01478345402 Òkè àjá lẹ [external] gbée sí. +yom_02121_02055597144 Ẹ gbé iléelẹ̀ yín wá fún àwọn agbálẹ̀. +yom_03034_00338793085 Ǹjẹ́ o mọ̀ pé ó ti ṣẹ́yún yẹn. +yom_02121_00985154016 Ọ̀rọ̀ tí mo gbó já mi láyà púpọ̀. +yom_03397_00197060505 Àárẹ̀ náà ti wọ inú ara rẹ̀ tán. +yom_07505_01087369798 Ní àkótán ìwúrì láti ẹnu àwọn àgbà dára púpọ̀. +yom_02121_00642777643 Olúwa, má jẹ ka pàdánù. +yom_07508_00241238816 Ẹ̀san ń bẹ fún ẹni tó bá ṣẹ̀’ka. +yom_09334_01240000515 Ààfáà ń pè’run láago márùún. +yom_07505_01283653413 Ṣé o mọ Allen Avenue? +yom_02121_00080327297 Gbogbo ara ló ń wọ́ mi. +yom_07505_01940282405 À ń ṣiṣẹ́ kí a tó rówó ni. +yom_09334_00466064750 Ṣé o lè yá mi l’ówó títí di ìparí oṣù. +yom_03034_00123246306 Sọ̀rọ̀sọ̀rọ̀ ni gbogbo wa, àbí? +yom_06136_01245332301 Àlùjó ni wọ́n ń lù lágbo Ayéfẹ́lẹ́. +yom_07508_01766470605 Kí Ọlọ́run jé kí orílẹ̀-èdè yí dára. +yom_07505_00077322538 Ògbójú ọdẹ ni wọ́n. +yom_00610_01237322476 Èékánná tí o lé sọ́wọ́ rẹwà púpò. +yom_09334_01981832140 Àfàìmọ̀ kí ọ̀rọ̀ rẹ́ má da gbogbo nǹkan rú. +yom_07508_00466262251 Ayẹyẹ náà yóò lárinrin yàtọ̀ sí ti tẹ́lẹ̀. +yom_00295_00965293189 Ọjọ́ ìbí mi ń bọ̀ lọ́nà. +yom_00295_00262443531 Iná ti tán lórí ẹ̀rọ ìbánisọ̀rọ̀ mi. +yom_02484_01241521546 Elétí kunkun ni Túndé. +yom_09334_01075378594 Ẹ̀kọ́ dára púpọ̀, òun sì jẹ́ ìkan lára oun tí a nílò láti di ẹni gíga l’áwùjọ. +yom_04310_00481083763 Afẹ́fẹ́ ń kọjálọ lẹ́sọ̀lẹ́sọ̀, gbogbo ohun ń lo létòlétò. +yom_09334_00967297963 Mi ò tiẹ̀ mọ ìlú tí ó ní òkè jù láàárín Ìsẹ́yìn àti Òǹdó. +yom_01208_01534119960 Kò ye ká máa sọ̀rọ̀ ṣàkàṣàkà torí a ò mọ ẹni tó lè ranni ĺọ́wọ́. +yom_03034_01222801439 Bẹ́ẹ̀ àṣejù wọ́n ti bẹ̀rẹ̀ ní ìkẹyìn. +yom_02484_00173311565 Ọyún ń yọ ní etí ẹ̀. +yom_00295_01636505434 Àwọn àgbà ló máa ń sọ pé ‘igúnnugún kìí kú léwe.’ +yom_03034_00470022244 Àwọn arẹwà obìnrin pọ̀ nílùú. +yom_01208_01504531078 Ohun rere ni yóò ma jẹ ti wa. +yom_00295_01761232169 Bàbá rẹ̀ ló fi ṣìná jọ. +yom_01208_01999303623 Ọ̀kan nínú àwọn òṣìṣẹ́ ní ilé-iṣẹ́ wa fẹ́ràn omi tútù. +yom_00295_00251722977 Mo fẹ́ dá ilé iṣẹ́ atẹ̀wé ìròyìn sílẹ̀. +yom_06136_00971138091 Olú sùn fọnfọn lóru. +yom_01523_01769113672 Ọtí àmupara ni Akínbọ̀dé mu ló bá ń sọ bótobòto ní òru àná. +yom_02484_00993896185 Ọgbọ́n ló gbà tó bá ti jẹ́ ọ̀rọ̀ obìnrin. +yom_08421_01229325486 Ajíbádé fẹ́ràn obìnrin púpọ̀. +yom_06136_01484524698 Màálù mi ti kú. +yom_07505_00212637414 Kí ló dé tí wọn ò ṣu orí fún ọmọ yìí? +yom_00610_01705448296 Iṣẹ́ ṣí pọ̀ nílẹ̀ táa fẹ́ ṣe. +yom_01208_00411920037 Ògo ọmọ náà tàn kálẹ̀. +yom_08421_01269214491 Ọba Moróunfólú ò pé lóri oyè rárá, odún mẹ́ta péré ló lò. +yom_02484_00995434762 Ajò ò le dùn bí ilé. +yom_09334_01868507598 Ẹ̀sìn àtọ̀húnrìnwá ni ẹ̀sìn ìsìlámù. +yom_03034_00216218638 Àwámárììdí ni Olódùmarè. +yom_03034_01498022930 Wọ́n rò pé èmi ni mo sọ fún ẹ bẹ́ẹ̀. +yom_07049_01040320261 Láti orí dé orúnkún ni òógùn ti bòó nígbà tí a gbọ́ ohùn ìbọn tí àwọn ọ̀daràn náà yìn. +yom_01208_00033598683 Erín tóbi ju ajá lọ. +yom_06136_01554189850 Mi ò nífẹ kí n máa bẹ̀bẹ̀, ìdí nìyí tí mo fi ń gbìyànjú láti má t’asẹ̀ àgẹ̀ẹ̀rẹ̀ s’ẹ́nikẹ́ni. +yom_09334_00720552665 Àkàrà òyìnbó náà dúdú. +yom_08421_01517793806 Àlákála ni Adéníkẹ lá pẹ̀lú Ayaba Èṣítẹ̀rí. +yom_07508_02088307942 Fásúre jẹ́ ògbóǹtarìgì oníṣègùn ní agbègbè. +yom_07508_00959403919 O kú àdúrótì mi. +yom_02121_01938602530 Ṣé pé a lè dolówó dọlọ́rọ̀ látara gbíngbin igi obì. +yom_00295_00858153167 Ó ti tó lẹ̀. +yom_00295_01762325604 Ìrìn àjò láti Èkó sí Ìbàdàn tó wákàtí méjì ààbọ̀. +yom_02436_01543144546 Lọ já ewé efinrin wá. +yom_03034_00404748370 Láfún ni a jẹ. +yom_06136_01141892864 Ṣàngó gẹ́gẹ́ bí ìtàn ṣe fi yé wa ni aláàfin kẹta ní ìlú Ọ̀yọ́. +yom_04310_02076343383 Kí lẹ fẹ́ kó, ṣé kí n bá ẹ kóo. +yom_06136_01196494509 Pọ́ọ̀lù ló bá mi wá iṣẹ́ náà. +yom_07508_01781551619 Ọ̀ṣínbájò ni igbákejì àrẹ orílẹ̀-èdè Nìgíríà. +yom_04310_00425358829 Kò bìkítà bóyá ó dára tàbí kò dára. +yom_01208_00842353243 Ipin máa ń wà l’ójú ajá náà ní gbogbo ìgbà. +yom_00610_00581757758 Ọ̀kan-ò-jọ̀kan ìdí ni a lè tọ́ka sí pé ó ṣokùnfà pípẹ́ lẹ́yìn ìwé ìtàn àròsọ Yòrùbá. +yom_01523_00285220760 Aṣọ kaánà ni t’ọko t’ìyàwó wọn wọ̀ lọ sí ilé ìjọsìn l’énìí. +yom_06136_00291346566 Ijọ́ ìgbéyàwó mi, ẹ ó ríran wò. +yom_04310_00661357128 Ọkunrin ńlá ni Bàba Sọlá tó wà ní orílẹ̀-èdè Amẹ́ríkà. +yom_03397_02118425909 Ẹniọlá ni orúkọ Màma wọn. +yom_06136_00575235639 Ẹ jẹ́ ká lọ fọṣọ wa kó ba lè mọ́. +yom_07508_00331831273 Mo mọ bí mo ṣe ń ṣiṣẹ́ tí mo fi ń rówó. +yom_07049_01072765912 Àmọ̀pé ni wọ́n sọ ọmọ náà, bàbá Láfẹ́nwá ló fún-un ní orúkọ yẹn. +yom_08784_00397135975 Ìyá ti lọ sódò, bàbá ti lọ sóko. +yom_07049_00048629329 Mo ní kí Òkèjọbí pè mí lórí ẹ̀rọ ìbánisọ̀rọ̀ tó bá di ọ̀la. +yom_02121_00143985059 Láti ojú fèrèsé ni mo ti ń rí gbogbo ohun tí wọ́n ń ṣe. +yom_07505_02115488038 Ọ̀gọ̀njọ́ òru ni àwọn eléyi tún pariwo. +yom_08421_01501094045 Ta ni á kó àjọ ní [external] oṣù tó ń bọ̀. +yom_03034_00898647102 Ó kígbe l’óhùn rara. +yom_04310_01920145996 Wàyíì, ó ye ká yànàná rẹ̀ wípé bí a ṣe ń lo èdè yàtọ̀ sí ara wọn. +yom_03034_02076520520 Túndé ti lọ gẹ’run ẹ̀. +yom_07505_00913634903 Májìyàgbé, tìẹ ò ní gbé n’ílé ọkọ. +yom_08421_01134010782 Aṣọ ìbora náà kò nípọn. +yom_04310_01015966740 Alóńgẹ rẹ́rin kàkàkà. +yom_02121_01459930082 Àwọn ajá igbó wà nínú igbó kìjikìji náà. +yom_04310_00870319925 Ọ̀rọ̀ ìfẹ́, bí àdánwò ni. +yom_02121_00316330604 Mo pàdé olùdarí ilé ìwé gíga mi ní ibi ìnáwó ní ìjẹẹ̀ta. +yom_04310_01153510146 Kí ló dé ti àga yí fi dọ̀tí tó báyi? +yom_01523_01360676927 Àya rẹ̀ já nígbà tó rí ẹkùn yẹn. +yom_07505_00846535485 Wọ́n ńi ẹgbẹ́ òṣèlú alátakò ló wọlé ní ìjọba ìbílẹ̀ Kájọlà. +yom_03034_02088660657 Mo fẹ́ lọ sí etí òkun láti lọ gbafẹ́. +yom_01208_00447792945 Abúlé wọn tóbi gan. +yom_07049_00711556234 Yẹtí mẹ́ta ni wọ́n ṣẹ̀ṣẹ̀ rà fuń-un. +yom_00610_01210690763 Ìgbéraga kò dára rárá. +yom_03397_00422737555 Màá máa wá wò yìn nílé láìpẹ́. +yom_07049_02084001817 Ojútikú wà ní ilé ìwé gíga ti Ìlú Èkó. +yom_02484_01400837035 Kò sí èrò ní’ta gbangba. +yom_07508_01668590473 Babátúńdé ti sọ owó nù si’lé tẹ́tẹ́. +yom_00295_01260038205 Ẹlẹ́dẹ̀ náà bí ọmọ mẹ́fà péré. +yom_01523_01995936510 Oò sì ní ṣ’aláì bímọ. +yom_04310_01892171200 Ìmọ́tótó ṣe pàtàkì fún àti dénà ààrùn. +yom_02121_00333509503 Kẹ́ẹ tún ilé ṣe kí a tó dé. +yom_07508_01538910519 Mo fẹ́ rán ọmọ méjì ní’ṣẹ́. +yom_01208_01865287844 Jìnádù pa ejò gígùn. +yom_07049_02073638799 Mo rí pẹ́pẹ́yẹ tí ọmọ mẹ́sàn-án wà lẹ́yìn rẹ̀. +yom_00610_01804423807 Mí ò ṣeré o; òdodo ọ̀rọ̀ ni. +yom_07508_01827557252 Omi tí mo fẹ́ mu wà nínu kòkò irin. +yom_07049_01544244103 Dáre ni akọ̀wé ẹgbẹ́ akọrin inú ìjọ wa. +yom_02121_01902805525 Bàba Wàídì mọ ẹni tó ni ilé epo yìí. +yom_03034_01879578919 Kíni m̀bá ti ṣe sọ pé mo gbọ́? +yom_08421_00848985328 Sa gbogbo ìpaà rẹ kí ọjọ́ ọ̀la rẹ́ lè suwọ̀n. +yom_03397_01379694402 Wọ́n ń ṣe orò ní Sáàgámù lọ́wọ́lọ́wọ́. +yom_02484_01433035770 Wọ́n gbàmí tọwọ́tẹsẹ̀ ní ilé ọkọ mi. +yom_08421_01180079847 Mo gbọ́ ìròyìn àwọn ọmọ ìyá méjì tí wọ́n fi ara wọn ṣe ògùn owó. +yom_09334_01870515349 Egúngún náà ni Yòrùbá máa ń pè ní ará ọ̀run. +yom_08784_01804526408 Ìlú ńlá ni Èkó. +yom_02121_00752498240 Ìṣoore-olúwa ni orúkọ tí wọ́n fún ilé náà. +yom_07505_00535928257 Wọ́n wà nílé ìgbọ̀nsẹ̀. +yom_09334_01835771974 Lọ mú ìró yẹn wá. +yom_06136_00024825562 Ta ló ni pángolo? +yom_04310_00698349134 A ti tọ́ka sí obì gbàǹja àti obì àbàtà. +yom_02484_00035892457 Mo fẹ́ràn aago yìí. +yom_01208_01871340549 A fẹ́ kí wọ́n ó dàgbà kí wọn ó dògbó. +yom_03034_02103527432 Ọṣẹ ni mo lọ rà. +yom_06136_01046994608 A ní ìbálòpọ̀ pẹ̀lú ara wa. +yom_02484_00342983781 Kí á mà dan ìgbàgbọ́ wa wò. +yom_04310_01040078318 Òdòdó kan ni a wá já n’ílée yín. +yom_00295_00439317932 Kò sí oun tó ń bọ̀ lókè tí ilẹ̀ ò gbà. +yom_04310_00645421127 Àwọn ènìyàn súnmọ́ olódùmárè pẹ́kípẹ́kí. +yom_02484_00757715666 Ọbẹ̀ ẹ̀fọ́ náà ti yí dànù lórí iná. +yom_00295_00896983271 Ta ló fi j̣ẹ oyè Ajírọ́ba? +yom_01523_00447820718 Ọfà ba ọmọ ogun rè l’ẹ́sẹ̀. +yom_02436_01062104356 Kí ló ṣe ẹ́ ní’mú? +yom_08421_00902730074 Àwọn ọlọ́pàá ti gbá mi mú. +yom_06136_00327789705 Ti fèrèsé náà kì ẹfọn má baà wọlé. +yom_07508_00331434484 Àpò ìwé ẹ̀ wà nínú aṣọ mi. +yom_01523_00683960062 Ọmọ náà fẹ́ràn eré àgbéléwò bíi ẹlẹ́dàá ni. +yom_00295_01495670377 Ẹran méjì-méjì ló fi ṣe wá lálejò. +yom_01208_01895390007 Àrun jẹjẹrẹ ò dára. +yom_06136_01350542840 Aṣọ ńlá ni ọbá máa ń wọ̀ lọ sí jímọ̀. +yom_03397_00334420973 Mo máa dáàbò bò ẹ lọ́wọ́ gbogbo ìjọ̀gbọ̀n ayé. +yom_07508_01609673711 Ìbàjẹ́ ènìyàn kò dáṣẹ́ ọlọ́run dúró. +yom_07505_00449231923 Tí a bá ń sọ àṣìṣe ara wa, èyí kò ní jẹ́ kí okùn ìfẹ́ wa gùn. +yom_04310_01669842088 Lọ gbá ilẹ̀ àárín ilé àti ti ẹ̀yìnkùlé. +yom_00610_00512922597 Ṣé o ti gbée fún ọ̀gá ẹ? +yom_00610_01122977341 Owó ẹyọ là ń ná láyé àtijọ́. +yom_00295_01759262518 Láti mọ iṣẹ́ náà, ó gba ìfarabalẹ̀. +yom_01208_00663157705 Yàrá àwọn Similólúwa tóbi gan. +yom_07505_01041889526 Orí àdògán ni wọ́n ti ń ro’kà. +yom_08421_00026187240 Ẹ bá mi fi díẹ̀ sí oúnjẹ yíì. +yom_02436_01205162726 Wọ́n ti múná lọ. +yom_02121_01646619163 Èyí ni ọmọ tí mo sọ fún ẹ ní ìjẹẹ̀ta wípé ó ní ìka mẹ́fà. +yom_03034_01238324645 Àpadàsáburú ò ní jẹ́ ìpín wa o. +yom_02121_00782760176 Ìyá àwọn ọmọ tí ilé wọ́n wà ní ibùdókọ̀ kẹta sí ìhín ti bá àgbèrè lọ. +yom_02121_01845269710 Inú omi ni ẹja ń gbé. +yom_02121_00563827200 Àwẹ̀ìwẹ̀tán ni omi ọ̀sà. +yom_07508_01765724710 Ìgbésẹ̀ fonọ́lọ́jì tó farahàn nínú àwọn ìlànà yìí ni àrànmọ́. +yom_07049_01241482870 Mo fẹ́ ra àgbàdo. +yom_01208_01480310098 Ìwé ìròyìn márùn-ún n wọ́n kọ̀ọ́ sí. +yom_07508_00436597889 Àyà mí máa ń já nítorí a ò mọ bí ọ̀lá ṣe máa rí. +yom_08784_00300967158 Làpálàpá wà l’órí ẹ. +yom_07508_00199663363 Ìbejì ọ̀ràn ni wọ́n fẹ́ yà. +yom_09334_01998666685 Jẹ́ ki mo mọ̀ tí o bá ti ń lọ sí ilé yin. +yom_00295_00734378792 Gúsù orílẹ̀ èdè yìí ni mo ti wá. +yom_00295_02069760396 Máa tọ́jú mi, Jèhóvà ńlá. +yom_04310_00996132431 Mo ra bàtà mẹ́ta l’ọ́jà Akẹ̀sán. +yom_07508_01862185631 Bàbá àti ìyá mi ló fún mi lówó tí mo ná. +yom_09334_00053208406 Ilẹ̀ Gẹ̀ẹ́sì ni ó wù mí kí n ti ka ìwé fún Másítàsì mi. +yom_00295_01797274674 Abẹ́ igi ọdán ni wọ́n ti máa ń sábà pa ààló. +yom_09334_01576800326 Wá bá mi rẹ́ èékánnáà mi. +yom_08784_00818036389 Ṣòkòtò náà dára lára rẹ̀. +yom_04310_01326155867 Ẹ̀rín máa ń pa mí nígbà tí mo bá ń gbọ́ àwọn ìpolówó kànkan. +yom_01523_01987127766 Ìyàwó rẹ ní owó jùú lọ. +yom_00295_00677272420 Àwọn mìíràn gbàgbó pé bí èyàn ṣe ń d’àgbà si ló ṣe jẹ kó l’óye si. +yom_02436_01072540162 Tí óúnjẹ yẹ́n bá tutù, kò ní ṣe é jẹ mọ́. +yom_01523_01608900385 Bá mi gbé ìwé wá. +yom_02436_01876894428 Ó ti fẹ́rakù bí mo ṣe ń wòó yìí. +yom_03397_00584387189 Ó máa ń ṣe mí bíi kí a jọ máa wà ní gbogbo ìgbà. +yom_01208_01278650394 Àlùbọ́sà ni ó ń tà. +yom_08784_01487348786 Mo ti gun òkè Afárá rí. +yom_03034_01900356850 Mo nífẹ màmá mi. +yom_07049_01127285005 Wọ́n gbàgbọ́ pé iṣẹ́ tí àwọn fi orúkọ náà rán sí ọmọ bẹ́ẹ̀ yóò kó ipa ribiribi. +yom_02484_00266879461 Ilé-iṣẹ́ agbóhùnsáfẹ́fẹ́ ni ìyàwóò mi kejì wà. +yom_08784_02001327460 Àwọn Ọmọ náà fẹ́ kọ́ èdè Yòrùbá. +yom_07508_00960226556 Ara ò ní ni wá o. +yom_00610_01983991795 Ọjọ́ burúkú èṣù gb’omi mu ni ọjọ́ náà jẹ́. +yom_04310_00784459878 Aṣá ló lọ gbé ọmọ adìyẹ lórí ibẹ̀. +yom_03397_00683716873 Ẹ̀yin ni atọ́kùn ètò náà, àbí? +yom_01208_01142657335 Mo túbá fún gbogbo àṣìṣe tí mo ti ṣe s’ẹ́yìn. +yom_03034_00629276215 Ìyàwó ẹlẹ́sẹ̀ osùn, rọra máa wolẹ̀. +yom_06136_00513610746 Gbólúwaga ṣẹ̀ṣẹ̀ dé láti ibi tí ìyá rẹ rán-an ni. +yom_04310_01992336275 Oko obì lọ́tun, ti ọ̀gẹ̀dẹ̀ lósì. +yom_00295_01808625699 Ọlọ́fin ní orúkọ ẹni tí ó tẹ ìlú Ọ̀tà dó. +yom_08784_01792196659 Ó sọ pé ki n má bínú. +yom_03397_00451394405 Wọ́n na Àdùnní játijàti. +yom_00295_01100371474 O gbọdọ̀ gbọ́ ohun tí mo bá sọ fún ẹ, èmi ni mo bí ẹ. +yom_03034_00045415866 Atọ́batẹ́lẹ̀ ra ọ̀gẹ̀dẹ̀ wá. +yom_06136_00706013777 Adúrú ǹkan yìí ṣẹlẹ̀, oò dẹ̀ jẹ́ kí mo gbó? +yom_02484_00575387344 Ìyàtọ̀ gedegbe ló wà láàárín ikú àti ìyè. +yom_07505_01380730347 Àjàká lọ sí Ìlú Èkó. +yom_02121_01831412677 Ǹjẹ́ ìwọ́ tí dé Ìdúnmọ̀tà rí? +yom_02436_00384928509 Orí ẹní ni mo sùn mọ́jú. +yom_07508_01585466389 Àkàyìmọye ìwé ni Ọ̀jọ̀gbọ́n Ajíbóyè Ọládìípò ti kọ́. +yom_07505_00309679014 Àárin gbùngbùn àríwá ni Atikú ti wá. +yom_00610_01663746697 Ṣé o mọ ìdí tí mo fi ṣe bẹ́ ẹ̀ bi? +yom_08421_00493295037 Lọ wo ẹ̀wà tí mò ń sè nínú kíṣìnì. +yom_02121_00206639101 Ó yà mí lẹ́nu, ètè mí ya pẹ̀lú. +yom_06136_01698663849 Ǹjẹ́ o ti gbọ́ oun tó ṣẹlẹ̀? +yom_00295_02097610485 Orí ibùsùn Àdìó ni Ṣẹfíù jókòó sí. +yom_01208_01854833424 Ní àná, ọkọ mi ò wá sílé. +yom_08784_00383847516 Jẹ́ kí n fún ẹ ní gbogbo ìfẹ́ mi pátápátá. +yom_01523_00756340215 Bísí jẹ́ ìyàwó kejì. +yom_08421_01509728815 Inú omi àti orí ilẹ̀ ni èyàn ti lè rí oònì. +yom_03034_01010138513 Ajé f’ilé wa ṣe ibùgbé ẹ̀. +yom_08421_02009201914 Ikúu M.K.O Abíọ́lá dun ọ̀pọ̀lọpọ̀ èèyàn. +yom_00295_01009533577 Gángan ni ọ̀rọ̀ ilé ayé, bí ó ti kọjú sẹ́nìkan, ẹ̀yìn ló kọ sí ẹlòmíràn. +yom_02121_00900745843 Ààfin ni wọ́n ń pe Ìgà ní Ọ̀yọ́. +yom_08421_01276850983 Inú ń ro mí o. +yom_01208_01099480720 Bàbá yín ò ní pẹ́ dé o. +yom_03034_00663144384 Àwọ̣n ọmọ wọ̀nyí ti jáde lọ. +yom_00295_02013147966 Abẹ́ àtíbàbà ni ìpàdé náà yó ti wáyé. +yom_04310_01967338071 Bàbáa wa ló tún wá jọ́ba. +yom_00295_01090465200 Wùnmí fẹ́ràn kí ó máa jẹ eegun. +yom_09334_00730161997 Owó náà ká gbogbo ohun ta fẹ́ ṣe. +yom_07049_01162914798 Lọ wẹ̀ kí o yé rùn. +yom_07508_01520693898 Ìyá tó mọ ìbẹ̀rẹ̀ ayé mi kó má ṣe mọ ìgbẹ̀yin ayé mi. +yom_08421_01266563036 Inuwọ̀ wà ní abẹ́ tábìlì. +yom_04310_00142694911 Kò mọ̀ ju kí ó ma kà’wé lọ. +yom_07505_00328639836 Ilé ò ní lé wa, ọ̀nà ò sì ní nà wá. +yom_03034_00554207733 Ó ń polówó ọjà. +yom_02121_00216027048 Fẹ́rànmi ti sá kúrò nílé iṣẹ́ ìjọba. +yom_00610_01109755410 Ìrètí nì orúkọ ọmọ àbúrò màmá mi. +yom_00295_01052693823 Tí mo bá gbàgbé ohun gbogbo, ojú rẹ ni mi ò le gbàgbé. +yom_03034_00921743636 Kí màmá tó lọ sọ́jà ló ti sọ fún mi kí n pàrọ̀ aṣọ àbúrò mi. +yom_08421_00705794618 Ọ̀rẹ́ pàtàkì ni èmi àti ẹ̀gbọ́n bàbá ẹ nígbà tó wà láyé. +yom_02121_02034423957 Kí ló ń s’áré jù nínú ìjàpá àti eku. +yom_07049_01655323368 Olódùmarè ní kí ẹ má sin òrìṣà kankan lẹ́yìn òun. +yom_01523_00556139804 Ifá ní pé, ìtì ọ̀gẹ̀dẹ̀ ní kí wọ́n fi máa kóná àgbo fún àwọn tí ara wọn kò yá. +yom_08421_02094124628 Pa fẹ́rẹ́sẹ́ dé kí o bá mi ní ìsàlẹ̀. +yom_03034_00096760735 O jọ ẹni tí yóò ní ẹ̀mí gígùn. +yom_00295_01769793281 Èdùmàrè jọ̀wọ́ jẹ́ káyé ó yẹ wá. +yom_04310_00733516550 Ó ra ọtí fún wa, ẹ bá wa dúpẹ́ lọ́wọ́ ẹ̀. +yom_07049_00102692105 Ayé laá jẹ, ka tó jọ̀run. +yom_02484_00434404389 Mi ò gbàgbọ́ pé Tinúadé lè pa ènìyàn. +yom_02436_01373670277 Ọ̀rọ̀ tó ṣ’àkàlàmàgò tó fi dẹ́kùn ẹ̀rín rínrín, bó ba ṣe gúnugún a wo kókò sórí ẹyìn ni. +yom_00295_00211433715 Bí Ọládùnúní àti Ọláfibọ̀ tilẹ̀ d’ẹ́se náà, wọn ti tọrọ àforíjì. +yom_03034_01842627620 Alágídí èyàn ni Odùújókòó. +yom_03034_02014226570 Ní àná, ò ń wò bí ẹyẹ t’ójò pa. +yom_00610_01451481032 Àwọn okùnrin ni ó pọ̀ njù nídìí iṣẹ́ orin dadakùádà. +yom_02121_01814534607 Ọ̀jọ̀gbọ́n ni ọmọ náà. +yom_00295_00031013716 Díẹ̀ ni tìẹ níbẹ̀, Abíkẹ́, ọmọ Monífádé, ará ìsokùn. +yom_04310_00158953253 Lọ gbé ẹní wá. +yom_00295_01309711201 Ọ̀dọ̀ Ṣẹ̀fíù ni mo ti yá ẹ̀rọ ìbánisọ̀rọ̀ náà. +yom_08421_00373763601 Àwọn ọmọ náà mọ̀ pé ó dára láti wùwà rere. +yom_00295_01149569587 Ìrìn àjò ànà ò dẹrùn rárá, ẹnu gan kò lè ròyìn rẹ̀ tán. +yom_00295_00062289378 Akẹ́kọ̀ọ́ ni wọ́n ń bá sọ̀rọ̀. +yom_02484_01608540149 Ṣọ́’ra ṣe o, ayé gba jẹ́jẹ́. +yom_08421_00934950855 Olè náà sáré gba kọ̀rọ̀. +yom_09334_00645040800 Atẹ́ ti kúrò ní ile ìwée wa. +yom_09334_01892073005 Ajá dúdú ni ti wọn. +yom_02484_01213496884 Jẹ́ ká jọ jó. +yom_08784_00528036130 Mo rí nǹkan tó jọ bẹ́ẹ̀. +yom_03034_01843115561 Oṣù kẹwá ni Adéwùnmí yóò sẹ mọ̀-mí-n-mọ̀-ẹ́. +yom_00610_00861023794 Ẹyẹ agénifò tí ń fò Iójú ọ̀run, kílódé to ṣekú pa Akínsanmí? +yom_07508_01367220977 Bí ọkọ̀ náà ṣe bọ́ sinu kòtò ló mú kí ó forí gbá. +yom_02484_00039799196 Ìwé mẹ́rin ni ọ̀gbẹ́ni Caleb ní ka rà. +yom_03034_00395831951 Wón kun àtíkè sí ọrùn Àńjọlá. +yom_03034_02054899976 Ìdàgbàsókè tí ń bá ìlò ède Yorùbá nípa ìmọ̀-sáyẹ́ǹsì. +yom_07508_00745844924 Ìbálòpò tọkọtaya ni a ń sọ. +yom_07508_00957942018 Ọmọ ló kù ta ǹ tọ́rọ́ fún wọn. +yom_07508_00981058538 Orí páànù ni wón sá ẹran oníyọ̀ sí. +yom_09334_01977117935 T’akọ t’abo la dálé ayé. +yom_04310_00888149686 Ipele àkọ́kọ́ ní fásitì ni mo ti pàdé ìyàwó mi. +yom_03034_00631718384 Kò sí èyan rere kan lára ọmọ yẹn. +yom_07508_01290286199 Ilé-iṣẹ́ agbóhùnsáfẹ́fẹ́ kan ni Jákànde ni ó fi ọ̀rọ̀ náà lọ̀. +yom_08421_01993288533 Kò ní mú ọgbọ́n wá tí a ò bá dá owó tó kù padà. +yom_01208_02048199037 Ìjọ tí mo lọ lánàá wọ́n ń pariwo. +yom_02484_00126078684 Kò rí oorun sùn lálẹ́ àná; èyí múu bínú. +yom_02121_00424840599 Ọ̀rẹ́ kìí ṣe ẹnìkan tí ó kàn ń ṣe alábàápín ìgbà tí nnkan rọ̀ dẹ̀dẹ̀. +yom_04310_01855565612 Mo gba ààyè ní ibi iṣé láti lè lọ fún ìrìn àjò náà. +yom_07505_00035428769 Ohun tí a ó fẹnu jóná lé lórí iṣẹ́ yìí ni èdè àwùjọ àwọn agbèrò àti awakọ̀. +yom_03034_01392332855 Àwọn ọdẹ etílé kìí wọ inú igbó kìjikìji. +yom_07508_00841986848 Ó lé tìróò s’ójú. +yom_09334_01567489824 Ó bá mi mú ẹran wá. +yom_08784_01485984985 Kò kúkú sírú ọlọ́run, Ọba tí kò ṣeé pè lẹ́jọ́. +yom_00295_00999748557 Etí rẹ̀ pẹ̀lú a sì máa gbọ́ ìgbọ́kùgbọ̀ọ́. +yom_02121_00211120486 Wọ́n fẹ́ràn láti máa jẹ àkàrà. +yom_00610_00064644867 Ìdíje ńlá gbáà ni àwọn ẹgbẹ ọdẹ ń fi Ìrèmọ̀jẹ́ Ògún ṣe. +yom_07508_01052355386 Ọ̀kan pàtàkì lára àwọn ẹ̀yà lítíréṣọ àbáláyé Yorùbá ni eré-oníṣe àbáláyé jẹ́. +yom_02121_00772251437 Olúwa yóò ṣọ́ ẹ di ọjọ́ ìkúnlẹ̀ o. +yom_00295_01975678703 Ó ti wa wèrè ni? +yom_07505_01353857074 Lọ ra ata’re wá. +yom_01208_00101690108 Aríìkẹ́ ni mo yàn láàyò jùlọ nínú gbogbo àwọn ọ̀rẹ́ mi. +yom_01208_00463155729 Kí ló dé tí irọ́ rẹ pọ̀ tó báyìí? +yom_06136_00372800060 Òpó iná náà ti wó lulẹ̀. +yom_07508_00812206214 Àwọn tí wọ́n darí iná fún eré orí ìtàgé náà gbìyànjú. +yom_02436_01678221006 Jẹ́ kí á lọ bẹ̀rẹ̀ ìgbé ayé tuntun níbi tí enìkan ò ti mọ̀ wá. +yom_00610_00048492133 Akáloló ni Bídèmí nígbà tí ó ṣì kéré ṣùgbọ́n ó ti yàtọ̀ díẹ̀ ní sìnyí. +yom_01208_00100923599 Ìrìn-àjò èdá láyé Ọlọ́run ló mọ̀. +yom_01208_01227004455 Irun rẹ̀ ta kókó. +yom_07049_01473111251 Láti ojú fèrèsé mi, mo rí àwọn ọ̀dọ́ méjì̀ tí wọ́n ń tami oge. +yom_06136_00066077105 Edé mẹ́fà ni Músá fi mu gààrí. +yom_06136_01143703620 Ó ti jí ẹran jẹ nínú ìṣasùn. +yom_09334_00720332405 Ṣòkòtò funfun la wọ̀ lọ sí ilé ìjọ́sìn náà. +yom_01208_00938323361 Bí ìyá náà ṣe gbé ọmọ náà pọ̀n dára jọjọ. +yom_04310_01121296372 Àwọn ọ̀rẹ́ mi ni wọ́n kọ́ mi bí wọ́n ṣe máa ń se oúnjẹ. +yom_09334_00091591408 Ayé ń lọ, à ń tọ̀ ọ́. +yom_03034_01510768014 Nínú gbogbo ìdáwọ́lé mi mo ríre. +yom_09334_01492453488 Ṣadé ṣiṣẹ́ ìwádi lọ sí ilẹ̀ Àríwá. +yom_04310_00068034721 Kí ni wọ́n ń polówó. +yom_02121_02084135875 Àṣé ayé kọ́ la wà nílẹ̀ wa rárá, mo kí ajé kúùkàlẹ̀. +yom_09334_00231754677 Ìwé mélòó lo ti kà. +yom_08784_01039888998 Nínú ère àgbéléwọ̀ náà la ti rí ibi tí ọkọ ti fọ’nu fún aya. +yom_07505_01304643046 Ẹ̀gbọ́n mi ti ṣe ìbéyàwó ní ọ̀sẹ̀ tó lọ. +yom_09334_00479501198 Irú ìbéèrè wo lèyí? +yom_08784_00353698143 Wọn fi ẹ̀mí ìmoore hàn. +yom_00295_00922485420 Gbogbo ara ni mo fi ń kí ẹ. +yom_09334_00206407521 Tóbi ní òun ò fẹ́ rí ẹnikẹ́ni lénìí. +yom_07505_00714441660 Oríṣiríṣi ọgbọ́n ni àwọn bàbá wa máa ń ta láti de ọmọ tí ó bá jẹ́ àbíkú mọ́lẹ̀. +yom_08784_00908923873 Wọ́n ti lọ ṣán ara wọn lẹ́yìn lẹ́yìn wàhálà púpọ̀. +yom_02484_00688622874 Wọ́n ṣe iṣẹ́ abẹ fun ọmọ yẹn ní inú. +yom_04310_00767913939 Tí mo bá lè ṣe’pò kíní nínú ìdíje yìíì, bàbá mi á ra ẹ̀bún fún mi, èyì dá mi lójú. +yom_00295_00625392818 Oṣhòdì ni ilé iṣẹ́ Alfa wà. +yom_02436_02078539238 Ní ‘jọ́ tí Herbert rí Monisọ́lá, kò lè gbójú kúrò lára rẹ̀; Ó fẹ́ẹ̀ lè ma játọ́ lẹ́nu. +yom_08421_00812246475 Àná ò le jẹ́ t’òní, tòní ò sì jọ t’ọ̀la. +yom_09334_00007045236 Mo fẹ́ràn ìsọkúsọ lọ́jọ́ Sátidé. +yom_07508_00149954221 Mo fẹ́ kọ́ bí wọ́n ti ń tẹ dùùrù. +yom_08784_00466800209 Ẹ̀yọ̀, Gẹ̀lẹ̀dẹ́ àti Eégún ni àwọn ọdún ìbílẹ̀ tí mo fẹ́ràn jù. +yom_08784_00975824168 Ìyá wọn ti dolóògbé. +yom_03397_00442217461 Nínú bọ́ọ̀lù àfọwọ́gbá ni wọ́n ti jáwé olúborí. +yom_06136_01221339237 Ọmọ́yẹlẹ́ ti yọ fáìlì náà kúrò ní ibi tí a kóo sí. +yom_00295_00318803215 Onímọ̀ ìṣègùn ni ọmọ mí sọ pé òun fẹ́ fẹ́. +yom_09334_01361517602 Ọjọ́ ọla mi ló jẹmí lógún. +yom_01523_02091535034 Eṣinṣín wá tìlẹ̀kùn ṣáláńgá mọ́rí, ó l’óun ò ní jáde àf’ìgbà tí wọ́n bá fún-un n’íyàwó. +yom_07505_02111388719 Ki lo kùn sí ètè? +yom_06136_00645370566 Èrí mìíràn tí ó fi ìdí ìgbàgbọ́ Yorùbá hàn nípa Àbíkú wà nínú ẹṣẹ̀ ifá. +yom_07508_01439327770 Ọkọ̀ akérò ni mo wọ̀. +yom_00610_01855639877 Aríṣekọ́lá ṣe dáadáa nínú ìdánwò. +yom_08421_01705164982 Ẹlẹ́nu róbótó bí orí ìgò. +yom_07049_00554372530 A gbàgbọ́ pé wọ́n jẹ́ ẹ̀mí àwọn ará ọ̀run tí wọ́n máa ń bẹ ilé-ayé wò. +yom_06136_00386272214 Ó darí ìpàdé náà láti ìbẹ̀rẹ̀ dé òpin. +yom_03034_01116358683 Bàtà mi dà? Níbo lo kó wọn sí? +yom_00610_02084800822 Wọ́n ti mú Èmánúẹ̀lì lọ sí ibi tí yóò ti kọ́ bí wọ́n ti ń ṣe bàtà. +yom_00295_00581377590 Òṣùwọ̀n mẹ́jọmẹ́jọ lóri omi. +yom_09334_00673066578 Kádírí ń jẹun bíi wọ̀bìà. +yom_08421_01952557156 Pẹ́pẹ́yẹ máa ń wè nínú omi bẹ́ẹ̀ wọ́n ń rìn lórí ilẹ̀. +yom_07505_00849493580 Ẹfọ̀n mẹ́ta la gbọ́ pé ọdẹ náà pa. +yom_00610_01205115570 Omí ti dànù. +yom_07505_00417269241 Ṣé oṣó ni ẹ́ ni tàbí iwin? +yom_02121_00689998337 Kí ló dé tí o sá aṣọ tútù sí inú ilé. +yom_07049_00866136075 Ìyá ọkọọ̀ rẹ ló ń pè ọ́. +yom_09334_01196567084 Ilé-iṣẹ́ ti bàbá Bọ̀dé tí ń ṣiṣẹ́ ló ṣe agbátẹrù ìdíje náà. +yom_00610_02053275484 Àwámárììdí ni Ifá. +yom_02436_00928708939 Aláriwo ọmọ ni ẹ́. +yom_02436_00701300944 Ta ẹ̀pà fún mi kí ebi má pa mí kú. +yom_08784_01964755890 A ṣì ní ọ̀pọ̀ ǹkan láti mọ̀ nípa àwọn àdán àti iye ẹ̀ya tó wà. +yom_03034_00228069615 Wọ́n pa ọmọ yín lẹ́kún. +yom_04310_01733840109 Ètò ẹ̀kọ́ alákọbẹ̀rẹ̀ ṣe pàtàkì. +yom_01208_00236356618 Mary Slessor ló dá’wọ́ kí a máa pa ìbejì dúró ní orílẹ̀-èdè Nìgéríà. +yom_01208_00748619928 Olùyàwòrán ni Olúwatóbilọ́ba. +yom_02121_01545187415 Àdúrà fún àwọn ológun Orílẹ̀-Èdè wa àti ìdílé wọn. +yom_08421_01357255384 Ọ̀gá ni Bísóyè níbi ká máa ṣe ìwádìí nípa ìmọ̀ èrò. +yom_08421_01458559247 Àpá kan wà lẹ́yìn ọrùn mi. +yom_07049_01700911293 Àgbàrá ti wọ́ oko bàbá àgbà lọ. +yom_02436_01193063263 Pàtàkì ni àdúrà nínú ohunkóhun. +yom_07508_00629646897 Ẹ̀yìn ilẹ̀kùn ni a máa ń kó ìgbálẹ̀ àti ìkólẹ̀ sí. +yom_03034_02036646410 Ìjọba ti ní kí wọ́n tilé náà pa nítori wàhálà tó ń ṣẹlẹ̀ lọ́wọ́. +yom_07508_02113659767 Orí ibùsùn yìí ni gbogbo ìṣẹ̀lẹ̀ yìí ti ṣẹlẹ̀. [abrupt] +yom_00610_00750798937 Orúkọ ìwé náà ni Mátìíkú. +yom_06136_01020370776 Òǹkà Yorùbá ni mo kọ́ àwọn ènìyàn níbi ìpàdé àná. +yom_03034_01911907681 Èmi ni mo bá àbúrò mi ṣe iṣẹ́ àmúrelé rẹ̀. +yom_03034_00010441476 Ẹnu-Ọwá la ti ń d’ádé. +yom_06136_00293511194 Òòrùn yìí mú gan-an o. +yom_00295_02006503027 Ibo lo ti lọ fọ’bọ́? +yom_09334_00857266005 Mo kórira irọ́ láyé mi. +yom_07049_01576880734 Mo fẹ́ran àgbàdo sísè. +yom_04310_01416816876 Ọlọ́mọ jogún ayé; Erín jogún ọ̀la. +yom_04310_01329108058 Àńjọláolúwa lorúkọ àmútọ̀runwá rẹ̀. +yom_08784_01415110186 Èdè ni à ń lò ní àwùjọ èèyàn púpọ̀, kí àgbọye àti àsọyé lè wà. +yom_00295_00700005909 Níbi tí mo rìnriǹ àjò lọ, ará oko gbáà ni wọ́n. Wọn-òn dá ohun kan mọ̀. +yom_00295_00862359161 Ikú á poníṣègùn bí ẹni tí o ̀m’egbò. +yom_00610_00868771372 Ìgbà wo ni wọ́n ma tó ṣe ọdún ẹ̀yọ̀. +yom_07049_00305661349 Bóyá màá lọ ra mọ́in-mọ́in àt’ẹ̀kọ. +yom_08784_01965579882 Ọpọlọ ọmọ yẹn dà bíi ti Dámilọ́lá. +yom_08421_00500408617 Ọmọ ọba kìí sùn ìta. +yom_03034_00791101288 Ọ̀kan ni ènìyàn ó f’ọwọ́ mú. +yom_07505_00237028149 Imú ọmọ ìkókó náà dọ̀tí. +yom_04310_00655668377 Olorì ní kí a pe àwọn ẹ̀sọ́ wá. +yom_00610_00324773543 Ọ̀dájú n'ikú, bó ṣe ń pa lọ́tùn-ún ló ń pa lósì. +yom_00295_00803217198 Ọmọbìnrin kán wà, ó bímọ méjì, orúkọ àwọn ọmọ náà ni Ọmọ́ṣewà àti Adétutù. +yom_01208_00109215192 Àbùbùtán bíi omi òkun. +yom_08784_01555446232 Ṣé o ti rí ẹran ajá rí. +yom_02121_00210178810 Tí ẹ bá wọ inu ilé wa, àwòrán kan wà lẹ́gbe ibùsùn; Ẹ bá mi múu wá. +yom_03397_01376360817 A ti gé igi kan lulẹ̀. +yom_08421_00321336704 Ọmọ màmá ẹ̀ ni Túndé. +yom_06136_01842897105 Mo máa wà ní agbègbè Tinúbú ní agogo mẹ́wa ọ̀la. +yom_09334_02067295485 Ọdúnm̀bákú ni wọn pe ọdún náà, nítorí àwọn ohun tó ṣẹlẹ̀. +yom_07505_01797491011 Èèyàn mélo lo fẹ́ rí? +yom_03397_00742019698 Mo ò tíì wẹ láti àárọ̀. +yom_08784_00859217672 Ìwọ náà ti délẹ̀ yí, omí ti ta síi díẹ̀. +yom_06136_01797301507 Ọ̀dẹ̀ burúkú l’ọmọ Ajíbóyè yìí tó dá mi dúró. +yom_07505_00715844895 Fọlámí Ọlájídé lorúkọ ọ̀rẹ́ mi àtàtà. +yom_03034_00389072605 Gbogbo wa ni ọ̀rọ̀ yìí kàn. +yom_09334_00936642366 Jàlabíà dúdú ni mo wọ̀ lọ kí ìrun yídì ní ọjọ́ ọdún. +yom_06136_00074953127 Ikú á sọ gbogbo ilé d’ahoro. +yom_04310_01007763877 Òkè pọ̀ ní Ìṣẹ̀yìn ju Ọ̀yọ́ lọ. +yom_09334_01393187332 Ilé ìjọ ni a ti ṣe ọjọ́ ìbí ọ̀rẹ́ mi. +yom_02484_02142632962 Nígbà tí ogún wọ ìlú, abẹ́ àpáta ni èmi àti àwọn mòlẹ́bí mi fara ṣọkọ sí. +yom_01523_00762007073 Nínú èrò tí Elédùmarè fi jíǹkí ẹ̀yà Yòrùbá ni ọ̀nà tí a fi ń ṣe òǹkà tó múná dóko. +yom_00610_00453295415 Mọ́ṣáláṣí wà ní ara ilé òhún. +yom_00295_00873388232 Ata ni Bọ́láfadé ń tà láti rán ara rẹ̀ lọ sí ilé-ìwé. +yom_00295_00724947800 Àwọn ọmọ tí kò bá ti f’etí sílẹ̀, ẹgba ni irú wọn máa ń jẹ. +yom_09334_00861134524 Àwon ìyàwó ilé náà ṣàbòsí ìyálé wọn. +yom_00610_01843860486 Ọmọ Ọba ni Adédọlápọ̀. +yom_07505_00172057367 Ẹ yan aṣojú láàárín yìn. +yom_08421_00418454270 Bùgan tí bàbá mú wálé dùn púpọ̀. +yom_06136_00990047285 Fálànà jẹ́ ògbóǹtarìgì agbẹjẹ́rò àgbà ní orílẹ̀ èdè yìí. +yom_03397_00332537205 Àwọn mẹ́sàn-an ni wọ́n jọ ń dá àjọ náà. +yom_00295_00099754894 Gbàjarè! Wọ́n ń wá ọmọ'bìrin kékeré kan o. +yom_00610_01955642474 Ilà gọ̀m̀bọ̀ ni Tìmílẹ́yìn kọ. +yom_01523_02052744662 Wọ́n wáa níyẹ̀wù àgbà. +yom_04310_01789265150 Màlú mẹ́ta la pa fún ọdún. +yom_02484_00441035951 Ẹ̀gbín ni ká má bọ̀wọ̀ f’’ọ́ba. +yom_07505_00820187801 Ọlọ́run má jẹ a ṣòfò èmí. +yom_08421_00307169252 Ìfẹ́ tí a fẹ́ adìyẹ ò dẹ́nu. +yom_01523_01284150094 Fi sí àarín ọkọ̀ yẹn. +yom_00295_02056888342 Kí la lè jẹ lówurọ̀ yìí, ebi gan ni mo bá jí. +yom_00610_01866214145 Nínú̀ ẹ̀wọ̀n ọdún méjìlá tí wọ́n dá fún Tájù, ọdún mẹ́wàá ló lò níbẹ̀. +yom_02436_01538779565 Àkàndùn ló mú Ìyániẃurà lọ́wọ́. +yom_02436_01534267201 Ìyàwó Adéfarasín bàá nínú jẹ́. +yom_01208_01378886596 Ọ̀lẹ ni ọmọ yẹn, bí mo ṣe gbọ́. +yom_09334_02069558960 Àwọn mélòó ló wà nínú yàrá yìíi? +yom_01208_00480893374 Orin àti ìlù ṣe pàtàkì níbi eré ìdánilárayá. +yom_04310_00216530353 Pè mí l’órúkọ mi, Ṣaléwá. +yom_01523_00383617355 Orí ló ń sin ni tá fi ń kọ́lémọ́lé. +yom_08784_00821931402 Ọ̀dẹ̀ ò wù mí lọ. +yom_01208_01466942069 Kí Ọlọ́run ṣe ohun gbogbo ní dédé. +yom_03034_00763007047 A fẹ́ lọ dá aṣọ náà padà sí ilé aránṣọ. +yom_00295_01804506403 Akíntọ́pẹ́ jẹ́ àna sí Ògúnlésì. +yom_02436_01798286718 Orí ọ̀pẹ ni a ti máa ń rí ẹmu. +yom_01208_00136240102 Ó ti padà dé láti òkè òkun. +yom_04310_01048959711 Jákọ́bù ń sáré yípo ọgbà náà. +yom_00610_00455420976 Ọ̀mùtí paraku ni Ọláṣayọ̀. +yom_02436_00715757019 Ó ti rẹ̀ wá púpọ̀. +yom_00610_01434916828 Lọ ra ẹ̀pà àti gúgúrú wá. +yom_09334_01494947492 Wọ́n ni ilé àwọn Jẹ̀lílì l’àwọn ń lò. +yom_01208_00610197141 Aṣọ àdìrẹ pọ̀ ní ìlú Abẹ́òkúta. +yom_09334_00305642474 Ọjà ńlá ni Àkẹ̀sán jẹ́. +yom_00295_00996793569 Mi ò n’ífẹ sí àpèjọ àbòsí. +yom_02121_01642377449 Ẹ wo bó ṣe da ẹnú sílẹ̀. +yom_00295_01402978861 Mo ga ní ìwọ̀n ẹsẹ̀ bàtà márun pẹ̀lú díẹ̀. +yom_04310_00981044538 Ẹ̀sìn òkèrè ni ẹ̀sin Krìstẹ́nì. +yom_02484_01334574030 Ẹnikẹ́ni tí ìwọ́ bá nípá láti ṣe ìrànlọ́wọ́ fún òun ni ẹnìkejì re. +yom_04310_00971636263 Ṣ’ara gírí kí o lo àwọn ògùn tí Dókítà kọ fún ẹ. +yom_00295_02040290647 Ẹ̀rín pa mí gidi nígbà tí mo gbọ́. +yom_07505_00482042486 Ní ọjọ́ kan, ó múra oko ọdẹ, pẹ̀lú ìhámọ́ra. +yom_08784_01994577354 Mo ṣèṣẹ̀ dé láti Kalifóníà ni. +yom_07049_00939672341 Fi ara balẹ̀ ṣá, má ṣè’jọ̀gbọ̀n. +yom_08421_00139174380 Wọn ó tíì jáde ní ilé ìwé àwọn Démiládé. +yom_00295_00012717311 Tọkọtaya ara ilẹ̀kùn náà ti bàjẹ́. +yom_00295_00220077901 Ayélàágbé ò fẹ́ràn kí ó máa rí àwọn àlejò ní ilé rẹ̀. +yom_08784_02008752195 A ṣèbà fún Ọba tó layé tó lọ̀run. +yom_01523_00823489175 Wọ́n ti ti ilé ìtajà yín pa. +yom_04310_01237282335 Òkuta tó bá lórí lo mú kí ẹyín mẹ́ẹ̀ẹ́dógún fò yọ lẹ́nu rẹ̀. +yom_03034_01614905881 Iṣẹ́ aránṣọ ni isẹ́ tí Lọlá ń kọ́. +yom_04310_01044682943 Ó dára kí ìyàwó máa ṣisẹ́. +yom_07049_00029708044 Ibo ni Sànúsí wà? +yom_02121_01663709904 A ti mú Doyin lọ sẹ́nu ìkọ́ṣẹ́. +yom_08421_01962445886 Mo ò ní já ẹ ku’lẹ̀. +yom_06136_01510824765 Ibí lo sùn mòjú. +yom_06136_00080388109 Ibo lẹ fi ọ̀bẹ sí? +yom_00610_01125538231 Ìtan fèyíkọ́gbọ́n ni eléyìí fún gbogbo ẹ̀dá Ádámọ̀. +yom_02484_01480541024 Olórí ilé ló lágbára àti dáríji ẹni tó bá dá irú ẹ̀ṣẹ̀ yìí. +yom_09334_00045442417 Mo tọrọ àforíjì pé mi ò lè dé ibi tí wọ́n wà lónìí. +yom_02121_00319176995 Ìyàwó ilé tí ò mọ oúnjẹ sè, kí ni ká ti gbọ́? +yom_02121_01352279665 Abọ̀rìṣà ni yín tẹ́lẹ̀. +yom_07049_01259466954 Ojúmọ́ ire, ojúmọ́ ayọ̀. +yom_01208_01404835296 Ẹ ò ká aṣọ wọ’lé kí òjò tó bẹ̀rẹ̀. +yom_03034_00513461231 Ṣòkòtò olómi aró ló wọ̀ lána. +yom_03034_01575312581 Ó fẹ́rẹ̀ má sí ìlú ilẹ̀ Yorùbá kan tí wọn kìí tií ṣe ọdún ìbílẹ̀ níbẹ̀ mọ́. +yom_07505_00046942163 Ẹdun náà ni wọ́n pè ní ọ̀bọ. +yom_02484_00419337325 Motúnráyọ̀ ló jáwé olúborí. +yom_09334_00832525318 Ògì ni màma Pamílẹ́rin ń tà. +yom_00610_01132427614 Koríko pọ̀ ní agbègbè náà. +yom_08421_01990905309 Ìjíròrò yó ti máa lọ lábẹ́lẹ̀ lori ètò ìdìbò tí [hesitation] ń bọ̀ lọ́nà. +yom_07508_01180990019 Nígbà tí ó di òru, Ìjàpá múra, ó gbé agbọ̀n kan rù. +yom_07508_01790608095 Ohùn ọmọ náà dùn. +yom_08784_01322726195 Àwọn ohun èlò akọrin ni ìlù, fèrè, jìtá, àti agogo. +yom_08421_00350518548 Igi gogoro ni wọ́n gé. +yom_00295_00666649904 Ẹ̀sìn ilẹ̀ wa ni ẹ̀sìn Àbáláyé. +yom_02436_01951602507 Ẹ̀yà Ìgbò ni ẹni tí Mọ̀rúfù fẹ́. +yom_01208_00519809786 Obì jẹ́ ohun ìpanu àwọn àgbàlagbà. +yom_03034_00427324499 Ọlọ́run nìkan ló mọ ohun tó ń ṣe fún àwọn ará ìlú. +yom_02484_01938363849 Ijó, ẹ̀rín, ayọ̀, àti ọpẹ́ ló yẹ wá. +yom_04310_00260318438 Àwọn ọmọ ẹgbẹ́ kò káàárẹ̀ láti máa wá sí ìpàdé. +yom_07049_00178547600 Àwọn ọmọ ogun orí omi wà níbẹ̀. +yom_01208_01899731466 Olówó ló layé ni wọ́n máa ń wí. +yom_04310_00866563516 Kú iṣẹ́ takuntakun, ìwọ ọmọ yìíì. +yom_08784_00328061139 Fúnmi dé ìgò s’ójú. +yom_07508_00520149587 Ìlù àti agogo máa ń sábà jẹyọ nínu orin. +yom_09334_00822812376 Àwọn ọmọ kékeké ti pọ̀ jú ní àdúgbò yẹn. +yom_02484_00042594609 Mo fi ẹnu kòó l’ẹnu. +yom_09334_01934823276 Ó fẹ́ pẹ́ láyé ju bí ó ti yẹ lọ. +yom_00295_01444086181 Kí ni ìdí tí àwọn èyàn mìíràn fi máa ń jẹ́ àfín? +yom_04310_01088045075 Àlùfáà ń wàásù fú àwọn ọmọ ìjọ. +yom_09334_01740820195 Àti ọjọ́ pípẹ́ làwọn baba wọ́n ti ń rejú ogun. +yom_07505_00313635721 Fásitì Èkó ni ilé ẹ̀kọ́ gíga tí Àrẹ̀mú gbà pé ó dára jù ní orílè èdè yìí. +yom_07505_01893585555 Orí ń yún mi láti ìjẹta. +yom_00610_01525645610 Àsáwọ̀ wà nínú oúnjẹ náà. +yom_02121_01777314155 Bàbá kan wà tó sọ fún egúngún pé kí ó jíṣẹ́ fún ọmọ òun pé kó fi àgùtàn rúbọ. +yom_01208_01867186819 Àmínátù ní òun fẹ́ jẹ́ kí mo fẹ́ òun gẹ́gẹ́ bíi ìyàwó. +yom_08421_01306989105 Àkàndé ti kiri ọjà lọ. +yom_01523_01202984853 Àkọtọ́ òde òní yàtọ̀ sí ti àtijọ́. +yom_07505_00579423714 Ẹ kú àṣekù ọdún. +yom_08784_01855888561 Ó nífẹ láti máa mú ajá rẹ̀ kiri. +yom_04310_01397844421 Ení bí ení lọ́mọdé ń kawó. +yom_02484_00207524819 Ó ṣì jẹ ẹgbẹ́ ní àpo kan. +yom_02121_01893640880 Òjó ti ṣú láti ìdájí, kò dẹ̀ tíì rọ̀. +yom_04310_01782056209 Ìfẹ́ mi si ẹ kì í ṣe tẹ̀tàn rárá. +yom_06136_00920807766 Awakọ̀ náà ti dí òpópónà. +yom_03397_01185231523 Kòsọ́kọ́ ni àbígbẹ̀yìn bàbá tirẹ̀. +yom_00610_01212953550 Ṣé ó ń dùn mọ́ ẹ? +yom_08784_01368443599 Ìgbà yí ni ọ̀la mi tó kún. +yom_01523_00906421838 Mo júbà àwọn tó layé, àwọn tọ́ ti wà k’áwa tó d'áyé. +yom_02121_00059074559 Mi ò tíì mọ oun tí mo máa jẹ lónìí. +yom_07505_01016357100 Gàní ti lọ sí Ìlúu Mẹ́kà. +yom_02121_02049095677 Owó ni kókó o. +yom_02121_01719214746 Àmọ̀jù ní ń b’ẹkùn sàárè jẹ́. +yom_01208_01871593788 A máa lọ gba ilé sí Àkóbọ̀. +yom_07508_00577892423 Kí ló dé tí o jí Bídèmí sílè. +yom_07508_00762047642 Ifo ló mú Yéwandé lójú. +yom_03034_00275928826 Tó bá yá ẹẹ́ máa bú'jọba, ṣóun tó ṣe ó bójú mu? +yom_00295_00725663214 Màmá ni ki a máa fọ ẹsẹ̀ kí a tó bọ́ sórí ibùsùn. +yom_02121_00437973576 Ó ti fi orí gbé òwú aláǹtakùn. +yom_07508_01571809569 Wọ́n mú ọmọ náà ṣeré. +yom_00610_01079386645 Àt’àná ni mo ti ń sùn. +yom_09334_00922149296 Inú igbó ni ẹfọ̀n máa ń wà. +yom_00610_01976240685 Bàbángídá ti ra mọ́tò kó tó lọ sí Hajj. +yom_02121_01099526752 Mo máa dúró dè ẹ́ ní ẹ̀bá ọ̀nà. +yom_08421_00439142911 Kátikàti bíi ọbẹ̀ onírẹsì ni gbogbo àwọn ọmọge ìṣẹ̀yín ń ṣe. +yom_02484_00803394816 Ọ̀làjú àti ẹ̀sìn àtọ̀húnrìnwá ti ń mú kí àwọn àṣà àti ìṣe wá dẹnukọlẹ̀. +yom_08784_01928806076 Bẹ́ẹ̀ la rí àwọn mìíràn tí ara wọ́n balẹ̀. +yom_09334_00444693824 Owó tó san ti pé. +yom_08421_00869088347 Ẹ̀yin àtùpà náà ti fọ́. +yom_00295_00275172322 Má jẹ́ kó dùn mí. +yom_06136_00140292369 Èyí tí ó wá tún ṣe pàtàkì jùlọ ni wípé àwọn eniyan gbàgbọ́ pe ẹ̀mí ń bẹ lẹ́yìn ikú. +yom_03034_00779424400 Kò fẹ́ kí á ṣeré ìfẹ́. +yom_08784_00683982952 Kí ló dé tí o ní ìkàánú fún mi tó bẹ́ẹ̀? +yom_02436_01353362184 A ti parí ìjà wa lánàá. +yom_07049_00180309358 Ó dà bí ẹni pé dàda ni ọmọ náà fẹ́ jẹ́. +yom_06136_01446187454 Arẹwà ni ọmọbìrin náà ní gbogbo ìgbà tí mo ríi. +yom_04310_01189473556 Ìwọ-oòrùn Gúsù orílẹ̀-èdè Faransé. +yom_08421_01708699375 Akókóró ló múu l’ẹ́yìn. +yom_04310_01573522146 Ọ̀nà ibo ni Admiralty wà? +yom_09334_00167629780 Ẹ̀gbọ́n mi ti ṣe ìkómọ ní ọ̀sẹ̀ tó lọ. +yom_01208_00592577753 Mo nílò èsì ìdánwò gidi fún ìtẹ̀síwájú ẹ̀kọ́ mi. +yom_08784_01760811678 Ọ̀gá ni Bísólì Ẹlẹ́shin lọ́jọ́kọ́. +yom_01208_00550202474 Akẹ́kọ̀ọ́ ìmọ̀ èdá èdè lìgúísììkì ni mo jẹ́. +yom_08784_00872735207 Kílàsì àkọ́kọ́ ni a ti kọ́ nípa Fònọ̀lọjí. +yom_07508_01969958196 Mo gbádùn yàrá tí mo wà. +yom_03034_00211138659 Tutù ní èjí ní eyín rẹ̀. +yom_08421_00383274940 Ẹ fún ọmọ l’ọ́mú fún oṣù mẹ́sàn-án. +yom_04310_01093720849 Bí a ṣe ń gbà ó nínú wàhálà kan lo ń bọ́ sí òmíràn. +yom_08784_01592165107 Mo fẹ́ jẹ̀’ka. +yom_08421_02046466727 Ilé ìtura tí a dé sí tóbi jọ̀jọ̀, ìlú Ọ̀yọ́ ló wà. +yom_08784_00946854537 Ilé ta fi ìtọ́ mọ, ìrì ni yóò wọ̀ọ́. +yom_09334_01724595781 Ọkọ ìya Bádé ti ṣaláìsí. +yom_04310_01703374574 Akitiyan àwọn ajíhìnrere tí wọ́n ṣe àkọsílẹ̀ àkotọ́ èdè Yorùbá kò ṣe é fọwọ́ rọ́ sẹ́yìn. +yom_03034_01657340547 Òjo pa wá dé ìbàdàn ni níjọ́ náà. +yom_03034_02137475519 A ti tọ́ka sí igi obì gẹ́gẹ́ bí igi owó pàtàkì kan láwùjọ Yorùbá. +yom_07505_01326785119 Àtakọ àtabo, èwo ni kì í ṣ’ọmọ. +yom_01208_01130805551 Kí ló dé tí wọ́n ṣẹ́ oyún fún-un? +yom_02121_01783333043 Olámìdé ti gbé àtẹ wàhálà rẹ̀ dé. +yom_07508_01077551043 A kọ́kọ́ júbà ki a tó lọ òde eré. +yom_08421_01497838425 Èkée Shíttù ti pọ̀ jù. +yom_00295_00336522760 Ọmọ náà ní ìgbéraga púpọ̀. +yom_00610_02143975402 Mo ti pinu láti má bèèrè ìrànlọ́wọ́ láti ọwọ́ enìkankan. +yom_08421_01986900203 Ọba nìkan ló lè jó sí ìlu gbẹ̀du. +yom_00610_01215408282 Tó bá di ọdún tó ń bọ̀, mo fẹ́ lọ ṣe ọdún Kérésì ní ìlú mi. +yom_07508_01809240756 Ejò paramọ́lẹ̀ burú púpọ̀. +yom_04310_01743306004 Mo fẹ́ ra ẹyin bíbọ̀. +yom_02121_00652214627 Agbejọ́rò náà kú l’ówurọ̀ yìí. +yom_02121_01228047902 Orúkọ ṣe pàtàkì, ó ṣe kókó; kò sí nǹkan tí a dá tí kò ní orúkọ. +yom_01208_01663739947 Tí mo bá rí aláboyún, àyà mí ma ń là gàràgà. +yom_01208_00599789243 Awólọ́wọ̀ ṣe díẹ̀ nínú ètò òṣèlù orílẹ̀ èdè yìí. +yom_00295_00721744525 Alájẹṣu ọmọ ni Táíwò. +yom_02484_00841559974 Ẹ má lọ sínúu'gbó lóru o. +yom_08421_01567028528 Wákàtí kan ni mo fún ẹ láti dé ibí. +yom_04310_00067333103 Ṣé o wà ní orí Twitter? +yom_08421_00837672219 Ejò náà gbé ẹran mì. +yom_08784_00269988761 Àwọn alápatà jẹ́ àwọn ènìyàn tó máa ń pa ẹran fún títà. +yom_01208_01750388120 Orísirísi ìtàn ìwásẹ̀ ni ó sọ nípa àwọn orísun wa, láti òkè dé’lẹ̀. +yom_08784_01381441667 Ìmọ̀ràn náà dára, a ó múu lò. +yom_03034_01431651662 Jẹ́wọ́ ẹ̀ṣẹ̀ rẹ fún waà. +yom_03034_01763492281 Wọ́n lọ ra ìrèké. +yom_02121_01606560487 Nígbà tí mo dé ilé wọn, bàbá wọn ni mo kọ́kọ́ rí. +yom_08421_00409214249 Mo ò lè wá kú nítorí iṣẹ́ ẹni ẹlẹ́ni. +yom_00295_01606240263 Mo sọ fún Ajírébi pé tí ó bá ti ráyè kí ó wá kí mi nílé. +yom_03034_01318895762 Òòrùn ò tíì wọ̀ tán. +yom_09334_01968339391 Bàbá mi ní ọ̀rọ̀ kán wà tí òun fẹ́ bá mi sọ. +yom_07505_00044171147 [breath] Ọ̀pọ̀lọpọ̀ ọmọ ni wọ́n ma ń bá ìyá wọn rẹ́ ṣùgbọ́n báyi kọ́ lọ̀rọ̀ rí fún Jayé. +yom_00610_01442561638 Fájídé ò ní ọpọlọ bó tilẹ̀ wù kó kéré mọ. +yom_07505_00023944927 Wọ́n ta ọfà fun jagunjagun náà láyà. +yom_01523_02088776890 Ó ní ìmọ̀ púpọ́ ní ọpọlọ. +yom_08784_00278467841 Ìdí tí mo fi fẹ́ràn ayé oko ni pé gbogbo nǹkan ló wà létòlé. +yom_01208_01408955045 Màmá mi, mo ti yó. +yom_02484_00593913844 Ọ̀pọ̀lọpọ̀ ohun ni mo rí kọ níbi ìpàdé yẹn. +yom_07505_01853542095 Ajá máa ń jẹ ìgbẹ́ lójú ọ̀nà. +yom_03034_01689635070 Gbogbo òbí ló ń gbàdúrà ọmọ tó máa sanjọ́. +yom_03034_01496456227 Ìgbà tí ó ti ilẹ̀ mímọ́ dé ni ó ṣe sàráà. +yom_00295_00054866397 Mo dúpẹ́ ore àtìgbàdégbà olúwa. +yom_03397_01839425777 Dadakùádà jẹ́ ọ̀kan lára ọ̀na ìgbé àṣà àti ìṣẹ́ ilẹ̀ Yorùbá lárugẹ. +yom_04310_00467020071 Àkàrà àti Ògì òyìnbó ni ìyàwó mi sè l’ówurọ̀ àná. +yom_04310_01672980641 Oríṣiríṣi ẹja ló wà níbẹ̀. +yom_08421_01239481855 Mo ti gbọ́ ìmọ̀ràn ẹ. +yom_00295_01634346315 Àmàlà ni Simí jẹ fún oúnjẹ ọ̀sán. +yom_08421_01180764639 Ọ̀gbẹ́ni, fi mí sílẹ̀ jọ̀ọ́. +yom_04310_00028596448 Inú kòtò ni mọ́tò náà já sí. +yom_00295_00358190062 Ọ̀mọ̀wé Ọládèjì wà nínú ọ́fìsì rẹ̀. +yom_07508_00719536244 Ológbò náà ń lé eku kiri nínú ilé. +yom_07505_01726861980 Àwọn wèrè l’àwọn olóṣèlúu wa o. +yom_01523_00630204368 Fúnmi ti sọ̀rọ̀ nípa òkè kan fún mi rí níbi ìpàdé kan ní Ìkòyí. +yom_01208_01650468848 Ó fún-un lọ́tí mu. +yom_07505_01010882409 Ẹ má jẹ kí n fẹ̀fun. +yom_02484_00745643273 Ìgbàgbọ́ mi dúró lórí olúwa. +yom_00295_00973380766 Ẹgbẹ̀rún ahọ́n kò tó láti yìn ọ́. +yom_03034_00778554989 Asọ̀rọ̀ sọ bótó ni Kòfowórọlá. +yom_03397_01751668117 Mú ṣíbí yẹn kúrò nílẹ̀. +yom_01208_00802242885 Moyọ̀ àti Bíbí ń bínú sí ara wọn. +yom_01523_01849720673 Ó dàbí ẹni pé àgùntàn Bísí sanra ju ti Bọ́lá lọ. +yom_06136_00900668750 Ikún wà ní imú rẹ. +yom_08784_00320911436 Ẹ̀rọ ayélujára máa ń parọ́ nígbà míràn. +yom_06136_02060261766 Moróunkẹ́ fọ́ ọkàn mi sí wẹ́wẹ́. +yom_00610_01058564775 Mo ra ìwé mẹ́ta níbẹ̀. +yom_08784_01657941598 Ní ìgbà láíláí, ọ̀rẹ́ ni ìjàpá àti àdàbà jẹ́ sí ara wọn. +yom_00295_00195528151 Àwọn ọjà yìí ò tutù. +yom_07505_01562111994 Tí mo bá ní mi ò rin ìrìn àjò báyi rí, irọ́ ni mo pa. +yom_07508_01901526502 Ta ló gbé ọmọ jù sórí àkìtàn? +yom_09334_01693570278 Ikú á pa babaláwo bí ẹnI tí ò gbọ́fá rí. +yom_06136_01808207611 Iná gbé Adétiba nígbà tó fọwọ́ kan òpó iná. +yom_01208_01499827517 Lọ fá irun rẹ kó tó wù. +yom_00295_01472739218 Táyé mọ ìwé ju kẹ́hìndé lọ. +yom_09334_01965207567 A dúpẹ́, Ṣé wọ́n ń bẹ lálàáfíà ara? +yom_09334_00138039360 Bíbíire, Tìmílẹ́yìn àti Ṣẹ́gun jẹ́ ọ̀rẹ́ tímọ́tímọ́. +yom_03397_01431436647 Púpọ̀ nínú àwọn ọmọ Nàìjíríà ni wọ́n máa ń jẹ ìrẹsì. +yom_00295_00548509757 Ìlú wa ni wọn yó ti ṣe àṣekágbá òkú màmá àgbà kékeré. +yom_02436_00301172841 Gbọ̀gàn àṣà ìbílẹ̀ ni ijó náà ti wáyé. +yom_02484_01414325790 Bá mi bu omi mímu wá nínu ìkòkò tó wà l'ábàáwọlé. +yom_00295_00943694618 Fún mi ní aṣọ yìí, mo ní’fẹ rẹ̀. +yom_03397_00526371421 Ohun tí ó dára ni láti wà pẹ̀lú enìkan tì èèyàn fẹ́ràn. +yom_09334_00652380149 Lọ fọn ikun’mú rẹ dànù. +yom_03034_01604613434 Ẹ gba Jésù s’ayé yín. +yom_08421_01419614822 Ó yẹ kí n yọjú síi yín láìpẹ́. +yom_03034_00374297711 Wẹ̀mímọ́ rò pé òún gbọ́n. +yom_08784_00378471014 Kan ìlẹ̀kùn pẹ̀lú sùúrù. +yom_00610_00207358726 Baba ńlá ìyà ni won ìbá jẹ tí m bá rí wọn mú. +yom_01208_01235079614 Ìgbà tí Olùwa rẹ̀ dé ni Fadérẹra dákẹ́. +yom_07049_01092361563 Hoògùn abẹnu gọ̀ǹgọ̀ ni wọ́n ń pèé. +yom_07508_01590641493 Mo fẹ́ràn irun orí rẹ̀. +yom_03397_01023928001 Orin náà ń fa ọkàn mi. +yom_08784_01134309283 Ó bí ìkẹta, bákan náà tún ni. +yom_02484_01744777048 Mò ń lọ sí ọjà àwọn eléwé ọmọ. +yom_00610_01941449940 Èdè mẹ́ta ni mo gbọ́ láti kékeré. +yom_09334_00334143599 Wàhálà l’ọ́tùún, rògbòdìyàn l’ósì. +yom_09334_00181171924 Ta ló fi ọṣẹ síbí? +yom_06136_00956618144 Ó ti dùbúlẹ̀ sórí ìbùsùn. +yom_03034_02085750267 Bọ̀dá Ràṣídì ni wọ́n fún Òkìkí ní owó oúnjẹ àárò yìí. +yom_04310_00341276759 Oyún náà ti pé oṣù mẹ́jo, Ìyá Bọ́lá oò ní pẹ́ já ẹrù náà kalẹ̀. +yom_02484_00263547793 Bíléèdì gé ọmọ náà ní’ka. +yom_02484_00770349984 Ilẹ̀kùn yàrá Tádé ti bàjẹ́. +yom_01208_00743266915 Jẹ́ ka jọ lọ jẹun níta. +yom_03034_01772889151 Irú àṣìtẹ̀ burúkú wo ni èyí? +yom_02484_01417319851 Àṣá gbé ọmọ adìẹ fò lọ. +yom_07505_01264896815 Abíọ́nà ní òun lọ rí Adé ní ago mẹ́wa òní. +yom_01208_00740667051 Ẹniyàn mẹ́rin ló ti ra ọkọ̀ tuntun láti ọdún tó kọjá. +yom_09334_01962555696 Nínú gbogbo ilé ìwòsàn agbègbè yí, ti ọ̀nà òpópónà òkìtìpupa ni ó dára díẹ̀. +yom_07508_00108608081 Ọmọ náà kò m’ará mú, àfi bíi ará oko. +yom_07508_00674666895 Ọ̀gá ni Sàmù nínú ká ya àwòrán aláràmbar. +yom_07505_01699823013 Ọpọlọ yín ni mo fẹ́ yá lò. +yom_06136_00327339250 Orúkọ Yòrùbá jẹ́ àkàìmọye. +yom_04310_01644923220 Ọ̀rẹ́ mi tuntun tí mo ṣẹ̀ pàdé ní patí kan ni. +yom_01208_01390796101 Ikú kò go’owó, kò gb’ẹ̀bẹ̀. +yom_01208_01368057340 Ọlárótìwọ́n sùn fọnfọn bí ẹ̀fọ̣n. +yom_07505_00550362230 Kọ́lápọ̀ jábọ́ sínu gọ́tà. +yom_02121_00968107226 Ẹni tó bá ń jini láya kò lè fojú ire wo’ni. +yom_08784_00620139062 Ọmọ ẹlẹ́pà ti ń sá lọ. +yom_01208_01795496177 Ọmọ bàba olówó ni mí. +yom_00610_01008803339 Kọ́bọ́ọ̀dù rẹ̀ ti bàjẹ́. +yom_01208_00003694961 Oyíndà ti sọnù lọ́nà. +yom_01208_02001837444 Ó ń bọ̀ wá, àwọn làá dẹẹ́ dèé. +yom_03397_00821101412 Ìkọta ni ilé tí Similólúwa ń gbé wà. +yom_00295_01516697189 Oúnjẹ kékeré ló sè lọ fún-un. +yom_09334_00390581647 Ẹsítẹ́tì náà rẹwà púpọ̀. +yom_01208_00347783993 Gbogbo àwọn ìṣòwò pátápátá jẹ́ ti ìjọba. +yom_07049_01606231622 Ní ọjọ́ ìbí Adérónkẹ́, pẹ́pẹ́yẹ p’ọmọ, a f’ilé pọtí, a f’ònà rokà. +yom_01523_01798327026 Ọlámide a máa fi gbogbo ọ̀rọ̀ ṣàwàdà, àwàdà sì máa ń kóbáa nígbà mìíràn. +yom_00295_00068075043 Ilé-ifẹ̀ ni ọdún Ifá ti máa ń bẹ̀rẹ̀ káàkiri gbogbo àgbáńlá ayé. +yom_00610_00390435055 Ikú Olóògbé Dúró Ládiípọ̀ dun gbogbo ìlú. +yom_00295_01846007335 Ọlórun má jẹ ka wáyé òfìfo. +yom_02436_01642623780 Ìbọn jẹ́ irinṣẹ́ pàtàkì fún àwọn ọde. +yom_01208_01968509398 Mo rí àwọn alábójútó ilé ìwòsàn kan tí ó ń mú kí ohun tí a gbà sílẹ̀ dára. +yom_04310_00251924654 Jẹ́ kí ó ṣe bí ó bá ṣe fẹ́. +yom_00295_00428773031 Tiwátọ́pẹ́ fẹ́ Tiwaladé. +yom_08784_00334479509 Ó yẹ kí a gbádùn ayé ni. +yom_08421_00044394656 Ṣé gbogbo ìgbà ni òtútù máa ń mú ìwọ ni? +yom_04310_00935632064 Gbogbo àwọn ọ̀dọ́ ló fẹ́ sá kúrò l’órílẹ̀-èdè yíì. +yom_08421_01108237170 Kí ló dé tí ò ń tẹ̀ mí lọ́rùn? +yom_08784_02117083096 Bàbá Ọba ni wọ́n ń pè wọ́n. +yom_01523_00927691986 Iṣẹ́ tó dára ni iṣẹ́ ìmọ̀ ẹ̀dá èdè. +yom_07508_01963431820 Wàhálà ti mo fi ara ṣé pò lénìí. +yom_09334_01929843062 Nígbà kan rí, ó ní’fẹ̀ẹ́ẹ Bọ́lá. +yom_01208_00537794162 Mo rí àrà meèrírí, ó kọjá ohun tí mo ti gbọ́ tẹ́lẹ̀. +yom_08421_00859421512 Iná ìjọba máa ń wà dada ní agbègbè Ilémobọ́lá. +yom_04310_00363799652 Orí mi ni kẹ́ẹ wò. +yom_03034_01108250737 Ọ̀gágun Abéégúnrín àti àwọn ọmọ ogun àpapọ̀ ti lọ sójú ogun. +yom_01208_00965521122 Mọ́ṣáláṣí ni mo ti lọ gba kọ́kọ́rọ́ lọ́wọ Bọ̀dé. +yom_08421_01153477805 Báwo ni ọmọ ogójì ọdún ṣe máa fẹ́ ọmọ ọdún mẹ́rìndínlógún? +yom_00295_00169173375 Èyí ni ó mú wa fi òwe wá àwọn oun tó sọnù sínú ọ̀rọ̀ Yorùbá. +yom_07505_01680519436 Ẹni yára lòòṣà òkè ń bá dá sí tirẹ̀. +yom_01208_00877350591 Mo máa lọ sí Àbújá ní oṣù kẹ̀sàán. +yom_08784_01106209021 Àwọn bàba bàbá mi ló tẹ ìlé yìí dò. +yom_08784_01571599993 Kí ni ìdí pàtàkì tó fi yẹ kí a kọ́ ilé yìí? +yom_09334_00171721525 Ibi tí mo fẹ́ yà ṣì pọ̀ gan. +yom_00295_01762428209 Padà wá ní ọ̀la jàre. +yom_00610_00853828643 Ta ló jẹ gbogbo oúnjẹ inú abọ́ tán? +yom_03034_00583522172 Ilé títúnṣe àti ọmọ títọ́ ni iṣẹ́ ti àwọn ìyá nígbà yẹn. +yom_02484_00448533237 Dáfídì ní ọmọ bàba olówó ni òún jẹ́. +yom_00610_00294361933 Lára àwọn ohun tí a fi máa ń dáná nílé ni ìkòkò àti àdògán. +yom_08421_00131681191 Ibà ló ń ṣe é látàárọ̀. +yom_02436_01609851330 Ǹjẹ́ wọ́n ti kọ ilà fún ọmọ náà bí? +yom_01208_00285346229 Kòkòrò gé Baṣọ̀run jẹ. +yom_01208_00969842204 Bá mi gbá ilẹ̀ sí Bariga. +yom_00610_00737387534 Ìwọ̀ǹba l'omidan ń sunwọ̀n mọ. +yom_00295_01662511646 Ọkọ̀ náà ti bàjẹ́. +yom_01208_00714708877 Ra ọtí tàbí ẹmu fún wa. +yom_07508_00859742057 Ọmọ tí a bí tí ó ń súnkún tọ̀san tòru. +yom_02436_00768720921 Ilé ìgbọ̀nsẹ̀ náà rẹwà. +yom_07508_01575305546 Ẹ jẹ́ kí a na sùúrù sí gbogbo wàhálà tó ń tàn kálẹ̀ yí. [abrupt] +yom_03034_01649696210 Ìfọkànbalẹ̀ máa ń wà ní ọ̀pọ̀ ìgbà tí ènìyàn bá lówó lọ́wọ́. +yom_07505_01808844321 Ta ló fi omi tí mo pọn wẹ̀. +yom_07505_01059831021 Ọọ̀ purọ́, bẹ́ẹ̀ gan lọ̀rọ̀ rí. +yom_01208_01569138650 Ìyá Fátùrótì ni ó ń ṣe ìnáwó lọ́jọ́ yẹn. +yom_00610_00350946758 Àwọn ọmọ ogun orí ilẹ̀ ń bọ̀. +yom_03034_00959264315 Mo ti gba Jésù sáyé mi. +yom_08421_00680851017 Lára ohun èlò aṣọ híhún ni òfì àti òwú. +yom_00295_02005063581 Ó yẹ kí ó sọ fún mi ná kó tó di pé ó gbé ọ̀rọ̀ náà lọ sí ọ̀dọ̀ bàbá àgbà. +yom_02484_00393542891 A ti sanwó tí wọ́n ní ká san. +yom_00610_01699666508 Ó ń gbìyànjú láti tú mi jẹ. +yom_09334_00514058743 Àwọn adánilárayá náà mọ̀ọ́ jó púpọ̀. +yom_03034_00866573487 Kò s’ẹ́ni tó mọ Ifá tán. +yom_07505_00114060363 Mi ò kí n fi bẹ́ẹ̀ ṣeré níta. +yom_04310_00457696226 Òṣogbo ni wọ́n ti gbé àgbò náà bọ̀. +yom_08421_02028849954 Ọ̀rẹ́ mi àtàtà, kí lo fẹ́ kí n fún ẹ jẹ. +yom_02484_02071999374 Kí lò ń jẹ tó dà bí aràn yìí? +yom_08784_00339558484 Ibo ni ọkọ yí ń lọ? +yom_04310_00048858685 Ọjà ni mò ń lọ báyìíì o. +yom_07508_00613809703 Ẹran ọ̀sìn ni ewúrẹ́ àti adìyẹ. +yom_08421_01265504326 Wọ́n gbin ọ̀dọ̀dọ̀ sí àárín ọgbà ilé náà. +yom_04310_01719631246 Ẹ gbàdúrà kí ara wọn máa ní okun àti àláfíà. +yom_07505_00736105483 Mo járọ́ọ Láídé. +yom_03397_00988160910 B’ólóde ò kú, òde ò le wu gbẹ́gi. +yom_00295_01437278801 Nígbà tí a lọ síbẹ̀, a rí Awólọ́wọ̀ ní ìlú Ọ̀wọ̀. +yom_08421_01931321247 Gbogbo yàra ti sùn lọ. +yom_07049_01750297745 Ayọ̀mídé ti rí’ṣẹ́ sí ìlú ọba. +yom_08421_00103735777 Dókítà sọ pé àwọn oní gbèsè òun ò tíì sanwó. +yom_08784_01532411102 Ọlọ́run má jẹ ká r’ógun àìsàn. +yom_00610_01350548292 Èré orí ìtàgé ni iṣẹ́ tí Jídé Kòsókó ń ṣe. +yom_03034_00931282056 Orun ni Adébọ̀wálé sùn táa fi lọ táa fi dé. Olóorun ìyà. +yom_08784_01782784584 Ajíbádẹ ní òun ò lọ sí Kàdúná. +yom_09334_01501210047 Ó gbèjà àbúrò rẹ̀ gan. +yom_08784_00334093871 Bàbá àti màmá ti lọ sí òde òkú àwọn Ṣeun. +yom_03034_01243547611 Rántí jẹ ohun tí ẹ gbé kalẹ̀. +yom_08421_00732642445 Àwọn gángan ni apèèrè ọ̀rẹ́ kìtìtìtì àti ìyekàn kàtàkàtà. +yom_00295_00772891661 Ṣé o ní’fẹ mi tó bí mo ṣe ní’fẹ rẹ bí? +yom_07508_00532440359 Òògùn ilẹ̀ tútù ni wọ́n lò fún Ọlábìntán. +yom_08421_00603010627 Ibi ijà kan ní Kétu ni wọ́n ti fọ́ ojú ọmọ náà. +yom_03034_01115540083 Àwọn Yorùbá kò fi ọwọ́ yẹpẹrẹ mú ọrọ ọmọ bíbí láwùjọ. +yom_03034_02007981721 Lọ́jọ́ tí mo dé’lùú Ọba, ẹnú kọ̀ láti padé. +yom_02436_00208158235 Ẹ̀rọ ayárabíàṣá ni mo fi ṣe iṣẹ́ náà. +yom_09334_02096435129 Ẹyin tútù ló wà. +yom_01523_00947972943 Èdè ni ọ̀nà ìgbà báni-sọ̀rọ̀, èyí tí a fi ń gbé èrò-ọkàn wa jáde. +yom_07049_01666876564 Ìjọ kérúbù la ti jọ́sìn lọ́ṣẹ̀ tó kọjá. +yom_01208_00531224427 Ẹlẹ́sìn ìgbàgbọ́ ni àwọn Táyọ̀. +yom_00295_00794779003 Àbá ni ikán ń dá, ikán ò le j’òkuta. +yom_07505_01577437713 Àwọn dókítà fẹ́ ṣe ìyanṣẹ́lódì f’ọ́jọ́ mẹ́ta. +yom_02121_01463000436 Ṣé alayé-lọ̀run ni ẹ́ ni tóo fi ń fọ́nu? +yom_07505_00565274272 Ilé ti sú mi, ibo ni a lè lọ? +yom_03034_00251066903 Wọ́n ti ń pè’run ní mọ́ṣáláṣí. +yom_02484_01663235147 Ògúnlájà fẹ́ran kí àwon èèyàn máa sa òun. +yom_00295_01030152059 Ẹ̀yin ará ẹ jọ̀wọ́, ìwé ìdánimọ̀ mi àtẹ̀yìnwá ní àwọn ìṣòro kan. +yom_07508_01453126064 Alákadá ni ọ̀gá rẹ̀. +yom_09334_00254251377 Ẹ ò gbodọ̀ dá ẹnikẹ́ni l’ẹ́bi. +yom_02121_00306721033 Báǹkì wo lò ń lò ná? +yom_04310_01586639190 Ohun gbogbo tí Ọlórun dá, dáradára ni. +yom_02121_00686650169 Aṣèyíówùú l’Ọlọ́run wa. +yom_09334_00287685875 Àwọn ẹ̀dá inú ìtàn lè jẹ́ ènìyàn tàbí ẹranko bí ajá, Ìjàpá, àti iwin. +yom_09334_01517228476 Wọ́n ti mú iná lọ kí n tó jí. +yom_00295_01603249535 Àfín ni ọko Ìyábọ̀. +yom_02436_00041044282 Ajá là n pa b’ọ̀gún. +yom_00610_01950705791 Fún mi ní ìdajì ìgò epo. +yom_08421_00439984515 Ìdun wà lórí ibùsùn Gbénga. +yom_00295_01295474307 Láti mú ọjọ́ ni wàhálà. +yom_04310_01361544805 Ẹ̀kọ́ tí mo kọ́ láti ilẹ̀ ló mú kí ayé mi ṣì gbádùn báyìí. +yom_02436_02039529359 Báwo ni ò bá ṣe dùn tó kí àwọn alágbára má fi agbára da èèyàn láàmú. +yom_02484_00822244846 Gbogbo àwọn ènìyàn náà ti lọ sí àárín ìlú. +yom_01208_01054098295 Báyọ̀ fi ọwọ́ gé fáànù. +yom_08784_01248746700 Kò sí epo nínú ẹ̀rọ ìdáná. +yom_07508_01976579507 Àpẹẹrẹ rere ni ó fi lé‘lẹ̀. +yom_04310_00398156349 Irun kọjúsọ́kọ ló gbé s’órí. +yom_08784_01064839292 Àdògán náà wà ní ẹ̀yìnkùlé. +yom_04310_01385314574 Àwọn ọ̀rọ̀ mìíràn ti ń tako àwọn ìwé mímọ́. +yom_09334_01759233467 Ṣe bí o ti mọ, ẹlẹ́wàa Ṣàpọ́n. +yom_09334_01093914595 Àwọn kan sọ pé mi ò mọ oúnjẹ sè. +yom_04310_00536979079 Yọ ipin ojú ẹ kí o tó máa wo ti ẹlòmíràn. +yom_04310_00179525844 A ṣe àkíyèsí pé wàhálà yí ò ṣẹ̀ṣẹ̀ bẹ̀rẹ̀. +yom_03034_01235071468 Wọ́n ti rí ọmọ Ìya Bọ̀dé gẹ́gẹ́ bí onírọ́. +yom_02121_00540274684 Ṣé o ṣì lè bímọ ṣá? +yom_04310_00043047586 Bí ènìyàn ṣe ń lo èdè bẹ́ẹ̀ náà ni àwọn ẹrankọ ní bí wọ́n ṣe máa ń bára wọn sọ̀rọ̀. +yom_08784_00737495306 Gba owó yìí kí o fi jẹun àárọ̀. +yom_04310_00657137508 Kò s’ẹ́ni tí ò ní kú, tí kò ní lọ s’ọ́run. +yom_04310_01687613927 Iṣẹ́ ni wón ń wá kiri. +yom_00295_00110014835 Àkìtàn ọ̀hún wà níwájú. +yom_02484_00224743060 Inú ilé ni mo bá ìyàwó kékeré tí wọ́n fẹ́ fún bàbá. +yom_01208_00784200761 Báwo la ṣe ń gbin ẹ̀gẹ́. +yom_02121_00318427891 Ìyàwó àti ẹbí sì ni wọ́n jogún gbogbo rẹ̀ fún. +yom_00295_01312022545 Ìbẹ́pẹ náà pọ̀n púpọ̀. +yom_04310_00642310364 Ẹ̀wọ̀n gbére ni wọ́n ju ọ̀daràn náà sí. +yom_01208_00753509488 Arómáṣọdún bímọ ọkùnrin làǹtilanti. +yom_09334_00934868543 Oò tiẹ̀ bẹ̀rù bí mo ṣe ga tó. +yom_08421_00329169601 Ìlúbìnrin ni wọ́n sọ pé àwọn ń lọ. +yom_07505_01267585172 Orí ń fọ́ mi láti oṣù kejì. +yom_03034_01944400468 Mo ní’fẹ́ aṣọ òkè. +yom_01523_00103497208 Ó wà lára àwọn ohun tí àwọn òyìnbó aláwọ̀ funfun ọ̀hún gbà lérò. +yom_04310_00022287278 Lọ bá mi ra owó sí orí ẹ̀rọ ìbánisọ̀rọ̀ mi. +yom_09334_01811232110 Òun ni ẹni àkọ́kọ́ ti mo kọ ní ìfẹ́ sí. +yom_02484_01820271617 Wọ́n máa ń ṣe orò fún ẹnikẹ́ni tó bá fẹ́ j’̣ọba. +yom_01208_00869633746 Ẹ fún mi ní àsìkò díẹ̀ síi. +yom_07049_01107342053 Bàbá mi gbọ́ òyìnbó ̣sùgbọ́n kò fi bẹ́ẹ̀ mọ̀ọ́ sọ. +yom_03034_01309080939 Rájí ni òun fẹ́ kọ́’lé kí òun tó bí’mọ. +yom_02484_01597914663 Àágùn bọ́ lára rẹ̀. +yom_01208_01405522201 Lọ mú aṣọ ìbora fún Adúnmáradán. +yom_02436_02140173580 Aṣọ funfun méje ni ó sá sí ìta. +yom_03034_01080986113 Kíni a mọ Ọbásanjọ́ fún? +yom_07508_00912338378 Irú èyí ò lè ṣẹlẹ̀ ní’lu òkè rárá. +yom_00610_01810315913 Ẹ máa gbọ́ o, kẹ́ẹ bá wa dá síi. +yom_02484_01866419909 Mò ń lọ sí Apọ́ngbọ̀n. +yom_03034_01276465065 Ìwé márùn-ún la ma rà fún kọ́ọ̀sì náà. +yom_07049_01135577802 Rádaràda ni gbogbo eléyìí ń ṣe. +yom_06136_01755766946 Ó rẹ́rìín músẹ́. +yom_02121_00019762439 Ikú p’Abírí, Abírí ti kú. +yom_07505_01967020082 A máa ṣe tán kí oṣù tó parí. +yom_02436_01062352977 Rọra máa gbá èyàn jàre, ṣé ò mọ̀ pé ọwọ́ rẹ máa ń dùyan ni? +yom_07505_00853197788 Ẹ fún-un ní omi kó mu. +yom_02436_00430291818 Ẹran ìgbẹ́ ni ìgalà àti àgbọ̀nrín. +yom_00610_00455386315 Ọlọ́kọ́ ńlá ni bàbá àgbẹ̀ náà. +yom_00295_01486802285 Búrẹ́dì ni wón tà ní iwájú ṣọ́ọ̀ṣì yìí tẹ́lẹ̀. +yom_01523_00779544353 Mo máa bọ́’lè ní oríta-mẹ́rin yẹn o, ẹ jọ̀wọ́ ẹ rọra tẹná mọ́’kọ̀ o. +yom_00295_00868709560 Ó ti tóbi jù, mí ò lè gbée. +yom_00295_00940187494 Ẹnu ẹni la fi ń kọ mé jẹ. +yom_07508_01785489165 Ó figbe s’ẹ́nu pariwo. +yom_02121_00094790439 Kí Ọlọ́run má fi oúnjẹ wa síbi tó nira. +yom_01523_01715875934 Gẹ̀rẹ̀ tí wọ́n dé ọjà ni wọ́n rí wọn ní ẹ̀gbẹ́ ọ̀nà. +yom_06136_01335643238 Ẹnu ọwá lọ́ ti ń dádé Ọba Èkó. +yom_08784_00316579548 Àṣejù ni irun àyà. +yom_02436_01940295652 Ká má baà jìyà la ṣe bí Májìyàgbé. +yom_02484_01248213963 Ohùn ìsàlẹ̀ ni wọ́n fi ń gbé orin náà jáde. +yom_03034_00165712426 Ọ̀gá mi ló kọ ìwé náà. +yom_07049_02074688623 Ṣùgbọ́n, mo já èso kan lórí igi. +yom_00610_02123143856 Láti jẹ́ ọkùnrin, iṣẹ́ ńlá ni. +yom_08784_01388354195 Lára àwọn ìlú tí ọdún Ọ̀sún ti gbélẹ̀ ni ìlú Ìrẹ̀, ìlú Ọ̀yọ́, ìlú Ìkírè, àti Ìlú Ìjẹ̀bú. +yom_00610_01688342948 Ẹní fẹ́ pẹ́ láyé, ṣé ojú rẹ̀ ò ní rí ibi? +yom_08784_01603724673 Ta lo yí ẹ̀rọ amúlẹ̀tutu sókè? +yom_07505_01266135425 Adìẹ ti yé ẹyin sílẹ̀. +yom_03034_00206346331 Ilé ilẹ̀ náà ti kún. +yom_01208_01086402910 Ọmọ náà dọ̀tí bí ẹlẹ́dẹ̀ igàn. +yom_00295_01125120471 Kò sí bí igimú alágbàro ṣe gùn tó ẹni tó gbéṣẹ́ fún lọ́gá. +yom_06136_01536109513 Ìjá bẹ́ sílẹ̀. +yom_06136_00573447371 Ìjọba yóò fi kún owó àwọn òṣìṣẹ́. +yom_02121_01563504575 Ilé ẹjọ́ ti tú ìgbéyàwó náà ká. +yom_03034_00225406939 Ṣé nítorí Ànọ́bi ni Ọlọ̀run ṣe dáa yín? +yom_06136_00478536386 [snap] Ọbá ti gbẹ́sẹ̀ lé ìyàwó Moróunfólú. +yom_08784_00272840736 Irun dúdú ni kìkì gbogbo ara olóńgbò náà. +yom_00610_00278336235 Ìjọba ìpínlẹ̀ ti tún ọ̀nà náà ṣe, ọ̀kan fún àlọ, ìkejì fún àbọ̀. +yom_08421_01358966129 Ọmọ bíbí ìlú èkó ni wọ́n pè ẹ́. +yom_02484_01407899030 Gbogbo ọmọ ìyá ìbejì ló ti bí’mọ. +yom_02121_00285279058 Mo rántí ìgbà èwe mi àti àwọn oun tí mo ṣe. +yom_01208_01779153644 Akin ti lọ ra súyà wá. +yom_07508_00399342887 Ọmọ pupa ni ó bí lẹ́yìn àkọ́bí ẹ̀. +yom_02121_00511825314 Ẹni rere ni alábàágbé mi ti mo sọ fún ẹ nípa ẹ̀. +yom_04310_01000861379 Ẹyẹlé funfun kìí bí dúdú. +yom_07049_00434646843 Pìrìgìdì ìyà ni wàá jẹ kúrò nídiìi ayò yìí lónìí. +yom_00610_01025339121 Àwọn tí wọ́n mọ ìtàn náà ò pọ̀ rárá. +yom_02484_00848771759 Àìsàn ti kọ lù wọ́n. +yom_01208_01239505436 Ó ti rẹ̀ wá sínú ọkọ̀ tí a wà, àti òwúrọ̀ ni ọkọ̀ náà ti ń wà wá kiri. +yom_02121_00987072196 Àgbò ni Mojí ń mú kiri. +yom_06136_02123537606 Ọmọ bọ̀dá Kofí ṣubú. +yom_07505_00124219932 Iyẹ̀pẹ̀ ló rọ sínú ike náà. +yom_07505_00401987764 Lára àwọn ìwé tí mo fẹ́ràn láti máa kà ní ìgba tí mo wà ní ilé ìwé girama ni. +yom_00295_00884439196 Ayọ̀dèjì ló fún wọn l’ówó. +yom_01523_00116259153 Ijó máa ń jẹyọ nínú rẹ̀. +yom_03034_01111242845 Àga irú èyí tí àwọn òyìnbó máa ń lò ni ó wà nílé Ọ̀túnba. +yom_02121_01804362596 Ibi o bá lọ ni mo máa wà. +yom_04310_01975608134 Táyà ọkọ̀ ayọ́kẹ́lẹ́ náà bẹ́. +yom_07505_00173236478 Kí lo fẹ́ lọ ṣe nínú ilé tí ó ti wó? +yom_07049_01155105413 Gbogbo èyí ni mo ti ṣe fún ẹ, ǹjẹ́ ìwọ́ lè ṣe èyí fún mi? +yom_01523_00553132018 A ń sọ̀rọ̀ sí Ọrẹolúwa bí ẹni tí ò níran. +yom_04310_01404281261 A sọ fún-un, ṣùgbọ́n kò gbó. +yom_07508_02047227550 Ọ́rẹ́ mi má ṣe kánjú ju kádàrá. +yom_00295_00111480369 Àmídà ló kúrú jù ní kílàsì. +yom_00295_01307538904 Ibo ni wọ́n gbé àpótí náà sí. +yom_07049_01171430479 Ọdẹ náà pàdé iwin gẹ́gẹ́ bí ìtán ṣe sọ. +yom_00295_01721288413 Ọjà Ọba jẹ́ èyí tí à ń ná ní ọrọọrún. +yom_04310_01478906672 Ilé ìfowópamọ́ yapa nì àgbègbè Adéọlá Ọdẹ́kù. +yom_07049_00667014222 Ọmọ jayéjayé ni àwọn ọ̀rẹ́ mi. +yom_08784_00557152487 Adetìmí fẹ́ràn ìlu sákárà. +yom_08784_00670686500 Ìjọba ìbílẹ̀ ti ń tún àwọn ọ̀nà àdúgbò wa ṣe. +yom_06136_01340031572 Ìpàdé tí mo lọ lánàá, wọ́n pín owó n’íbẹ̀. +yom_04310_01985103813 Ọba gan ò rí ohun kọ̀kan ṣe sọ́rọ̀ ilẹ̀ yíì. +yom_06136_00636935093 Olúwa ọlọ́run, ọba atẹ́rere kárí ayé. +yom_00610_01147702795 O ṣé tí o rán mi létí. +yom_01208_01398361088 Àwámárììdí ni Olórun. +yom_06136_01539725135 Ó máa ń ni elégbè rẹ̀ lọ́dọ̀. +yom_00610_00217179663 Ẹyẹ abàmì ni ẹyẹ igún. +yom_03034_01760537447 Mi ò ní ìdáhùn sí ìbéérè náà. +yom_00295_00377411334 Mo y’ọjú wo àwọn àlejò náà l’átòkè. +yom_01523_01933994146 Ọ̀kẹ́rẹ́ náà sá gorí igi. +yom_08421_01373096942 Gẹ́gẹ́ bí ifá yìí ṣe ṣàlàyé, ire lojú owó ń rí. +yom_07508_00431635100 Kí a ní ìyàwó tó rẹwà kò ṣe pàtàkí tó èyí tó n’íwà. +yom_02484_01654690373 Ire owó ni mo yàn kó wọ’lé mi wá. +yom_07508_01264881795 Àwọn òṣìṣé ìjọba ti da’ṣé lẹ̀. +yom_08784_00890988377 Àgbà Alfa ni à ń pè ni Rájí. +yom_09334_01973795918 Wọ́n ti fi pamọ́ sínú ilé ìfowópamọ́. +yom_00295_00399949848 Ṣé iṣẹ́ lo fẹ́ kọ́ àbí ìwé lo fẹ́ kà? +yom_09334_02107500029 Kí ló lè fa kí ara máa ro èèyàn? +yom_02121_00777936106 Ẹlẹ́pa ìjẹ̀bú — èyí tí o fẹ́ràn gaan — wà ní ìtòsí. +yom_09334_02086205435 Ọ̀bọ́ bẹ́ lu ọmọ náà láti òkè. +yom_02121_00327354025 Ọlọ́run, ṣàánú fún wa lórí ọ̀rọ̀ tó wà nílẹ̀ yìí. +yom_08421_01398537785 Amúdá ò fẹ́ lọ kírun. +yom_00610_01714835290 Oríṣi obì tí a ní kò fi bẹ́ẹ̀ yé ọ̀pọ̀ ènìyàn láwùjọ wa lónìí. +yom_01523_00387763688 Ó ti wá hàn gbangba pé gbogbo ohun tí à ń ṣe ní àwùjọ ẹ̀dá pátápátá, eré-oníṣẹ́ ni gbogbo wọn. +yom_01208_02075575553 Bímpé ni mínísítà fún ètò ẹ̀kọ́ fún orílẹ̀-èdè wa. +yom_00295_00263338725 Orí ẹni ní ń mọ àtilà ẹni. +yom_02484_01876048184 Gèlè náà gbé ẹwà rẹ̀ jáde. +yom_07508_00147882996 Bàbá mi sọ ìtàn ìlú wa fún mi, pé láti Ìkọ̀tún la ti wá tẹ̀dó sí Ìrẹ́pọ̀ọ́dùn. +yom_06136_01209879143 Yìnyín náà pọ̀ jọjọ, ọ̀tútù ń mú. +yom_04310_00349960103 Ládúru gbogbo ìdojúkọ tí ó wà ní ọ̀nà wọn, wọ́n f’orí tìí dé òpin. +yom_08784_00313470161 [snap] Ó ti sá lọ, ọ̀rọ̀ náà kọjá ohun tí agbára rẹ ká. +yom_01523_01171270749 [breath] Ìkejà ò jì́nà sí Ọ̀pẹ̀bí. +yom_01523_00492956627 [breath] Ṣé o fẹ́ràn aṣọ tí ẹ̀gbọ́n rẹ fi ránṣẹ́ láti òkè òkun? [external] +yom_02436_01098056185 [snap] [breath] Ọmọ méjì ni Simi sọ pé òun fé bí. +yom_09334_01756999669 [snap] [breath] Mo máa gbìyànjú láti ríi dájú pé o jìyà ẹ̀sẹ̀ rẹ. +yom_06136_00915399749 [snap] [external] Ààrẹ orílè-èdè Nàìjíríà ni Mohammadu Buhari. +yom_01523_00373940695 [breath] Atá ti sá paá lórí. +yom_00610_01785578568 [snap] Bí èkùrọ́ ṣe jẹ́ alábákú ẹ̀wà bẹ́ẹ̀ ni ìfẹ mi sí o. +yom_08784_00080262926 Ọláwùnmí jẹ́ ẹni tí ó ní ìrẹ̀l. [abrupt] +yom_08784_00940513995 [breath] Wọ́n pa Olúwa wa, ó sì jíǹde. [abrupt] +yom_08784_01759450416 [breath] Wọ́n kì ń fọnu fún ọmo ̣ìkókó. +yom_08784_01503898276 [breath] Ojú rẹ̀ funfun, ó dà bí ẹni tí ara ẹ̀ kò yá. +yom_07508_01024177992 [breath] Ẹ wo ìdí ọ̀rọ̀ náà kí ẹ tó dájọ́. +yom_03397_01398413670 [snap] [breath] Ẹ̀gún gún ọmọ náà lẹ́sẹ̀. +yom_02436_01256159647 [breath] Balùwẹ̀ ni mo bọ́ sí tí mo ti ń jó. +yom_06136_01508728698 [snap] Ẹsẹ̀ kan ayé ẹsẹ̀ kan ọ̀run ni ó wà. +yom_01523_00617327305 [external] Ọkàn mí wúwo púpọ̀. [external] +yom_01523_00908761472 [breath] Kí ló lè mú kí orí máa fọ́ ni báyìí? +yom_02436_00892169512 [breath] [snap] Ọba òyìnbó kìí dé Adé rẹ̀ ní gbogbo ìgbà rárá. +yom_02484_01632098502 [breath] Màmá àgbà sọ fún Lájídé pé kó lọ gba àródan wá. +yom_06136_01525985206 [snap] Onígèlè yayaya ni màmá yẹn. +yom_08784_00278005388 [breath] Mo bẹ̀rù olóńgbò púpọ̀. +yom_06136_01528901990 [snap] Àlùfáà yín tuntun ti ṣiṣẹ̀ ní ìjọ wa rí. +yom_00610_00704781149 [breath] Ṣé ẹ ní dòdò àti ẹran? +yom_00610_01280935006 [snap] Èdè Gẹ̀ẹ́si ti di gbajúmọ̀ láàárín àwọn èdè àgbáyé. +yom_07049_01528856074 [snap] Àwọn bíríkìlà ń tún ilé náà ṣe. +yom_07049_01273855916 [breath] Ẹyẹ méjì ló wà lórí igi ọ̀pẹ. [breath] +yom_03397_00323372903 [snap] Ní ìrìn-àjò tí mo lọ, mo rí odò kan tí à ń ́pè ní odò aláró. [snap] +yom_02436_01183044336 [snap] [breath] Kò sí bí òǹkọ̀wé Yorùbá ṣe fẹ́ tẹ̀lẹ́ òfin àkọ́kọ́ gẹ́gẹ́ bí àpẹẹrẹ.[abrupt] +yom_08421_00546023265 [breath] Ìfẹ́ náà múmi lọ́kàn, mi ò rí oorun sùn. +yom_03397_00120623157 [breath] Nígbà tí ó di ọjọ́ keje, ilẹ̀ ṣú. +yom_02484_02069861304 [snap] [breath] Súnkẹrẹ-fàkẹrẹ ọkọ̀ pọ̀ ní ọ̀nà Ìkòròdú. +yom_01523_01585700502 [snap] Kò sí Iná lórí ẹ̀rọ ìbánisọ̀rọ̀ mi. [external] +yom_08421_00840311012 [snap] Ọ̀pọ̀ ni ohun tí ó wà nípa ẹyẹ lékeléke tí a ò mọ̀. +yom_00610_00268612766 [breath] Kí ló dé ti ò kìí kan ilẹ̀kùn? +yom_01208_01655016650 [breath] Bí ọdẹ bá rò iṣẹ́ ro ìyà inú igbó, tí ó ló pa ẹran kò ní f’ẹ́ni kan jẹ. +yom_03397_01729574051 [breath] Mo fẹ́ kúrò ní gbogbo sàkánì tí wọ́n ti mọ̀ mí rí. +yom_03397_01117611970 [breath] Mi ò fẹ́ kí ọ̀rọ̀ mí máa dàmú ẹ. +yom_07049_01002258700 [snap] Bí òní ti rí ọ̀la ò lè rí bẹ́ẹ̀. +yom_06136_00115654801 [external] O ṣé tóo wá sí ’lé mi lónìí. +yom_06136_00756587928 [snap] Ọlọ́kadà ló gbá ọmọ wọn. +yom_03397_00985497268 [breath] Àwọn èyàn ló sọ fún nípa ìyàwó rẹ̀ tó ń s’ágbèrè. +yom_07049_00308862133 [snap] Adé ti lọ sí ọ̀dọ̀ bàbá rè láti lọ fi àwọn nǹkan kan tó o létí. +yom_08784_00674343988 [snap] Tí kò bá kí ń ṣe ọ̀làjú tí ó ti gbinlẹ̀ l’Ékò ni, àwọn ìlú oko gán wà pa. [abrupt] +yom_06136_02031016539 [snap] Kí ni ìṣẹ̀lẹ̀ tó ń da ọkàn rẹ rú? +yom_02436_00760032605 [snap] A máa ń rí ìjẹyọ ìlù lílù, ijó jíjó, ẹ̀fẹ̀ ṣís̀e, oríkì kíkì, èébú bíbú, ìkìlò ṣíṣe. +yom_01523_01990719203 Ọ̀tá yín ò ní sinmi lórúkọ Jésù. [external] +yom_00610_01572593808 [snap] Ọkọ̀ ni bàba tóo lè bá sọ̀rọ̀ ní Surulere. +yom_01523_01708456640 A rí erinmí ní Ìjẹ̀bú nínu igbó. [external] +yom_08421_00387029447 [snap] Ọ̀sán kan ṣoṣo ni ìṣẹ̀lẹ̀ yí ṣẹlẹ̀. +yom_01523_01576014547 [breath] Orí odó lo jókòó lé. +yom_07049_01609742458 [snap] Ó yí omi dà sínú ike mìíràn. +yom_01523_01100692952 [snap] Òwe lẹ ó máa pa, ẹ ò ní pà’nìyàn. [external] +yom_00610_01011419110 [snap] Ẹ̀rọ amúlétutù náà ti bàjẹ́. +yom_07049_02028314081 [snap] Ìrèké jẹ́ èso tó dùn bíi ṣúgà. +yom_01208_00435070465 [snap] Mi ò nífẹ sí gbogbo ìkan wọ̀nyí. +yom_02121_00510983065 [snap] Ọbabìrin Ilẹ̀ Gẹ̀ẹ́sì ti pẹ́ lórí oyè gan ò. +yom_07505_00014589644 [snap] [breath] Ìsọkúsọ Àmọ́dù ti pọ̀ jù. +yom_02436_00308431132 [snap] Nígbà tí ọmọ yìí dàgbà, ó tọ́jú ilé àti ọgbà. +yom_01523_00496456020 [breath] Bàrúwá ń sa gbogbo ipá rẹ̀ láti ríi pé ohun gbogbo lọ dédé. +yom_03034_00658154501 [snap] Lọ se ewédú ka lè fi jẹ àmàlà ní alẹ́. +yom_02484_01070683287 [snap] Nínú ọkọ̀ táa wọ̀ lọ s’Ọ́yọ̀ ọ́, èmi Adéyọọ́lá laá jọ jókòó. +yom_07505_00199182522 [breath] Àpótí tí mo sọnù kéré ju èyí tí mo gbé lọ s'ọ́jà lọ. +yom_03397_01984530007 [breath] Mo ṣàkíyèsí wípé ọmọ náà ní ìgbéraga. +yom_02436_02017462417 [snap] Agbọ́n ta Ṣubúọlá. +yom_07508_01690377335 [breath] Lára ibi tí a dé ni ọ̀dọ̀ Aláàfin ìlú Ọ̀yọ́. +yom_02484_01233106851 [breath] Iṣẹ́ gèlè wíwé ni à ń ṣe. +yom_07505_01763150504 [breath] Gbé kọ́ọ́pù tí ó wà ní abẹ́ ibùsùn ẹ̀gbọ́n rẹ wá. +yom_03397_00544010536 [breath] Ẹ báwa s’àmín ẹ̀, oríi wa ò ní burú. +yom_06136_01008826631 [snap] Mo ti gbé omi sí ẹ̀yìn ilẹ̀kùn. +yom_08784_01355386777 [snap] Lára orúkọ tó gbajúmọ̀ ni Tinúbu ń jẹ́. [abrupt] +yom_01523_01316314279 [snap] [breath] Iṣu náà ti bàjẹ́. +yom_02436_00818203334 [breath] Kí wa ló tún kù tí ìyá Bọ̀dé ń wá káàkiri báyìí? +yom_03397_01157193156 [breath] Eegún ti wọnù ẹran, ẹrán sì ti wọnú eegun. +yom_07508_00834585297 [snap] A nílò ọgbà ńlá láti gbin àwọn èso náà. +yom_02436_01550551307 [breath] [snap] Ẹlẹ́nu bíi ti pẹ́pẹ́yẹ ni Tàmẹ̀dùn. +yom_02436_01577997914 [snap] Jùwọ́n ló gbà mí sílè nígbà tí wàhálà pọ̀ fún mi. +yom_08784_00122616393 [breath] Tí o bá rí ọkùnrin tí ó ń bá ẹ gbọ́ bùkátà díẹ̀, o jẹ́ má jẹ kó lọ mọ́ ẹ l’ọ́wọ́. +yom_02484_00536474671 [snap] Ohun tó ṣemí ní kàyéfi ni bí àwọn gẹ̀lẹ̀dẹ́ ṣe máa ń ní ìdí ńlá. +yom_02436_01168501945 [snap] Wọ́n rí ọmọ tuntun kan lórí ààtàn. +yom_03397_00605134215 [breath] Wọ́n na Fadérẹra ní ilé ìwé ọjọ ìsinmi. +yom_02121_00123236106 Pẹ̀lúmi pè mí láti dúpẹ́ oore. [external] +yom_01523_01377168875 [external] Àbẹ̀kẹ́ mu àgbo títí tí ó fi fẹ́ bì. [external] +yom_03397_00254890397 [snap] Iṣẹ́ ìjọba ni ó wù mí láti ìgbà tí mo ti wà ní kékeré. +yom_07505_00531019790 [external] Ẹnu-Ọwá ni bàbá kọ́’lé tuntun rẹ̀ sí. +yom_07505_00079653289 [breath] Ẹni tí ò gba kádàrá yóò gba kodoro. +yom_09334_01127557080 [snap] Ìmọ̀ ti fi yé wa pé Òrìṣa Ò [hesitation] gún ni àwọn alágbẹ̀dẹ. +yom_02436_01183866596 [snap] Ẹ̀sin mùsùlùmí ò fàyè sílẹ̀ fún ajá jíjẹ. +yom_08784_02027960426 [breath] Mo ò lọ sí ibìkankan pẹ̀lú ẹ. +yom_07049_01002068821 [snap] Gbogbo eyín Ìya Bọ̀dé ló ti yọ tán. +yom_07505_00972815832 [breath] Gbogbo wọn ni wọ́n ń forí balẹ̀ f'Ólúwa lati àárọ̀ di alẹ́. +yom_09334_00928642807 [breath] Mẹ́ta ni àwọn òṣèrè Ìjẹ̀ṣa tó ń gbé ilú yìí. +yom_06136_01033074681 [snap] Ẹ bu ẹmu díẹ̀ fún òun náà. +yom_03397_01921307701 [breath] Títà ni akekèé máa ń tani. +yom_06136_00231561177 [snap] Ọmọ ọ̀lẹ ò ṣeé yá ní tọ́rọ́. +yom_02484_00566263510 [breath] Ìyàwó ba oko rẹ̀ nínú jẹ́. +yom_01523_01316050929 [external] Ó ja ọbẹ̀ sí aṣọ. [external] +yom_02436_02078723804 [breath] Mò ń jáde lọ sí ibi iṣẹ́ láti lọ gba owó oṣù. +yom_02484_01907761520 [snap] Mo nífẹ sí àwọn orin Lágbájá. +yom_02484_00315615013 [snap] Ẹ̀fọ́rí ló kọ lùú. +yom_08784_01141316408 [snap] Àríkẹ́adé tún ti fẹ́rakù. +yom_02436_02014915639 [snap] [breath] Olúmòye sọ pe ìgbà tí òun bí ọkùnrin ni inú òun dùn jù. +yom_08784_00096882913 Pọ́n ara rẹ le kí o má baà kàb. [abrupt] +yom_07049_00162359991 [snap] Wọ́n ti gbé iṣẹ́ mìíràn fún mi. +yom_06136_02047234338 [snap] Géètì ilé-ìwé ni mo ti pàdé Sìlàmíyà ní àná. +yom_02484_00480100440 [snap] Yorùbá bọ̀ wọ́n ní kí ilà ó tó di oge, ó ni ohun ojú rí. +yom_02484_00772195576 [snap] Ti ilẹ̀kùn kí o bá mi ní ojú ọ̀nà. +yom_02484_01225861895 [snap] Àwọn ọ̀rẹ́ Adéṣẹwà ó ń jowú rẹ̀ nítorí ẹni tó ń fẹ́ nísìyí ní owó púpọ̀. +yom_01523_00640950974 [snap] Nígbà tí a wà ní kékeré ìya Lábísí máa ń na ẹni tó bá súfe nínú ilé. [external] +yom_01523_00435681775 [breath] Ẹ̀mí á ṣe púpọ̀ ọdún láyé. +yom_01523_01904723431 [breath] Láti ibo ni oko bàbá wọn ti bẹ̀rẹ̀? [external] +yom_00610_01680364787 [breath] Bàbá àgbà, ṣé ẹ ti jí? +yom_02121_01297858066 [snap] Orógbó náà gbó keke. +yom_01523_00313184870 [breath] Akọ́lédowó ti kọ́lẹ́ alájà méje. [external] +yom_02436_01143945455 [snap] Àtàrí àjànàkú ni ọ̀rọ̀ náà jẹ́, kìí ṣẹrù ọmọdé. +yom_06136_00459195959 [snap] A fẹ́ lọ wo eré ìtàgé ní Oríta Mẹ́rin. +yom_02436_01444941079 [breath] Ọmọ rere ni ẹ́, àbí bẹ́ẹ̀ kọ́? +yom_01523_00944464995 Kọ́ọ̀sì mẹ́wa ni wọ́n ní ká se. [external] +yom_00610_01343629839 [breath] Ṣé dáadáa lo wá lásìkò yìí. +yom_06136_01575860011 [snap] Àwọn ohun amáyédẹrùn ti pọ̀ lóde. +yom_09334_01684902125 [snap] Ta ló ń dìtẹ̀ mọ́ Ọba wa Aláàfin. +yom_02436_01777757244 [snap] Ṣé ẹranko ni ikún ni? +yom_07049_00385895616 [snap] Mo gba ìpè oríireè kan láti ìlú òyìnbó. +yom_06136_00531615210 [snap] Ẹ kú ọjọ́ ìbí ooo, ọ̀jọ̀gbọ́n Ṣóyínká. +yom_07049_00704927809 [breath] Abọ́ wà nínú korobá náà. +yom_01523_01027459857 [breath] Báwo ni mo ṣe fẹ́ parí iṣẹ́ yìí na? +yom_03034_00343189987 [snap] Wọ́n ti lé àwọn ẹbí Ayọ̀bámi kúrò ní agboolé. +yom_07049_00636047280 [snap] Ẹ́sítérì máa ń hùwà òmùgọ̀. +yom_08421_00452539703 [breath] Ṣé bí à ṣe dúdú náà ni ọpọlọ wa ṣe dúdú ni? +yom_02484_00432712261 [breath] Ó dà bí ẹni pé ó ti rẹ olùkọ́ọ wa. +yom_02484_01731488785 [snap] Ọmọ yìí ò ní àpọ́nlé kankan rárá. +yom_03397_00766455445 [snap] Dáadáa ló yẹ ká máa ṣe. +yom_01523_01689055566 [snap] Ààrẹ orílẹ̀ èdè ń bọ̀ ní Civic Ceter ní ọ̀la òde yìí. +yom_02121_01114822567 [breath] Aṣọ títà ni iṣẹ́ ìya Bùkọ́lá. +yom_03397_01091579391 [breath] Àwọn ìjọba ni wọ́n gbẹ́ ibi ìpọnmi náà. +yom_08421_01678375678 [snap] Yorùbá bọ̀ wọ́n ní, “Kò sí bí a ó ṣe se ebòlò tí kò ní run ìgbẹ́.” +yom_08421_00448603685 [snap] Lára àwọn olùkọ́ tí mo ò le gbàbé ni ọmọ̀wé Shèyí Kenny. +yom_06136_01711286767 [external] Orúkọ fífúnni kìí ṣe ohun yẹpẹrẹ, bẹ́ẹ̀ kì í ṣe bàbàrà tó bẹ́ẹ̀. +yom_02121_01963752838 [snap] Adéyinká sọ pé òun ò lè jẹ́ kí ẹnikẹ́ni máa ku akókò òun dànù bí èlùbọ́. +yom_08421_00242094176 [snap] Ṣé o ti gbọ́ nípa ọdún òkè ìtàsẹ́ rí? +yom_03397_02078062575 [snap] Ilé ayé gba jẹ́jẹ́ ni bàbá máa ń sọ. +yom_07049_00107647614 [snap] Ìlù Àyándélé ń ró kókó. +yom_09334_01080802520 [breath] Dígí tí a gbé sí balùwẹ̀ ti fọ́ ní àná. +yom_06136_00819762698 [snap] Ẹsẹ̀ ẹran náà ti kán. +yom_03397_00529031080 [snap] Ra àgbálùmọ́ fún mi tí o bá ń bọ̀. +yom_07505_01273201217 [snap] Omi adágún kan wà ní ẹ̀yìn ilé-ìwé mi. +yom_01523_01685339721 [snap] Lọ fi otí pa ìrònú rẹ́. [external] +yom_02436_01592863715 [snap] Adájọ́ dáa lébi ẹ̀sùn táa fi kàn-án. +yom_08784_00120686302 [breath] Orísìírísìí ìgbésẹ̀ ni ó máa ń jẹyọ nínú Ọdún Ifá. +yom_07049_01111732904 [snap] Wọ́n ń fá irun ara òkú náà. +yom_09334_01308506040 Tóo bá dé oko àwọn Àkànmú, wàá fẹ́ràn iṣẹ́ àgbẹ̀. [external] +yom_02436_00573336572 [breath] Adéẹ̀kọ́ ní òun nífẹ omi ju ọtí lọ. +yom_02484_00213408661 [breath] Ṣọ̀pọ̀ná ò ní mọ ‘lé wa o. Àmin. +yom_08784_00685000259 [breath] Ariwo yín ti pọ̀ jù. +yom_03397_01404578582 Àwọn ọmọ aráyé ò kí ní sùúrù. [breath] +yom_03397_01099061384 [breath] Ṣé àwọn ọmọ yín mọ òòṣà tí wọ́n ń pè ní ìgunnu? +yom_08784_01448534749 Ìrẹsì àti ẹ̀wà ni oúnjẹ tí mo fẹ́ràn jù. [abrupt] +yom_07049_01449857967 [snap] Aṣọ ìbora wọn dà ná; níbo ni wọ́n fi sí? +yom_03397_00439759270 [breath] Ẹ jẹ́ kí a dá ara wa ní ara yá. +yom_03397_01441263050 [breath] Èèwọ̀ Orìṣà, ilẹ̀ ò ní ṣú mọ́ olóore. [breath] +yom_01523_01541734074 Àmì ayò mẹ́ta sí méjì ni Sàlámì fi na Sàláwà. [snap] +yom_07049_00234203788 [snap] [breath] Ká máa gbàdúrà tí a bá jí dára púpọ̀. +yom_07049_01445571874 [snap] Ìdí ọkọ̀ ni mo gbé ẹrù lọ ní àná nígbà tí ọkọ̀ gbá ajá àwọn màmá. +yom_02484_00034624627 [breath] A fẹ́ ṣe ìṣàfihàn àwọn ohun abẹ̀mí nínú litírésọ̀ Yorùbá. +yom_01208_00268887688 [snap] Ilé alájà méjì mẹ́ta, ọkọ̀ mẹ́rin, àti oko kòkó kan ni gbogbo dúkìá tí ó fi sílẹ́ lọ. +yom_03034_00161043567 [snap] Àwọn ará ìlú ní ìgbàgbọ́ pé ọ̀nà èrú ni ọba tuntun yí fi d’órí àléfà. +yom_03397_00583031395 [breath] Tájù àti Tọ́lá ń lọ sí Àkúrẹ́ ní ọ̀la. +yom_03397_01779080380 [breath] Olùṣọ́gbà ni iṣẹ́ tí mo bá ẹ rí. +yom_02484_00239445724 [snap] Ọtí ẹlérìn dòdò ni wọ́n fi ṣe mí lálejò ní’bi òde ìyàwó tí mo lọ. +yom_02436_01655777112 [snap] Ṣé ki n wá gba kiníyẹn ni? +yom_02484_01960744204 [snap] Ẹ jẹ́ ká ṣeré nínú òjò. +yom_07049_02039879295 [snap] Wọ́n ti gbée lọ sí Ibojì. +yom_02121_00899698592 [snap] Èmi nìkan ni mo sun yàrá mọ́’jú. +yom_03397_00660192729 [snap] Ọmọ yìí fẹ́ fi ijó ṣe mí léṣe. +yom_02436_00378049870 [snap] Àyọnusọ Fàlí ti pọ̀ jù. +yom_07505_00360243999 [breath] Ìsèkúsè ni àwọn olópàá máa ń sè fún wa. +yom_01208_00587267142 [snap] Òun ló tọ́ sí láti máa sọ̀rọ̀. +yom_02436_00153654326 [snap] Kọ́kọ́rọ́ mọ́tò bàba Fáuśa ni àwọn ọmọ yíì fi ń ṣeré. +yom_03397_00363326547 [breath] Gaàrí yẹn ti wú tó bó ṣe yẹ. [breath] +yom_06136_00804435337 [snap] Yóò dára fún ẹ, mo dúpé púpọ̀ lọ́wọ́ rẹ. +yom_01523_00363686407 [external] Mo fẹ́ran ilé ìtura náà. [external] +yom_07505_00565955965 [snap] Àti ìjẹrin la ti ri’ra gbẹ̀yin. +yom_07049_00727404490 [snap] Ìyẹn ni pé àwọn ìlú kékèké nínú igbó yìí náà máa ń lo iná ìjọba. +yom_07505_00272648229 [snap] Ilé rere ni wọ́n ti wá. +yom_02484_02129685643 [snap] Yèyé mi a máa bínú ní ọ̀pọ̀ ìgbà lórí ohun tí kò tó nǹkan. +yom_02121_00519630873 [snap] Bọ̀dá mi yóò mú mi lọ sí ìlú òyìnbó nígbà tó bá ń padà lọ. +yom_01523_01562317434 [snap] Ilẹ̀ ti mọ́ bá àwọn ọ̀daràn yẹn. [external] +yom_06136_00656527706 [snap] Ó sì tún jẹ ẹ̀bùn pàtàkì láti ọ̀dọ̀ Olódùmarè. +yom_06136_00049774741 [snap] Bọ́lá máa ń ṣe ìrànrán tí kò bá tètè sùn. +yom_01523_01955334894 [snap] Àrẹ̀mú ló ṣíṣẹ́ náà, ó ṣì ṣee dáadáa. [external] +yom_02484_01673041038 [snap] Àìgbọ́fá là ń wò’kè, ifá kan ò sí ní párá. +yom_01523_00136367294 Kí ló dé tí o wà nínú àhámọ́ [external] +yom_03397_01566492596 [snap] Bí oò ti ẹ̀ jẹ́ kó hàn ní ojú ẹ, mo mọ̀ pé ohun tí wọ́n ṣe dùn ẹ́ gidi. +yom_03397_00916968644 [snap] Bí babaláwo náà ṣẹ̀ gba ibẹ̀ kọjá ni. +yom_00610_01369429256 [snap] Yọ ẹ̀rọ ìbánisọ̀rọ̀ kúrò nínú iná. +yom_02121_01438483831 [snap] Àwọn ẹranko wo ló máa ń jẹ ọ̀gẹ̀dẹ̀? +yom_07049_01742657151 Ọmọ mí ti pé oṣù mẹ́jo, [snap] ó sì ní eyín kan. +yom_00610_02007363442 [breath] Ọládèjọ kú ikú akin. +yom_08784_00982258662 [snap] Wọ́n ti da ìdọ̀tí sọ́nà lẹ́ẹ̀kansíi. +yom_08784_00039111695 [snap] Bá mi jìṣẹ́ fún bàbá wa. +yom_07508_00240132972 [snap] Gbogbo ìgbìyànjú mi ò gbọdọ̀ já s’ásán. +yom_07508_01768981701 Ó ṣeéṣe kí ọmọ ẹ̀gbọ́n wá pá lórí bíi bàbá rẹ̀. [abrupt] +yom_07049_01667951075 [snap] Èyí já sí pé, gbogbo ìmọ̀ pátá ló ń bẹ nínú ifá. +yom_02436_01287097361 [snap] Ẹran ọ̀sìn ni àgùntàn, ewúrẹ́, òbúkọ, ẹlẹ́dẹ̀ àti màálù. +yom_08784_00243107069 [breath] Ṣé o lè rìn kíá ju báyi lọ? +yom_03397_01771472448 [breath] Aya rere l’ódèdè ọkọ ni Ṣọlá. +yom_07508_01972685591 [snap] Ẹ ṣàdúà kí ikú dáwọ́ ibi rẹ̀ dúró. +yom_09334_00237012890 [breath] Lọ mú àtòrì wá l’ẹ́yìn ilẹ̀kùn. +yom_02121_00859460733 [snap] Èébì ń gbé ìyá olóyún yẹn. +yom_02436_01821957426 [breath] Mo ní’fẹ láti bá wọn lọ fún ìnáwó náà. +yom_09334_01695578672 [breath] Èjì bí èjì l’àgbà ń tayò. +yom_01523_00433843222 [snap] Eré orí ìtàgé náà yo lárinrin púpọ̀. +yom_03397_01396506552 [snap] Ọmọ iṣẹ́ méjì ló wà ní ibi iṣẹ́ yin. +yom_03397_00429905102 [breath] Tolúwa ni ilẹ̀ àti ẹ̀kún rẹ̀. +yom_07508_00977257609 [external] Ìlẹ̀kẹ̀ mẹ́ta ló wà lọ́run Ọba. +yom_03397_00643000118 [breath] Àwọn ẹlòmíì ò ní ìtẹ́lọ́rùn rárá. +yom_01523_01457996845 [snap] Oríṣi bàtà méje ni màmá mi ńi. [external] +yom_02484_01109636234 [snap] Kókó àti àkàrà la fẹ́ jẹ lónìí. +yom_02121_01506029086 [external] Adébámbọ̀ mú àfẹ́sọ́nà rẹ̀ wá s’ọ́dọ̀ ìyá àgbà. +yom_03397_00881664179 [breath] Farabalẹ̀ kí o gbóhùn wọn. +yom_01523_01150558994 [breath] Àgbọn wà ní orí igi náà. +yom_07049_00730255367 [snap] Ọ̀pọ̀ akẹ́kọ̀ọ́ ní ilé ìwé náà ló mọ̀wé. +yom_02436_01080639434 [snap] Ògúndípẹ̀ ni ọ̀gá wa. +yom_08421_00211080379 [snap] Odidi oṣù mẹ́ta ni àwọn ará ilé wa yóò fi gba ìsimi lọ sí òkè òkun. +yom_02436_00261727794 [breath] Báwo ni wàá ṣe máa da ilẹ̀ sí ojú àgbàrá báyìí? +yom_07505_01301092163 [external] Kọ́lá ti fi ẹsẹ̀ gún ìṣó. +yom_00610_01623386266 [snap] Wọ́n rí àjẹ́ kan l’ọ́san gangan n’íbàdàn. +yom_03397_00745720052 [snap] Ogun ni ìlú yìí wà ní òní bó tilẹ̀ jẹ́ pé wọ́n máa ń fẹ́ kí gbogbo ayé rò pé àlááfíà ni. +yom_02121_00919171997 [snap] Ìròyìn agogo mẹ́sàn-án àṣálẹ́ ni bàbá ń gbó l’ọ́wọ́. +yom_07505_01838521374 [breath] Yà sí apá ọ̀tún tí o bá dé Òpópónà Ìṣẹri. +yom_07049_00514957360 [snap] Ẹja méjì ni wọ́n fi mu gààrí. +yom_00610_00347886994 [snap] Ẹ wo omi tó sọ póun ò ní bá ẹja rẹ́, àṣé omi ọ̀hún ni yóò ṣekú pẹ́ja. +yom_06136_00686675533 [snap] Gbogbo ohun tí mo fẹ́ ni wọ́n ṣe fún mi. +yom_07049_01569229563 [snap] Ẹ má tẹ̀ẹ́wọ́ mọ́. +yom_00610_01105196618 [snap] Olúwa, màá ṣe ìgbọràn. Àánú ni mo tọrọ. +yom_02436_00930978382 [breath] Kájọlà ni ibùsọ̀ táa ma kọ́kọ́ kàn ka tó dé Káṣọpẹ́. +yom_06136_01956912474 [snap] Fìlà náà dára lórí rẹ. +yom_02436_00106979017 [snap] Sọ ọ̀rọ̀ òṣèlú tàbí ìwà ìbàjẹ́ nínú àwùjọ. +yom_02121_00010444101 [snap] Ìdí Àràbà ni Ìyálọ́jà ń gbé. +yom_08421_00128576148 [breath] Àgbàlá Bàbá Fọlákẹ́ ni àwọn ọmọ ti máa ń ṣ’eré ní ìrọ̀lẹ́. +yom_07508_01575138751 [snap] Túwó ni wọ́n sè fún wa. +yom_00610_00726808973 [breath] Ó bi bàbá rẹ̀ bí òún bá lè tan ẹ̀rọ amóhùnmáwòrán náà. +yom_07508_01445645895 [snap] Òfin ìjọba ò jẹ́ kí àwọn oníṣòwò jèrè rárá. +yom_01523_01747338017 Ilẹ̀kùn ilé náà ti bàjẹ́. [external] +yom_03034_02139099150 [snap] Òrìṣà, bó ò le gbèmí ṣe mí bó o ti bámi. +yom_01523_00698237397 [breath] Èròjà tí a fẹ́ fi se ọbẹ̀ kò tí ì pé o. +yom_08421_01106977022 [snap] Ìwádìí fi hàn pé Ò [hesitation] gún ni ẹni àkókò tí ó ṣe ọ̀rò ìṣípa òde ní ìlú Ìrè. +yom_08784_00647227591 [snap] Orísìírísìí ìgbésẹ̀ la máa ń gbé lórí ọ̀rọ̀ yìí. +yom_02436_01900185584 [snap] Adémìlúyìí ni orúkọ tí a fẹ́ mọ ọmọ náà sí. +yom_00610_01801059315 [snap] Láfún loúnjẹ wọn nílé Àl̀àkẹ́. +yom_08421_00868622672 [external] Àdùkẹ́ ti sanra ju ọjọ́ orí rẹ̀ lọ. +yom_08784_01803012405 Nítorí àwọn ìbéèrè pàtàkì nìkan là ń gbà sílẹ̀ kí ilẹ̀ tó ṣú. [abrupt] +yom_01523_00113246113 Ṣé o ti rí abọ́ ẹlẹ́ta rí? [external] +yom_02436_01036315115 [breath] Òkè ni ẹyẹ ti máa ń fò. +yom_03034_02026907496 [snap] Ní ọjà Èjìgbòmẹkùn ni a ti ra àwọn èso ọ̀hún. +yom_02121_01266388114 [snap] Ta ló wà nínú ọjà náà? +yom_08784_01254456400 [breath] Ipò wo lo dì mú nínú ilé iṣẹ́ náà? +yom_07049_01882276626 [snap] Mo ti fi ìgbà kan ṣiṣẹ́ gẹ́gẹ́ bí olùkọ́ ìmọ̀ ẹ̀rọ. +yom_02436_00735834672 [snap] Ojúṣe àwọn olùkọ́ ni láti ríi dájú pé àwọn ọmọ tí wọn kọ́ ní òye kíkún nípa iṣẹ́ ohùn. +yom_08784_01087198874 [snap] Oríṣi bàtà kan ni àwọn ọmọ ìyá náà rà. +yom_03397_01595328562 [breath] Ilé olókè mẹ́rin ni wọ́n kọ́. +yom_08784_00992079469 [snap] Ẹkùn lè ṣe ìnàkí léṣe. +yom_02121_01685777743 [snap] Alákọrí ni Àkànbí tó k’àkànpọ̀ nínú ooru. +yom_07508_00253762213 [snap] Mo ya ìwé náà sí méjì nítorí inú bí mi gidigidi. +yom_09334_00904907634 [breath] Mo ti rí ìdí tí kò fi yẹ kí ó jẹ́ ọ̀rẹ́ mi ni. +yom_02121_01692346848 [snap] Àdùké kò ní pẹ́ gboyè ìmọ̀ nínú òfin. +yom_02484_00041341513 [snap] Ṣé kí a fún àwọn agbasọfọ̀? +yom_07508_00581043285 [snap] Ẹsẹ̀ ń ro ó púpọ̀. +yom_07049_01934407297 [snap] Ẹ jẹ́ ká sùn díẹ̀, ṣùgbọ́n oorun ò kùn mí. +yom_02436_01110654433 [breath] Iyá ọba náà tún wà níbẹ̀. +yom_01523_01853382303 Ṣe o ti rí ìdí tí kò fi lè tètè ní ọ̀rẹ́kùnrin. [external] +yom_07049_01973898147 [snap] Òun àti ìyekan rẹ̀ ni wọ́n ń pariwo l’óru. +yom_03397_01914261822 [breath] Adébọ̀wálé sọ pé òun ò mọ̀ bí aṣọ òun ṣe sọnù. +yom_03034_00681924550 [breath] Màmá rán mi kí n lọ ra ẹja díndín wá ní ìsọdá. +yom_07049_00113104748 [snap] Òjó lọ ilé ní àná láti lọ mú owó ẹ̀ wá. +yom_06136_00803488750 [snap] Tùràrí olóòórùn dídùn ni wọ́n fi sí ibi ìtẹ́ òkú. +yom_09334_01576985469 [breath] Ojú ò ní tìyín lágbára ọlọ́run. +yom_08421_01793284451 [breath] Iṣu àti ẹyin ni mo ṣẹ̀ṣẹ̀ jẹ tán. +yom_07049_00870877285 [breath] [snap] Aṣọ híhun jẹ́ iṣẹ́ kan tí àwọn obìnrin yàn láàyò ní ìlú wa. +yom_01523_00312896002 Adéforítì ní ìforítì. [snap] +yom_07508_00755235955 [snap] Sáyídì ń ta Láfún ní agbègbè Ìta Àdó. +yom_07505_00879744298 [breath] [snap] Gìgísẹ̀ ọmọ naà ló ṣe léṣe. +yom_07508_00337705986 [snap] Mo ti gbìyànjú ohun tí mo lè dá lárà. +yom_07505_01211850621 [snap] Ebi ń pa àwọn ẹlẹ́wọ̀n o. +yom_07049_01988574147 [snap] Èní ni màmá Kọ́ládé yóò fi ilé ìwòsàn sílẹ̀. +yom_01523_01875565026 Mi ò mọ ẹyẹ tó ṣu Adébóyè. [external] +yom_06136_01372511024 [external] Yàrá ìgbàlejò náà tóbi. +yom_07508_00965345335 [snap] Ọmọ mẹ́rin ni ẹran náà bí. +yom_03397_00674292892 [snap] Ìmọ́tótó borí ààrùn mọ́lẹ̀ bí ọyẹ́ ṣe ń borí ooru. +yom_09334_01477672338 [breath] Àdúgbò náà máa ń dákẹ́ rọ́rọ́. +yom_03397_02037042366 [snap] Olórí ilé aṣòfin wà ní agbègbè náà. +yom_06136_00232881290 [snap] Ọmọ náà gbé orí mi sí àyà rẹ. +yom_07505_00376906867 [snap] Wàyí o, kí a máa rántí pé gbogbo ohun táa bá ṣe la ma ká nikẹhìn. +yom_02484_00870733190 [snap] Áà! inú òjò l’àwọn omọ yí ti ń ṣeré. +yom_00610_01446001123 [snap] Ní ayé àtijọ́, àwọn bàbá ni wọ́n máa ń sába ṣiṣẹ́. +yom_07508_01950161981 [breath] [snap] Ìbọn ló bàá l’ẹ́sẹ̀. +yom_06136_00112118729 [breath] 'Ayé dùn-ún jẹ juùyà lọ' ni ọ̀rọ̀ tó bọ́ lẹ́nu Ṣùbòmí nígbà tó jẹ àmàlà tán. +yom_00610_01971869248 [snap] Wọ́n ti dée ládé ọba. +yom_07049_01897895824 [breath] Wọ́n ní kí a mú àkòrí iṣẹ́ ìwádi àṣekágbá wa wá. +yom_01208_00717404914 [snap] À ń lùú, ó ń dun. Ọpẹ́ ló yẹ wá. +yom_02436_01051296181 [snap] [breath] Ọmọbìrin náà rẹwà púpọ̀, tẹ̀gàn ló kù. +yom_07505_00068989097 [breath] [snap] Ọmọ bùjẹbùdànù l’Àrẹ̀mú. +yom_03397_02005216126 [snap] Àrèó máa ń fi ìwà tútù tanijẹ. +yom_07505_01415421171 [breath] Kìí ṣe gbogbo ènìyàn ló mọ ìtúmọ̀ orúkọ mi àfi àwọn tó ní ìmọ̀ tó jíire nípa orúkọ. +yom_07049_01799615454 [snap] Ojú Ọlọ́bùn ni ilé ìjọsìn àwọn Tósìn wà. +yom_08784_01292655400 [snap] Ìyá náà pàdánù ọmọ rẹ̀ láàárín ọdún kan. +yom_07049_01314002336 [snap] Kò yé mi o, ṣé Oshòdì lo wà? +yom_03397_00007754824 [snap] Ẹ̀jẹ̀ ń yọ ní etí ẹ. +yom_03397_01826257088 [breath] Ọ̀gẹ̀dẹ̀ inú ọgbà bàbá dùn púpọ̀. +yom_02436_00064032752 [breath] Mo kí wọn pé a kú ojúmọ́. +yom_02484_01558489131 [snap] Ògúntádé ni ó gba ìwé náà wọlé. +yom_08784_00259580593 [snap] Ìyá wa ṣe àkíyèsí ìwà ìmele Ọmọṣẹwà, ó sì ti pè ẹ́ lọ́pọ̀ ìgbà láti bá sọ̀rọ̀ ní ìjìnlẹ̀. +yom_03397_00866133086 [snap] Kìí ṣe awọn ọmọlóòkú nìkan ni o ti ṣe ní àǹfàní tipẹ́tipẹ́. +yom_07505_00501299177 [external] Ìjàpá gbọ́n gan nínú àwọn ìtàn Yorùbá. +yom_01523_00649698362 [breath] [snap] A ò ní rìn ní ọjọ́ tí ebí ń pa ọ̀nà. [external] +yom_03397_01612232194 [breath] Gbà gbà gbà lọkọ̀ ń dún lóríi títì. +yom_07049_01212888034 [snap] Àwọn ilé alájà ńlá ńlá ló wà ní ọ̀nà ibiṣẹ́ bàbá mi. +yom_03397_01750196608 [snap] Mọ fẹ́ràn ẹlẹ́dẹ̀. +yom_02436_00487673064 [snap] Kí ló dé tò ń pè mí lánàá? +yom_02484_01749446654 [breath] Ẹwà rẹ pàápàá sì ṣe rẹ́gí bí ìdodo ẹ̀fọn. +yom_07049_01373015271 [snap] Bàtà tuntun náà wọ́n jọjọ. +yom_07505_01323850336 [external] Arẹ́gbẹ́ṣọlá ti di ògbóǹtarìgì ọ̀ta nínú ayò ọlọ́pọ́n títa ò. +yom_02436_01369779581 [snap] Ojú abẹ́rẹ́ náà ṣì ń dùn-ún. +yom_02121_00173407981 [breath] Àǹkárá olójúméje ni Ṣaléwá wọ̀. +yom_06136_00455153014 [snap] Adìyẹ àti pẹ́pẹ́yẹ ni wọ́n kan pákó náà fún. +yom_00610_00594754355 [breath] Gbogbo àwọn ohun tí ó ṣẹlẹ̀ nínú àwùjọ ní wọ́n lò láti fi ṣe àgbékalè eré àgbéléwò. +yom_00610_00832012711 [breath] A ó pàdé nílé ẹjọ́ tàbí àgọ́ ọlọ́pàá. +yom_03397_00477880827 [snap] Èmi àti ẹ̀ jà kúrò ni ṣùgbọ́n a ti yanjú ọ̀rọ̀ náà báyìí. +yom_09334_01450090815 [snap] Akíntópé kì í ṣẹgbẹ́ẹ Ọládìjì rárá. +yom_03397_00855663516 [breath] Àjàlá òun Àyìnlá ti ń ṣe ọ̀rẹ́ láti ìgbà kékeré wọn, inú agbolé kan ni wọ́n bí wọn sí. +yom_01523_01240809446 [snap] Àkìtàn ni gbogbo àdúgbò náà ní ayé ìgbà kan. [external] +yom_02484_02035775934 [snap] Ìjẹta ni òjó rọ̀ kẹ́yìn. +yom_07049_00284564638 [snap] Inúu Fáṣọpẹ́ ń bí mi. +yom_00610_00515852810 [breath] Àwọn olè ja ilé ìfowópamọ́ náà. +yom_02436_01219135889 [breath] Ilé epo náà tóbi, ẹ̀bá ọ̀nà ló wà. +yom_01523_00922422428 Lára ìlú tó wà ní ẹkùn Ìlà-Oòrùn Àríwá ni Adamawa àti Bauchi. [external] +yom_02484_01745173141 [snap] Ọ̀rọ̀ kátikàti wo lò ń sọ gan ná. +yom_07505_01121169833 [breath] Ìrìn àjò yí lárinrin láìní àwọn kọ́núukọ́họ kàǹkan. +yom_02436_01059066012 [breath] Mo fẹ́ lọ rí ọ̀rẹ́ mi kan ní ẹ̀yìn odi. +yom_02436_01363970755 [snap] Ẹ̀gbọ́n mi ò sí nílé o, ẹ padà wá nírọ̀lẹ́. +yom_03397_02146955738 [snap] Ó pọn dandan láti rán wa létí pé Káàárọ̀ Oò Jíire ni wá. [snap] +yom_02484_00833597350 [breath] Mo wá ṣe bí àdán orí igi tó so ara rẹ̀ rọ̀ bí ẹni tó ń tòògbé. +yom_01523_00426748645 Àwọn méjì ń jà lójú títì. [external] +yom_07049_00608347854 [breath] Ṣé o mọ ìdí tí mo fi sọ bẹ́ ẹ̀? +yom_09334_01818834122 [breath] Adéwálé gbé egbòogi olóró wo ilẹ̀ Amẹ́ríkà. +yom_07049_01127248937 [breath] Ó ṣèṣì kọ iye owó tó ju iyé tí ó ná lọ. +yom_02121_00419187291 [breath] Abẹ́ igi ọdán ni bàbá ti ń jayé. +yom_06136_01848457428 [snap] Àwọn ọmọge mẹ́fà ni wọ́n ń jó ń gbìyànjú papọ̀. +yom_01208_01193308750 [breath] Mo nífẹ̀ẹ́ àwọn mọ̀lẹ́bí mi púpọ̀. +yom_07505_01656667535 [snap] [breath] Níkẹ gbé omi sí Àdèyí lẹ́nu. +yom_07049_01994824495 [snap] Ewúrẹ́ ń jẹ koríko. +yom_08784_00715263258 [breath] Ayé fẹ̀ ju òṣùpá lọ nítòótọ́. +yom_03397_01164049831 [breath] Mò ń ṣe iṣẹ́ mi dáadáa. +yom_03034_00808117227 [snap] Ìlú Ìlọrin ní àwon olorin dadakùádà wọ́pọ̀ sí. +yom_06136_01282811083 [external] [snap] Aṣọ púpọ̀ ló wà lọ́jà, lọ ra tì ẹ. +yom_00610_01553745417 [snap] Jẹ́ ka fi bọ̀lì ṣe oúnjẹ ọ̀sán. +yom_02436_01766436833 [breath] Ṣé wàá jẹ́ bàbá àwọn ọmọ mi? +yom_07049_00557808337 [snap] Lọ ra èlùbọ́ wa lọ́dọ Ìya Mọ́ríá. +yom_08784_01312589667 Òjò náà rọ̀ ó fẹ́rẹ̀ hu òkú ọ̀l [abrupt] +yom_03397_00599339971 [breath] Òwú dúdú lowó iná. +yom_08784_01153848160 [breath] Ó fẹ́ dì mọ́ọ lát’ẹ̀yìn. +yom_03397_00222239239 [snap] Wọ́n sá eré àsápájúdé. +yom_08421_00547836933 [breath] [snap] Ní ilẹ̀ Yorùbá, bàbá ni olórí ilé. +yom_03397_00411341696 [breath] Ẹwọ̀n egbére ni a dá fun Aníní. +yom_01523_00783775740 [breath] Ta ló gbé aṣọ tútù sí ibí? +yom_07508_00813365935 [snap] Àwọn kọ́ọ̀sì yí dára gan o. +yom_09334_00142792615 [breath] Sàfúrátù ti gbé obì wá fún bàbá. +yom_07049_02057650742 [snap] Gbogbo ènìyàn ni ó ní ẹ̀tọ́ sí òmìnira. +yom_01523_00641611182 [breath] Mo ní ìgbáfẹ́ ní agogo mẹ́san alẹ́. +yom_07505_01401523141 [external] Wọ́n ṣẹ̀ṣẹ̀ bẹ̀rẹ̀ sí ní kọ́ ilé òhún ni. +yom_07508_00645835667 [snap] Ẹlẹ́nu bótobòto, a ó ma wírú yó ma wírù. +yom_08421_00627964110 [breath] [snap] Orí páànù ilé àwọn Ajírébi ni adìẹ náà fò sí. +yom_02484_00634026122 [breath] Ìjà náà bẹ́ sílẹ̀ nìgbà tí awakọ̀ kọ̀ láti wa ọkọ rẹ̀ kúrò lójúu pópó. [breath] +yom_06136_02067430849 [snap] Bíọ́dún kìí ṣọ́ owó náà rárá, ó lè ná gbogbo owó oṣù rẹ̀ tán ní ọjọ́ kan. +yom_03397_01356689494 [snap] I [hesitation] Ilé kan wà ní Ìkòyí tí mo máa ń rí, mo fẹ́ràn ìgbékalẹ̀ rẹ̀ púpọ̀. +yom_01523_00612617448 Yànmúyańmú ń kùn sí mi létí. [external] +yom_02121_00891361339 [snap] Ìjàm̀bá ọkọ̀ òfurufú tó ṣẹlẹ̀ níjọ́sí ò tíì lọ lórí àwọn ènìyàn. +yom_01523_02104291580 Òkè kẹta ni àwọn Bánkẹ́ ń gbé. [snap] +yom_06136_00699650691 [snap] Màá ṣe iṣẹ́ náà nítorí ó dá lé orí àwọn ìwée Fágúnwà. +yom_02436_01292201432 [snap] Gàní ti mú kọ́kọ́rọ́ lọ. +yom_07508_01016747625 [breath] Ìníolúwa ti di sisí ọmọge. +yom_08421_01064995519 [breath] Ṣé o ti ṣe iṣẹ́ àmúrelé rẹ? +yom_03397_02101059719 Ìníolúwa ni orúkọ ọmọ àbúrò ìyàwó mi. [breath] +yom_02484_01645587418 [snap] Ọmọ dada ni mí látijọ́. +yom_01523_01749196738 [breath] Ṣé o ti tọrọ àforíjì? +yom_02436_00454047651 [breath] Ṣé mo jọ òmùgọ̀ ni? +yom_03397_01919677732 [breath] Ara rẹ̀ kìí lélẹ̀ tó bá ti wà lẹ́gbẹ ìyàwó rẹ̀ kejì. +yom_02436_01761870840 [snap] Àkèré fi inú ṣe ọgbọ́n ni wọ́n ń pèé. +yom_03397_01912975545 [breath] Ìrèti ń bẹ, bí ẹ̀mí bá ti wà. +yom_03034_01271607144 [snap] Ìgéraga Gbénga ga tó bẹ́ẹ̀ jẹ́ pé kìí fẹ́ ba ẹnikéni sọ̀rọ̀. +yom_06136_00822519227 [snap] Àdúrà gbogbo òbí ni kí ọmọ wọ́n ṣ’oríire. +yom_01208_00354564693 [snap] A lọ s’éjìgbò ní’jọ̀ọ́sí. +yom_00610_01639484202 [snap] Àgbantara ni bàbá àgbà fi máa ń nara ní abẹ́ igi ọsàn. +yom_00610_00025765484 [snap] Alọ́ba fi ewé wé ọṣẹ náà. +yom_07505_01673859391 [external] Adémọ́lá nìkan ni ẹni tó mọ̀ ẹ̀dùn ọkàn mi. +yom_01523_01379832398 [breath] [snap] Àafin ọba náà ti kéré jù. +yom_09334_01369287282 Ọwọ́ mi ni kẹ́ẹ wò. [external] +yom_03397_01791068891 [snap] Mo nífẹ̀ẹ́ ẹyin ojú rẹ̀. +yom_07505_01134318847 [external] Á ṣeé ṣe lágbára ọlọ́run. +yom_02436_00352999611 [breath] Alábòsí ni wọ́n, àfàìmọ̀ kí ìṣe burúkú náà má bá wọn dàgbà. +yom_09334_01002382004 [external] Ó dá mi lójú pé mo mọ iṣẹ́ náà ṣe. +yom_01523_00291489596 [breath] Lọ tẹ́ ibùsùn bàbá. [breath] +yom_06136_01985489204 [snap] Kí èdùmàrè dá èmí sí. +yom_02436_01399583303 [breath] Gbogbo rẹ̀ ṣẹ̀ hàn kedere sí mi ni. +yom_02121_00429881221 Ẹlẹ́nu wèrèpè ni mo pèé. [breath] +yom_02121_01331414256 [snap] Ìgbẹ́kẹ̀lé nínú Olúwa kìí yẹ̀ láéláé. +yom_08421_02063846741 [snap] Wọ́n ṣe gẹ́gẹ́ bí Ifá ṣe wí. +yom_09334_00893058030 A ò ní gbà, [breath] ó ti hàn pé ẹ ti pàdé ọrẹ́ yín lọ́nà. +yom_07505_00795586720 [external] Nígbà mìíràn, tí ìfẹ́ bá pọ̀jù, kò dára. +yom_01523_02109066820 [breath] Faransé ló gba ife ẹ̀yẹ àgbáyé bọ́ọ̀lù ní ọdùn tó kọjá. [external] +yom_07049_00867906662 [breath] Ṣòkòto Ọláànipẹ̀kún ò balẹ̀. +yom_01523_00380071467 [breath] [snap] Kí ló dé tí àwọn kan ma ń bínú tí wọ́n bá̀ ṣàpèjú wọn gẹ́gẹ́ bí i ènìyàn sísanra? +yom_01523_01458350798 [breath] Àwọn ìjọba ti ń da ọ̀dà sí títì ìlú wa. +yom_00610_02027817433 [snap] [breath] Ṣé o ti rí ilé kòkó ní Ìbàdàn rí? +yom_02436_00905089491 [breath] Ilẹ̀kùn méjì ni ó wà lọ́nà ọ̀run. +yom_09334_01263677076 [snap] Ire ló yẹ ní ṣíṣe, ìkà kọ́. +yom_07049_02055844857 [snap] Igi náà rí ràbàtà. +yom_06136_01799256743 [snap] Ẹni orí yọ, ó d’ilé. +yom_00610_01969882534 [snap] Ọkọ̀ ayọ́kẹ́lẹ́ náà rẹwà púpọ̀. +yom_07049_01942148149 [snap] Ó ti y’óhùn padà. +yom_02484_01825904800 [snap] Àwọn ọmọ náà ti bàlágà láti lọ́kọ. +yom_02436_01956909162 [breath] Wàhálà tí àwọn ènìyàn ṣe láti lè jẹ́ ènìyàn láyé kìí ṣe kèrémí o. +yom_08784_00540604285 [breath] Wọ́n n bá ara wọn sọ̀rọ̀ lówelówe. +yom_02121_00636745987 [snap] Ọ̀rúnmìlà nìkan ló gbọ́ ohùn ẹnu Olódùmarè yékéyéke. +yom_01208_01530861092 [snap] Àwọn adájọ́ mẹ́sàn-an ni wọ́n dá ẹjọ́ náà. +yom_07049_00676007103 [snap] Àyìnlá ní Kúnlé fẹ́ràn obìnrin, ṣé ọkùnrin ni kó kwá fẹ́ràn ni? +yom_01208_00518855357 [external] Àwọn Túnjí ti pààrọ̀ ẹ̀rọ amóhùnmáwòrán wọn. +yom_03397_01710524227 [breath] Àyànmọ́ ò gbó’gun, ṣùgbọ́n ó gbọ́ àdúrà. +yom_02436_00682828921 [snap] Yin Olúwa ìwọ ọkàn mi kì o má ṣì ṣe gbàgbé ore rè. +yom_03397_00884869351 [breath] [snap] Ìjọba àpapọ̀ ti ṣe ìgbéga fún àwọn òṣìṣẹ́ ilé-iṣẹ́ ìròyìn kan. +yom_02436_01589893130 [breath] Ilé ẹ̀kọ́ girama tó wà ní Jíbówú ni Akíntádé ti bẹ̀rẹ̀ iṣẹ́. +yom_03397_00716640676 [snap] Afẹ́fẹ́ náà pò ju kí èyàn bọ́ aṣọ sílẹ̀ lọ. +yom_02436_01198761674 [snap] [breath] Lára ẹbí tó gbajúmọ̀ ní ìlú Ìlọrin ni Sàràkí. +yom_08421_01255874008 [snap] Igbó lótun lósì, àwọn ilẹ̀ náà yóò wúlò fún ìjọba lọ́jọ́ iwájú, àbí kí lẹ rọ̀? +yom_02436_01077511316 [snap] Iṣẹ́ alágbẹ̀dẹ ni bàbá mi yàn láàyò. +yom_07508_01169314638 [snap] Ṣé o máa ń mutí? +yom_02484_00402715192 [snap] Fáànù mẹ́ta ló wà nínú yàrá ìgbàlejò. +yom_03397_00638872276 [breath] Ìfọ́tí olóyì ni mo fún ọmọ tí ó wà lẹ́gbẹ ọ̀tún mi lójú àlá rẹ̀. +yom_02484_00044246585 [snap] Ọ̀mọ̀wé fún ọmọ náà ní ẹ̀bun rẹpẹtẹ. +yom_07049_00532380796 [breath] [snap] Àṣáró elépo rẹ́dẹ́rẹ́dẹ́ ni mo bá nígbà tí mo ti Ibi’ṣẹ́ dé. +yom_02436_02129872860 [snap] Àwọn mìíràn ri obìrin gẹ́gẹ́ bí ẹ̀dá tó nífẹ sí ohun ọ̀fẹ́. +yom_02121_01262071535 [snap] Ọwọ́ méjì ni wọ́n kó sí inú ẹ̀. +yom_03034_00463295136 [snap] Babájídé ni adájọ́ ilé ẹjọ́ gíga tuntun tó wà ní Ìkòyí. +yom_07049_00636441008 [snap] Wọ́n ti fi jọba Ìlú Alábà. +yom_06136_00804124815 [snap] Oyè Balógun ni idílé náà máa ń jẹ láti ìgbà yìí wá. +yom_02436_00428024882 [breath] Ọ̀rúnmìlà sọ fún Ògún pé Ìrémọjẹ ni a ó máa pe orúkọ orin arò yìí. +yom_07049_00369738026 [snap] Olúwa ọba o ṣé o, mo rí isó só bẹ́ẹ̀ ni mo rí ìtọ̀ tọ̀. +yom_03397_00131895109 [breath] Èmi àti àwọn àbúrò mi la sun yàrá mọ́’jú. +yom_07505_02131160624 [snap] Láti ìlú Àjàṣẹ́ ni màmá ti wá. +yom_07508_01087474451 [snap] Mo fẹ́ràn àwọn ọ̀rẹ́ mi. +yom_07049_01543594653 [snap] Kí Ọlóṛun mú ìgbà padà bọ̀ sí’pò. +yom_07505_01004000945 [snap] Wàhálà ọmọ yìí ò ní ṣ'ekú pa ẹ́ lórúkọ Jésù. +yom_01523_00045183386 Ilée wa ni mo wà nígbà yẹn. [external] +yom_02484_01347205651 [snap] Ìyálé mi ti ẹ̀ bá wa lálejò lọ́sè tó kọjá. [snap] +yom_02121_01720574192 [snap] Òpẹ́bí ni àwọn ọ̀rẹ́ rẹ̀ ti lọ ń ṣeré. +yom_00610_00272412504 [snap] Àwọn elétò ìlera ló ń se ìtójú fún àwọn aláàárẹ̀. +yom_01523_01656064431 Ní ọ̀nà àkọ́kọ́, wọn ò lè ní ạ̀wọn ò ní gba ti wa. [snap] +yom_06136_01398365269 [snap] Ọ̀gá ọlọ́pàá náà ló gba owó àbẹ̀tẹ́lẹ̀. +yom_07049_01141203318 [snap] Ìjàkùmọ̀ kìí rìn’de ọ̀sán. +yom_01523_02042697707 [breath] Sùúrùlérè ni ibi tí a ó ti ṣe ìpàdé ọ̀sẹ̀ tó n bọ̀. +yom_01523_00858808849 Olójú dúdú ni wá tẹ́lẹ̀. [external] +yom_03397_00872186519 [breath] Òkèfúnwa ti pinu láti ríi pé gbogbo ohun tí a nílò la máa rí gbà. +yom_03397_01877983138 [breath] Iṣẹ́ àmúrelé tí olùkọ́ àgbà fún wa yìí le gan o. [breath] +yom_07049_01615482826 [breath] Nígbà wo lò ń padà lọ sí ìlú yín náà? [breath] +yom_00610_01444639037 [breath] Àdùkẹ́ ń ta Mọ́sà ní àdúgbò kan ní Olúwọlé. +yom_03397_00379284769 [breath] Ẹ yí fáànù náà sókè. +yom_03397_01806434024 Irun àgbọ̀n mí ti pọ̀ jù. [breath] +yom_07505_01357520734 Ohùn wa ti há. [external] +yom_06136_01999865713 Bí bàbá bá ń rìnrìn àjò, kí wọ́n má gbé àtùpà dání. [snap] +yom_01523_00555988505 [breath] Gọ́tà náà ń rùn. +yom_03034_01450632096 [snap] Ogun jà ní ìlú náà fún ọdún méje. +yom_02484_01550343499 [snap] Kí ni ká fi ṣe yín l’álejò báyìí, ṣé ẹ ó jẹ àmàlà tàbí iyán ni ká gún? +yom_09334_01602376118 [external] Ìréde òru ti àwọn ọ̀dọ́mọge ìsẹ̀yín rawọ́ lè má wàá ti peléke síi. +yom_07508_00783170538 [snap] Wọ́n ti lọ fọ’bọ́ níta. +yom_08784_01068917187 [breath] Àárò Wọnúọlá sọ̀ mí. +yom_02436_00839891534 [snap] Lára àwọn agbẹjọ́rò àgbà ni Fálànà wà. +yom_02484_01565204340 [snap] Nígbà tí bàbá lọ sí oko ní ijọ́ kan ló rí ọmọ ìkókó náà ní abẹ́ igi ọsàn. +yom_03397_01322486103 [snap] Ẹ rora sáré l’ójú ọ̀nà. +yom_03397_02035612405 [snap] Iṣẹ́ ajé ló s’ọmọ nù bí òkò. +yom_06136_01783801765 Oyín ta á, ó sì sá lọ. [external] +yom_00610_00202952083 [snap] Mo ti fi àtẹ̀jíṣẹ́ ránṣẹ́ sí alága lórí ọ̀rọ̀ owó orí tí a fẹ́ san. +yom_07049_01082141419 [breath] Fálétí ti lọ ra àwọn ṣòkòtò ní ọjà Èjìgbò. +yom_01523_00492431435 [breath] Ọ̀gá akọrin wa féraǹ mi gidi. +yom_07049_00243527409 [snap] Ẹ̀dá kan wáyé nípasẹ̀ àwọn méjì tí wọ́n sùn papọ̀, tí wọ́n sùn ì lóyún rẹ̀. +yom_03034_01245173600 Lọ gba kọ́kọ́rọ́ wá. [snap] +yom_01523_01979038882 [breath] Bàbá yẹn kìí gbọ́ràn, àfi’ìgbà tó bá súu. +yom_07508_00122380614 [snap] Ó ṣẹ̀ rí’ṣẹ́ mìíràn ni. +yom_03034_01569789295 [snap] Mo ti rí àwọn àbúrò mi á ti tó ọdún márùn-ún. +yom_01523_01416005370 Àgbò náà sanra. [external] +yom_02436_01878910410 [snap] Ìsàlè àpótí ni màmá máa ń kó àwọn aṣọ olówó iyebíye wọn sí. +yom_07505_00310661790 [external] Iṣẹ́ alágbẹ̀dẹ ni ó yàn láyò. +yom_03397_01408413858 [breath] Atọ̀ọ́lé ni ọmọ náà. [breath] +yom_00610_00259482647 [breath] Ìṣẹ̀lẹ̀ náà ní agbára jọjọ, ó fẹ́rẹ̀ da àárín gbogbo ebí rú. +yom_06136_01129683886 [external] Ó le kú, ìjà ọ̀rẹ́. +yom_06136_02025147386 [snap] Àwọn Akẹ́kọ̀ọ́ ò ní aṣojú mó ní ilé-ẹ̀kọ́ gíga. +yom_03397_00043840630 [breath] Ọdẹ àdẹ́dọ̀ ni Ọdẹ́wálé jẹ́ nígbà èwe rẹ̀. +yom_01208_01689805111 [snap] Bó bá wu Ẹyíòwùnmí, kó má da ẹran lọ sínú igbó. +yom_03397_02082064921 [snap] Fún mi ní ẹran àti ẹja jẹ. +yom_07505_00618049974 [snap] Ilésanmí dùn ju oyè lọ. +yom_00610_00005485361 [breath] Àdàkọ ni gbogbo wọ́n ṣe. +yom_07049_00209589373 [snap] Ta ló wà nínú ọgbà náà? +yom_02484_00394689344 [snap] Ó f’ọwọ́ lérán ó ń wò’ṣe olúwa. +yom_07049_00404432022 [snap] Òde méjì ni a ní láti dé. +yom_03397_02131593374 [breath] Hósítẹ̀lì rẹ ló ti gbé oúnjẹ fún mi. [breath] +yom_03397_00832369199 [breath] Mo gbà fún ọ̀gá mi [breath] , àlá rere ni wọ́n ní. +yom_09334_00954091592 [snap] Ẹ̀yà Yorùbá ti kúrò lẹ́gbẹ́ àwọn ẹ̀yà tí wọ́n máa ń ṣe àmúlò ìlànà òǹkà àwọn èdè mìíràn. +yom_00610_01503680423 [breath] Ojọ́ mẹ́wa ni ó kù kí a kásẹ̀ gbogbo ètò nílẹ̀. +yom_01523_01067899408 Lẹ́báa títì ni a ti rí atọ́kọ̀sẹ tí ń yẹ ọkọ̀ kan wò. [external] +yom_06136_00227150227 [snap] Ẹ máa sọ̀dí wùkẹ̀wụ̀kẹ̀. +yom_06136_00069134347 Ọmọ yìí fi ewúrẹ́ rúbọ bí babalawo ti sọ fún un. [external] +yom_02121_01464131542 Ọmọ yẹn ní ẹwà. [breath] +yom_08421_00502456730 [breath] Àra mí ń kóná ní ooru m’ọ́jú, ọpẹ́lọpẹ́ Ṣayọ̀ tó tọ́jú mi. +yom_08784_01793238062 [breath] Kòkòrò àárùn tí kò gbóògun ti pọ̀ ní ìlú yìí. +yom_03034_00024854036 [breath] Ilé tí èmi àti àwọn akẹgbẹ́ mi dé sí rẹwà púpọ̀, [snap] ọ̀rọ̀ gan kò lè ṣàpèjúwe rẹ̀. +yom_06136_00349885157 [snap] Ikọ́ burúkú wo ni ò ń wú báyìí. +yom_09334_01108683012 [breath] Ọ̀jọ̀gbọ́n lọmọ náà. +yom_07049_00173157252 [snap] Mo ò dára nínú eré bọ́ọ̀lù gbígbá. +yom_03397_00569054665 [breath] Ó rò pé màá fi orí lé ọ̀nà ìlà-ọ̀run padà lọsí ilé lọ sùn fún ọjọ́ díẹ̀. +yom_09334_01126847228 [breath] Bí kò bá sí èdè kò ní sí ìtakùrọ̀sọ láàárín ọmọ ẹ̀dá ádámọ̀ méjì tàbí jù bẹ́ẹ̀ lọ. +yom_00610_01784848179 [breath] [snap] Ọmọkọ́mọ ni Dèjì. +yom_00610_01058800129 [snap] Àpò ṣaka ni wọ́n kó gbogbo ẹrù wọn sí nígbà tí wọ́n lọ sí ìrìn àjò náà. +yom_02436_01069058378 [snap] Ìlà-Oòrùn Gúúsù orílẹ̀ èdè yìí ni mo ti wá. +yom_00610_02145323610 [breath] Bí ó tilẹ̀ jẹ́ pé n ò fẹ́ran ọmọ náà n ò rò pé ó lè pààyàn. +yom_08784_00008811946 Abẹ́rẹ́ mẹ́ta ni ó gbà sí apá rẹ̀. [abrupt] +yom_09334_01515918722 [breath] Èmi ni Alága Ẹgbẹ́ Kásowọ́pọ̀. +yom_00610_00887863353 [snap] Àmì ayò mẹ́rin sí òdo ni Manchester United fi na Chelsea ní àná. +yom_00610_01374871372 [breath] Eéwo mú mi lábẹ́ etí. +yom_01523_01346428924 [breath] Àwọn iwin inú igbó ti ń jíròrò. +yom_07049_01449980905 [snap] Bàbá Adémọ́lá ti fayé sílẹ̀ láti ìgbà tí a ti wà ní ilé ìwé gíga. +yom_08421_01191226543 [snap] Mo fẹ́ lọ gba atẹ́gùn ní’ta. +yom_02436_01396806081 [breath] [snap] Ọmọ yẹn ò lẹ́kọ̀ọ́. +yom_02484_00504699215 [snap] [breath] À ná tó ẹgbẹ̀rún náírà sí nǹkan ọ̀hún. +yom_01208_00474791844 [breath] [snap] Aláta rodo ti dé o, ṣé ẹ fẹ́ rà àbí ẹ ò rà? +yom_07508_01040838676 [snap] Ọ̀rọ̀ máa jáde lóru òní. +yom_03397_01310927765 [breath] Apá Káróunwí ti kán. +yom_01523_01824503554 Àwọn àgbò ń kan ara wọn pa. [external] +yom_03397_01455201401 [breath] Ọkùnrin ni adarí ìjọ náà. +yom_02484_00762506968 [snap] Wọ́n máa ń lo orin dadakùádà lati fi ki oríkì ènìyàn. +yom_03034_00920838859 [snap] Àwọn ọ̀rẹ́ méjì ń ya àwòrán láàárọ̀ ọjọ́ náà. +yom_04310_00053494786 [external] Akíntúndé ti ṣètò gbogbo ìwé ìrìn àjò mi. +yom_00610_00339543300 [snap] Àgùntàn l’ẹranko tó gọ̀ jù. +yom_07508_00110980675 [snap] Kí gbogbo ayé ó wá bá wa dá sí ọ̀rọ̀ yìí, kó tó pokúlúrúmuṣu. +yom_08784_01544027142 [snap] Ilẹ̀ náà kìí ṣe ilẹ̀ olómi, ẹ ó gbádùn rẹ̀. +yom_06136_00906913714 [external] Wọ́n máa gun Àràfá ní ọ̀la. +yom_07505_01297869791 [breath] Kò sí bí èèyàn kan ṣe le kàwé tó, kò lè mọ gbogbo ǹkan tán nílé ayé. +yom_07508_00870120725 [snap] Àgbònrín mẹ́ta ń sọdá. +yom_03397_01968666909 [breath] Ọlárótìmí fẹ́ràn ṣẹ̀kẹ̀rẹ̀, ohun èlò tí ó fẹ́ràn láti máa lù nìyẹn. diff --git a/datasets/openslr_yoruba/yof_00295_00020329077.wav b/datasets/openslr_yoruba/yof_00295_00020329077.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a4dc81f268964efd36224fde612db360faefb7a --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00020329077.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75b570ccc2b9d168aef2b8c9f701720c4fc91296d8dd0082fc58d8537534ec2 +size 466988 diff --git a/datasets/openslr_yoruba/yof_00295_00024634140.wav b/datasets/openslr_yoruba/yof_00295_00024634140.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1baaed620709428a0515bb68e725175a465d6a2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00024634140.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ca341abf35a419e0f941c728a09ef259c6daaa07872b7025454a3abe88a857 +size 278572 diff --git a/datasets/openslr_yoruba/yof_00295_00061502962.wav b/datasets/openslr_yoruba/yof_00295_00061502962.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4e175e5c5adaffcf28fb8b240e1b3f8b1998e31 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00061502962.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26abb1262599bcc0703ba3ccff31985577469ca2ef6c3efcbec45c455fe131e5 +size 303148 diff --git a/datasets/openslr_yoruba/yof_00295_00069502356.wav b/datasets/openslr_yoruba/yof_00295_00069502356.wav new file mode 100644 index 0000000000000000000000000000000000000000..c94509238c4da3f029c85c2b2d5dd9e2ab6f32a3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00069502356.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90dc0be2babe7904cdd447e62d3a07a3ad93d5fecfcb3e889213cc8eed05d50 +size 344108 diff --git a/datasets/openslr_yoruba/yof_00295_00072176292.wav b/datasets/openslr_yoruba/yof_00295_00072176292.wav new file mode 100644 index 0000000000000000000000000000000000000000..058af68bd89ac22e36a768fc76d10e9868b2adbb --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00072176292.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4cfdf53f4f94652591edc27b8efcdf59d2617cd5c638e80023b49f2f056333 +size 417836 diff --git a/datasets/openslr_yoruba/yof_00295_00092049886.wav b/datasets/openslr_yoruba/yof_00295_00092049886.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f350a19c0f1d3f16fed5b770b75d0f436e09971 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00092049886.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0654372f6cfbec7f95d5c6fe616b5a47472ced2e3b9cbd6a4e85fe9303e07e70 +size 426028 diff --git a/datasets/openslr_yoruba/yof_00295_00099759266.wav b/datasets/openslr_yoruba/yof_00295_00099759266.wav new file mode 100644 index 0000000000000000000000000000000000000000..84a8335d984b52a3f9bee694c1af5e494a039488 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00099759266.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c30107646668c79eca3736a82b5f72f29b22c4bf31c32c3275fda01bb7bb49 +size 385068 diff --git a/datasets/openslr_yoruba/yof_00295_00134108651.wav b/datasets/openslr_yoruba/yof_00295_00134108651.wav new file mode 100644 index 0000000000000000000000000000000000000000..c561d5f3ec2cb8312866b3f81e381f1600c6f5d5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00134108651.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3aae2fb2c6161f58fd496ccb73e3695db66779b6c06fd12cef7233a633e6dbb +size 262188 diff --git a/datasets/openslr_yoruba/yof_00295_00136402910.wav b/datasets/openslr_yoruba/yof_00295_00136402910.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6fe8462b271c1c19586509bfa628de825c86d9f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00136402910.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035e43afe685016feb8677986e7c65bf90afe1c76155bc68e1e6b4cac30ce556 +size 393260 diff --git a/datasets/openslr_yoruba/yof_00295_00151151204.wav b/datasets/openslr_yoruba/yof_00295_00151151204.wav new file mode 100644 index 0000000000000000000000000000000000000000..788f77f7ff4031ff49446ec1c65bb742fac60b43 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00151151204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481db2c189ee5738a8a61f50d19198964953ff287eacc937c4e79c034f328318 +size 475180 diff --git a/datasets/openslr_yoruba/yof_00295_00154186764.wav b/datasets/openslr_yoruba/yof_00295_00154186764.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1fc63ef4c7cdaceefd971cd4f4b56baa440525c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00154186764.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3176988e4fbe2261353b61cbdf08a7330faefeb125d88c5398c6c10ba0a0ca0 +size 614444 diff --git a/datasets/openslr_yoruba/yof_00295_00161816699.wav b/datasets/openslr_yoruba/yof_00295_00161816699.wav new file mode 100644 index 0000000000000000000000000000000000000000..991fe48772f50b2a6c3c420617ae989b142eb2de --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00161816699.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a785f894291a723e02a744530d2aebee0725573fbe154730d9d510ab4bd73ed9 +size 303148 diff --git a/datasets/openslr_yoruba/yof_00295_00216817283.wav b/datasets/openslr_yoruba/yof_00295_00216817283.wav new file mode 100644 index 0000000000000000000000000000000000000000..a82d1a2096d29db0b848e53db2bd0f9a74fc39c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00216817283.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f2be6609d6441544cb628eb5f4eb5cac128c9b02a525c6caa5ea9b6feefa7f +size 327724 diff --git a/datasets/openslr_yoruba/yof_00295_00236719811.wav b/datasets/openslr_yoruba/yof_00295_00236719811.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac089fdd05c2dd21a060745f248ac07e8272b191 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00236719811.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b135235f23abe1b54bcea6d49b68a613829a1956905397488b70c7192eddc61 +size 491564 diff --git a/datasets/openslr_yoruba/yof_00295_00248436001.wav b/datasets/openslr_yoruba/yof_00295_00248436001.wav new file mode 100644 index 0000000000000000000000000000000000000000..9854bb7b866ac4bf4d820d2e673144158a966fb5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00248436001.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3414f8528b5dbff298a6c840abaad96c5c2e327f5817f8f593a6232c3381482f +size 434220 diff --git a/datasets/openslr_yoruba/yof_00295_00278884696.wav b/datasets/openslr_yoruba/yof_00295_00278884696.wav new file mode 100644 index 0000000000000000000000000000000000000000..69f42f6ab618bf9bfd7e766e842e96e2a4d16237 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00278884696.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf6fa82a8874571c6805ba3cab0167f7a41d29e9d9b1c534a718969e01ada95 +size 458796 diff --git a/datasets/openslr_yoruba/yof_00295_00318039388.wav b/datasets/openslr_yoruba/yof_00295_00318039388.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9f35f0e6a77de1d885edac42ac0b6c3ede26deb --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00318039388.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc89377f4d377cabb528e94f285983dd4ef742fe27dbc5459953c7b7713406b +size 712748 diff --git a/datasets/openslr_yoruba/yof_00295_00334963468.wav b/datasets/openslr_yoruba/yof_00295_00334963468.wav new file mode 100644 index 0000000000000000000000000000000000000000..24c14e3b85c07311607a71ada3b12b5d31af9af1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00334963468.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:561d7537882ee315be704fb6cee425cd8d7c8a8593d80cb0e8b39d72d9d3bb73 +size 450604 diff --git a/datasets/openslr_yoruba/yof_00295_00427144639.wav b/datasets/openslr_yoruba/yof_00295_00427144639.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f48e3e3dd7eb7a433475b72211e5a1958abb5a9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00427144639.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27481050594c10da1f70229bfe1b991e1b8b027cce2dd5d947e20d7ea4720108 +size 466988 diff --git a/datasets/openslr_yoruba/yof_00295_00434743286.wav b/datasets/openslr_yoruba/yof_00295_00434743286.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6b027eab73baf9efb87de926b4b9f164c3b0b57 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00434743286.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5c5d07bfeb114b4a1610c0a543b830d8e9652103517b27d1d8def89bda49ae +size 426028 diff --git a/datasets/openslr_yoruba/yof_00295_00444601186.wav b/datasets/openslr_yoruba/yof_00295_00444601186.wav new file mode 100644 index 0000000000000000000000000000000000000000..989eb242c9c99d53bf6ac1c847883d0aae88143a --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00444601186.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815c69400a39c0cd575878669d29b981554dadb5c952743ceeb34fa2adfcf3c9 +size 409644 diff --git a/datasets/openslr_yoruba/yof_00295_00480434341.wav b/datasets/openslr_yoruba/yof_00295_00480434341.wav new file mode 100644 index 0000000000000000000000000000000000000000..fb9a9977bfe514059adc6f8edb2b1b3809765848 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00480434341.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefbb09d66eb00d823e67d0e3198b13c30bd22bbc36ba1adfeec3bed5e3ede89 +size 393260 diff --git a/datasets/openslr_yoruba/yof_00295_00564596981.wav b/datasets/openslr_yoruba/yof_00295_00564596981.wav new file mode 100644 index 0000000000000000000000000000000000000000..b08f338fc93a9237bf6ac3811af751b1b20fcb44 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00564596981.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:223ec21665ad50253b09e84712b80d9c4318170cf84826f78956a1185e70edc3 +size 335916 diff --git a/datasets/openslr_yoruba/yof_00295_00612305272.wav b/datasets/openslr_yoruba/yof_00295_00612305272.wav new file mode 100644 index 0000000000000000000000000000000000000000..554932ba79c2f44ccfcf31928928950cd14b1ac5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00612305272.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fc3263cdb7af319578ed6d92408f21fdb009ab7bac50243a320b6fa442f6b3c +size 319532 diff --git a/datasets/openslr_yoruba/yof_00295_00613194089.wav b/datasets/openslr_yoruba/yof_00295_00613194089.wav new file mode 100644 index 0000000000000000000000000000000000000000..5272672d61491ee72903801ea643e1f89a559534 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00613194089.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cba9c9299ec5f65b5fae7a5616315ef48654755df042f443281f5187a996ff +size 417836 diff --git a/datasets/openslr_yoruba/yof_00295_00626766260.wav b/datasets/openslr_yoruba/yof_00295_00626766260.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a5bf831b0b0f603349a515a514e7ef58201d1f2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00626766260.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab2c39f5b90ffbaf51c9b8d9928562c7e350c179f7f2d2b44b35ec0fbbc81f1 +size 778284 diff --git a/datasets/openslr_yoruba/yof_00295_00635387478.wav b/datasets/openslr_yoruba/yof_00295_00635387478.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b1b1f03e84383ab7779d7f3a2a5d9bb06efab2f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00635387478.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc36b00f5f937e94445d972e1edd91b230907a815686bb528c50e526dcea0de +size 360492 diff --git a/datasets/openslr_yoruba/yof_00295_00654803226.wav b/datasets/openslr_yoruba/yof_00295_00654803226.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5a090db7ae2458e5608f471aefb368284971f9c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00654803226.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683913972162c29dbcfe27ce755df6f24a89bb7b9bafc78171ddcfc1a78dd9c2 +size 352300 diff --git a/datasets/openslr_yoruba/yof_00295_00670146730.wav b/datasets/openslr_yoruba/yof_00295_00670146730.wav new file mode 100644 index 0000000000000000000000000000000000000000..5766288044622031f8da37b8016cfe6df358f298 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00670146730.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ada1e2c15dec15bf463b606abd477d3473eb908edec15229b18d51263496fdf4 +size 270380 diff --git a/datasets/openslr_yoruba/yof_00295_00677007677.wav b/datasets/openslr_yoruba/yof_00295_00677007677.wav new file mode 100644 index 0000000000000000000000000000000000000000..035cbb79dd19bf5f36980b1fbbcd508b7b68c35e --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00677007677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45515b508301343349ff5ed9e98ce2e190ba43f1953b75c7f044a252994ef51e +size 491564 diff --git a/datasets/openslr_yoruba/yof_00295_00701915531.wav b/datasets/openslr_yoruba/yof_00295_00701915531.wav new file mode 100644 index 0000000000000000000000000000000000000000..cec70abf5c37172f4d2262884369de2ded8821f1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00701915531.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d210a810aa2c76f0db50143c2aeb86c2aaacdffdd64de6159de42dd787c8c57 +size 622636 diff --git a/datasets/openslr_yoruba/yof_00295_00708065118.wav b/datasets/openslr_yoruba/yof_00295_00708065118.wav new file mode 100644 index 0000000000000000000000000000000000000000..bbca5224e617d03b3639843d947ed56b0ce28849 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00708065118.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc16c0d5712471dd004ccb3f8e3587b34546bef39e10b592ceb79d7a8c37b1e +size 507948 diff --git a/datasets/openslr_yoruba/yof_00295_00732956445.wav b/datasets/openslr_yoruba/yof_00295_00732956445.wav new file mode 100644 index 0000000000000000000000000000000000000000..94960ce6915c472646e23a19e13e1cd52b2975a0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00732956445.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a11d9cee62324ec5c830bdebe1704a176e7e51735a225c35a7ee89d47b540f2 +size 319532 diff --git a/datasets/openslr_yoruba/yof_00295_00749261129.wav b/datasets/openslr_yoruba/yof_00295_00749261129.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e054974c33841d7c44f3c137a60fd01b6ae9b63 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00749261129.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8283aa907005c87076fdbd747393c61ac48b42bfc6be3e9631144c566cfea93 +size 393260 diff --git a/datasets/openslr_yoruba/yof_00295_00759398392.wav b/datasets/openslr_yoruba/yof_00295_00759398392.wav new file mode 100644 index 0000000000000000000000000000000000000000..10b716f7894ee81e869e083960a7315c18fa8e0f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00759398392.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893f0b910ba3873c15ce234e56567619ffdd75d6a70fcf9aa3e3d8deccb9feef +size 303148 diff --git a/datasets/openslr_yoruba/yof_00295_00777977849.wav b/datasets/openslr_yoruba/yof_00295_00777977849.wav new file mode 100644 index 0000000000000000000000000000000000000000..6190a97b95285ddbda31a120e5f68e66b2e6ad4d --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00777977849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2090e58033b963dd20b25d6c9e7723e3922f9cf03dd40450fb5d2cf9610617c3 +size 360492 diff --git a/datasets/openslr_yoruba/yof_00295_00787941514.wav b/datasets/openslr_yoruba/yof_00295_00787941514.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6e95f1b7023798175ec29efad6e4186714fcf68 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00787941514.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27440036c88d8085f1ae293299575f9dbbb320014fe26357be161239d9f8e398 +size 720940 diff --git a/datasets/openslr_yoruba/yof_00295_00833359533.wav b/datasets/openslr_yoruba/yof_00295_00833359533.wav new file mode 100644 index 0000000000000000000000000000000000000000..878f979277621010e0f1fda7e10dc4ee520f7092 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00833359533.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5fb31365888d96d90489217caf3e3685913d3f7ab421d68007e7c8082b13aa +size 630828 diff --git a/datasets/openslr_yoruba/yof_00295_00849678849.wav b/datasets/openslr_yoruba/yof_00295_00849678849.wav new file mode 100644 index 0000000000000000000000000000000000000000..930bbfedbdadec77e0b8fd8892766eaa43ed5894 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00849678849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9661b9d88664642ef40cb8b63306799f3acc96935a55b942e78e935d23836a7 +size 327724 diff --git a/datasets/openslr_yoruba/yof_00295_00871016206.wav b/datasets/openslr_yoruba/yof_00295_00871016206.wav new file mode 100644 index 0000000000000000000000000000000000000000..bda4a1ca79ee99bbf99e5bcb763c1c8a7741d7ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00871016206.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01aa0eecc49227154ff38af9fe78a5630e4176af8042cb5f9ed1178f7d8d1394 +size 344108 diff --git a/datasets/openslr_yoruba/yof_00295_00872733233.wav b/datasets/openslr_yoruba/yof_00295_00872733233.wav new file mode 100644 index 0000000000000000000000000000000000000000..04087461db5511a216d03567ea015d24faf59edd --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00872733233.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7887a1c62413876c2ce7c502592c34dd2042a79382592bf8598d010a73bfb4 +size 401452 diff --git a/datasets/openslr_yoruba/yof_00295_00876128926.wav b/datasets/openslr_yoruba/yof_00295_00876128926.wav new file mode 100644 index 0000000000000000000000000000000000000000..8cc360ef91b7c84e6414ff7b3b7cdfb3fbd95faa --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00876128926.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d47f84569ab1dcc8af72d89f45060eb3d79232739769b601295f2f82e17c373 +size 376876 diff --git a/datasets/openslr_yoruba/yof_00295_00939989128.wav b/datasets/openslr_yoruba/yof_00295_00939989128.wav new file mode 100644 index 0000000000000000000000000000000000000000..e88ee9898df4d255f03223ee41a6ecc0965773e9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00939989128.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba08d6b722779e7d9e28ba14be172e20237710745a2c9d59091afb72ec16b5b +size 655404 diff --git a/datasets/openslr_yoruba/yof_00295_00962828791.wav b/datasets/openslr_yoruba/yof_00295_00962828791.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd7b6e45e5a79f75daa8a4654e3f8ecd3f7699ee --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00962828791.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c31b5a638d09929247769bf7ede1ba566d605ef4bff04beaee43f8142a4ca1 +size 327724 diff --git a/datasets/openslr_yoruba/yof_00295_00963887414.wav b/datasets/openslr_yoruba/yof_00295_00963887414.wav new file mode 100644 index 0000000000000000000000000000000000000000..98cb149cfcc62533f0fe3ced2a4c1e469d773def --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00963887414.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef83c86efa92df1fb08c1ef754f8eec6e5f9980718e0d3b75e67c578d66853d +size 409644 diff --git a/datasets/openslr_yoruba/yof_00295_00964382220.wav b/datasets/openslr_yoruba/yof_00295_00964382220.wav new file mode 100644 index 0000000000000000000000000000000000000000..f71d11a466aaf5a61f248019d5f92cab7d76dc5f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00964382220.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d27daffd21c4a782a35aca8296658f50ee71bd8821ad8fa6c2141a0a56270c20 +size 450604 diff --git a/datasets/openslr_yoruba/yof_00295_00988402403.wav b/datasets/openslr_yoruba/yof_00295_00988402403.wav new file mode 100644 index 0000000000000000000000000000000000000000..98a51ebd979003bfbaa85a6ff21280ef7e0ca532 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00988402403.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d5ee1acb2b42c3faa86c111bb1816e66a06168b3f3d4991c09605ce53962dcb +size 458796 diff --git a/datasets/openslr_yoruba/yof_00295_00992063984.wav b/datasets/openslr_yoruba/yof_00295_00992063984.wav new file mode 100644 index 0000000000000000000000000000000000000000..db6fc61ce8e9be5fc82f22feeb0c9563e172ca72 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_00992063984.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e946ab80db9b5e224f45ba0f8ae6b21fa1f0f06d0e627962aff9b6f34713a0e +size 524332 diff --git a/datasets/openslr_yoruba/yof_00295_01000028539.wav b/datasets/openslr_yoruba/yof_00295_01000028539.wav new file mode 100644 index 0000000000000000000000000000000000000000..b908b13d6ad896109bd8646c134e586032a3f028 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01000028539.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33b3f7819bdf3acf107cef6f3b6be6d862e6ac9ba70b11e4227c90814a6b60a +size 630828 diff --git a/datasets/openslr_yoruba/yof_00295_01014319083.wav b/datasets/openslr_yoruba/yof_00295_01014319083.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c58ec6d4ee52e664428b92a77ce88c5db008b3e --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01014319083.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b673cd748fc0c8072196aad3ce2c66399de23025cdb6e83bee9c82a4d55372 +size 270380 diff --git a/datasets/openslr_yoruba/yof_00295_01021234133.wav b/datasets/openslr_yoruba/yof_00295_01021234133.wav new file mode 100644 index 0000000000000000000000000000000000000000..65da409025513dcccc4b1d688ce7c93ecce2c064 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01021234133.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7b6fc950163f63282f9120e859efd9b98ae4c2c7ab5811561dbba080934df3 +size 516140 diff --git a/datasets/openslr_yoruba/yof_00295_01026731934.wav b/datasets/openslr_yoruba/yof_00295_01026731934.wav new file mode 100644 index 0000000000000000000000000000000000000000..60a47632104d10150789a3f1023db7d9cb190bfc --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01026731934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044d0c6188f05d4f583acec16419cc6cca3fe17f2cc589871b476e1aa2cc8fb8 +size 778284 diff --git a/datasets/openslr_yoruba/yof_00295_01036172444.wav b/datasets/openslr_yoruba/yof_00295_01036172444.wav new file mode 100644 index 0000000000000000000000000000000000000000..a899730d1ca877948b0ce83a7842643c2d45ff82 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01036172444.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0742d1dd104efe8212d1fbed0450962aa5a2829509c9af509386d2f7d924c9e +size 745516 diff --git a/datasets/openslr_yoruba/yof_00295_01050088204.wav b/datasets/openslr_yoruba/yof_00295_01050088204.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bb3090f1e788e777d033c2da3c81f3acfd511fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01050088204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e88eb4153dae85d7b3190539d40bed0b97f8ab4055712ff6931c08dd333f12 +size 548908 diff --git a/datasets/openslr_yoruba/yof_00295_01069902556.wav b/datasets/openslr_yoruba/yof_00295_01069902556.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf6b1d0e9fda4bec12ff12674ab7de0836d08dbc --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01069902556.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c51c29dbe069287fa4e1942eb7126f38f3b73b250ba2747a19b2d1b08da22af +size 303148 diff --git a/datasets/openslr_yoruba/yof_00295_01083821714.wav b/datasets/openslr_yoruba/yof_00295_01083821714.wav new file mode 100644 index 0000000000000000000000000000000000000000..4da5045aeda1498e08d96a6c32be9b23c3119527 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01083821714.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af67c8d71df24f3ccc2490c0dc64e862d22ab0bf5143da5135e4508e7502125f +size 942124 diff --git a/datasets/openslr_yoruba/yof_00295_01087215949.wav b/datasets/openslr_yoruba/yof_00295_01087215949.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad58dd374b1ba83a4be7cda78593ee4c687528e3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01087215949.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1819887f90c04ef2a32cba3c8caa99f365ec53ddd57d0f0a9bbf862cde69698b +size 417836 diff --git a/datasets/openslr_yoruba/yof_00295_01091122606.wav b/datasets/openslr_yoruba/yof_00295_01091122606.wav new file mode 100644 index 0000000000000000000000000000000000000000..47125f9296773c1b009c67cd553c8c7838b54c2c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01091122606.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc24aace428477df7d54b682442f1f6b7c6a174662c42392e75499092042cec4 +size 376876 diff --git a/datasets/openslr_yoruba/yof_00295_01110838790.wav b/datasets/openslr_yoruba/yof_00295_01110838790.wav new file mode 100644 index 0000000000000000000000000000000000000000..59cf5e37e5dffae3baf2086d4a4b58f67bdbafea --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01110838790.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81de6d7840d156b6493c4977cc853caf92b3beb1bbca3b4ea85170b7af279bdd +size 532524 diff --git a/datasets/openslr_yoruba/yof_00295_01150444066.wav b/datasets/openslr_yoruba/yof_00295_01150444066.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6043316cc3a23fd262f9b83c8fc216663df89e3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01150444066.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b081484ae3568acfc9b16ba5b57fd5bd185ca2145c9467635af96d5b79ed79ac +size 286764 diff --git a/datasets/openslr_yoruba/yof_00295_01180575643.wav b/datasets/openslr_yoruba/yof_00295_01180575643.wav new file mode 100644 index 0000000000000000000000000000000000000000..3dc959b4b02a8774f7494fbdd35d5c8a374be7f8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01180575643.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2271a033a22340cd28f7fcfb89a24a23e3fbbb02981461ce94b4e17be22c1c +size 442412 diff --git a/datasets/openslr_yoruba/yof_00295_01184665114.wav b/datasets/openslr_yoruba/yof_00295_01184665114.wav new file mode 100644 index 0000000000000000000000000000000000000000..b395c08c45d3b8a2e5bd515e17ea7d0b33c05f49 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01184665114.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b1b332ce212df5e43a70f671cc82e9383b4a317d6fbc9e9f914657078a04db +size 393260 diff --git a/datasets/openslr_yoruba/yof_00295_01185131835.wav b/datasets/openslr_yoruba/yof_00295_01185131835.wav new file mode 100644 index 0000000000000000000000000000000000000000..22f81e9e8ed73395ec9e38c8a4404a346d26b2e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01185131835.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf3866b69bd79a6cfc92b7e58f8037b403c9d36a4158974db5988c8553e683a +size 507948 diff --git a/datasets/openslr_yoruba/yof_00295_01192786224.wav b/datasets/openslr_yoruba/yof_00295_01192786224.wav new file mode 100644 index 0000000000000000000000000000000000000000..41c2b89b798dc66ab4528ea7a1a02489b5daff80 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01192786224.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6e2a1aec0958937c6276a5977e709e664a6da5f07f108a821db4cea7003468 +size 311340 diff --git a/datasets/openslr_yoruba/yof_00295_01218799887.wav b/datasets/openslr_yoruba/yof_00295_01218799887.wav new file mode 100644 index 0000000000000000000000000000000000000000..88979fde0c0ce595227e363a425c5b502686ffb4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01218799887.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f8c065f2bca99d38af2695032993ab52b0e6d9841ba73ff6fc59d7e504b95f +size 852012 diff --git a/datasets/openslr_yoruba/yof_00295_01261514292.wav b/datasets/openslr_yoruba/yof_00295_01261514292.wav new file mode 100644 index 0000000000000000000000000000000000000000..657a2388c0cb6af5d4cae6a3bbb214b93d43220a --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01261514292.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cf1b7427f3ce2afcac6ac6d46415ff7a3bf7f5ee0348c369b91af11b35ae97 +size 385068 diff --git a/datasets/openslr_yoruba/yof_00295_01271831382.wav b/datasets/openslr_yoruba/yof_00295_01271831382.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a9a3368d4cfa411e2bfb079e61f67368dc5be61 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01271831382.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:957f59dd48201a2189eda2d34f7102faab9ce1a27b41ff62041922cebf22413e +size 376876 diff --git a/datasets/openslr_yoruba/yof_00295_01286080141.wav b/datasets/openslr_yoruba/yof_00295_01286080141.wav new file mode 100644 index 0000000000000000000000000000000000000000..e04747ac7fb305cf7e0cc284afa0fd18d3cc57bc --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01286080141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdfad191cdaa901d9085346cee97b468d4fb7a33c75d1e3160fe3c9743a23ce +size 360492 diff --git a/datasets/openslr_yoruba/yof_00295_01329504028.wav b/datasets/openslr_yoruba/yof_00295_01329504028.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ad1b0c965191eed93b2d7a4aebe002043a84641 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01329504028.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac56032f9c9b6bd5a5d249a95ace6c77ca720e103629591b021f726083874111 +size 319532 diff --git a/datasets/openslr_yoruba/yof_00295_01356537233.wav b/datasets/openslr_yoruba/yof_00295_01356537233.wav new file mode 100644 index 0000000000000000000000000000000000000000..280cac595535f6e6070956dcbd9fffb9ad9bfe94 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01356537233.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e672ec8f2f6545638d183e473c2d13ce8746a32a0e6ebc7467d9caac637e3fa3 +size 294956 diff --git a/datasets/openslr_yoruba/yof_00295_01406524313.wav b/datasets/openslr_yoruba/yof_00295_01406524313.wav new file mode 100644 index 0000000000000000000000000000000000000000..713d6ecbd60c03eea85bcb5dfc4f67e521cc94fe --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01406524313.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c772369ca8015b28ec88cb8c6394fa0c5acbde5ac9a22a4491ce3e9f723b0583 +size 327724 diff --git a/datasets/openslr_yoruba/yof_00295_01420486087.wav b/datasets/openslr_yoruba/yof_00295_01420486087.wav new file mode 100644 index 0000000000000000000000000000000000000000..89e2e9e886986ec1391df9e55cc09488a97a2fce --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01420486087.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddcaafac8eddb3d11075617be02477f9b741bb3641c6a709a281fc810e24152e +size 458796 diff --git a/datasets/openslr_yoruba/yof_00295_01428115987.wav b/datasets/openslr_yoruba/yof_00295_01428115987.wav new file mode 100644 index 0000000000000000000000000000000000000000..3499a04f309683c6bdfb0b863737462d91fa1666 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01428115987.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c32204b1f7a809458c41134d4dce29599b7da2b348e215f6a0313e4ee959d1f1 +size 417836 diff --git a/datasets/openslr_yoruba/yof_00295_01438690164.wav b/datasets/openslr_yoruba/yof_00295_01438690164.wav new file mode 100644 index 0000000000000000000000000000000000000000..09f561759133fd3c3a9d6355df17c1e3c877d214 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01438690164.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbc1851c8106d770a2b5c9955b218c37b6e51b7b0062d333966a157b9fc32d4b +size 434220 diff --git a/datasets/openslr_yoruba/yof_00295_01500154955.wav b/datasets/openslr_yoruba/yof_00295_01500154955.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce0ebf5f2000a503afd1f0f02608fdda5edad980 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01500154955.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b807fecb2a65423ffc81f79680ca32eda7c98365276ce8a570f62b6e9261da95 +size 294956 diff --git a/datasets/openslr_yoruba/yof_00295_01510746009.wav b/datasets/openslr_yoruba/yof_00295_01510746009.wav new file mode 100644 index 0000000000000000000000000000000000000000..442b4f26c8cddb6c8d3be191389877f1050991a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01510746009.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e006d0a04569106785a77c4c0df7623e79e6a415e9519f9020018143cccf3d +size 319532 diff --git a/datasets/openslr_yoruba/yof_00295_01512514976.wav b/datasets/openslr_yoruba/yof_00295_01512514976.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c5dc93469fcd2a01d45518df4925a0b53ff2156 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01512514976.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b674432331d45099fb4a6632c11310c00ab0360b23e4f837990fbac7eae1f2 +size 442412 diff --git a/datasets/openslr_yoruba/yof_00295_01551962061.wav b/datasets/openslr_yoruba/yof_00295_01551962061.wav new file mode 100644 index 0000000000000000000000000000000000000000..f799b9d2a29a004db16e1f919f40bdcdaec7f88d --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01551962061.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210248e19d7ec89c21f25de0541b34c1f77e1a01f7622cfe7e36bc1a4b0bb9ff +size 335916 diff --git a/datasets/openslr_yoruba/yof_00295_01557845803.wav b/datasets/openslr_yoruba/yof_00295_01557845803.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d8d6d65339f359db6f3b3250426125f74ff3852 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01557845803.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9892fdd0735bd8aa4700e4989b1503eb40cb9dfb0b62aa8f059bea46d566cd8a +size 663596 diff --git a/datasets/openslr_yoruba/yof_00295_01567518085.wav b/datasets/openslr_yoruba/yof_00295_01567518085.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad67bc9351370a3a6b9f9f8c1e7d9c0f5a131e97 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01567518085.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74752a001e4d8d736111bdebb8116fe2d7d9e4b7762edfb307c09b4154f5e68 +size 794668 diff --git a/datasets/openslr_yoruba/yof_00295_01572386294.wav b/datasets/openslr_yoruba/yof_00295_01572386294.wav new file mode 100644 index 0000000000000000000000000000000000000000..792e1699ee7574675b4202e942e8b3c3b7719d79 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01572386294.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d56495630a93f6cd71704dbf7cb1842c57c5824153d91737148e31458422f4 +size 319532 diff --git a/datasets/openslr_yoruba/yof_00295_01577870447.wav b/datasets/openslr_yoruba/yof_00295_01577870447.wav new file mode 100644 index 0000000000000000000000000000000000000000..061d5147dc44a4f596d378da2b83e2faac787f75 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01577870447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0c45f9eed361beda2c02496cdd7a2d83cf444d837117e8c219cedc3d946b6f5 +size 360492 diff --git a/datasets/openslr_yoruba/yof_00295_01599590742.wav b/datasets/openslr_yoruba/yof_00295_01599590742.wav new file mode 100644 index 0000000000000000000000000000000000000000..34c3005b7576ef62ebe94c92d02eaa028df9f15b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01599590742.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0298161b85c452adbb7a88f8b0df23d80701938fe5dacb7cbb653742021071e1 +size 376876 diff --git a/datasets/openslr_yoruba/yof_00295_01687502216.wav b/datasets/openslr_yoruba/yof_00295_01687502216.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea5b01df2eaf3b499a5148c475e19559e34d0c12 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01687502216.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3733e50ced7ba99464491d347040cfa3eacb55a733fb8be26017757a5ca09f +size 409644 diff --git a/datasets/openslr_yoruba/yof_00295_01723779271.wav b/datasets/openslr_yoruba/yof_00295_01723779271.wav new file mode 100644 index 0000000000000000000000000000000000000000..f18e77b73ada48f7f3548c16d2f03de65a0b4467 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01723779271.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e19de594e47d024819da45d4b2d0d6ea4c9935be4537692affdd87bdc42bd2 +size 344108 diff --git a/datasets/openslr_yoruba/yof_00295_01733959908.wav b/datasets/openslr_yoruba/yof_00295_01733959908.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4321c3d7648849ffeeaa0bf822b0e6e20e82b72 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01733959908.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731e352ddb44e5f90aaa6eaa24f52de5a89f9e8a36d80f11bbdcfb0025f70608 +size 352300 diff --git a/datasets/openslr_yoruba/yof_00295_01761208648.wav b/datasets/openslr_yoruba/yof_00295_01761208648.wav new file mode 100644 index 0000000000000000000000000000000000000000..a36589732921ca3fe701a1eb51263b59af38208c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01761208648.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db87db9ce8f5f34b86007f9cf18b0e9c411080eaaa745180535b35e1a31e866 +size 1073196 diff --git a/datasets/openslr_yoruba/yof_00295_01771440187.wav b/datasets/openslr_yoruba/yof_00295_01771440187.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b9671f41409a37cbc557cfab29a7e0ea8a887f8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01771440187.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49cc1b5774219c130a2255d17bbf5385f1dbccb7d77e2b632861496dd2a87b9 +size 401452 diff --git a/datasets/openslr_yoruba/yof_00295_01810873549.wav b/datasets/openslr_yoruba/yof_00295_01810873549.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd7fb8d3f073af5a41b77fc655206f1d878cd2bf --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01810873549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0eabb02c862d02071e2df885a5bc5417ea0a5491675313c9c84369234d10be6 +size 335916 diff --git a/datasets/openslr_yoruba/yof_00295_01840727886.wav b/datasets/openslr_yoruba/yof_00295_01840727886.wav new file mode 100644 index 0000000000000000000000000000000000000000..c7bb3d7bb143225350fdfb282a496ef34303fdc1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01840727886.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8573f8aa63707381cd3374fc0d78f9e98719005c1d27a0e81c950b06037a1bef +size 434220 diff --git a/datasets/openslr_yoruba/yof_00295_01842317011.wav b/datasets/openslr_yoruba/yof_00295_01842317011.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ed3994fa42fb6cbd6f993931377a33b03a850da --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01842317011.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0390c4578687ea3987130c3a445551dac0281912649cb65ef912c1e0bb1ee10 +size 311340 diff --git a/datasets/openslr_yoruba/yof_00295_01875330645.wav b/datasets/openslr_yoruba/yof_00295_01875330645.wav new file mode 100644 index 0000000000000000000000000000000000000000..868ef00944beeb6f7f6aa994d62ffd1cab4a5c5b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01875330645.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f737e281593b9ad62a1e9410388da5c3139692062938e45de6807f2929eeb6 +size 507948 diff --git a/datasets/openslr_yoruba/yof_00295_01897997380.wav b/datasets/openslr_yoruba/yof_00295_01897997380.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ccef890ac513c68a6866561fc5dc1dafcb80929 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01897997380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a48be2f99371c5c215a131d80d09597ad093e0ca9f3ebb5fda703bb8f86c4a4 +size 368684 diff --git a/datasets/openslr_yoruba/yof_00295_01899318031.wav b/datasets/openslr_yoruba/yof_00295_01899318031.wav new file mode 100644 index 0000000000000000000000000000000000000000..27c28e864b9e31e24ac8b013987914210caa30a0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01899318031.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75b5a1664efb49618b00210454488b9f085fb5e8b33023e890ae9c41e8ceeb3 +size 376876 diff --git a/datasets/openslr_yoruba/yof_00295_01942917421.wav b/datasets/openslr_yoruba/yof_00295_01942917421.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9f53e830da3ac27c5d124cf59fa117ea08b2f42 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01942917421.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f2f3b02dd91a5a589751d682c7b2f0330dfb0f55d7e1ed5cfa87bff380bf1bf +size 319532 diff --git a/datasets/openslr_yoruba/yof_00295_01944705955.wav b/datasets/openslr_yoruba/yof_00295_01944705955.wav new file mode 100644 index 0000000000000000000000000000000000000000..dcc5b4b57563d8e6c397896e87f966b926617f17 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_01944705955.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78b7a46fc8cb41c64e27c61e93db36d18ba12e252f26884468495cbcdd26fcd +size 344108 diff --git a/datasets/openslr_yoruba/yof_00295_02048849931.wav b/datasets/openslr_yoruba/yof_00295_02048849931.wav new file mode 100644 index 0000000000000000000000000000000000000000..355b0d08d4a0b5eda3e6389df51b9b3f18bc0ab2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_02048849931.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7eeaafa86de6e3262b09dc0216c9a1017e5cf8c226cab9d63e0ed4772938f6 +size 417836 diff --git a/datasets/openslr_yoruba/yof_00295_02081825103.wav b/datasets/openslr_yoruba/yof_00295_02081825103.wav new file mode 100644 index 0000000000000000000000000000000000000000..4628a9f99ed1391919ea452b78efd979eb82bdaa --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_02081825103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5f5b967f3136425982d9552b3f5134df2750d708841e687376a9f8ffc3b0dc +size 319532 diff --git a/datasets/openslr_yoruba/yof_00295_02141381381.wav b/datasets/openslr_yoruba/yof_00295_02141381381.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a1742bcc26731f0288c84d89aef87ee202935f3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_02141381381.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e0aa52e2ff57a16620c9d377f857d04621035c6722478ca3fd473697f07822 +size 327724 diff --git a/datasets/openslr_yoruba/yof_00295_02142100233.wav b/datasets/openslr_yoruba/yof_00295_02142100233.wav new file mode 100644 index 0000000000000000000000000000000000000000..faea4256352db330d0c5bfc564130d5d77930bd3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00295_02142100233.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66aa50067c1fc55c5a20dffceaa1775763d21bf0d673c9645dc1b2108a5e2343 +size 319532 diff --git a/datasets/openslr_yoruba/yof_00610_00056340371.wav b/datasets/openslr_yoruba/yof_00610_00056340371.wav new file mode 100644 index 0000000000000000000000000000000000000000..e275d64fb39a7bd2cb4e857a8931bf0443f67bc7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00056340371.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd1cda89080729d4370183717368d909f7ca722a7f36d642dca6445076c8ff9 +size 466988 diff --git a/datasets/openslr_yoruba/yof_00610_00060159369.wav b/datasets/openslr_yoruba/yof_00610_00060159369.wav new file mode 100644 index 0000000000000000000000000000000000000000..95037555e35f39c2edb5b8f73edd9b0fe11284e4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00060159369.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818fe32e2d2329f726cf594aebcce84a7ae3b836972a5f686af079464c9ecb5c +size 311340 diff --git a/datasets/openslr_yoruba/yof_00610_00078296593.wav b/datasets/openslr_yoruba/yof_00610_00078296593.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f17eb4f024731edf63f44508631d7d9ebc33bac --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00078296593.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ebdb3517a0f72d4da2e1f68a36572c3199b8d34e21c734e516c79185c5662eb +size 573484 diff --git a/datasets/openslr_yoruba/yof_00610_00120418270.wav b/datasets/openslr_yoruba/yof_00610_00120418270.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea038d9c1de9a6056d10a6fe94a2b718db726eea --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00120418270.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f44a8fd3969031207204677c3d7fc8733840815d5c2e7d946cd930eae1ba5b6a +size 229420 diff --git a/datasets/openslr_yoruba/yof_00610_00150274400.wav b/datasets/openslr_yoruba/yof_00610_00150274400.wav new file mode 100644 index 0000000000000000000000000000000000000000..1316a678324a7f966450f35427810e4662df4e14 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00150274400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9c6bc5145eb9adff2684bdbd1473e7a664c692e859691bd90a356443934073 +size 294956 diff --git a/datasets/openslr_yoruba/yof_00610_00179290410.wav b/datasets/openslr_yoruba/yof_00610_00179290410.wav new file mode 100644 index 0000000000000000000000000000000000000000..ee6839e6e5eb0f735df0a2eae777845f86e9d669 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00179290410.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a2158c42942e114620c4e77c7e99817fcf7b981988550c5a87a735401a44ee +size 409644 diff --git a/datasets/openslr_yoruba/yof_00610_00181656093.wav b/datasets/openslr_yoruba/yof_00610_00181656093.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac88cf38f320cc54bdfdfe56361adee5de7acdcf --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00181656093.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c5d28f12b110b98d034d8d1bf84a8140f2cdb86c96b1057bfda0ad6c8c5873 +size 458796 diff --git a/datasets/openslr_yoruba/yof_00610_00210141640.wav b/datasets/openslr_yoruba/yof_00610_00210141640.wav new file mode 100644 index 0000000000000000000000000000000000000000..329965b0ac22802603fc77411bf2e5aa5ba84005 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00210141640.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8558579006590fac9fad6011e3931a42a247e9967c67eb05fa4a2c849ca0588a +size 352300 diff --git a/datasets/openslr_yoruba/yof_00610_00215942120.wav b/datasets/openslr_yoruba/yof_00610_00215942120.wav new file mode 100644 index 0000000000000000000000000000000000000000..4f926668255e50215914056887ceaf9681c6fddb --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00215942120.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c890af5eaecaaead107e49b32668a4ac02e55ef98a266ba4a491b718d6ea3d29 +size 524332 diff --git a/datasets/openslr_yoruba/yof_00610_00227986202.wav b/datasets/openslr_yoruba/yof_00610_00227986202.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5b5b5fdb7b12e0e7c09f660c365f6590154323e --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00227986202.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24dec95203bc934755c402059264a69b180e50b149419c0237fc82a7e0086e69 +size 311340 diff --git a/datasets/openslr_yoruba/yof_00610_00244433539.wav b/datasets/openslr_yoruba/yof_00610_00244433539.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7189d84f2e3728d181a46549a77fbf58cb787f3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00244433539.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4052da7da1ab0e380511530419626a509d5e8fa1b09a9e03c4d469a70e0617e1 +size 270380 diff --git a/datasets/openslr_yoruba/yof_00610_00251551294.wav b/datasets/openslr_yoruba/yof_00610_00251551294.wav new file mode 100644 index 0000000000000000000000000000000000000000..913125c393efb412f59026937495dca8b76a050b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00251551294.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745580adf3801652350c7db124bcc6757ddcab93f8acd1720803b335554a4bd7 +size 393260 diff --git a/datasets/openslr_yoruba/yof_00610_00302869340.wav b/datasets/openslr_yoruba/yof_00610_00302869340.wav new file mode 100644 index 0000000000000000000000000000000000000000..7b6fcca2d8b9a56f974b2becf13cd0946789aedf --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00302869340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a9eb7bde746e96b7487d3f966d656344e9d73076b2a3f944f6376587decdf03 +size 532524 diff --git a/datasets/openslr_yoruba/yof_00610_00315589023.wav b/datasets/openslr_yoruba/yof_00610_00315589023.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b0558929e635b32dbd3bd59dffdb87aab455df6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00315589023.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e266afaf71cf8140f9593995532168e8abe011455c4e244e38919d0105c921 +size 720940 diff --git a/datasets/openslr_yoruba/yof_00610_00323846488.wav b/datasets/openslr_yoruba/yof_00610_00323846488.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3d120a2770a0c48569a47c00b4b85df3a97a8ca --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00323846488.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27df87aaef122fb9636998f57265f7fc10a3b9ca57f15ffdfc2c8d16b5080f7a +size 573484 diff --git a/datasets/openslr_yoruba/yof_00610_00338451578.wav b/datasets/openslr_yoruba/yof_00610_00338451578.wav new file mode 100644 index 0000000000000000000000000000000000000000..2818bd57abb4defe7143e421c3218ad788b38a90 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00338451578.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50cab8aee301175bad123fdcca0d1727c39c0c835f2fceacd0824d5073fe6f03 +size 483372 diff --git a/datasets/openslr_yoruba/yof_00610_00345865767.wav b/datasets/openslr_yoruba/yof_00610_00345865767.wav new file mode 100644 index 0000000000000000000000000000000000000000..03e081244f07cafa1b633db89ce09a37f3c79d1e --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00345865767.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3088e9ea3e29f10c7650bbf79d47c1cfc907aeda370120208bb5ef93ecef0eae +size 294956 diff --git a/datasets/openslr_yoruba/yof_00610_00403442400.wav b/datasets/openslr_yoruba/yof_00610_00403442400.wav new file mode 100644 index 0000000000000000000000000000000000000000..bdac0d3ca613bf0e950d7646e74d4032f0e38a8d --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00403442400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddecfeed59fc3ad4243bcccef804e90cd5dc2c8467746d67ce8a3162cdb35b99 +size 213036 diff --git a/datasets/openslr_yoruba/yof_00610_00418041243.wav b/datasets/openslr_yoruba/yof_00610_00418041243.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c8ff97ce06f07b0e2f98093b297093b2d75e588 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00418041243.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27285b36f568c49a2fbbd8abdb5367f4c9e4add6015fcb7f01bec8829369cdde +size 294956 diff --git a/datasets/openslr_yoruba/yof_00610_00424989564.wav b/datasets/openslr_yoruba/yof_00610_00424989564.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c72a47023578a3418f0c653737af87e9ccb54b3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00424989564.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c6ccaaef852fd1303981f949f17fff65dda90cf3fb16e37170449cb4d18e50 +size 294956 diff --git a/datasets/openslr_yoruba/yof_00610_00446928029.wav b/datasets/openslr_yoruba/yof_00610_00446928029.wav new file mode 100644 index 0000000000000000000000000000000000000000..26ce0cd522be76409bb71f964ba0e6ae68f4eb37 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00446928029.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4a17c214092c434ff478e0a9a5631384e90b4622ae896628147c58f4c2f1c9 +size 368684 diff --git a/datasets/openslr_yoruba/yof_00610_00455162383.wav b/datasets/openslr_yoruba/yof_00610_00455162383.wav new file mode 100644 index 0000000000000000000000000000000000000000..ebe8deeefe33c803a226a0dca3ba2029cad3bea5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00455162383.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64a38290150dd7543548f83bf3e4a5cdc3016e4e4dbe76394f8c3c3256100d7 +size 286764 diff --git a/datasets/openslr_yoruba/yof_00610_00486687322.wav b/datasets/openslr_yoruba/yof_00610_00486687322.wav new file mode 100644 index 0000000000000000000000000000000000000000..f66ae2df5e2ed1a84f88c0227e397d83388d4d6b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00486687322.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c67b21e024fd79526e4f95ba1b1f87bb072cb3370d83e8cc94c397fa730c7d9 +size 278572 diff --git a/datasets/openslr_yoruba/yof_00610_00532096047.wav b/datasets/openslr_yoruba/yof_00610_00532096047.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d9b703b93f2595b1fcde9603c7c53baee39b012 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00532096047.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c106ec32cd90e5b9b850b99bc67a15eeb2dfdaefc90a9861e5c9dd970efe57 +size 294956 diff --git a/datasets/openslr_yoruba/yof_00610_00596366605.wav b/datasets/openslr_yoruba/yof_00610_00596366605.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d108dba22e7d4f3b0993cea234e3b91528354e1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00596366605.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb95731d5ea102930a58feb9fdcd98c39634bd996121eaccceec1614ece7393 +size 278572 diff --git a/datasets/openslr_yoruba/yof_00610_00610789786.wav b/datasets/openslr_yoruba/yof_00610_00610789786.wav new file mode 100644 index 0000000000000000000000000000000000000000..37dc3940fc14ab29588eed2123224f846269d9ef --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00610789786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2593c27d48c828cbf1604f19553858f543caa2963b51daa394bd576b3680a58 +size 270380 diff --git a/datasets/openslr_yoruba/yof_00610_00613091883.wav b/datasets/openslr_yoruba/yof_00610_00613091883.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a2f715be2316edd6c0d77b4e625abc2160d6e41 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00613091883.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffcf690b266eeb692c40f357df6e800a97237fee901d4de8a05811f065f9e84 +size 335916 diff --git a/datasets/openslr_yoruba/yof_00610_00614095697.wav b/datasets/openslr_yoruba/yof_00610_00614095697.wav new file mode 100644 index 0000000000000000000000000000000000000000..94ab57c1d50ea05fc9752ca6039f6529d7b90bcf --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00614095697.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb1cebaa5a38eacad58b036568d01a4ecdde2a017551a769def4f3bcee12831 +size 245804 diff --git a/datasets/openslr_yoruba/yof_00610_00628508754.wav b/datasets/openslr_yoruba/yof_00610_00628508754.wav new file mode 100644 index 0000000000000000000000000000000000000000..2dcaad94c4ff201da6f38b6dcd4d1a8bcbe60f27 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00628508754.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525785a56cec77f1cc22df10ac809a98a72a3fd7ddd69cc7171f56303162d4c1 +size 368684 diff --git a/datasets/openslr_yoruba/yof_00610_00636319984.wav b/datasets/openslr_yoruba/yof_00610_00636319984.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c464442d04d7c4e98766beaa4627bea66099140 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00636319984.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf95846ce362bb629e020bdbbf5423150d1a35bc3c830b857b245bba70d96da6 +size 475180 diff --git a/datasets/openslr_yoruba/yof_00610_00673427012.wav b/datasets/openslr_yoruba/yof_00610_00673427012.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f3eece602dbcbaca08b63c60a80366c0efbcce4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00673427012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7fe9384e69b4574de29a17305adf0f7ad93445d1e94eaf2e4be14efe5ee8a1 +size 393260 diff --git a/datasets/openslr_yoruba/yof_00610_00676169728.wav b/datasets/openslr_yoruba/yof_00610_00676169728.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ec329dbe066d4f0133cd362147a04fe4bdb24c7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00676169728.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2202693a496540e756fe985170d33199ea871ab519fa3f36c9a966037446e6 +size 426028 diff --git a/datasets/openslr_yoruba/yof_00610_00681948748.wav b/datasets/openslr_yoruba/yof_00610_00681948748.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a6d6494dbc1d26aaacbc276abd511875d20b914 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00681948748.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be36d76b88915ea801bcea5bb3cb25614e711fc6ed37d254fca53d05f17979ff +size 458796 diff --git a/datasets/openslr_yoruba/yof_00610_00719829330.wav b/datasets/openslr_yoruba/yof_00610_00719829330.wav new file mode 100644 index 0000000000000000000000000000000000000000..83029f189da4d50d8cda0a22c513fd77376f63bf --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00719829330.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd04bb91962e5f4bcbba945b5db5843ca132b5fd80dd98b3bc6e658d765fa5a +size 278572 diff --git a/datasets/openslr_yoruba/yof_00610_00739537174.wav b/datasets/openslr_yoruba/yof_00610_00739537174.wav new file mode 100644 index 0000000000000000000000000000000000000000..12b2ce48b0380bd9f1ad8a6f43d9af99ad1b2937 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00739537174.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb41f52a2d34784ad52972c74d9157acbf27931ea1ba6eb5f2a36079415cc5f3 +size 294956 diff --git a/datasets/openslr_yoruba/yof_00610_00745334270.wav b/datasets/openslr_yoruba/yof_00610_00745334270.wav new file mode 100644 index 0000000000000000000000000000000000000000..6378c57490a5a21a8342ff8edccc8ad8a343198f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00745334270.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8519bdbdfb520e682f777063088f7f3512d62f176412eb30d10be7ecea9dfe +size 507948 diff --git a/datasets/openslr_yoruba/yof_00610_00894937637.wav b/datasets/openslr_yoruba/yof_00610_00894937637.wav new file mode 100644 index 0000000000000000000000000000000000000000..c98ec4d62640d7735bab7dc6b6d50e319e81c1a8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00894937637.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f856fe757abd0dbfa6ae5a65d7d285d3409c9894386c3ef2072d612fb79338f2 +size 720940 diff --git a/datasets/openslr_yoruba/yof_00610_00938306018.wav b/datasets/openslr_yoruba/yof_00610_00938306018.wav new file mode 100644 index 0000000000000000000000000000000000000000..896b4eec2b8dc446a7e5132d0b641872aeb27ed1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00938306018.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de02db6db48bb0e32f970ecbb02788e21cb2080fa9648e389828ed88cc97f0dd +size 360492 diff --git a/datasets/openslr_yoruba/yof_00610_00995276252.wav b/datasets/openslr_yoruba/yof_00610_00995276252.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb8249ff7ad50eee3f1859d1cade12952094af4c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_00995276252.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f6b5f3638c64e203252390d386da9944a6f790d651d7162d53d6b30db5bd4c +size 335916 diff --git a/datasets/openslr_yoruba/yof_00610_01053621422.wav b/datasets/openslr_yoruba/yof_00610_01053621422.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a67a56fd4a3d24f7cc68f25c2f1817e96c18b73 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01053621422.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3f83a50ac8cb47a35997dca142919abcefd43f38e9ec12522d0ac4603d29b1 +size 270380 diff --git a/datasets/openslr_yoruba/yof_00610_01059134152.wav b/datasets/openslr_yoruba/yof_00610_01059134152.wav new file mode 100644 index 0000000000000000000000000000000000000000..11863695e9f81e71eefa18f0fbcb2450999668e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01059134152.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d28be9e7f74702618194fa4207f6555b0b4e727d1627d2e926bd52b9791f31 +size 335916 diff --git a/datasets/openslr_yoruba/yof_00610_01082110566.wav b/datasets/openslr_yoruba/yof_00610_01082110566.wav new file mode 100644 index 0000000000000000000000000000000000000000..522c65f922c35ab8c0251c1306442fdcc3951803 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01082110566.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911a46bbc759f3e76615d84a0185d57218edaeedb67129f155372ffaf77cdd68 +size 376876 diff --git a/datasets/openslr_yoruba/yof_00610_01102417881.wav b/datasets/openslr_yoruba/yof_00610_01102417881.wav new file mode 100644 index 0000000000000000000000000000000000000000..a899f16cfc113ba4e297a3e49de56f27180bcc7a --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01102417881.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42dc5fe849dea242dd07b7a308bca66bf9b86856005cc0dc4f7c3f405b4a9952 +size 360492 diff --git a/datasets/openslr_yoruba/yof_00610_01106522957.wav b/datasets/openslr_yoruba/yof_00610_01106522957.wav new file mode 100644 index 0000000000000000000000000000000000000000..9da5d0194bcf126b6eb7bc5eb565eb1f7b85dd68 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01106522957.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b79d6222d0759375b7959b917e6d61f1b43014d530a1f9998b1105f7ceeb4c +size 213036 diff --git a/datasets/openslr_yoruba/yof_00610_01142831127.wav b/datasets/openslr_yoruba/yof_00610_01142831127.wav new file mode 100644 index 0000000000000000000000000000000000000000..553f841cc388b0a11cc817f598037c2bb21d814b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01142831127.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb7410ae3e31ae247a1cc73acc8be47bf1a77bf05b6c9786c2941f474396c9b +size 352300 diff --git a/datasets/openslr_yoruba/yof_00610_01157819178.wav b/datasets/openslr_yoruba/yof_00610_01157819178.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5ad0190c79f39ff79f07bff118c772f93484e0f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01157819178.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc2346406e1895f6c101593d53747f95ce99db76cbb7f8691ff2da79e43313f5 +size 213036 diff --git a/datasets/openslr_yoruba/yof_00610_01169943444.wav b/datasets/openslr_yoruba/yof_00610_01169943444.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e3e1baa386d58afb9645de412e53f67f38e275a --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01169943444.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d940fa62524531e0f4337f4b83e63ec87c063494dfda92bd6105311955e194eb +size 245804 diff --git a/datasets/openslr_yoruba/yof_00610_01172005325.wav b/datasets/openslr_yoruba/yof_00610_01172005325.wav new file mode 100644 index 0000000000000000000000000000000000000000..349a19bc1e00c59adb230f977f6ab54c45d4244f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01172005325.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cd22bb0f95a984b7aee3793e0b60e82e5fbd77e6be94ba707b45712185c575 +size 450604 diff --git a/datasets/openslr_yoruba/yof_00610_01174380407.wav b/datasets/openslr_yoruba/yof_00610_01174380407.wav new file mode 100644 index 0000000000000000000000000000000000000000..b975812b32c7db691275e8531dd074166d9c0c34 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01174380407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d80d327d70d84c3460172b13d913b684efc0d65e36319c1874e7ad6b40b948f +size 303148 diff --git a/datasets/openslr_yoruba/yof_00610_01190059110.wav b/datasets/openslr_yoruba/yof_00610_01190059110.wav new file mode 100644 index 0000000000000000000000000000000000000000..9360935ecf27baf61d52056c429d8c3aa9177457 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01190059110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7910a61e9f5c8c06703d9180492c01cc852320148a432a4fa3d8e2d239b3089c +size 303148 diff --git a/datasets/openslr_yoruba/yof_00610_01201524433.wav b/datasets/openslr_yoruba/yof_00610_01201524433.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcff54363108e758f33858a4a2845f0c483dc10c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01201524433.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8502813ee8cdd9893fc06e5a14cf918c51294817778b66ac8822c7041d13b2e +size 311340 diff --git a/datasets/openslr_yoruba/yof_00610_01201903823.wav b/datasets/openslr_yoruba/yof_00610_01201903823.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0e56d032fbc037bcb30db386ec665dc2a5ffe24 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01201903823.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcea24e0b18420abedd401c30cbdcee4f37457b4c70792d436b0bac0d43a57b6 +size 614444 diff --git a/datasets/openslr_yoruba/yof_00610_01213624807.wav b/datasets/openslr_yoruba/yof_00610_01213624807.wav new file mode 100644 index 0000000000000000000000000000000000000000..177f87b410be90b7c6bc137ad20cd98ee6b089b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01213624807.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c65217174495e604c7e349d06fede0bca5bd3e82c6554393a0bb085baa45ef9 +size 245804 diff --git a/datasets/openslr_yoruba/yof_00610_01217333501.wav b/datasets/openslr_yoruba/yof_00610_01217333501.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc8933d1a0298a14fef15a24751613b9daabd789 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01217333501.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297665c1a6828da8522888dc431476c55aaa650c3190351a22b6b91f0200e454 +size 368684 diff --git a/datasets/openslr_yoruba/yof_00610_01234429160.wav b/datasets/openslr_yoruba/yof_00610_01234429160.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4df147acc62f105cbb84347acbfa9f1cdf6c16b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01234429160.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0ab5127e038a823138994d057ca584e3ca8dfdc8ed922694f53a842916af58 +size 417836 diff --git a/datasets/openslr_yoruba/yof_00610_01327657874.wav b/datasets/openslr_yoruba/yof_00610_01327657874.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb16a0a320ad55d03512b096a40b71cf50915781 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01327657874.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a5656f8eaf5652e2425ceb7e29a0cdf8ba75f975ea32865ed4139ee7cf0487 +size 393260 diff --git a/datasets/openslr_yoruba/yof_00610_01328420729.wav b/datasets/openslr_yoruba/yof_00610_01328420729.wav new file mode 100644 index 0000000000000000000000000000000000000000..815cc6ce3a711bdea50bde7fedf254460e426b4c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01328420729.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f15c62bde4243cd83582980e88b61a8e33abfbcec0eadc5f79b06f4c510bbe +size 491564 diff --git a/datasets/openslr_yoruba/yof_00610_01331462627.wav b/datasets/openslr_yoruba/yof_00610_01331462627.wav new file mode 100644 index 0000000000000000000000000000000000000000..4daff8c6d62d02de194b8eb3f6f06c90fe4e3262 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01331462627.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fc301be56022bb21c7f772111eeadf5b75cad03d7f0ee0c4cfb30bc55f82da +size 188460 diff --git a/datasets/openslr_yoruba/yof_00610_01355408107.wav b/datasets/openslr_yoruba/yof_00610_01355408107.wav new file mode 100644 index 0000000000000000000000000000000000000000..e448037ef1c1e76b7bfb8a8c664f11c88c7e8a40 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01355408107.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb9ac79d04466698e5be0669d999d540dc99d0b214083c3777321b3d68996af5 +size 426028 diff --git a/datasets/openslr_yoruba/yof_00610_01355595385.wav b/datasets/openslr_yoruba/yof_00610_01355595385.wav new file mode 100644 index 0000000000000000000000000000000000000000..d5b1ae093615a0bd277ddc88a01f2f54267c157e --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01355595385.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4e11ab45c894e800fd41b27511b0acd0bf8d6c2ec850fb7b531fabd0157c05 +size 213036 diff --git a/datasets/openslr_yoruba/yof_00610_01386277363.wav b/datasets/openslr_yoruba/yof_00610_01386277363.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc56e89908ae4b99768a4f07372cbe922d6c669f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01386277363.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7c91c4b068c791aa0e6dc7151daa329a289636993e8b60740ab5e33c405f4a +size 376876 diff --git a/datasets/openslr_yoruba/yof_00610_01401576616.wav b/datasets/openslr_yoruba/yof_00610_01401576616.wav new file mode 100644 index 0000000000000000000000000000000000000000..e38e9559deb6fb642a4bf9cc14d1c8bb376fdbbd --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01401576616.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d35321524dcad9490ed4a56e686d29416753760c13ec45d2405a0a98369dc60 +size 335916 diff --git a/datasets/openslr_yoruba/yof_00610_01415298660.wav b/datasets/openslr_yoruba/yof_00610_01415298660.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ee10ab56eda344cd4bd90e21e8035c3ab19f463 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01415298660.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785965d4c4b429ea08bd07ee82bce986018ce9a16d626bd38726e53098fd54af +size 393260 diff --git a/datasets/openslr_yoruba/yof_00610_01502020754.wav b/datasets/openslr_yoruba/yof_00610_01502020754.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b5a82ff78001a783d4455c249bcfe5fc0546a0a --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01502020754.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159c2440b0246be09d3216f9fb487dd48eb36ac3c1fbeb8d1b81fae021f836e2 +size 393260 diff --git a/datasets/openslr_yoruba/yof_00610_01503756926.wav b/datasets/openslr_yoruba/yof_00610_01503756926.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3e9d6be960e7ebb86e1a6771af5c319cf6effb1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01503756926.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3282dd86a449022be2c7abccd0d0b445ac8f66a409e05efef68f8b47cba4d50 +size 278572 diff --git a/datasets/openslr_yoruba/yof_00610_01514205008.wav b/datasets/openslr_yoruba/yof_00610_01514205008.wav new file mode 100644 index 0000000000000000000000000000000000000000..d11669a959375f5fb04605a12c4e7cd91b9beb64 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01514205008.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc99e7959826b8a38faf1b81786cf2d7ffe6ef1ec1bf096cd57f3a83c91bdebe +size 204844 diff --git a/datasets/openslr_yoruba/yof_00610_01528060645.wav b/datasets/openslr_yoruba/yof_00610_01528060645.wav new file mode 100644 index 0000000000000000000000000000000000000000..c2953a37efc290a8df01e345f17f9339eac57640 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01528060645.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2ed0b601343c3c3f2b637f51546c1c4c7248909ef00eee2330445ffc740f5a +size 245804 diff --git a/datasets/openslr_yoruba/yof_00610_01547707397.wav b/datasets/openslr_yoruba/yof_00610_01547707397.wav new file mode 100644 index 0000000000000000000000000000000000000000..6db20a8e39e75322d4b071f2c0269075b798fc67 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01547707397.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7304631869616643b894108d0dcc2449d432561ac92677af3b393cadea342400 +size 294956 diff --git a/datasets/openslr_yoruba/yof_00610_01552284315.wav b/datasets/openslr_yoruba/yof_00610_01552284315.wav new file mode 100644 index 0000000000000000000000000000000000000000..0089914e5dd628801d3baa9719ea2473fe8fd0f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01552284315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c600481c5a93a44565c19914720760f65f59eb1ace3a733792209c17fc5a9b6 +size 401452 diff --git a/datasets/openslr_yoruba/yof_00610_01562969632.wav b/datasets/openslr_yoruba/yof_00610_01562969632.wav new file mode 100644 index 0000000000000000000000000000000000000000..e48b8025199f648e47c7167f72538e5f28b3b5ea --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01562969632.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0584fa6c9706762bf0c05dc3c8b6f603c0f2e5edf5b24704778c1845ed3580e +size 237612 diff --git a/datasets/openslr_yoruba/yof_00610_01577121951.wav b/datasets/openslr_yoruba/yof_00610_01577121951.wav new file mode 100644 index 0000000000000000000000000000000000000000..779b647e7f0a1e2d735f83b2fa35a8ae2ec7a703 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01577121951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363f44fcc4efa0aaa4ad93c73fd630608a17cf1e8a428be4dd47a8fab5c6197b +size 360492 diff --git a/datasets/openslr_yoruba/yof_00610_01581194420.wav b/datasets/openslr_yoruba/yof_00610_01581194420.wav new file mode 100644 index 0000000000000000000000000000000000000000..61d0aec49a75141f00dd36845699ee13fcb766e0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01581194420.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b2e7f683d9eccfb194bfa36840650dd2787fd5c800fc5d970e47d3f1f9ffd79 +size 475180 diff --git a/datasets/openslr_yoruba/yof_00610_01607947502.wav b/datasets/openslr_yoruba/yof_00610_01607947502.wav new file mode 100644 index 0000000000000000000000000000000000000000..62ad34baa6451ab76a0459be939f08989d6f501e --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01607947502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c287091a6649ccfd54156b580ee974ff6369d2b63d2bcb01cc3d057f550443b +size 344108 diff --git a/datasets/openslr_yoruba/yof_00610_01629839776.wav b/datasets/openslr_yoruba/yof_00610_01629839776.wav new file mode 100644 index 0000000000000000000000000000000000000000..08b405e07e93b99df820082d8cf2181889813003 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01629839776.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1dc4b55acf0cf5daac1e011589303242e24399038128303aa6900984ea9dba5 +size 335916 diff --git a/datasets/openslr_yoruba/yof_00610_01630073655.wav b/datasets/openslr_yoruba/yof_00610_01630073655.wav new file mode 100644 index 0000000000000000000000000000000000000000..abcbb2fe2006c4b65cf2d9b2cdee6237857de93d --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01630073655.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e7989388504e27432b5ed5386566cc4da27192c0c69af2d801d1e817e1c78a +size 344108 diff --git a/datasets/openslr_yoruba/yof_00610_01630775644.wav b/datasets/openslr_yoruba/yof_00610_01630775644.wav new file mode 100644 index 0000000000000000000000000000000000000000..e49ca51f9528fa0a0c2ee151dd2385f00f9f0752 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01630775644.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb92b7771d670bb8631a88a2207eaf626c25915ba64d5c35e758ef85b70ec1fa +size 278572 diff --git a/datasets/openslr_yoruba/yof_00610_01632303259.wav b/datasets/openslr_yoruba/yof_00610_01632303259.wav new file mode 100644 index 0000000000000000000000000000000000000000..26a8ea1ca89a2791fabeb8c6535d73037d698edb --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01632303259.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90ca1ede05117612554683a0342f79a520e6c7015f10f7ef7c2bc729008e5b9 +size 270380 diff --git a/datasets/openslr_yoruba/yof_00610_01710662243.wav b/datasets/openslr_yoruba/yof_00610_01710662243.wav new file mode 100644 index 0000000000000000000000000000000000000000..7452d47bc8032d7393cd02edbbce0c8905ce13b6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01710662243.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd08517c465039df2faa4202ef7bf25caca8ebf2b00994d0f615b697f2b712a +size 253996 diff --git a/datasets/openslr_yoruba/yof_00610_01744276413.wav b/datasets/openslr_yoruba/yof_00610_01744276413.wav new file mode 100644 index 0000000000000000000000000000000000000000..59f8612ade287fe60c9e751b49541d5a0736ee4f --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01744276413.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91d3dca59dd625322bc96920d0d6a591f21d5b5e62b74dc0052e6842a149b4e6 +size 303148 diff --git a/datasets/openslr_yoruba/yof_00610_01750671961.wav b/datasets/openslr_yoruba/yof_00610_01750671961.wav new file mode 100644 index 0000000000000000000000000000000000000000..dedbbb4f98ab0c605cf601ca39e62fe51c341759 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01750671961.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379657c13aee7b69b96df37579521d0607befe661bbab729024e0cf197e665c3 +size 229420 diff --git a/datasets/openslr_yoruba/yof_00610_01837148160.wav b/datasets/openslr_yoruba/yof_00610_01837148160.wav new file mode 100644 index 0000000000000000000000000000000000000000..a91eceebc7029b92d6102247b0f7134b6bcb0bce --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01837148160.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1551fd213f107cc27801b60410359c6c35c18b673edf932930cbd5f6a00b19f +size 335916 diff --git a/datasets/openslr_yoruba/yof_00610_01854813627.wav b/datasets/openslr_yoruba/yof_00610_01854813627.wav new file mode 100644 index 0000000000000000000000000000000000000000..c26a255adfe13ca079b8bd27a9f9e31d618fc0d3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01854813627.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2a5cc08bb44dc0180f5720dbdc37458597c32a835755923dc52bac164b37d9 +size 426028 diff --git a/datasets/openslr_yoruba/yof_00610_01876726139.wav b/datasets/openslr_yoruba/yof_00610_01876726139.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2872f0ba31bc829592709b12badc8675ad14ce9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01876726139.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7543a96e0560d4bf7a5de210abf8f06f69978f287f124413c1a3c29824ed8141 +size 426028 diff --git a/datasets/openslr_yoruba/yof_00610_01877809422.wav b/datasets/openslr_yoruba/yof_00610_01877809422.wav new file mode 100644 index 0000000000000000000000000000000000000000..594a916678d679acdbea121f1c6c885b7039218e --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01877809422.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:649ad884b31a20728a41b2a495e7d158a1e1a8b1f8e6d7639fe42a69f2f0fad3 +size 237612 diff --git a/datasets/openslr_yoruba/yof_00610_01881016403.wav b/datasets/openslr_yoruba/yof_00610_01881016403.wav new file mode 100644 index 0000000000000000000000000000000000000000..56c0ebbe288cf3dc5a5e3c7817b5dddd0d763451 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01881016403.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df73f023e40a617c80f35ae6f3d3c003f33d79103e13bdeee16ecf8a46490958 +size 516140 diff --git a/datasets/openslr_yoruba/yof_00610_01911482469.wav b/datasets/openslr_yoruba/yof_00610_01911482469.wav new file mode 100644 index 0000000000000000000000000000000000000000..7cb2807f44ec7f14b1cb2363a17b770a3b2ddf0b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01911482469.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f425883ad7a57fd63286b229da72474cbf46342337903a6c4b6aa2c28e2b4e2 +size 344108 diff --git a/datasets/openslr_yoruba/yof_00610_01944045933.wav b/datasets/openslr_yoruba/yof_00610_01944045933.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba965823592170483a91bb4b3937b1a2f9d0cd88 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01944045933.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb277dbed0765b2f2f5b3f612d4f7783f858499306af702acca6ac0f20cc377 +size 253996 diff --git a/datasets/openslr_yoruba/yof_00610_01962497552.wav b/datasets/openslr_yoruba/yof_00610_01962497552.wav new file mode 100644 index 0000000000000000000000000000000000000000..968f7d08376af5e41cf0ffbaf5c5925f07c3a183 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01962497552.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f12fbb67f92a5b37a58e68f827d3806895f6a45a7f176042bee679983707927 +size 401452 diff --git a/datasets/openslr_yoruba/yof_00610_01995980793.wav b/datasets/openslr_yoruba/yof_00610_01995980793.wav new file mode 100644 index 0000000000000000000000000000000000000000..490ebce5982475fdd279490eff5efa154c504ce0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_01995980793.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff87917bb844dab277ae4732773877f2660a78b99e20d4a97a79009ca3541a7e +size 466988 diff --git a/datasets/openslr_yoruba/yof_00610_02006706086.wav b/datasets/openslr_yoruba/yof_00610_02006706086.wav new file mode 100644 index 0000000000000000000000000000000000000000..d62622876cf1602a487f8728da04b86654706a49 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_02006706086.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c91dc6364b1105ddb4027a8e5818295d0f0bb98b33ba6815ea4183a982e91911 +size 352300 diff --git a/datasets/openslr_yoruba/yof_00610_02021134051.wav b/datasets/openslr_yoruba/yof_00610_02021134051.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e4f061fb0fd8ad483b36dd8a4b0edd17356a7f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_02021134051.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6175a84ff3223103114d87dcd876d7471614d5197ad6cac2ddd4e523424e5f0a +size 376876 diff --git a/datasets/openslr_yoruba/yof_00610_02042447831.wav b/datasets/openslr_yoruba/yof_00610_02042447831.wav new file mode 100644 index 0000000000000000000000000000000000000000..85494d0bd35589583c52de804802e2295501987d --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_02042447831.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585349448efb7d50ddb9e827c11d53455217524f20f9c66f35472caff23564e3 +size 327724 diff --git a/datasets/openslr_yoruba/yof_00610_02051130089.wav b/datasets/openslr_yoruba/yof_00610_02051130089.wav new file mode 100644 index 0000000000000000000000000000000000000000..c95e9e8637499789734776a34e9b5fa2c94c43b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_02051130089.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e88430f6fbf5363c8f02bad4ccc882ef80673e61bfc4f9b38e9fef0703026b4 +size 450604 diff --git a/datasets/openslr_yoruba/yof_00610_02072699785.wav b/datasets/openslr_yoruba/yof_00610_02072699785.wav new file mode 100644 index 0000000000000000000000000000000000000000..0711c6e5f1ca19e6410ac45adcfeaded64ff8c3c --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_02072699785.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e63e09341a08a7ee507405cdbf6b81340dc4729941106ffbaba0f66c88e22f1b +size 319532 diff --git a/datasets/openslr_yoruba/yof_00610_02132168238.wav b/datasets/openslr_yoruba/yof_00610_02132168238.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e8a41092279eb143c62b08f885f46ebedee510b --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_02132168238.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c43a54e65c66a938e4f569b3322d1b7505f2c9487552085da1bb8c7ed50b66 +size 434220 diff --git a/datasets/openslr_yoruba/yof_00610_02147076442.wav b/datasets/openslr_yoruba/yof_00610_02147076442.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d56433f846f469226f1125459b77c005ae75ece --- /dev/null +++ b/datasets/openslr_yoruba/yof_00610_02147076442.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12df6e79ea8b1029338a70a7b33c84390e69e500da226d8bbc2abecdb310f98 +size 786476 diff --git a/datasets/openslr_yoruba/yof_01208_00057903736.wav b/datasets/openslr_yoruba/yof_01208_00057903736.wav new file mode 100644 index 0000000000000000000000000000000000000000..8776dabf1dd7323be4742f9bd45b65f36660aadf --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00057903736.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04591e3ce16a3b3bc7b3907aa524ad1e19c4fc4db091f432f519a57bd1b5e50f +size 286764 diff --git a/datasets/openslr_yoruba/yof_01208_00067224728.wav b/datasets/openslr_yoruba/yof_01208_00067224728.wav new file mode 100644 index 0000000000000000000000000000000000000000..deb2bb08aef2113a016502f5228ea09639f617a2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00067224728.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea774b1fbc6526e046d7aa7f178b99de79316ac71f53f58733bfbef2db15659b +size 360492 diff --git a/datasets/openslr_yoruba/yof_01208_00149021540.wav b/datasets/openslr_yoruba/yof_01208_00149021540.wav new file mode 100644 index 0000000000000000000000000000000000000000..d223b9d13f1f4740f596721af1ca5929d5a188f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00149021540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356626790f1ad0ff66ac04d08dc3898e953a55e2b3abf2e7cdcf98f6fde1b6af +size 196652 diff --git a/datasets/openslr_yoruba/yof_01208_00190748774.wav b/datasets/openslr_yoruba/yof_01208_00190748774.wav new file mode 100644 index 0000000000000000000000000000000000000000..bbb11286ee8b0e2a299bf90e08dbf9c2570294ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00190748774.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f454949e195e46305cc213a243245393f667cfd6231f6d65b32aa3fa6c301d1b +size 262188 diff --git a/datasets/openslr_yoruba/yof_01208_00197123131.wav b/datasets/openslr_yoruba/yof_01208_00197123131.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7928178229f14e170d54285541f4933ce91cfed --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00197123131.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d2053a2ed09b1cffd1ab6064cce04c47817c5ca484045f097b2b92f7bb2ea3 +size 278572 diff --git a/datasets/openslr_yoruba/yof_01208_00257305663.wav b/datasets/openslr_yoruba/yof_01208_00257305663.wav new file mode 100644 index 0000000000000000000000000000000000000000..585b0dbd5fd51ba45bd3af2673a9f579980f3c90 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00257305663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0353bb87e7207f7dcc2d34fc7b37a7f65b743d2e49cd6bf480b08d847b59fe18 +size 393260 diff --git a/datasets/openslr_yoruba/yof_01208_00278515199.wav b/datasets/openslr_yoruba/yof_01208_00278515199.wav new file mode 100644 index 0000000000000000000000000000000000000000..1195508c6c797ba155e9f5d31ca52d333814c8eb --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00278515199.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67c78a88c774e0ff7c7907286699ad3db0ec8013465b79c979a31b759d77a03 +size 311340 diff --git a/datasets/openslr_yoruba/yof_01208_00284398735.wav b/datasets/openslr_yoruba/yof_01208_00284398735.wav new file mode 100644 index 0000000000000000000000000000000000000000..c7f3b7671d9b420233718a284c0133136d98d3c6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00284398735.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37664c0c084785ba5218faa6550422835690c3ae19236791643010eb6b88e838 +size 262188 diff --git a/datasets/openslr_yoruba/yof_01208_00289556156.wav b/datasets/openslr_yoruba/yof_01208_00289556156.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e5e4cfdf38688e20e7573c8f63f4435512115cc --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00289556156.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069744028af8311682002e5e7dc46ad034e6c7022b8a7d8594894c39acd42830 +size 253996 diff --git a/datasets/openslr_yoruba/yof_01208_00306821414.wav b/datasets/openslr_yoruba/yof_01208_00306821414.wav new file mode 100644 index 0000000000000000000000000000000000000000..bccee4bc7c45e57764715ceef38bcd3088815ade --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00306821414.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d588587a53b6a7336336d2fe6a4c409f79bff6390b6269395b225422694537 +size 229420 diff --git a/datasets/openslr_yoruba/yof_01208_00346090376.wav b/datasets/openslr_yoruba/yof_01208_00346090376.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5c3b70c741c9f2b4a5c6f542e3912f9154da3da --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00346090376.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54df6f3b48bc8268297bed589674c83aae6426b242c0e5cc6bd9de2164869b0f +size 213036 diff --git a/datasets/openslr_yoruba/yof_01208_00379915223.wav b/datasets/openslr_yoruba/yof_01208_00379915223.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2f1b5d24910b8caa000e18dd1c2eead24e66b67 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00379915223.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a271b6654161ce3bef7534202f67888276bf767013a9c6fda2536413928b61db +size 147500 diff --git a/datasets/openslr_yoruba/yof_01208_00385349272.wav b/datasets/openslr_yoruba/yof_01208_00385349272.wav new file mode 100644 index 0000000000000000000000000000000000000000..32c24687d12cd4d6cfcbfad6db0325f39a916a92 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00385349272.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d93dbd797677edfc111e69fb7f77af0dff59d8878d526a83ce775a54ad6c25 +size 385068 diff --git a/datasets/openslr_yoruba/yof_01208_00434121672.wav b/datasets/openslr_yoruba/yof_01208_00434121672.wav new file mode 100644 index 0000000000000000000000000000000000000000..269d0032438bd0b390184c2561f749e6cfd0ca50 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00434121672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6a707948c98e5f0b7e5c518e3e520d6990a2d84031aaeba86076e570cab3df +size 352300 diff --git a/datasets/openslr_yoruba/yof_01208_00437196948.wav b/datasets/openslr_yoruba/yof_01208_00437196948.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb00e78a9ae8d8ffc9ca277d7b1c017c38b4862c --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00437196948.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c2b2f187e573e97aee961ce3bd48856b70ac3fb4ed64b3c91728c57c7ddb07 +size 368684 diff --git a/datasets/openslr_yoruba/yof_01208_00460381223.wav b/datasets/openslr_yoruba/yof_01208_00460381223.wav new file mode 100644 index 0000000000000000000000000000000000000000..aaacfa2e7a115defdda491b199b7dc9e4f2c418f --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00460381223.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:758c51cfaf96a2e1b41c5a0d7231bcb0d787dd88b8ace55fd017f94d4c993633 +size 606252 diff --git a/datasets/openslr_yoruba/yof_01208_00465594715.wav b/datasets/openslr_yoruba/yof_01208_00465594715.wav new file mode 100644 index 0000000000000000000000000000000000000000..abc93954869893f3e26d4303faac59944a15f193 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00465594715.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f80831deee9b01453f50d5d47e917638ce4964b5a22a0f9677b381b24d6cfc39 +size 253996 diff --git a/datasets/openslr_yoruba/yof_01208_00470649237.wav b/datasets/openslr_yoruba/yof_01208_00470649237.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a501440b93ac9cf266eecaf30dfb02d4e91ed84 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00470649237.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86299b5937d4da5490b03c95cd0f87d901eaf7b83efe8f9af5460361d56e3be +size 303148 diff --git a/datasets/openslr_yoruba/yof_01208_00472449628.wav b/datasets/openslr_yoruba/yof_01208_00472449628.wav new file mode 100644 index 0000000000000000000000000000000000000000..944d84a2a0820ce97bd25fd3da3e11854047c33c --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00472449628.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686046f2992c19d209dcb7597d2efd458299545ba237ea83e7aa791525d49f72 +size 303148 diff --git a/datasets/openslr_yoruba/yof_01208_00476721027.wav b/datasets/openslr_yoruba/yof_01208_00476721027.wav new file mode 100644 index 0000000000000000000000000000000000000000..eb2ec7eb122e5020020638922be143bd6df83017 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00476721027.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6aa5c3a3638e79032682249ec78ff2bdf2bb86c2c568e91c241d824da55343d +size 253996 diff --git a/datasets/openslr_yoruba/yof_01208_00495524477.wav b/datasets/openslr_yoruba/yof_01208_00495524477.wav new file mode 100644 index 0000000000000000000000000000000000000000..368e6aa1537677b464ebeb02c9163c674009cf4e --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00495524477.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f22f3ae5d135a0989f2ba58e9097e204ad655ebbf05c1c171e98e2c5c1f38d +size 213036 diff --git a/datasets/openslr_yoruba/yof_01208_00519793916.wav b/datasets/openslr_yoruba/yof_01208_00519793916.wav new file mode 100644 index 0000000000000000000000000000000000000000..7862e170e47f143f0c1830cb0ae6d182f654833a --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00519793916.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494d1dd8f08578f3de43ec925b44c57c0585a0f1ae0c92cf0bd09474c5ec40bf +size 360492 diff --git a/datasets/openslr_yoruba/yof_01208_00525095815.wav b/datasets/openslr_yoruba/yof_01208_00525095815.wav new file mode 100644 index 0000000000000000000000000000000000000000..991ddb6afe2cf75aa227fb5e744d40e957316bf5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00525095815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7f253343829d4668da8812559498904a65806050cd2c1dac8362bd6b2e87bd +size 294956 diff --git a/datasets/openslr_yoruba/yof_01208_00601301614.wav b/datasets/openslr_yoruba/yof_01208_00601301614.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffe4dcf79012d0b8cf91b1efc0595b280e910298 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00601301614.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b146c69dae07d557f75d281f2864a994b94dde6cacffc2479483a29237a7d7 +size 557100 diff --git a/datasets/openslr_yoruba/yof_01208_00617512044.wav b/datasets/openslr_yoruba/yof_01208_00617512044.wav new file mode 100644 index 0000000000000000000000000000000000000000..032e76a88b86578b02309832cb994fe164235584 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00617512044.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0bbc309c72e01cc66a9674dab1da86d274d1b7e3d804ebc1551b68e667cb0b5 +size 270380 diff --git a/datasets/openslr_yoruba/yof_01208_00638640400.wav b/datasets/openslr_yoruba/yof_01208_00638640400.wav new file mode 100644 index 0000000000000000000000000000000000000000..5788a1e3a2a401650b9dc75fd4077cf826632bfb --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00638640400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8beacf9d6cc9abd22a61cdc9e27b4b39e07b22d2702a9dba07dd536d06ba9f0 +size 253996 diff --git a/datasets/openslr_yoruba/yof_01208_00639508207.wav b/datasets/openslr_yoruba/yof_01208_00639508207.wav new file mode 100644 index 0000000000000000000000000000000000000000..38f4bb860c06ea7518d2728aa302ad12205f9035 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00639508207.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228e347b4268336bdd0ae026664d1bf68a1a03166ddc930e4f6df2d3684d9624 +size 270380 diff --git a/datasets/openslr_yoruba/yof_01208_00647822231.wav b/datasets/openslr_yoruba/yof_01208_00647822231.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed3de34b48540f5c331d2244af14afbc5e12ba92 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00647822231.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047d411fc0c668319c7db9e5f7eaa0a45e9616d88dc79eb230cc95eaa81a6f37 +size 466988 diff --git a/datasets/openslr_yoruba/yof_01208_00660221195.wav b/datasets/openslr_yoruba/yof_01208_00660221195.wav new file mode 100644 index 0000000000000000000000000000000000000000..d81ea6dbf214b5c9b4b463cef362d58d8720a2fd --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00660221195.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354a98454cbb1884f7da45baba4ecb8aa3c1eca723c8dcd95881a8bf45ce3b05 +size 540716 diff --git a/datasets/openslr_yoruba/yof_01208_00694899898.wav b/datasets/openslr_yoruba/yof_01208_00694899898.wav new file mode 100644 index 0000000000000000000000000000000000000000..66621a981e204972dc7562cef0d9619a71e7a488 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00694899898.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a84ac8ec6dc968ae4bf29900f33d1959b8145d21923e3f8f3a87fd8914fad1 +size 245804 diff --git a/datasets/openslr_yoruba/yof_01208_00712661610.wav b/datasets/openslr_yoruba/yof_01208_00712661610.wav new file mode 100644 index 0000000000000000000000000000000000000000..7bd9e58d7bd079acec8d8d85f784cd1fbf366250 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00712661610.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c956b66d53253ff616a9c4c6482cb06ad2fc80600850dc3ca9df5cddfb3de53 +size 483372 diff --git a/datasets/openslr_yoruba/yof_01208_00769499782.wav b/datasets/openslr_yoruba/yof_01208_00769499782.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2f4203708107c7da8150582033e0ba709bd8daf --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00769499782.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853c34b9ec84015bf858ed8905af554c387d2454468b753599914deafeec532a +size 532524 diff --git a/datasets/openslr_yoruba/yof_01208_00808064175.wav b/datasets/openslr_yoruba/yof_01208_00808064175.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f41cc4cc31cb2ac3d719fe72fad84205fe6612f --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00808064175.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4000808b0fe08e4a396d23674b3336568dcbac07f6167e2a9384a937356583 +size 376876 diff --git a/datasets/openslr_yoruba/yof_01208_00813699308.wav b/datasets/openslr_yoruba/yof_01208_00813699308.wav new file mode 100644 index 0000000000000000000000000000000000000000..98540aed2f6a1b6f005fb5d6e8ac4c10a3507562 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00813699308.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf40b130ec6900d54ae32a81eece3030e2517d9df40bb913092bfa0716af8ab7 +size 376876 diff --git a/datasets/openslr_yoruba/yof_01208_00819770869.wav b/datasets/openslr_yoruba/yof_01208_00819770869.wav new file mode 100644 index 0000000000000000000000000000000000000000..119a31a81a4d7272e5d2193894c9bac73e94a2a0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00819770869.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bc338cb39014ecb71085371ceb553606ebbfdef6325ce036bd592714a92b29 +size 262188 diff --git a/datasets/openslr_yoruba/yof_01208_00828059334.wav b/datasets/openslr_yoruba/yof_01208_00828059334.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d85240f0f5d5bf43c64d6694a70f10ae6260105 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00828059334.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef72c14c978cfdd16d6316e9b47b52886bc1bc9150937d2adfeb97ad21be0820 +size 253996 diff --git a/datasets/openslr_yoruba/yof_01208_00847476764.wav b/datasets/openslr_yoruba/yof_01208_00847476764.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4c811086d97a05b38c65a5a911ac0f60b8e30b5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00847476764.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a250236cdccabc47c082cc7abe12c178c58fb4590b4dec5678e28be9f0a8df79 +size 401452 diff --git a/datasets/openslr_yoruba/yof_01208_00887501793.wav b/datasets/openslr_yoruba/yof_01208_00887501793.wav new file mode 100644 index 0000000000000000000000000000000000000000..232d1c2ac5d7249d827f6e75dd530108fe2b828e --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00887501793.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645c2a418cd6f1bedb93b7ad720e16aa671b07637a8a1475da014aa7c6fe9de6 +size 253996 diff --git a/datasets/openslr_yoruba/yof_01208_00891249071.wav b/datasets/openslr_yoruba/yof_01208_00891249071.wav new file mode 100644 index 0000000000000000000000000000000000000000..bed02f30eb92211f4a1042f6cecd0a21e0588c70 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00891249071.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0995650c7828ccc40ccd43a4e963f56d821147d5996d1dc43e56b9ade2eebd6 +size 294956 diff --git a/datasets/openslr_yoruba/yof_01208_00897433715.wav b/datasets/openslr_yoruba/yof_01208_00897433715.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3f88d648b08f149f5768871478597bf55a25549 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00897433715.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a65b78009bda5086f52be27dddc4c8fe468bc2a4056a499a07d9e3052587051 +size 253996 diff --git a/datasets/openslr_yoruba/yof_01208_00903343718.wav b/datasets/openslr_yoruba/yof_01208_00903343718.wav new file mode 100644 index 0000000000000000000000000000000000000000..f21c37bb809d4ad6bc82c93d1be645e715aab1f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00903343718.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e866aa8e8f652f68b1dff2a94a4ea07a65c2d477502d61c45f7f97b8a0a6cba +size 180268 diff --git a/datasets/openslr_yoruba/yof_01208_00905494674.wav b/datasets/openslr_yoruba/yof_01208_00905494674.wav new file mode 100644 index 0000000000000000000000000000000000000000..4065bc9758f15aa85f7ea9fb031a2c326f31e835 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00905494674.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5965a5f5fba69f0c81bdc1de486918d82bb22ac3824da7992fb52795892abb4a +size 262188 diff --git a/datasets/openslr_yoruba/yof_01208_00906739535.wav b/datasets/openslr_yoruba/yof_01208_00906739535.wav new file mode 100644 index 0000000000000000000000000000000000000000..28a6bb262b79bb52df51e9369d78e7ab91552d3b --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00906739535.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca8367419eba523c959a1572eb7ad89d6a43d53a7e6a1cd29520008e8e73cae +size 180268 diff --git a/datasets/openslr_yoruba/yof_01208_00920881957.wav b/datasets/openslr_yoruba/yof_01208_00920881957.wav new file mode 100644 index 0000000000000000000000000000000000000000..d40118b1d9d6b0666ee663a8be8ad94e64e2efc3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00920881957.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fc5597eab83b90ded98fe0bf53af0f088caaa70ce63734f81a6be329728e2f +size 327724 diff --git a/datasets/openslr_yoruba/yof_01208_00990579992.wav b/datasets/openslr_yoruba/yof_01208_00990579992.wav new file mode 100644 index 0000000000000000000000000000000000000000..556acbb6950ce546ae0ecf585fb231f5cdd344a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_00990579992.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e08dc361e2fd2cd09ad9696a54df41b93e5968a93c3f9ab311d576a2e08dc02 +size 311340 diff --git a/datasets/openslr_yoruba/yof_01208_01025805174.wav b/datasets/openslr_yoruba/yof_01208_01025805174.wav new file mode 100644 index 0000000000000000000000000000000000000000..6112b3cbf65458d9dacc822ce0196c51106e00ce --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01025805174.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415d93530bb8eba67cc1b2bbc10631f82f099eda9bd814720644e55301383928 +size 245804 diff --git a/datasets/openslr_yoruba/yof_01208_01028857253.wav b/datasets/openslr_yoruba/yof_01208_01028857253.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9ec0256e98182e4a096bb64edc29b63773f4159 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01028857253.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8491f1fd82490c1a5ecca6aa3d0ad24a75e653828ce599b7925dcc869467ee68 +size 532524 diff --git a/datasets/openslr_yoruba/yof_01208_01053492099.wav b/datasets/openslr_yoruba/yof_01208_01053492099.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e38519ef62a84f8317753181cd6806bcc7cc4ba --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01053492099.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2624f71d3b73ccc7c1472197a914359c907fbead1bac10b0d2849282203c191c +size 294956 diff --git a/datasets/openslr_yoruba/yof_01208_01062815342.wav b/datasets/openslr_yoruba/yof_01208_01062815342.wav new file mode 100644 index 0000000000000000000000000000000000000000..00cedb7a5fc9e8333fea5db535ba5a234682e4de --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01062815342.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9024b6e9e7fa773f27e01c62a9735290e6c136bb81924cd02976804933a830f0 +size 180268 diff --git a/datasets/openslr_yoruba/yof_01208_01076239944.wav b/datasets/openslr_yoruba/yof_01208_01076239944.wav new file mode 100644 index 0000000000000000000000000000000000000000..30df18c4606f788fc84f862d4c8dede992ad4294 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01076239944.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c919c8f36db4e2aa3756587cc2cd92173c52fe6096f8ad62e64ec00ccbdf1d98 +size 262188 diff --git a/datasets/openslr_yoruba/yof_01208_01086644624.wav b/datasets/openslr_yoruba/yof_01208_01086644624.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3611014006038a5dbbc7fa2b15a049a6a6168c1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01086644624.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4edf00d8d01a7c191fecf66dceb434d428a1e31d969fb298df787149b338d126 +size 221228 diff --git a/datasets/openslr_yoruba/yof_01208_01099449672.wav b/datasets/openslr_yoruba/yof_01208_01099449672.wav new file mode 100644 index 0000000000000000000000000000000000000000..66ef9e62a47a0a581eb12c08b76206f10fe02cfa --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01099449672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a285eb95fbbf212eae8a689cad07445588239eaaf610287a1089ce672eaab1 +size 229420 diff --git a/datasets/openslr_yoruba/yof_01208_01104666347.wav b/datasets/openslr_yoruba/yof_01208_01104666347.wav new file mode 100644 index 0000000000000000000000000000000000000000..961beeb4f4a63e38131b338e50dc287d2b3e1c12 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01104666347.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcbf3c9270738d3b2172269681b4ccbe869f0d459000dc255228b06b02e7cba2 +size 294956 diff --git a/datasets/openslr_yoruba/yof_01208_01122851509.wav b/datasets/openslr_yoruba/yof_01208_01122851509.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9d3b6dd85147ba1216eec0528ab16ad864ab873 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01122851509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2efcf87d0d18e56382123caabc1c66ec45be58d55d62c5286d49e7d3f5d20bb4 +size 245804 diff --git a/datasets/openslr_yoruba/yof_01208_01219855554.wav b/datasets/openslr_yoruba/yof_01208_01219855554.wav new file mode 100644 index 0000000000000000000000000000000000000000..d78b3ade4da932bc21ceb50f4bb4fa0db51480bc --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01219855554.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23bf8f5ecb63710de048dc6df3af7ba9af4710b7b0d5b7802260462fe69dc70 +size 434220 diff --git a/datasets/openslr_yoruba/yof_01208_01232592328.wav b/datasets/openslr_yoruba/yof_01208_01232592328.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d43e92078f3cf141ad544538389a7d166a51918 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01232592328.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0b717a25076fd32d1a9b3875f384e73154d7faad6eb592bdfd6d1e5f95d539 +size 196652 diff --git a/datasets/openslr_yoruba/yof_01208_01239175573.wav b/datasets/openslr_yoruba/yof_01208_01239175573.wav new file mode 100644 index 0000000000000000000000000000000000000000..443a8ee4e2c8a96436941bd86a28715c05fa5a56 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01239175573.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbe7a64371ccb01921b791db0c44d3b81b07594c2e132b6ea5dcf050b6a7023 +size 229420 diff --git a/datasets/openslr_yoruba/yof_01208_01304309543.wav b/datasets/openslr_yoruba/yof_01208_01304309543.wav new file mode 100644 index 0000000000000000000000000000000000000000..336d93b6ee91a04ab024f6d52ad55a8aec2a274d --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01304309543.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc382658bc215d4dfa929caa035b05a306ebcea9193af5f2b0014a1466172de1 +size 417836 diff --git a/datasets/openslr_yoruba/yof_01208_01325492457.wav b/datasets/openslr_yoruba/yof_01208_01325492457.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a5401c38c792108eef7b42a0d7394caa83beac4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01325492457.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe027be87fee96153fac8fbf302dbab7cbe5a2b459c0211137d5b63f6b0a66d +size 245804 diff --git a/datasets/openslr_yoruba/yof_01208_01330865557.wav b/datasets/openslr_yoruba/yof_01208_01330865557.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d80ca1dc9ca7bea9c92218cc35be39a72ee684e --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01330865557.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829171984e98c5905e2a16e593a33bd4083d263d88a616ba33ce865075a3cb95 +size 213036 diff --git a/datasets/openslr_yoruba/yof_01208_01348944590.wav b/datasets/openslr_yoruba/yof_01208_01348944590.wav new file mode 100644 index 0000000000000000000000000000000000000000..53182a36a7a8c00a42a129f3ee8ef63a20116c5f --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01348944590.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791024cce517f58cb752814e7a4995cc89776af1f561b416c2a7541ab7fa0d40 +size 409644 diff --git a/datasets/openslr_yoruba/yof_01208_01363759623.wav b/datasets/openslr_yoruba/yof_01208_01363759623.wav new file mode 100644 index 0000000000000000000000000000000000000000..66d7c2ed1b7d74ad4e487d56c20ced673197de18 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01363759623.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0309e4ad1a9f819e264a55710b8aa4fa1ac3c86e02b6692a4cb4e2690a190c4 +size 409644 diff --git a/datasets/openslr_yoruba/yof_01208_01374661369.wav b/datasets/openslr_yoruba/yof_01208_01374661369.wav new file mode 100644 index 0000000000000000000000000000000000000000..b43664ce9b55ee2bdb1b944dcd6cef0fb3e72fa4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01374661369.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb744d5ea3b24291276ee63e0ed10711d32cda0554fa5ccb82c75c5351b84702 +size 229420 diff --git a/datasets/openslr_yoruba/yof_01208_01400025115.wav b/datasets/openslr_yoruba/yof_01208_01400025115.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4992080c7604ba12fa9cb8ca4aa874462a49ebf --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01400025115.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6daa21a27e36a82e98e1cd173f0d363bc3876c966c59b879a43f6bfd1c38c8a5 +size 221228 diff --git a/datasets/openslr_yoruba/yof_01208_01430688171.wav b/datasets/openslr_yoruba/yof_01208_01430688171.wav new file mode 100644 index 0000000000000000000000000000000000000000..14cc3e49225fa23e5824de3b28eb0239b1b88ac5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01430688171.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d684c09d9341b1206dbbb6dd5a30001cd5d9dac61e08662ede8306677d12766a +size 278572 diff --git a/datasets/openslr_yoruba/yof_01208_01445895100.wav b/datasets/openslr_yoruba/yof_01208_01445895100.wav new file mode 100644 index 0000000000000000000000000000000000000000..51b4d60135f4385fbfcabf1969089fe68a1c42d4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01445895100.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9268e7bfc6d9a2100dda87003252a10f35710d40488ebbd68f675379262f656a +size 303148 diff --git a/datasets/openslr_yoruba/yof_01208_01446619232.wav b/datasets/openslr_yoruba/yof_01208_01446619232.wav new file mode 100644 index 0000000000000000000000000000000000000000..c377dd2143b98a7436a51ed18b1f1fe0d1d0c8eb --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01446619232.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e224cc267dd666bf52b3248e26da22c50f770752b9430a0fe69f3f05da073c +size 376876 diff --git a/datasets/openslr_yoruba/yof_01208_01487943501.wav b/datasets/openslr_yoruba/yof_01208_01487943501.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8fac8b9586a8e8eb7bba4399e4b6811f09aca62 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01487943501.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23690be0bbe7bc651b686bf81a69d09ee8b98e21f9ab0b84a63bbbe7a3665e50 +size 229420 diff --git a/datasets/openslr_yoruba/yof_01208_01560372912.wav b/datasets/openslr_yoruba/yof_01208_01560372912.wav new file mode 100644 index 0000000000000000000000000000000000000000..9f77c67e6e0f7d6ef9fda3ac4d07f36dd4976398 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01560372912.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d904c49e919f515cd0ed4429c3a8a393575cb0dc8e4a386c3d7549a7728fc7 +size 753708 diff --git a/datasets/openslr_yoruba/yof_01208_01598808957.wav b/datasets/openslr_yoruba/yof_01208_01598808957.wav new file mode 100644 index 0000000000000000000000000000000000000000..89ae738d2206290d5bf4ab195f4079a04d88e1c3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01598808957.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f769c86b68dc1e0d9ca9484adb26613c76b0e85cbeefde9507714c517ec5c6 +size 237612 diff --git a/datasets/openslr_yoruba/yof_01208_01634241562.wav b/datasets/openslr_yoruba/yof_01208_01634241562.wav new file mode 100644 index 0000000000000000000000000000000000000000..559793f2d39648702f61602b8f3887bb10513776 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01634241562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc48a94cb8de81efa4b0312e5230464383f758e32528826f86907f3e10bc4d4 +size 376876 diff --git a/datasets/openslr_yoruba/yof_01208_01644559069.wav b/datasets/openslr_yoruba/yof_01208_01644559069.wav new file mode 100644 index 0000000000000000000000000000000000000000..c06af19cb6dcf024763ca3eedf05b1a5699dc5f7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01644559069.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeaea02d2c7cbf01a6a47beede78b8e2cc69bda52ca18e2b6d1c7857f54bb77b +size 262188 diff --git a/datasets/openslr_yoruba/yof_01208_01649157536.wav b/datasets/openslr_yoruba/yof_01208_01649157536.wav new file mode 100644 index 0000000000000000000000000000000000000000..8965029e52313a681d4f937cf4eacf45e75ff03e --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01649157536.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b3e440f5b4ee8dc72448a339d372650169932a71ad4f538674dcf5495afa68 +size 245804 diff --git a/datasets/openslr_yoruba/yof_01208_01663278651.wav b/datasets/openslr_yoruba/yof_01208_01663278651.wav new file mode 100644 index 0000000000000000000000000000000000000000..97e9ea877a61137e5164fd7c27e71ae1205a415b --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01663278651.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2198bd89d9933ad4e71d8e6783ff31b80e386c71158e9eae14913ccc4e3fe9 +size 294956 diff --git a/datasets/openslr_yoruba/yof_01208_01686148829.wav b/datasets/openslr_yoruba/yof_01208_01686148829.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf84e2a522f5d8e25d4feda3492bcd7ad12a2402 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01686148829.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317a54604de376c8a2e6396779fa1e6e52a09e1f9fa456b51b3d89bf78324aad +size 188460 diff --git a/datasets/openslr_yoruba/yof_01208_01689550347.wav b/datasets/openslr_yoruba/yof_01208_01689550347.wav new file mode 100644 index 0000000000000000000000000000000000000000..0041e89701b30f872fbf72b65ff6eb62c31ba984 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01689550347.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1549e9164d47be158e07d3853dfd054280760377badb4f204426507b4ef9728b +size 237612 diff --git a/datasets/openslr_yoruba/yof_01208_01727127192.wav b/datasets/openslr_yoruba/yof_01208_01727127192.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3a6b43ca2c14fa6e847249b995f2c28840de093 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01727127192.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0fbc485ffe1ccfa28577b2e4f78ebdc8712fdd701359925aa4870f5c1fda4c +size 221228 diff --git a/datasets/openslr_yoruba/yof_01208_01740136044.wav b/datasets/openslr_yoruba/yof_01208_01740136044.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7829b403e4be2a03ad4d9462e0c2da5e5fe2c1e --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01740136044.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d061f64985fcc0db06697e78f7928ed9981c3952ccb12455f2b6884ca1b0447 +size 270380 diff --git a/datasets/openslr_yoruba/yof_01208_01761474897.wav b/datasets/openslr_yoruba/yof_01208_01761474897.wav new file mode 100644 index 0000000000000000000000000000000000000000..14e163143051e57881c1acdbb85c8a1ae0fa7c6d --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01761474897.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e505b56c7ee0a89e7c8e282cc9fd72a048d9658bf35e096e71b0d123d17e41eb +size 245804 diff --git a/datasets/openslr_yoruba/yof_01208_01779612882.wav b/datasets/openslr_yoruba/yof_01208_01779612882.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7aec4aa22cb9c83d94c67cf1d69bdf576628a54 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01779612882.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0a4c0fb768222cea01af415e6638eb5f38ffab4567f9136f42ac1b31a5fccc +size 213036 diff --git a/datasets/openslr_yoruba/yof_01208_01799058721.wav b/datasets/openslr_yoruba/yof_01208_01799058721.wav new file mode 100644 index 0000000000000000000000000000000000000000..def138c173a77007e50e3c64d29f75dd787906ad --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01799058721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e5a0de9120d9a7721a4ae08c412b646e12f953eceba2ed3e3e8ea85a50b771 +size 311340 diff --git a/datasets/openslr_yoruba/yof_01208_01799282569.wav b/datasets/openslr_yoruba/yof_01208_01799282569.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a3edb3b234ab02945581282f8c963bcf18f99dc --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01799282569.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581fac32df106d02666c8b0d978598656c70455272639f1b1f78b639cc5764dd +size 204844 diff --git a/datasets/openslr_yoruba/yof_01208_01820644403.wav b/datasets/openslr_yoruba/yof_01208_01820644403.wav new file mode 100644 index 0000000000000000000000000000000000000000..812ff8d506bece0f8e655c1166abbee4548463d3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01820644403.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54521861450454646b234e89207860319aeff191c62eed926ea454d1c61f74f9 +size 278572 diff --git a/datasets/openslr_yoruba/yof_01208_01835714869.wav b/datasets/openslr_yoruba/yof_01208_01835714869.wav new file mode 100644 index 0000000000000000000000000000000000000000..058d86661f35e3107660c811efc1fc19c243a1bc --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01835714869.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15eb9806e59089993ff29533fbcf435eff331976d42ad7f8823eba6f3a4e7121 +size 286764 diff --git a/datasets/openslr_yoruba/yof_01208_01850003899.wav b/datasets/openslr_yoruba/yof_01208_01850003899.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e4c65b15899d3f37b317d38e7f71319f473d43c --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01850003899.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd1b0b28fc48e375f329c778bd909242e8104338691287781ccba23b34f5290 +size 221228 diff --git a/datasets/openslr_yoruba/yof_01208_01869898966.wav b/datasets/openslr_yoruba/yof_01208_01869898966.wav new file mode 100644 index 0000000000000000000000000000000000000000..74f917855f52fe39133bffc8427ef099f4277f83 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01869898966.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e84bada92e2064d51c8a6011c65666a28498feb318e1b47a1ccea880480fe10 +size 245804 diff --git a/datasets/openslr_yoruba/yof_01208_01876513226.wav b/datasets/openslr_yoruba/yof_01208_01876513226.wav new file mode 100644 index 0000000000000000000000000000000000000000..4e037e8d368d76f6a05cbe7bc62e9d32c112155e --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01876513226.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7acd647b9277ccc9d5ee9113ff9eb5f740ac6a89c8e602b0cf3f5ff0f5413af +size 229420 diff --git a/datasets/openslr_yoruba/yof_01208_01881223794.wav b/datasets/openslr_yoruba/yof_01208_01881223794.wav new file mode 100644 index 0000000000000000000000000000000000000000..83ab2e72dbe40465289f3beea73a36416176c715 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01881223794.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c4cac5177334eb1238c1940efd10c0e4231711eb9ea692b086d080f7710292 +size 229420 diff --git a/datasets/openslr_yoruba/yof_01208_01885514616.wav b/datasets/openslr_yoruba/yof_01208_01885514616.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed33e26f023e04c67bcdcbee10738f2be8d9b00e --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01885514616.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24cf5362f5cf15b79597c02d813b5893f0d0a353e6ebf314c9320408861997c0 +size 262188 diff --git a/datasets/openslr_yoruba/yof_01208_01914949596.wav b/datasets/openslr_yoruba/yof_01208_01914949596.wav new file mode 100644 index 0000000000000000000000000000000000000000..357b942bd8d6903b2fabcdff6729714e69132ae4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01914949596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c37cf0e9bbc0f1ea50ffcac88e256f601e30b8025b30f258af440c74b4186e +size 598060 diff --git a/datasets/openslr_yoruba/yof_01208_01931207025.wav b/datasets/openslr_yoruba/yof_01208_01931207025.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1334c722c67f51a56638750cb723124a97ac0da --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01931207025.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff769e8faf62ea53eb227fffde0e0fd5d6b6fbcd12abcd905fcde15fb494624 +size 548908 diff --git a/datasets/openslr_yoruba/yof_01208_01936712482.wav b/datasets/openslr_yoruba/yof_01208_01936712482.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a6dd35de8e76071365369baa0f50736a9a3caad --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01936712482.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76771edde0b01e9d624eae5a12b558f5aeca603a08985b65a8b66cd5e22f12b +size 319532 diff --git a/datasets/openslr_yoruba/yof_01208_01944365489.wav b/datasets/openslr_yoruba/yof_01208_01944365489.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e7dcc79c5e9d1599b2c4626b796ade08dfeb4b3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01944365489.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e7a181f498154cee2c7149d82dfb98f92b4039e305057ded731bd7671edb5e +size 360492 diff --git a/datasets/openslr_yoruba/yof_01208_01947924185.wav b/datasets/openslr_yoruba/yof_01208_01947924185.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ff139aa7fa237785f661a24d0b8d97b53f5cd24 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01947924185.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3252006f659e5b1db1c6ee5122ea444763495cf8a3ac684eaff6f2d9c2c7968a +size 180268 diff --git a/datasets/openslr_yoruba/yof_01208_01966675312.wav b/datasets/openslr_yoruba/yof_01208_01966675312.wav new file mode 100644 index 0000000000000000000000000000000000000000..f839ceb8a0a81535b86cb801d3300414141adfa7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_01966675312.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48440f6c86eb53cef94d8fce44f05d46df75f9c542486203c041a155264dc92c +size 278572 diff --git a/datasets/openslr_yoruba/yof_01208_02047885288.wav b/datasets/openslr_yoruba/yof_01208_02047885288.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1be98a61363f1849b0855199b259d5b213005b8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_02047885288.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a36f19f2bc6865e6afb8bf3a8427c958f0d97121a8ddd8ec61944e2fa9bae0 +size 286764 diff --git a/datasets/openslr_yoruba/yof_01208_02088685648.wav b/datasets/openslr_yoruba/yof_01208_02088685648.wav new file mode 100644 index 0000000000000000000000000000000000000000..efe9286bdd724fc5bc35a9f735b4e87bb02c5491 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_02088685648.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efea7e350161d0df57a7d1d66ac7bc062c7479052c8a3cc247e071f338212635 +size 499756 diff --git a/datasets/openslr_yoruba/yof_01208_02100893630.wav b/datasets/openslr_yoruba/yof_01208_02100893630.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a318ad0e99328d04f9cb24dd1fa9dd48d0854ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_02100893630.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95f71ddde8007a61fba329ae99b361e76e5b1d78eb6f7e0127d55a45204467d +size 221228 diff --git a/datasets/openslr_yoruba/yof_01208_02123973225.wav b/datasets/openslr_yoruba/yof_01208_02123973225.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e33e0953a2523058d796bb62f8e67f0a9abfda8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_02123973225.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61128822b1a6279085a72c6ff4ceee41e906e6b74a381e390253459639b61a10 +size 237612 diff --git a/datasets/openslr_yoruba/yof_01208_02144560182.wav b/datasets/openslr_yoruba/yof_01208_02144560182.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e53530d7538b7892b2a3c43102f55926dd402d8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_01208_02144560182.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f493c1c706d927dc956c7c18c6479deb8c24fde738abd8eacc45f9ba8f8b286 +size 720940 diff --git a/datasets/openslr_yoruba/yof_02121_00012746470.wav b/datasets/openslr_yoruba/yof_02121_00012746470.wav new file mode 100644 index 0000000000000000000000000000000000000000..39466dc871e360fdbf5a11f532037c11f1d0454c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00012746470.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f7fcd538b2edd246ebfcd9898a8e9a117a2752afd2ee0429f542651fd38b492 +size 630828 diff --git a/datasets/openslr_yoruba/yof_02121_00017373295.wav b/datasets/openslr_yoruba/yof_02121_00017373295.wav new file mode 100644 index 0000000000000000000000000000000000000000..27e954c9d89fcbd0cf375afa28867b8304c0719a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00017373295.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57379badd3c090faf105cd1632193c526aca2c44386c64df34d0e84eee2e4359 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02121_00020079300.wav b/datasets/openslr_yoruba/yof_02121_00020079300.wav new file mode 100644 index 0000000000000000000000000000000000000000..df6f3efe1fac2b3268fac3285236b8b52c3eb0c6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00020079300.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e6bfe6b66e70fa3bc68f97252dad389ddcbe877af3c31e2f151793e593a1e2 +size 311340 diff --git a/datasets/openslr_yoruba/yof_02121_00038358953.wav b/datasets/openslr_yoruba/yof_02121_00038358953.wav new file mode 100644 index 0000000000000000000000000000000000000000..c37f7e005f903249a0658c91235efaec7fb7404c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00038358953.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:558ecda53a67723442cf327ddced6fb609e160523c331540f38738f275fa1c19 +size 688172 diff --git a/datasets/openslr_yoruba/yof_02121_00058395979.wav b/datasets/openslr_yoruba/yof_02121_00058395979.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cc31e9b90a58f98fd06604f548a3a11b2da7641 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00058395979.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377d674639af00fad194a5c53fcfee95872039f3c862d173f19d93e1400647d2 +size 221228 diff --git a/datasets/openslr_yoruba/yof_02121_00064862320.wav b/datasets/openslr_yoruba/yof_02121_00064862320.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3b4bc71d58e5d9d7202dca7afd040cd0456640a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00064862320.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a2a838e3b29ed43a41639301cb91ddb6dab78ecaafb82ba364ba5c8daca60f +size 221228 diff --git a/datasets/openslr_yoruba/yof_02121_00136858951.wav b/datasets/openslr_yoruba/yof_02121_00136858951.wav new file mode 100644 index 0000000000000000000000000000000000000000..65a3c8a22355a9fa57548a9078e1e8a23151f7c5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00136858951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842836c76d05fbcc24c487ba34849020c9e45f1209af0bd974ddd7ac6645dfa9 +size 401452 diff --git a/datasets/openslr_yoruba/yof_02121_00148255921.wav b/datasets/openslr_yoruba/yof_02121_00148255921.wav new file mode 100644 index 0000000000000000000000000000000000000000..48d83a797807fe576ec8c5bf12659d6321d0dc35 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00148255921.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04978193d16d638cf83533726265fc98ccb9fd1f42a6cefed005fb8d5ae8024 +size 770092 diff --git a/datasets/openslr_yoruba/yof_02121_00193940796.wav b/datasets/openslr_yoruba/yof_02121_00193940796.wav new file mode 100644 index 0000000000000000000000000000000000000000..8838f698d911bfa43c47a6ccf9dad6f7ab39b6c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00193940796.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e94b05ee974b95308914793c919128c0470cb1952000a7b9127b8f5f171f32f +size 286764 diff --git a/datasets/openslr_yoruba/yof_02121_00215059350.wav b/datasets/openslr_yoruba/yof_02121_00215059350.wav new file mode 100644 index 0000000000000000000000000000000000000000..184aa5ba41ac6489b121fbc1e6642e2f6d49da37 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00215059350.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:659e73dfb4c14c516cff04e346c5625740a9d3b61b3c91f5ce78f27a2e93320b +size 221228 diff --git a/datasets/openslr_yoruba/yof_02121_00222177423.wav b/datasets/openslr_yoruba/yof_02121_00222177423.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad1ab4feab0ba834b235b1d2ddfc5ae73932491b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00222177423.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f7723d77b318b28c29125fb56bcf95b8b9bcc03a6ad7219da86245a719e5d7 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02121_00226977851.wav b/datasets/openslr_yoruba/yof_02121_00226977851.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab9f9a1afa62d22f5c9b953150ba53275b4469f5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00226977851.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83f70e7aebadad4c1dcbc237a2b2e90aa25770de524ca4ef2999d9c8c5c92c8 +size 294956 diff --git a/datasets/openslr_yoruba/yof_02121_00227440284.wav b/datasets/openslr_yoruba/yof_02121_00227440284.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0d0c677c92e8d707d260c540a68d47fdfe82712 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00227440284.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8da4c959b81576f10639a2f171ec8f3285af1834a72322e2ed1d742bb358c9 +size 475180 diff --git a/datasets/openslr_yoruba/yof_02121_00254942458.wav b/datasets/openslr_yoruba/yof_02121_00254942458.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3b15cf8d0c5eb8338f5788bbea371262e33c5a4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00254942458.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3e984735488b3b184650671e1fe53ecbca947b2f964ce3eab0af0ec3b92a33 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02121_00269127136.wav b/datasets/openslr_yoruba/yof_02121_00269127136.wav new file mode 100644 index 0000000000000000000000000000000000000000..5cc58b5a1dc211b81dfee6a61cffa78278fe3899 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00269127136.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153267bc041709b699efbff00e9bdd4d99ed436e56166254e7b5ee3b421bd500 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02121_00294065730.wav b/datasets/openslr_yoruba/yof_02121_00294065730.wav new file mode 100644 index 0000000000000000000000000000000000000000..b2ead0661fdc16d5a9035b196efce2e05dbf08fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00294065730.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f54970735431cbfb79a88809a4cb7082be8a549d3faa3332301d7e92bc7fd7 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02121_00334458563.wav b/datasets/openslr_yoruba/yof_02121_00334458563.wav new file mode 100644 index 0000000000000000000000000000000000000000..255abbb413e71d7b2f53bf0dd9508e4a6e8df5b0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00334458563.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90186cfafc147294fa45e2aebdc2f80531c0a8378c07067599c86e4a4080504 +size 385068 diff --git a/datasets/openslr_yoruba/yof_02121_00367675809.wav b/datasets/openslr_yoruba/yof_02121_00367675809.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac7364114d0266f42d88801fd8e7433686d20944 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00367675809.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b70c8148d68573b77fd14d0705686f595a69a45faeeaac5eb05c5cf6b989eb +size 253996 diff --git a/datasets/openslr_yoruba/yof_02121_00419902035.wav b/datasets/openslr_yoruba/yof_02121_00419902035.wav new file mode 100644 index 0000000000000000000000000000000000000000..649281632bf77d2c998f4c99535ebb46b76070f2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00419902035.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:073a1be12b07dc787658c4d4dcbf2a748df069bc7fcdd978952e5c3e28e3394b +size 933932 diff --git a/datasets/openslr_yoruba/yof_02121_00427135576.wav b/datasets/openslr_yoruba/yof_02121_00427135576.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e6c24624341cbc04b191c9ac80683ff2099b341 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00427135576.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:027dc7092f76555f6bdd98b83597523d787433ba7a6a7d7ed9b4ffde62465c51 +size 311340 diff --git a/datasets/openslr_yoruba/yof_02121_00430575678.wav b/datasets/openslr_yoruba/yof_02121_00430575678.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ddcd3d3cf7c85d9706ef03d84beff8d045123c2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00430575678.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3312aaf6a086339b9143f258cac96c7af5e04f2455a773d1481dca52db927f6d +size 204844 diff --git a/datasets/openslr_yoruba/yof_02121_00438639497.wav b/datasets/openslr_yoruba/yof_02121_00438639497.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0f4da52b2437bbccf295587a9419f5ef3ad5faa --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00438639497.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ced5e2b2eb452a51b868db27822df472af06312d3be6114923af522d91f921 +size 294956 diff --git a/datasets/openslr_yoruba/yof_02121_00443525088.wav b/datasets/openslr_yoruba/yof_02121_00443525088.wav new file mode 100644 index 0000000000000000000000000000000000000000..69dc420eeca0fdd785e7088ae67820c2d7266788 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00443525088.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6f9fd3f3a14f4e725261d7ee56864327081acb6d7c7997b52acf7954294eb3 +size 532524 diff --git a/datasets/openslr_yoruba/yof_02121_00443892123.wav b/datasets/openslr_yoruba/yof_02121_00443892123.wav new file mode 100644 index 0000000000000000000000000000000000000000..a36cd06fa514faaebd0d143a7150a581df412a6c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00443892123.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3211135eabf72916ae271751131fe560fb89784ee0c1361351f8a1c3273f42 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02121_00449006646.wav b/datasets/openslr_yoruba/yof_02121_00449006646.wav new file mode 100644 index 0000000000000000000000000000000000000000..1431201a24db8ceceadd54690c1144c6a157d7e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00449006646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0427e67aa8a5641e15893013cf722580ceb2a27a4f0d4c5bfb97ca19b5cebea6 +size 335916 diff --git a/datasets/openslr_yoruba/yof_02121_00451716211.wav b/datasets/openslr_yoruba/yof_02121_00451716211.wav new file mode 100644 index 0000000000000000000000000000000000000000..0fa8d596d1f0f0e6aebb0bd67a53bc23156f2338 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00451716211.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54e926a02359501a3e47d18433dbba98c518380569e6b0e416b731000f62511 +size 303148 diff --git a/datasets/openslr_yoruba/yof_02121_00453631041.wav b/datasets/openslr_yoruba/yof_02121_00453631041.wav new file mode 100644 index 0000000000000000000000000000000000000000..ada3e90fb5cefd6ac1c7dda88706f60f46444f41 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00453631041.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea76e2dd5e3bc98b8e6f70f7106c253d89452525e272be2eca5b74a81e27551 +size 303148 diff --git a/datasets/openslr_yoruba/yof_02121_00460996262.wav b/datasets/openslr_yoruba/yof_02121_00460996262.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3f370f8d7c4e7c14de81c4a3a479cacba1472cc --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00460996262.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e82a4132b49c60114df7550c4acbd2ff00910242b501543f5a3b57d55ea4a9 +size 458796 diff --git a/datasets/openslr_yoruba/yof_02121_00464496827.wav b/datasets/openslr_yoruba/yof_02121_00464496827.wav new file mode 100644 index 0000000000000000000000000000000000000000..3275eb82e2b80f0820b1fb48bb3585a4e3d23584 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00464496827.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e09c7255e6dc5dcfb5824e64a6b232766a790d8085e503fb0a84a0d83e0795e +size 286764 diff --git a/datasets/openslr_yoruba/yof_02121_00475923549.wav b/datasets/openslr_yoruba/yof_02121_00475923549.wav new file mode 100644 index 0000000000000000000000000000000000000000..584b5b9f2bbce079c63a0247c7bff1388e5c5d83 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00475923549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ac3d3060398967104843e299ec477cf5c5f2c1294318bb3ad7893b4ae0294c +size 319532 diff --git a/datasets/openslr_yoruba/yof_02121_00479050694.wav b/datasets/openslr_yoruba/yof_02121_00479050694.wav new file mode 100644 index 0000000000000000000000000000000000000000..71f4e60bbb799154aefbd34340996592075f6e24 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00479050694.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe1b0a1f45e1a2b6355c1bfc7c4a24bd65ff4dc9cd5249c2f4838735f8bdba9 +size 294956 diff --git a/datasets/openslr_yoruba/yof_02121_00483747783.wav b/datasets/openslr_yoruba/yof_02121_00483747783.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a4542f4495a065f7137f1673c69ba9f42876699 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00483747783.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d3b970ff9e588863f4f34f3171e34cd1a7151388f29409e500151b4c2ecc06 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02121_00533583163.wav b/datasets/openslr_yoruba/yof_02121_00533583163.wav new file mode 100644 index 0000000000000000000000000000000000000000..d49476f32fb11ad271059645a91fd8157ba53bcc --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00533583163.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:667e60f8b7d3057752f400e2d76544ff6f194490f26f897ede431c97d55bd4e6 +size 335916 diff --git a/datasets/openslr_yoruba/yof_02121_00540921862.wav b/datasets/openslr_yoruba/yof_02121_00540921862.wav new file mode 100644 index 0000000000000000000000000000000000000000..2ceea9bf27d340b3eda50e5a9669102923a75cb7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00540921862.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb1876bb69daee8282613c27cfd80a3b50ca6662d9c0e16604fc20cec7b32a3 +size 720940 diff --git a/datasets/openslr_yoruba/yof_02121_00546763487.wav b/datasets/openslr_yoruba/yof_02121_00546763487.wav new file mode 100644 index 0000000000000000000000000000000000000000..091b391ac76e8595388a734fc19c3b6a81b7d840 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00546763487.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f150a766430c924dec39d25f00ba416035fa800accf3375fdadb8ff8ffeb527 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02121_00560325872.wav b/datasets/openslr_yoruba/yof_02121_00560325872.wav new file mode 100644 index 0000000000000000000000000000000000000000..08fe2684e9ab13a6109ce6c61b74f2e4170ed585 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00560325872.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0edbf67a5aa6180cd7f8f9bf3e6b2b893c1737e5b8c1f1d67c5d711968b61e0 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02121_00579854352.wav b/datasets/openslr_yoruba/yof_02121_00579854352.wav new file mode 100644 index 0000000000000000000000000000000000000000..afdff8f35856bf3fe10fc4f9cfa3be8b92bcfaa5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00579854352.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08adc9060eba028577064cf843c7c5f84f966c4cae04fd25cb2d9a175cbe3122 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_00605694996.wav b/datasets/openslr_yoruba/yof_02121_00605694996.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa4049f8bed064f802abd76ea6f6672799e2786b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00605694996.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e4a6ae126781a2d50dcb17094e98bd014d44e65e4f4ceb500d29f8c784f7093 +size 221228 diff --git a/datasets/openslr_yoruba/yof_02121_00687085752.wav b/datasets/openslr_yoruba/yof_02121_00687085752.wav new file mode 100644 index 0000000000000000000000000000000000000000..8dc47b46d671a23c4e498809d5e81234237c8aa7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00687085752.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8420ee30bc67ac37df99ce86ed723d82d1bfbaf9d63bb67fb20c9374d9a9a521 +size 237612 diff --git a/datasets/openslr_yoruba/yof_02121_00713271015.wav b/datasets/openslr_yoruba/yof_02121_00713271015.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef09736f40261f387999f29ff15a3c343df184c2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00713271015.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29beb029a67c60faf0fd579095a5317d0fe2741438037ae8c80deba3e6f2c8b +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_00716918197.wav b/datasets/openslr_yoruba/yof_02121_00716918197.wav new file mode 100644 index 0000000000000000000000000000000000000000..60133f4fc810a45ba8e68b6caf97704faf12db19 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00716918197.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b634c9c8f6031ab191550762c699b99ba6d046fbaddb093c34b7af7a634318 +size 614444 diff --git a/datasets/openslr_yoruba/yof_02121_00760901890.wav b/datasets/openslr_yoruba/yof_02121_00760901890.wav new file mode 100644 index 0000000000000000000000000000000000000000..1154af52f072f521ede55e9573cefc6802682f39 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00760901890.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548951dec90f585bec1aac4aa22684c53e414610f925016a6bbe3a6266e0c73e +size 245804 diff --git a/datasets/openslr_yoruba/yof_02121_00813921016.wav b/datasets/openslr_yoruba/yof_02121_00813921016.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bfdd0c6626dbc9775d84ea7dc83ab60cb4d35d2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00813921016.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ace9552c4fbedce3dbeddb0dc2ee7f35de04dabc00622d12d7a9ee8e4be9d0 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02121_00852633768.wav b/datasets/openslr_yoruba/yof_02121_00852633768.wav new file mode 100644 index 0000000000000000000000000000000000000000..dfbba0b4ad6c240bb74053d3cf82031c32297c5d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00852633768.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0457fe4deef63ee04b499e3d08872b605d76ec78ea39f962ce3c7bfa829354 +size 311340 diff --git a/datasets/openslr_yoruba/yof_02121_00860975150.wav b/datasets/openslr_yoruba/yof_02121_00860975150.wav new file mode 100644 index 0000000000000000000000000000000000000000..0dc286e83383786c87500f754059f4953f41d403 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00860975150.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c46f5a862952c84276b5f70c9ea0d406f5d68d42915e480e669fe14d561724 +size 409644 diff --git a/datasets/openslr_yoruba/yof_02121_00884012069.wav b/datasets/openslr_yoruba/yof_02121_00884012069.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b4166d9dc74af1b4b5481a6423a043e4097b405 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00884012069.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41956d92c47326c0785a720253183d6667b12300d4c6271dda45e6688eaa162c +size 229420 diff --git a/datasets/openslr_yoruba/yof_02121_00907251659.wav b/datasets/openslr_yoruba/yof_02121_00907251659.wav new file mode 100644 index 0000000000000000000000000000000000000000..52b0e6330536be31eb190ff4f98be3582afd0629 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00907251659.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286ddbe953004911ce83b3ae5266a7eb7999dfaf47dc1800898cf86253a94b7e +size 245804 diff --git a/datasets/openslr_yoruba/yof_02121_00914096642.wav b/datasets/openslr_yoruba/yof_02121_00914096642.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb2e36b1dfc427d5e42774a74eb04b34b6e4436a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00914096642.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc67e5db66feb838206974794a46c8cdbfc21f5b99a4993d956e9ec48362aa87 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02121_00930959735.wav b/datasets/openslr_yoruba/yof_02121_00930959735.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b13707541fcb45bb66d2fb593ddca50766e86df --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00930959735.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebed22b59196b1245ac439c34603333a10382a051f6b56be9287f95b7414fb8a +size 319532 diff --git a/datasets/openslr_yoruba/yof_02121_00956906502.wav b/datasets/openslr_yoruba/yof_02121_00956906502.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d75e6a6ec6bb80dc69ad66a0b9efa9b17ef800c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_00956906502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9047777de0322f5afa18f289636f3a9f5617ef0201d8935d25455dedace05501 +size 548908 diff --git a/datasets/openslr_yoruba/yof_02121_01026302017.wav b/datasets/openslr_yoruba/yof_02121_01026302017.wav new file mode 100644 index 0000000000000000000000000000000000000000..281d9a3a93c68e3351dd22ad934c92b916302ffc --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01026302017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2593fa482388887f29b4b8d6052b72837af54e950a339fe8657d784dbe497088 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02121_01084872231.wav b/datasets/openslr_yoruba/yof_02121_01084872231.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9a248a07b9273bd72e723868fc2c898c0125f16 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01084872231.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29b3a769e2479d34a57aeaec7cbdbb766352dc9befaf95dfebcb2b47ed66960 +size 557100 diff --git a/datasets/openslr_yoruba/yof_02121_01097480907.wav b/datasets/openslr_yoruba/yof_02121_01097480907.wav new file mode 100644 index 0000000000000000000000000000000000000000..25e7a8ccb3c345f121be296e6421deeaf03a4a02 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01097480907.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294e669adae0c982e41598b5f5bdf494529ffdc6066d10bb3c09569f71d97070 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_01101113850.wav b/datasets/openslr_yoruba/yof_02121_01101113850.wav new file mode 100644 index 0000000000000000000000000000000000000000..683a8ae306dc4418f11b76a99eaf39752c5854c7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01101113850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4bf6a45d4b381ee867852e66892a1c03d85898a84010c42d95e5f2922ad7a6c +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_01108029577.wav b/datasets/openslr_yoruba/yof_02121_01108029577.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf050c2fa36f93dfd2db95646c9ccb6e98f11768 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01108029577.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f66f846865afe16a083719b7e6b095fa7332e628673e181eef1db0970cf3ad4 +size 491564 diff --git a/datasets/openslr_yoruba/yof_02121_01113475613.wav b/datasets/openslr_yoruba/yof_02121_01113475613.wav new file mode 100644 index 0000000000000000000000000000000000000000..624f1e85a81ea43f68099b2faffaf00c8c4f50d5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01113475613.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bcc4eb7e9d8ca8a3e86c3b886473a155ab93f4dfacd67ceee614b3fd49b78b +size 540716 diff --git a/datasets/openslr_yoruba/yof_02121_01156283000.wav b/datasets/openslr_yoruba/yof_02121_01156283000.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea99691902879aea9f807cc857aa58f33d62b964 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01156283000.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0746b0b170e3b6b77a12bff5e1e8069932b7378357b75b5f29759b21c93afe6 +size 368684 diff --git a/datasets/openslr_yoruba/yof_02121_01172794064.wav b/datasets/openslr_yoruba/yof_02121_01172794064.wav new file mode 100644 index 0000000000000000000000000000000000000000..14e2e1b3c3a0724fc5b46a15a3b27aae12471b47 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01172794064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b67fc34813ad97be26129d745ee91f7bd923d6d7c151173cfe62bb6a1a5e758 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02121_01178327964.wav b/datasets/openslr_yoruba/yof_02121_01178327964.wav new file mode 100644 index 0000000000000000000000000000000000000000..baa7e5e0ba8ee7005157b91ffa0bfbc83e8168e8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01178327964.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b32face5d0ad95f248fcbe4cb2b788daf2060c9c11f105c5e7110c7e38d936 +size 466988 diff --git a/datasets/openslr_yoruba/yof_02121_01181146012.wav b/datasets/openslr_yoruba/yof_02121_01181146012.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ce54be7641a7a5a8c349b22946dbd7f7095ee3f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01181146012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee4e3d934999e61516a6e2522867cfc5994403cccb17ba88f6bb624327cfa0f +size 237612 diff --git a/datasets/openslr_yoruba/yof_02121_01194119411.wav b/datasets/openslr_yoruba/yof_02121_01194119411.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce97b676563c2800fe3ed6f556078bbb47913e35 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01194119411.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b127cdf4b523c6cbc12196d6b4808f5d75dc251d75b18752d5e60bceee0aad +size 213036 diff --git a/datasets/openslr_yoruba/yof_02121_01204042551.wav b/datasets/openslr_yoruba/yof_02121_01204042551.wav new file mode 100644 index 0000000000000000000000000000000000000000..4006c006961968f55c11fb0b0e842628daf1e2e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01204042551.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ecd292650af0db530bc99b9836c015fb022584a8504a743f600911deeffee6 +size 385068 diff --git a/datasets/openslr_yoruba/yof_02121_01254424533.wav b/datasets/openslr_yoruba/yof_02121_01254424533.wav new file mode 100644 index 0000000000000000000000000000000000000000..e66f390374629cbaecef65f6ea9ce5d52f9cb9ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01254424533.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9e77830f54b39384cf690b8a9118a42d53a5f68014b5ac84c7a87dba1976e3 +size 385068 diff --git a/datasets/openslr_yoruba/yof_02121_01254770550.wav b/datasets/openslr_yoruba/yof_02121_01254770550.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f96124df141598e47f4e269e5255b51d070bbe3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01254770550.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cdf69b8b7af760cd41d96a19c55b520e24e22c8f0b05b432f923247bfe4ca5 +size 557100 diff --git a/datasets/openslr_yoruba/yof_02121_01265466833.wav b/datasets/openslr_yoruba/yof_02121_01265466833.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ba8beee4b1f0a80817355641b182c216253b18a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01265466833.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502ea46b6406ad78ecec383cb384c930e36be31ab1fe592c866a2ccace8bd44e +size 278572 diff --git a/datasets/openslr_yoruba/yof_02121_01272650038.wav b/datasets/openslr_yoruba/yof_02121_01272650038.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9ca0a6eb8e86bea71faaf7c84c744cef1c55228 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01272650038.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f59960797971d663f5fe07d7be5ad7499440ab41965f06d9d60b8291eb52a7e +size 270380 diff --git a/datasets/openslr_yoruba/yof_02121_01284646383.wav b/datasets/openslr_yoruba/yof_02121_01284646383.wav new file mode 100644 index 0000000000000000000000000000000000000000..4eec8f1bc7fff4ae1060676e63a10b46bbdbebf2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01284646383.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8894f2ce365c93637910481aa227716164cedcbf560e81e2a4c5cf19ffe57729 +size 368684 diff --git a/datasets/openslr_yoruba/yof_02121_01302764842.wav b/datasets/openslr_yoruba/yof_02121_01302764842.wav new file mode 100644 index 0000000000000000000000000000000000000000..1944b9757ec0249cfa3aa7a7da4de67559319411 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01302764842.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9fd18cc82a7a81a933cebf62bd51b2fff7ecd425d7e158275ad037b7641f6a +size 434220 diff --git a/datasets/openslr_yoruba/yof_02121_01320199001.wav b/datasets/openslr_yoruba/yof_02121_01320199001.wav new file mode 100644 index 0000000000000000000000000000000000000000..7bdef8357e6ad452fe2836ce862acba67ac5f69f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01320199001.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168b45341e70cfefc4fe7183c55fdfc9d276ebfd830e8ad9899fbd2510115fe0 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02121_01321903994.wav b/datasets/openslr_yoruba/yof_02121_01321903994.wav new file mode 100644 index 0000000000000000000000000000000000000000..696e16bb069bdcfabc8bb6d3c62c3021de973de1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01321903994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3982453e2a2f1ff0e6e50ae442f8a901b52688937029386a2656f1431335bc5 +size 245804 diff --git a/datasets/openslr_yoruba/yof_02121_01344246827.wav b/datasets/openslr_yoruba/yof_02121_01344246827.wav new file mode 100644 index 0000000000000000000000000000000000000000..034f17927051d8a69a62d728bee30d729417cf1f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01344246827.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4d16002b19d258516135141dad7714b1e96e1276dade651f13b02dd185e0c8 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_01383561725.wav b/datasets/openslr_yoruba/yof_02121_01383561725.wav new file mode 100644 index 0000000000000000000000000000000000000000..18ebefbd09118fd9daa825b90f1fab4ad4c3ee10 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01383561725.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a039137d27c1e9207f03dfa136cade30a96c6404088cf58fb83b5827cea5ef +size 385068 diff --git a/datasets/openslr_yoruba/yof_02121_01404748562.wav b/datasets/openslr_yoruba/yof_02121_01404748562.wav new file mode 100644 index 0000000000000000000000000000000000000000..dfc4163c9ff3f77bdbfdf89403577b1d1d6eb3c4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01404748562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0f85e7a7392e84c1da0155b303b3e8827cb9284160613b75d313940bb41bd3 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02121_01436186058.wav b/datasets/openslr_yoruba/yof_02121_01436186058.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca31ce90f93eb0e521baf80dc690836529074fcb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01436186058.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8189606f649d6ddedeb0d4f1a325487825f7f497caa192b64fa86e21a21449db +size 458796 diff --git a/datasets/openslr_yoruba/yof_02121_01525575070.wav b/datasets/openslr_yoruba/yof_02121_01525575070.wav new file mode 100644 index 0000000000000000000000000000000000000000..1273a0bbf264fe24444f58f2de98b5324a4fb4fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01525575070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3b3411d6150bf6e6a2bf63e4d93dd6d55872c6ce292f0e130a22fd39d0ed39 +size 368684 diff --git a/datasets/openslr_yoruba/yof_02121_01549319508.wav b/datasets/openslr_yoruba/yof_02121_01549319508.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3a5ffb0d382b947696bea6bfee269befa61d662 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01549319508.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb373883cfe19e0554ca9eb78ce00db5614cadeeb191db0be5f1eda9fa8b8c81 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_01620419686.wav b/datasets/openslr_yoruba/yof_02121_01620419686.wav new file mode 100644 index 0000000000000000000000000000000000000000..ead8008644e148a1aa0fb5d427965d21c0ea64e7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01620419686.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57df1314a1b47d1d5d5877ddf6b3c8841b63605ea8e60c0fa1a3e9105e8b258 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_01721398059.wav b/datasets/openslr_yoruba/yof_02121_01721398059.wav new file mode 100644 index 0000000000000000000000000000000000000000..40e3f375c5313826e309682e1b8fee119f5d2ab8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01721398059.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63bb31388b0dc436bcd73cfa174aec6e6da786e30b142dae9e315fe48005645 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02121_01751618180.wav b/datasets/openslr_yoruba/yof_02121_01751618180.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b6a270b84079c585dfb6537d937f6af31c5ae32 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01751618180.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed28068f082d3a0b9b1a3022a89fa130adf569831b3b7031b97886ad2255e181 +size 311340 diff --git a/datasets/openslr_yoruba/yof_02121_01752866356.wav b/datasets/openslr_yoruba/yof_02121_01752866356.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c75df8eb8e6485393a88466ff72bd135a77939b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01752866356.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3cbc41536284ee0cd22f8c260018e3d93003277ba2afc886705d67d7bb3934 +size 581676 diff --git a/datasets/openslr_yoruba/yof_02121_01763182985.wav b/datasets/openslr_yoruba/yof_02121_01763182985.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f44d8afb9f19ff666ecd71c8826d1a5d92a0d2c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01763182985.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83199b15da39b7dc6e1f382e9fdd00284bd45534f21decabb60105c1eedcf50 +size 245804 diff --git a/datasets/openslr_yoruba/yof_02121_01783640741.wav b/datasets/openslr_yoruba/yof_02121_01783640741.wav new file mode 100644 index 0000000000000000000000000000000000000000..a22c2602ef07a627e2f005ecf30e046cb99102a5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01783640741.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e1129eb996a6bc4c25763df1e62c72d8fe7f274c18a590c9e801dba134227d +size 434220 diff --git a/datasets/openslr_yoruba/yof_02121_01784691707.wav b/datasets/openslr_yoruba/yof_02121_01784691707.wav new file mode 100644 index 0000000000000000000000000000000000000000..d880a4177d9ed3e2b28672cbcd29150cefdfd138 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01784691707.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6f0ef5fa967a16cede8ca431a38609b713bb04b3758624c3f0022bd1830f38 +size 475180 diff --git a/datasets/openslr_yoruba/yof_02121_01787218594.wav b/datasets/openslr_yoruba/yof_02121_01787218594.wav new file mode 100644 index 0000000000000000000000000000000000000000..1010e2ff80962bfdeff917b86baf612f8ea2bff1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01787218594.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac3ea61ac5d05095dfe26c5236123523eb0a75d030de9a21e55b5457e33e5ca +size 237612 diff --git a/datasets/openslr_yoruba/yof_02121_01827388353.wav b/datasets/openslr_yoruba/yof_02121_01827388353.wav new file mode 100644 index 0000000000000000000000000000000000000000..e73615e4d41e78378f1815699ab27b8c03a0075a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01827388353.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f6b14b439ec4e3d06f66dfa61b1b4e7d6cbcba4103c7ed6f29402ad043ccad +size 360492 diff --git a/datasets/openslr_yoruba/yof_02121_01828918915.wav b/datasets/openslr_yoruba/yof_02121_01828918915.wav new file mode 100644 index 0000000000000000000000000000000000000000..6abcacd385578f2a55f7afe07ad2e44965e2141a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01828918915.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b96a312db43c530852ba8c5abde8d5ff92306fd12c40fd95e6b44d0f5a8c56 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02121_01849608506.wav b/datasets/openslr_yoruba/yof_02121_01849608506.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f26926630c97087685552546d73d9313ef1b7db --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01849608506.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5345177bd21ae60530b34fa13327787ab1aaf40cac8c3a3ca11e931d0c0b3513 +size 229420 diff --git a/datasets/openslr_yoruba/yof_02121_01867778534.wav b/datasets/openslr_yoruba/yof_02121_01867778534.wav new file mode 100644 index 0000000000000000000000000000000000000000..33b0aa41df4ac4b422f095c9446173d2e3ffa710 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01867778534.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a99ad420bbdf1f726b8acc2272ab74b2083961e1ed508df836386c5fa52e424 +size 294956 diff --git a/datasets/openslr_yoruba/yof_02121_01888276578.wav b/datasets/openslr_yoruba/yof_02121_01888276578.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e8e6ef60cce0d8256bf2bfbd4baa5316b6b399b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01888276578.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6dde44c30cb105a542d21ffbff510215405214834b4583922cd6062c0a7b5b +size 352300 diff --git a/datasets/openslr_yoruba/yof_02121_01902393029.wav b/datasets/openslr_yoruba/yof_02121_01902393029.wav new file mode 100644 index 0000000000000000000000000000000000000000..567972e2b9df72a1476304401697f3d656159085 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01902393029.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc17e11392b94cf5cf3962be34471eac083a79d32334e1818938908d48895be3 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02121_01935714496.wav b/datasets/openslr_yoruba/yof_02121_01935714496.wav new file mode 100644 index 0000000000000000000000000000000000000000..b952c1998d3e7fbd77a2db8c6f6c2234c63a881c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01935714496.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b953fb7aad86e351edf4e0e8282860b926f02139f96459d38b65e8802fc9a532 +size 516140 diff --git a/datasets/openslr_yoruba/yof_02121_01945338995.wav b/datasets/openslr_yoruba/yof_02121_01945338995.wav new file mode 100644 index 0000000000000000000000000000000000000000..b703902c0d2f2f03b7d5b23d2118a3783a3ce9fa --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_01945338995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e789648d406fbf562b626157dcdc3e2886513495b990f9da462551b41a5c0ec0 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02121_02008518482.wav b/datasets/openslr_yoruba/yof_02121_02008518482.wav new file mode 100644 index 0000000000000000000000000000000000000000..770d6aa647afd5e84de0e55d9abe743e23495f63 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02008518482.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d26b2d505643efbc63dda83a5eea85ed2eae663f20293dcdc503ce3fb96ada3 +size 360492 diff --git a/datasets/openslr_yoruba/yof_02121_02015408040.wav b/datasets/openslr_yoruba/yof_02121_02015408040.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e03b4b8d9e96a65a0d1e82b0ca1347cd49e510e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02015408040.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:156d5cac92be47aa80d6568d8582c72b12c8fc0d49396b37349a134519449543 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02121_02016936916.wav b/datasets/openslr_yoruba/yof_02121_02016936916.wav new file mode 100644 index 0000000000000000000000000000000000000000..a62700e4a38ad6a5c202dc747a7f21ed42d1d293 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02016936916.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fa5c8a2361c8bdf5240004844c21962595e85782c9d7599354a8d008331b73 +size 188460 diff --git a/datasets/openslr_yoruba/yof_02121_02033924178.wav b/datasets/openslr_yoruba/yof_02121_02033924178.wav new file mode 100644 index 0000000000000000000000000000000000000000..a67848669f87d911cdaf44ea591b8f129cf72bf8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02033924178.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbdab99218350371fd21c7f990f0f8b9cf43312150b965e602049d5bba187302 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02121_02074719447.wav b/datasets/openslr_yoruba/yof_02121_02074719447.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a87d5782739d51c75959ec041d45c6df064faeb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02074719447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376119fd1cdcf870bf47daf815b52f6ff49af2ed1336c8185a8993eb6e6a9d36 +size 335916 diff --git a/datasets/openslr_yoruba/yof_02121_02076244440.wav b/datasets/openslr_yoruba/yof_02121_02076244440.wav new file mode 100644 index 0000000000000000000000000000000000000000..44c9dbefaecaab9f9155468ebf7eee2c75adb54b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02076244440.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:884d91e4e471f71d1437eaa2064a92c299a37ccfb5a4ce6228417d31d4bd4f1a +size 368684 diff --git a/datasets/openslr_yoruba/yof_02121_02095828028.wav b/datasets/openslr_yoruba/yof_02121_02095828028.wav new file mode 100644 index 0000000000000000000000000000000000000000..169081f50a95f8453268b851029d9b874ee87dc3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02095828028.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af8450869e9649c5c1abfb6dacddb83ccd2f2e75a05b7c8ab2f1ce45a5c954c +size 294956 diff --git a/datasets/openslr_yoruba/yof_02121_02128826686.wav b/datasets/openslr_yoruba/yof_02121_02128826686.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e62ff022b9fcf2fe7dedc6d9a19e5199dad3c6a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02121_02128826686.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc85ff71899350d565d9d905ac13e29bc86a251afa2ebbe5b8e5e59b136a6567 +size 540716 diff --git a/datasets/openslr_yoruba/yof_02436_00005256703.wav b/datasets/openslr_yoruba/yof_02436_00005256703.wav new file mode 100644 index 0000000000000000000000000000000000000000..7104bbd8bf6cde509427aaf056d108f503633218 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00005256703.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee3cf66bdf4c560a943b1cba5f6cf2c5699dd39366351602d146fb76f78c686 +size 270380 diff --git a/datasets/openslr_yoruba/yof_02436_00016433968.wav b/datasets/openslr_yoruba/yof_02436_00016433968.wav new file mode 100644 index 0000000000000000000000000000000000000000..04a027bdd546c550014f3ba47082324a1444c3de --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00016433968.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a70537e6fcf6ca3c64a26b52996413a1518ab477635dedb249e98a845865029 +size 180268 diff --git a/datasets/openslr_yoruba/yof_02436_00019780451.wav b/datasets/openslr_yoruba/yof_02436_00019780451.wav new file mode 100644 index 0000000000000000000000000000000000000000..212a2319d65145651eac195be3d4ab2c8e5e1f11 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00019780451.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c66d7eec59607abe1809106fb189f7a6525c2270384c0730b5f0fee0690b5d26 +size 671788 diff --git a/datasets/openslr_yoruba/yof_02436_00043994347.wav b/datasets/openslr_yoruba/yof_02436_00043994347.wav new file mode 100644 index 0000000000000000000000000000000000000000..611787cd7a67adc9afe659049dcfb02f2d837d8b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00043994347.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f440b0ac8e5d4edf6ba08bda26b0f0ef61aa6c47f3d2a7026b7c74cad27438 +size 409644 diff --git a/datasets/openslr_yoruba/yof_02436_00053848547.wav b/datasets/openslr_yoruba/yof_02436_00053848547.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b225c16c58ae02a04ea9a10e5a178c6e6b80a61 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00053848547.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be9be5e209730e968a978a003f14161dc34fcc151d60dc801637ad4eadab225 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02436_00078312783.wav b/datasets/openslr_yoruba/yof_02436_00078312783.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ee8a619ff2e640b90c7fa1553145925d84274f6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00078312783.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f840d20e2c6ca0bf55fcb2a5bc3034f8b09bb6a3e52cc69203732be059a95c +size 303148 diff --git a/datasets/openslr_yoruba/yof_02436_00087263006.wav b/datasets/openslr_yoruba/yof_02436_00087263006.wav new file mode 100644 index 0000000000000000000000000000000000000000..be3ce3aa5c729cac2ec2b86e74ac38f8c01baa01 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00087263006.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e48e61da442e4074506625ce239f7e866ea03387b15e42bc9beea46d51df15 +size 385068 diff --git a/datasets/openslr_yoruba/yof_02436_00111533593.wav b/datasets/openslr_yoruba/yof_02436_00111533593.wav new file mode 100644 index 0000000000000000000000000000000000000000..2440d4884dc92780750077d84fd91b457018668e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00111533593.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d590b86dfd242d95daee2f400107601b73503a337be39fb6f50c93629505fe +size 344108 diff --git a/datasets/openslr_yoruba/yof_02436_00136590423.wav b/datasets/openslr_yoruba/yof_02436_00136590423.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba2bc35b6931d8b4bf471a64d8fd9248db3a8678 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00136590423.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d539369065067350e7c48715b180e357146bfa87217e6cbdbd9cf14bccd48367 +size 270380 diff --git a/datasets/openslr_yoruba/yof_02436_00153699613.wav b/datasets/openslr_yoruba/yof_02436_00153699613.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e62b45c5474430018fe5b7dcb784d2d1fef6f42 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00153699613.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbde783df6c73a081d251d246c390c34ce39ee2756a4cf7dc6128bdec312680c +size 270380 diff --git a/datasets/openslr_yoruba/yof_02436_00168409874.wav b/datasets/openslr_yoruba/yof_02436_00168409874.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d7d950f427ada29cfc55453fb2884a37792b078 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00168409874.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a90396b1b387427992f2c2b7956212ffe623212ea05e3fd562daa366e31b686 +size 557100 diff --git a/datasets/openslr_yoruba/yof_02436_00173932070.wav b/datasets/openslr_yoruba/yof_02436_00173932070.wav new file mode 100644 index 0000000000000000000000000000000000000000..3715ffeab89687d6ea3404d6f657d1ecaa2cc67d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00173932070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e32272c665cc83617641977f0d214af6feed116890c52d321a0b2f5d133a3f2 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02436_00199181946.wav b/datasets/openslr_yoruba/yof_02436_00199181946.wav new file mode 100644 index 0000000000000000000000000000000000000000..21ee284940b5294b97c60d0b2a47bf98227f9a03 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00199181946.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8e9b1520f6c0e11bb724842de31b1e726e1cfde636fc888a08d8910a9c7b6c +size 368684 diff --git a/datasets/openslr_yoruba/yof_02436_00212847507.wav b/datasets/openslr_yoruba/yof_02436_00212847507.wav new file mode 100644 index 0000000000000000000000000000000000000000..304c6e9cf96d394da523823c67898bd42ce5ecb9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00212847507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e0758e5a98bf9907417bd2aff944436fdfe7d606bb64f54be4e814f4407df3 +size 426028 diff --git a/datasets/openslr_yoruba/yof_02436_00242635634.wav b/datasets/openslr_yoruba/yof_02436_00242635634.wav new file mode 100644 index 0000000000000000000000000000000000000000..aae62dddcb949eab9671388714293c4fbb7c4819 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00242635634.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84c8115fcf0651b4674c7b435e33e54868f4ce8b00610540ac21bb83966ec5f2 +size 393260 diff --git a/datasets/openslr_yoruba/yof_02436_00243094377.wav b/datasets/openslr_yoruba/yof_02436_00243094377.wav new file mode 100644 index 0000000000000000000000000000000000000000..243f8aa5ab0702dcb519e903fe522594388675c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00243094377.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5e49757e42609ca59c72c814efb253452d3af8bdc22d1f18261645c0b2cd02 +size 237612 diff --git a/datasets/openslr_yoruba/yof_02436_00255535432.wav b/datasets/openslr_yoruba/yof_02436_00255535432.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0ad9fd0820a054edeeac551093f41cb2a6e2bcf --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00255535432.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaa00f5544a422b40ef1a130b0972643883916cb47d488394b0c4bc925e4f0de +size 639020 diff --git a/datasets/openslr_yoruba/yof_02436_00264730319.wav b/datasets/openslr_yoruba/yof_02436_00264730319.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ffc7f944437c2c9fc35e6d1a6b979ba3879be90 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00264730319.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2068bb254e933af9cd70e770cdd965559a641c88c855633f2eddaa3d7fe73e1a +size 524332 diff --git a/datasets/openslr_yoruba/yof_02436_00265556124.wav b/datasets/openslr_yoruba/yof_02436_00265556124.wav new file mode 100644 index 0000000000000000000000000000000000000000..8cc626373bbd379d75d06b15dd8d3fed661d13e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00265556124.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c409d6c6488840072e31da06963bf520011c2a8f033c060c376b744037cc68e6 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02436_00361836010.wav b/datasets/openslr_yoruba/yof_02436_00361836010.wav new file mode 100644 index 0000000000000000000000000000000000000000..edd821fe62405026cc72c1955e1e511be71aa998 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00361836010.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66aa4f9fb6ed6e15591564137a347dce23f6908f8b78fc71fcfb5dc0699a772a +size 458796 diff --git a/datasets/openslr_yoruba/yof_02436_00377441497.wav b/datasets/openslr_yoruba/yof_02436_00377441497.wav new file mode 100644 index 0000000000000000000000000000000000000000..51ffc190dd95e315ea05baf0b027dc8812dabc3e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00377441497.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc1abfb70464b89656fa8acc90547c9158f94a0186e1677fc48a8f3bc899d14 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02436_00377779380.wav b/datasets/openslr_yoruba/yof_02436_00377779380.wav new file mode 100644 index 0000000000000000000000000000000000000000..23b571c429feebf0ea4fdeb26daec2ffc0502744 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00377779380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c9ac565d5213c18f15acc7413845893e9efb23378e8e4419d2d30627081387 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02436_00390279056.wav b/datasets/openslr_yoruba/yof_02436_00390279056.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6732b7571d248294e830596cf3540d5e233fc93 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00390279056.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00010e521336c5f4b1993910cdc5bcd86f535450de41ec50f0ac5bbdc7f29ca +size 417836 diff --git a/datasets/openslr_yoruba/yof_02436_00399497363.wav b/datasets/openslr_yoruba/yof_02436_00399497363.wav new file mode 100644 index 0000000000000000000000000000000000000000..6c751d94bb418573c47859d3ca1ec1569bf05c8a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00399497363.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556f61317df77172f93dd2cfb557f3e02efca251c5aeac52ca670d46610e890a +size 245804 diff --git a/datasets/openslr_yoruba/yof_02436_00408573672.wav b/datasets/openslr_yoruba/yof_02436_00408573672.wav new file mode 100644 index 0000000000000000000000000000000000000000..2904c6fe1b016c83549b8d13c5e7bbea82be9479 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00408573672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3800a8aa16842cd6cb19a66d00bebd1e377101411c203f8fb40f413d4f7e71 +size 426028 diff --git a/datasets/openslr_yoruba/yof_02436_00420088301.wav b/datasets/openslr_yoruba/yof_02436_00420088301.wav new file mode 100644 index 0000000000000000000000000000000000000000..ff972eb4ea0209001d1e726b8340b7578b39473f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00420088301.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:561074519c3c13e257e2afd3c670bbce641d055e6314f542edc58a8e98ada0db +size 352300 diff --git a/datasets/openslr_yoruba/yof_02436_00449019537.wav b/datasets/openslr_yoruba/yof_02436_00449019537.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2a9606d8ddc5e4796b4cb28c9ea2178ecf314f9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00449019537.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bd7aaecde1ebc484de05003ed72a2dd15c2da54672b36111d376ff30e6ac6b +size 679980 diff --git a/datasets/openslr_yoruba/yof_02436_00514619092.wav b/datasets/openslr_yoruba/yof_02436_00514619092.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3a4ada7c50c9d5d7f3c13d15bd5c755936c726e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00514619092.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477e7afe3b875282ee2cd18a96b2a72d9cdd9dd12089ce68149abbc3db4ad421 +size 229420 diff --git a/datasets/openslr_yoruba/yof_02436_00522373037.wav b/datasets/openslr_yoruba/yof_02436_00522373037.wav new file mode 100644 index 0000000000000000000000000000000000000000..89ca31716be873e9d03296b7383afe9c76a8f61d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00522373037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6edc730c8350ec6bbc5b63c25c7224e5a1ae8ac89df33d7b9b1ad35a59adac +size 417836 diff --git a/datasets/openslr_yoruba/yof_02436_00553352779.wav b/datasets/openslr_yoruba/yof_02436_00553352779.wav new file mode 100644 index 0000000000000000000000000000000000000000..e723c043037ceef0cc122f8ffc79ced05a985b6d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00553352779.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7af0ffe4dd6a9500f9be3cbd2a9870a4a9c5d545d71a2343294b1dce5b39421 +size 360492 diff --git a/datasets/openslr_yoruba/yof_02436_00554684236.wav b/datasets/openslr_yoruba/yof_02436_00554684236.wav new file mode 100644 index 0000000000000000000000000000000000000000..d950dcc9384ecfce91cf2cbf35dc83b598fa02b7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00554684236.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a5a36fdf4113905cc5ad5d526426a3a3370c21a91ff8e1803543de4e749beb +size 270380 diff --git a/datasets/openslr_yoruba/yof_02436_00566377036.wav b/datasets/openslr_yoruba/yof_02436_00566377036.wav new file mode 100644 index 0000000000000000000000000000000000000000..48b5313f38bd5feb01aad3d4eeb6444c07a643a9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00566377036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0c559635766976949aaf5fe4beb01f10431a376c115c02a8eb37d56af0f3b0 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02436_00596346093.wav b/datasets/openslr_yoruba/yof_02436_00596346093.wav new file mode 100644 index 0000000000000000000000000000000000000000..22ae07f0a30dee8158fec61989afff3e760d55df --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00596346093.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5083760e477fab761ed46c00292721e4bb100db6076b74ea76ecedc70f22d14 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02436_00612313345.wav b/datasets/openslr_yoruba/yof_02436_00612313345.wav new file mode 100644 index 0000000000000000000000000000000000000000..e24b80017fde2fd8e4cfeb9461358f5d61ef2c57 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00612313345.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e75336e1be20a594dfc3c5d2338b4589c5c12475445295de87b515975620aa5 +size 385068 diff --git a/datasets/openslr_yoruba/yof_02436_00635969066.wav b/datasets/openslr_yoruba/yof_02436_00635969066.wav new file mode 100644 index 0000000000000000000000000000000000000000..7b9d30ea004b1dd190a1efc7650fddcd890080b0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00635969066.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0caf0d47b75aa68d2fc279d698db024c9146f3c901d75be290d6452bfa4af9c1 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02436_00647648765.wav b/datasets/openslr_yoruba/yof_02436_00647648765.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a56381167f73d762a28a31148ed6725372cf40c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00647648765.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9642fa200e6c5f3e15c14b372fd380f0bc5495cb3be6f860cab3ae8fe428766 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02436_00653003913.wav b/datasets/openslr_yoruba/yof_02436_00653003913.wav new file mode 100644 index 0000000000000000000000000000000000000000..22320768990e1869d23e0a3ec725e33a8dc110f5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00653003913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6892805fd2263708bc9baebf5bbcd31fffb8c842bf97d13b96726528ea1c85 +size 442412 diff --git a/datasets/openslr_yoruba/yof_02436_00656157829.wav b/datasets/openslr_yoruba/yof_02436_00656157829.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa8a5368be4f3f37158c49da807bb73e4b8a5ebf --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00656157829.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d26d73f1694ce7cc4e4cc8cfd04dadab766740261fc0d0a1523b860f59b077a +size 262188 diff --git a/datasets/openslr_yoruba/yof_02436_00666998882.wav b/datasets/openslr_yoruba/yof_02436_00666998882.wav new file mode 100644 index 0000000000000000000000000000000000000000..39ec0c82249f71f5b8b7257c0d45f9cf93886752 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00666998882.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c951a649388f3216ef8539cbebb80730103bc009ac9814d7d74dd015bc568998 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02436_00687922980.wav b/datasets/openslr_yoruba/yof_02436_00687922980.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d5fd7f3c4a8e29a4fe2292c10d9bcd7796df247 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00687922980.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2464d2cd0e90adcf39725f53aa445518cdbeb7c9abaefb1e7486bda222b9da2b +size 335916 diff --git a/datasets/openslr_yoruba/yof_02436_00691876145.wav b/datasets/openslr_yoruba/yof_02436_00691876145.wav new file mode 100644 index 0000000000000000000000000000000000000000..658bd8b575184a667bdc60cc1bc4b433fbd1c124 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00691876145.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90620acc1f41ae91693872902a7f79f185e7a30c9b8853f006b3eea9012e8b6 +size 245804 diff --git a/datasets/openslr_yoruba/yof_02436_00715131121.wav b/datasets/openslr_yoruba/yof_02436_00715131121.wav new file mode 100644 index 0000000000000000000000000000000000000000..4957f37bf58bbfc082033f5287a38c5e383797ed --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00715131121.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b4961341f1c1d2863b7921d8b924fa90c9288430f6668945f1f32bc09080ee +size 213036 diff --git a/datasets/openslr_yoruba/yof_02436_00733357322.wav b/datasets/openslr_yoruba/yof_02436_00733357322.wav new file mode 100644 index 0000000000000000000000000000000000000000..851fcae5112dfca7bcb4f0f0fc82649f1fcf648e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00733357322.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9977f5addcf960d30eb0c2db4580374b3424cba1257b529994b17226f7e563a9 +size 303148 diff --git a/datasets/openslr_yoruba/yof_02436_00772561831.wav b/datasets/openslr_yoruba/yof_02436_00772561831.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d8eced7d731f288be4dd9bc883fd64e68deef4c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00772561831.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e78413e5d0771a014fb2d31cb7ba8e2c98e75ed3f0cacfed2fe69af2997618 +size 245804 diff --git a/datasets/openslr_yoruba/yof_02436_00772719355.wav b/datasets/openslr_yoruba/yof_02436_00772719355.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bb131268a9939fac577123092d69eda2fd4eb98 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00772719355.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da68dda415bdb010a6b434f1159e59c4ffb3130a28c2ee3d28ee3b4c995022f7 +size 639020 diff --git a/datasets/openslr_yoruba/yof_02436_00776893624.wav b/datasets/openslr_yoruba/yof_02436_00776893624.wav new file mode 100644 index 0000000000000000000000000000000000000000..82105b8afad88bb7bb571e8599e63a3155ae4281 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00776893624.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92217ab90320961c6c8a3e5dbcfd7cdb37e726db3855990b3fe3ac6a043e0149 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02436_00842707344.wav b/datasets/openslr_yoruba/yof_02436_00842707344.wav new file mode 100644 index 0000000000000000000000000000000000000000..2da0f7a3b4ec83da8727066b0c66bd5e883c4269 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00842707344.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7461d42aa13bd9163a2510fcb27bea52d34498a19e609a91f09e8b8ece6dce08 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02436_00858126349.wav b/datasets/openslr_yoruba/yof_02436_00858126349.wav new file mode 100644 index 0000000000000000000000000000000000000000..b0faf12addb82311485afb52e9e792f8b56e1296 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00858126349.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b8ca98e2c2e883f9e4f45b61e69a3b34b300cc4910b44ca90def06791930060 +size 417836 diff --git a/datasets/openslr_yoruba/yof_02436_00910528190.wav b/datasets/openslr_yoruba/yof_02436_00910528190.wav new file mode 100644 index 0000000000000000000000000000000000000000..48500ba5fa0407ddecf9592fd3cecf84b14a6e6c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00910528190.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed7c7f7ad559e760e91d0b1a7f11db0886481871ecd4aaa72277cce4dad121a +size 909356 diff --git a/datasets/openslr_yoruba/yof_02436_00958216775.wav b/datasets/openslr_yoruba/yof_02436_00958216775.wav new file mode 100644 index 0000000000000000000000000000000000000000..a53f484d45432e496ea214fa2d8f9cf886098c18 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_00958216775.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e584674d39d2ae34459855beb93d351979e890e068b0482b36a91a94106f0ce +size 426028 diff --git a/datasets/openslr_yoruba/yof_02436_01058969316.wav b/datasets/openslr_yoruba/yof_02436_01058969316.wav new file mode 100644 index 0000000000000000000000000000000000000000..09f9ceff42bf3753a8e94d98ad7f51605ee63ea9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01058969316.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb4ec77bd8b7682afb6f004fd97332c91d49911db228c1ef06b6d344eeda806 +size 507948 diff --git a/datasets/openslr_yoruba/yof_02436_01068390786.wav b/datasets/openslr_yoruba/yof_02436_01068390786.wav new file mode 100644 index 0000000000000000000000000000000000000000..44424835363bcda4145eaaca96126f5368761d99 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01068390786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea8f488d2295ee6fbb57a7b3a56713673bbd0a188831155b6295d2b810a524c2 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02436_01068491430.wav b/datasets/openslr_yoruba/yof_02436_01068491430.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e8523db7ba88d1c3d4a1cf36d23c9050c2c3226 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01068491430.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1956438e71d841ff247674045af0dc7c443bda62c98eb5ddb0999e7aa55fa302 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02436_01123459149.wav b/datasets/openslr_yoruba/yof_02436_01123459149.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd7f913502bc2a4fb24a781723940a0de979d4e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01123459149.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de920fbc6951678cf1d213c2a9018fd5bca1bff8bcf7cd6d4031878102218c57 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02436_01178520648.wav b/datasets/openslr_yoruba/yof_02436_01178520648.wav new file mode 100644 index 0000000000000000000000000000000000000000..79032b1d8e22c45788c95d639d0a55ad5c94d6f7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01178520648.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e6eaef7171882edfa6101170e5bb07495ab8361ccd015610172330b5b25488 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02436_01190510905.wav b/datasets/openslr_yoruba/yof_02436_01190510905.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3e7cb78a0f286d27d5e7b2208bbc39f8067d671 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01190510905.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6dc733f69f1d03783ecd2455ab963bea61c9a63d97d07e091262c6039584629 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02436_01200814924.wav b/datasets/openslr_yoruba/yof_02436_01200814924.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f33ef1d822707c6a6691cf9f696164b69ba8fd9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01200814924.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8df31271a1a2122c3d412ab162479965ecbf8cd51be7d65c19e0d0931be0b82 +size 393260 diff --git a/datasets/openslr_yoruba/yof_02436_01208289328.wav b/datasets/openslr_yoruba/yof_02436_01208289328.wav new file mode 100644 index 0000000000000000000000000000000000000000..192375db4fdc27e9588ee5e6affd159633d7ed5b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01208289328.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f215482d2da112ed0779d9c06a41f60949ca7dbfb17bdda9baede1c6af1622 +size 565292 diff --git a/datasets/openslr_yoruba/yof_02436_01238637818.wav b/datasets/openslr_yoruba/yof_02436_01238637818.wav new file mode 100644 index 0000000000000000000000000000000000000000..2fe20a1150362bc4d1c02ed973491dcdd1bb43b7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01238637818.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0369c0a500fb5a12597e31fc8769f9d77b88166950e40b902d33992eccfdbff0 +size 450604 diff --git a/datasets/openslr_yoruba/yof_02436_01252305057.wav b/datasets/openslr_yoruba/yof_02436_01252305057.wav new file mode 100644 index 0000000000000000000000000000000000000000..7bec42c5eff041a2742f35cbc7f376e9890787ca --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01252305057.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b015f9c7a6fe0bc9bda9ec6ee3d9a9ffd82b07dd4c2736f25a0e77a164c4e0d0 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02436_01255834249.wav b/datasets/openslr_yoruba/yof_02436_01255834249.wav new file mode 100644 index 0000000000000000000000000000000000000000..00f94ffcebe607db84c9522b4cd55370f9d894c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01255834249.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbbfc5f7aa107d23593390e907d1f3ae042edcbaba322c420ba1a66445788b9c +size 286764 diff --git a/datasets/openslr_yoruba/yof_02436_01286460121.wav b/datasets/openslr_yoruba/yof_02436_01286460121.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ef8fd331c5b9c05a3cb4258d6efb8f4be1a24a5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01286460121.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2363ea3ef9985cc09cf1348cd5671e283fb36df9ef4e91891427c5d0351f01d4 +size 360492 diff --git a/datasets/openslr_yoruba/yof_02436_01299205830.wav b/datasets/openslr_yoruba/yof_02436_01299205830.wav new file mode 100644 index 0000000000000000000000000000000000000000..0087a22ef5e1bbde6c7a47476d2e00e6bf10ae1c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01299205830.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3868a9f1c2df0020a58be490382a797a67d5ad659700a236f6f68a57a2535d2 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02436_01334427540.wav b/datasets/openslr_yoruba/yof_02436_01334427540.wav new file mode 100644 index 0000000000000000000000000000000000000000..e621986c56d05a36c271569381c464a2dd548b52 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01334427540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34df668110fcddbbd74076162d0018cf815f808eb83ea9d0da8acc72549199bf +size 262188 diff --git a/datasets/openslr_yoruba/yof_02436_01391519131.wav b/datasets/openslr_yoruba/yof_02436_01391519131.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5650ba7027e227d3934f32dd8c154391ba2b00d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01391519131.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60315c30ef5bc1d7b70f07a8b918ca93c880e7c6f275699af3a53a83a8d8e30 +size 237612 diff --git a/datasets/openslr_yoruba/yof_02436_01399592872.wav b/datasets/openslr_yoruba/yof_02436_01399592872.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d665da5fcd8f1797f11267743c69dbdfb3f534f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01399592872.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd83304261953063327b1ad0fba912be3ed5a813e6b983669db59eac65ffe49c +size 319532 diff --git a/datasets/openslr_yoruba/yof_02436_01458271441.wav b/datasets/openslr_yoruba/yof_02436_01458271441.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b98bbcbbd1566c3b6425cbfe1d59bc5255d2432 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01458271441.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a351c72315202bcaa1d2759f1355dde288f7c2f1b278c76fc2d84c5a5611b2 +size 204844 diff --git a/datasets/openslr_yoruba/yof_02436_01466352800.wav b/datasets/openslr_yoruba/yof_02436_01466352800.wav new file mode 100644 index 0000000000000000000000000000000000000000..8fe40829cb374897cffdbbff052b376865450eb0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01466352800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c3ffba93aa939f111a5744431e8d92b312c08d10b5b9d4c8e08652ab8a7055 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02436_01469340831.wav b/datasets/openslr_yoruba/yof_02436_01469340831.wav new file mode 100644 index 0000000000000000000000000000000000000000..7bb9e0bcb37dc1e1ee592c20b3ced93caee40938 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01469340831.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19b8d7333d48a449fb0fab6e919d93c89d57ddc6c145f8ef570fb61e91c462c5 +size 360492 diff --git a/datasets/openslr_yoruba/yof_02436_01488133241.wav b/datasets/openslr_yoruba/yof_02436_01488133241.wav new file mode 100644 index 0000000000000000000000000000000000000000..be0da66de3fbcca9e9d6c93f660e4ff493a834cc --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01488133241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08614a817c24b9469f44a559a883decf12e05822d2dc2d1cd1d89ea6d9094a67 +size 270380 diff --git a/datasets/openslr_yoruba/yof_02436_01553848354.wav b/datasets/openslr_yoruba/yof_02436_01553848354.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc5a789b38dfa91fe16ad6c8015a9153c5b40522 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01553848354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ff5cfaffd628df3a476cea4f3bce0534d1f7a03fa47e8ff53530d3f3d7e0ad +size 253996 diff --git a/datasets/openslr_yoruba/yof_02436_01661108333.wav b/datasets/openslr_yoruba/yof_02436_01661108333.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe2193273aa69bac954c06984399a50f880ecddc --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01661108333.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835bafa8ef6e038798047048f703c6e5a428a21e47e89bbd5149ad2c0c08e9fa +size 303148 diff --git a/datasets/openslr_yoruba/yof_02436_01686003422.wav b/datasets/openslr_yoruba/yof_02436_01686003422.wav new file mode 100644 index 0000000000000000000000000000000000000000..46fe07d4935831f9a676cf2c69912c08d90eb349 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01686003422.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2caa1d2d765e30a95a836e222bcd4122dda0caf662c5aece7f85e19a78809e2 +size 303148 diff --git a/datasets/openslr_yoruba/yof_02436_01691894374.wav b/datasets/openslr_yoruba/yof_02436_01691894374.wav new file mode 100644 index 0000000000000000000000000000000000000000..32d99826f44b88cb5cf66a0b5220314a23ecb736 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01691894374.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225f1d2b23bdace69ba1d0ae2e02547b00ab76605ccfa1627fff11158d6b3a45 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02436_01711966747.wav b/datasets/openslr_yoruba/yof_02436_01711966747.wav new file mode 100644 index 0000000000000000000000000000000000000000..12c43f4e0f3716db95eaf05614b2a65487671bed --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01711966747.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f694a544fecff72259fd1576a14b22ec6d5eab760420bf3fcbee77ad2ba133e7 +size 237612 diff --git a/datasets/openslr_yoruba/yof_02436_01717699348.wav b/datasets/openslr_yoruba/yof_02436_01717699348.wav new file mode 100644 index 0000000000000000000000000000000000000000..90444fd182aca3c66e7ada31305dfedd34cc393a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01717699348.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b2e3b604fc31e350bf29459a5288ea487308272615110d655dbea44eedc7f7c +size 344108 diff --git a/datasets/openslr_yoruba/yof_02436_01737761830.wav b/datasets/openslr_yoruba/yof_02436_01737761830.wav new file mode 100644 index 0000000000000000000000000000000000000000..1fed9997d0b7e0b78ddc6f7dba0a2f81f26efb7f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01737761830.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c71065ff55fc8ad051c1c1b4792984705c99fc3e4717bbbb0ce4c5fc5169463 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02436_01775847441.wav b/datasets/openslr_yoruba/yof_02436_01775847441.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1339d518ab20087e56c76af6c871fe3026785e0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01775847441.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ee2543818e33868973b4ac5b2833a9449264a74373ebfea0b39c0069038050 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02436_01776844644.wav b/datasets/openslr_yoruba/yof_02436_01776844644.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ae5b8b7499692fc2a98a52e41b177a60b5ad1eb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01776844644.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a1c0a5e39e27c78a5cc89190c8c53a77c8af0088bd4ac7d1978a56758c21a2 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02436_01805519138.wav b/datasets/openslr_yoruba/yof_02436_01805519138.wav new file mode 100644 index 0000000000000000000000000000000000000000..d78bfc6e89c52169085d94ad927b679727d276e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01805519138.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dceeae51d9bc949a092924cb02866820d92b2cd574cab7d1aeaa20d1d6eae867 +size 368684 diff --git a/datasets/openslr_yoruba/yof_02436_01809127750.wav b/datasets/openslr_yoruba/yof_02436_01809127750.wav new file mode 100644 index 0000000000000000000000000000000000000000..a35c75a432a221623586dfd40d6fac8efebd4673 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01809127750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d485b3e4712f828e19c8af5a66dbd46f40491594925735288a34e9a590f4457a +size 450604 diff --git a/datasets/openslr_yoruba/yof_02436_01810089097.wav b/datasets/openslr_yoruba/yof_02436_01810089097.wav new file mode 100644 index 0000000000000000000000000000000000000000..72267a0de80ca94c627fc76a72ad6b7e90c5d85a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01810089097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81573832fe56d2de8ae8c3b8ea4ab1a5e52a7187b5338f57a2eb36c7338fa42 +size 180268 diff --git a/datasets/openslr_yoruba/yof_02436_01827143736.wav b/datasets/openslr_yoruba/yof_02436_01827143736.wav new file mode 100644 index 0000000000000000000000000000000000000000..fdd24b8213844d1eb3d611d038def2c1d70efa92 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01827143736.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf0204b2ade0ad60f6a63a3712f166db84c6de380b02fe241d05499037aa46e +size 221228 diff --git a/datasets/openslr_yoruba/yof_02436_01868930179.wav b/datasets/openslr_yoruba/yof_02436_01868930179.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bda1a83102db9d56956a0d8d128e338570a15ed --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01868930179.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea475870c6df6dfe859b5e7f565e45b51ff78e458fe8da76242dee330b37fe4d +size 589868 diff --git a/datasets/openslr_yoruba/yof_02436_01875077648.wav b/datasets/openslr_yoruba/yof_02436_01875077648.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7999761caeb4a43593aff5c180205beac916f5f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01875077648.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0533c0f3151211b334ef59c0009cd7540fd71b838bd6f6cdc0f412fa93c1ec98 +size 466988 diff --git a/datasets/openslr_yoruba/yof_02436_01881370795.wav b/datasets/openslr_yoruba/yof_02436_01881370795.wav new file mode 100644 index 0000000000000000000000000000000000000000..62c51c7d940f1bf92b9e9f3eec31a6bb1759d6ea --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01881370795.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d896126f4170e54f2797a3365d6e0f0aac4d3a9ba9396e257f2805e1888df658 +size 466988 diff --git a/datasets/openslr_yoruba/yof_02436_01889846684.wav b/datasets/openslr_yoruba/yof_02436_01889846684.wav new file mode 100644 index 0000000000000000000000000000000000000000..7b1a032c9940de592ed25b0a141546b8680160fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01889846684.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a31f02b6e93957c567fcef0b9779bc7685cf9138ef5b7693f52b8b73e70dc46 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02436_01930150103.wav b/datasets/openslr_yoruba/yof_02436_01930150103.wav new file mode 100644 index 0000000000000000000000000000000000000000..d71b89f268bb1c6ca8b433434c1d53eb6abb960e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01930150103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c79f9c6ae70858f13dcf943640c9a923f71f3e9b309682980072892e67078b +size 532524 diff --git a/datasets/openslr_yoruba/yof_02436_01932860051.wav b/datasets/openslr_yoruba/yof_02436_01932860051.wav new file mode 100644 index 0000000000000000000000000000000000000000..43249f6f068bdaeb245e6ca851a7bfc559b2930f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01932860051.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54f3e20d6aacd050ced8ec669192c7b2798b28df23a6c6b5d5a0857109a8dba +size 376876 diff --git a/datasets/openslr_yoruba/yof_02436_01947241225.wav b/datasets/openslr_yoruba/yof_02436_01947241225.wav new file mode 100644 index 0000000000000000000000000000000000000000..f55f76afec69bc409e44ed18524e88112f708720 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01947241225.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22145086c9c1ce081bed02aa17722c2965727903021e4f99817f719ab06999da +size 475180 diff --git a/datasets/openslr_yoruba/yof_02436_01955603978.wav b/datasets/openslr_yoruba/yof_02436_01955603978.wav new file mode 100644 index 0000000000000000000000000000000000000000..a540bae7c12d3c6f34b6d4255898545c23e89d6e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01955603978.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c35b1da5b075168a4e1de2068460fc36f6f3882b2fb08e4fc3dd6d34ed254b4 +size 614444 diff --git a/datasets/openslr_yoruba/yof_02436_01958727316.wav b/datasets/openslr_yoruba/yof_02436_01958727316.wav new file mode 100644 index 0000000000000000000000000000000000000000..005665a8af1c0b3f8e18f20f69c18b5bd1bcc435 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_01958727316.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ae51d3e80347f41a4006b2f775a58ae49e0e3e5a21e9754b8ae0bf528a9a2d +size 294956 diff --git a/datasets/openslr_yoruba/yof_02436_02010584865.wav b/datasets/openslr_yoruba/yof_02436_02010584865.wav new file mode 100644 index 0000000000000000000000000000000000000000..1dc12ca4cc3b8fb0f577d0e1b69028fced3a1566 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_02010584865.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f861a000aac5ad6d9d0ea4b5597ec5dc5603dcb668fd2d0d2d208fe5f086d6 +size 475180 diff --git a/datasets/openslr_yoruba/yof_02436_02038636916.wav b/datasets/openslr_yoruba/yof_02436_02038636916.wav new file mode 100644 index 0000000000000000000000000000000000000000..33aca94aa90475280dbc236f74b7bef0e37d66c9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_02038636916.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4f8c4c3f0c9771b64db80ca437a1a7051821ef0e8ab4e3cf2cb4c37fee02e8 +size 221228 diff --git a/datasets/openslr_yoruba/yof_02436_02039092927.wav b/datasets/openslr_yoruba/yof_02436_02039092927.wav new file mode 100644 index 0000000000000000000000000000000000000000..9f187af05ebb8ccac99b7bd841e702e9e9074b29 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_02039092927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e16e12f8bb5fab09fedd4c6d9d0830d95434c1957c4b543bef9f6db1b65f250 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02436_02054636419.wav b/datasets/openslr_yoruba/yof_02436_02054636419.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1ba9f6b687b53e3b75a196ebbae08bf6858d7a2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_02054636419.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76dccb6a7ebdcdd8be0b54f21373f0de417f5ba340d89c5ecd53b63b42ffaf0 +size 270380 diff --git a/datasets/openslr_yoruba/yof_02436_02059392356.wav b/datasets/openslr_yoruba/yof_02436_02059392356.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4902a68d730c84fe346eafe56339320b3c002e0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_02059392356.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621830efd3c33eb831f3b24aaef2570b55b7453ef3c47b48ac30207393b564c2 +size 417836 diff --git a/datasets/openslr_yoruba/yof_02436_02064944507.wav b/datasets/openslr_yoruba/yof_02436_02064944507.wav new file mode 100644 index 0000000000000000000000000000000000000000..d21b22bd49577aef25b7478b8633b0553db2065a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_02064944507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac50f4e6d9f26a2c10dae6f0eecf9715c49f4fc89c44056ffae04457b0ab36cd +size 311340 diff --git a/datasets/openslr_yoruba/yof_02436_02103674726.wav b/datasets/openslr_yoruba/yof_02436_02103674726.wav new file mode 100644 index 0000000000000000000000000000000000000000..6748a4828a4b4b2fc1860fbcbab4359ab878faae --- /dev/null +++ b/datasets/openslr_yoruba/yof_02436_02103674726.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0930980369b66651d5628488e05302e891ba27481dc627031c1a921fa2d13b +size 245804 diff --git a/datasets/openslr_yoruba/yof_02484_00003702130.wav b/datasets/openslr_yoruba/yof_02484_00003702130.wav new file mode 100644 index 0000000000000000000000000000000000000000..f132b1edb54b1a96b56c5353bd1cfd13fc176059 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00003702130.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba7e21f0aa2a3f79155b519625d33f021edc4b4ffe1e91698ecd283a582e338 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02484_00031636491.wav b/datasets/openslr_yoruba/yof_02484_00031636491.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4664253dec4a4e94ead34192847886044c4d56c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00031636491.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd02d684883cbf8f102aa125bda919d2561f2caa0d4eedcd5569b7172b2bf3ab +size 253996 diff --git a/datasets/openslr_yoruba/yof_02484_00046062764.wav b/datasets/openslr_yoruba/yof_02484_00046062764.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c5fa0b1b079a07124f334d340fe3f7a02a845da --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00046062764.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:989f8105174dee7abe7a6a4e7c7a895a10df2795b05473aa1fa75e0eff5bf739 +size 401452 diff --git a/datasets/openslr_yoruba/yof_02484_00072556300.wav b/datasets/openslr_yoruba/yof_02484_00072556300.wav new file mode 100644 index 0000000000000000000000000000000000000000..74ddc615ceae939a13f1799a9502e13fc5bfed77 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00072556300.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c765d95be4a3e74f97b32e9f55d0323c6041e53e4bd9dc347739fffbc1d5dd06 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02484_00085407980.wav b/datasets/openslr_yoruba/yof_02484_00085407980.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4ce7d9acdaf6b5d3dc49809fe809a81084fdcb7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00085407980.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98a706d7ad781a77786cceea61ec55d0cfe09348ba1eaf4fbd47de8067b8410 +size 360492 diff --git a/datasets/openslr_yoruba/yof_02484_00087342663.wav b/datasets/openslr_yoruba/yof_02484_00087342663.wav new file mode 100644 index 0000000000000000000000000000000000000000..91b3f916fa5ba8f4dc09358edf3c08c691700ab9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00087342663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ba7ab0fe5725ce838452e935ee2bd7589a62a55baac7457415423488995d57 +size 458796 diff --git a/datasets/openslr_yoruba/yof_02484_00129353296.wav b/datasets/openslr_yoruba/yof_02484_00129353296.wav new file mode 100644 index 0000000000000000000000000000000000000000..54fe1c152223fb78e4569668a47a611bef57aa69 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00129353296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2a3f21d278bda81867bb1af73afcba3a06b853be3508e078bfd42e5ad185e1 +size 311340 diff --git a/datasets/openslr_yoruba/yof_02484_00211914099.wav b/datasets/openslr_yoruba/yof_02484_00211914099.wav new file mode 100644 index 0000000000000000000000000000000000000000..f1f231de39386357a296a449af5a3441f325acdc --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00211914099.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0a7ce468da614ce76829d5a9da46229c5deefcdc1faa795cf0b4d4ad6905f1 +size 466988 diff --git a/datasets/openslr_yoruba/yof_02484_00224789119.wav b/datasets/openslr_yoruba/yof_02484_00224789119.wav new file mode 100644 index 0000000000000000000000000000000000000000..20672b312cc7235e3ffdf9d87e01c90760eb6b9d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00224789119.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fded92394d13c0a796cfc7904d54e193c4ce0c4c552f2d8aba194e9792903e6a +size 614444 diff --git a/datasets/openslr_yoruba/yof_02484_00258843478.wav b/datasets/openslr_yoruba/yof_02484_00258843478.wav new file mode 100644 index 0000000000000000000000000000000000000000..0742e1103ac3ac55d1364803bebb1388156592d1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00258843478.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a203e9219ef539f325eb9234cd5eed87fade1e878edf8a51a00c3ee091d8e4be +size 401452 diff --git a/datasets/openslr_yoruba/yof_02484_00325197657.wav b/datasets/openslr_yoruba/yof_02484_00325197657.wav new file mode 100644 index 0000000000000000000000000000000000000000..64eb4b3e1f36dc9d4b85c3cca619719460955188 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00325197657.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ad7ca1fb2573f604686373ded0969b8c2547fe27f56e5178f55b454a19427a +size 294956 diff --git a/datasets/openslr_yoruba/yof_02484_00333971769.wav b/datasets/openslr_yoruba/yof_02484_00333971769.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2a2e9630d0081f41aefcc6d72f9570dd8f22ded --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00333971769.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b115b660f1614cf115e4ae59d4926bf6bdf34dee66ac3c58ca54cc41bd266f1 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02484_00339367392.wav b/datasets/openslr_yoruba/yof_02484_00339367392.wav new file mode 100644 index 0000000000000000000000000000000000000000..499381820d146e5f2812554ee33a488eb4fe8336 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00339367392.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cbc9c3d0e3f2c3397580fe6cf01a20d955a7769e24622780fcca24f36f39891 +size 245804 diff --git a/datasets/openslr_yoruba/yof_02484_00346763200.wav b/datasets/openslr_yoruba/yof_02484_00346763200.wav new file mode 100644 index 0000000000000000000000000000000000000000..eaee33650f8d4e956b7579f548d2661dee1e9cd4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00346763200.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2365b33d8e65f2a29c994ecf66b026c1d54fb2a2caa2ba4744624334c2e5552b +size 294956 diff --git a/datasets/openslr_yoruba/yof_02484_00357136193.wav b/datasets/openslr_yoruba/yof_02484_00357136193.wav new file mode 100644 index 0000000000000000000000000000000000000000..d35646b9951624b7665c920309fae06b7e86ac78 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00357136193.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59953692d67d9733e68fdcebc5a1e558b2048cb3a9210cce286a7f882fd7eaf0 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02484_00382079201.wav b/datasets/openslr_yoruba/yof_02484_00382079201.wav new file mode 100644 index 0000000000000000000000000000000000000000..95eedc555f5b9589cabd0a43c33e21b8e0849584 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00382079201.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437b9733edd84722113e8cc4b8fb6f897801ae5e1017755a670256d87d9352c4 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02484_00391095855.wav b/datasets/openslr_yoruba/yof_02484_00391095855.wav new file mode 100644 index 0000000000000000000000000000000000000000..30b546d6f49f1c0bbbd9503be3090f92cca1312d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00391095855.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b3893cf1179de299c2b2d66de02de06aeadea3e7f83c0e3e8e38958d29492d +size 278572 diff --git a/datasets/openslr_yoruba/yof_02484_00399648332.wav b/datasets/openslr_yoruba/yof_02484_00399648332.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d862c73694950e14c2605f74615f28960d4cbfe --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00399648332.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a801ebd3e725084affeea8b4e3225c2c0d9dd2a1833c1393b71f70fd2669de38 +size 442412 diff --git a/datasets/openslr_yoruba/yof_02484_00413323808.wav b/datasets/openslr_yoruba/yof_02484_00413323808.wav new file mode 100644 index 0000000000000000000000000000000000000000..398768f162bd9fd378567c1ab300c42e37e115c3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00413323808.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5fd5a7609f8f2fa1f30ed9707fd01893ff489fea0e3833630a295f1510d083 +size 606252 diff --git a/datasets/openslr_yoruba/yof_02484_00421934951.wav b/datasets/openslr_yoruba/yof_02484_00421934951.wav new file mode 100644 index 0000000000000000000000000000000000000000..54a6d05e8b919997092b7320e8f6b4d42b603f34 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00421934951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e4da7b82a9786f5c07260227919639151702a37afe62c47bd2d8fc88b9ac1e +size 294956 diff --git a/datasets/openslr_yoruba/yof_02484_00426624340.wav b/datasets/openslr_yoruba/yof_02484_00426624340.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c88a9a9ab3327b4e114779cade4485ccbb1beab --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00426624340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcdc251782a060e335f5c7858bc82b710a7377e1d3c1870478cfb3419fef3ff1 +size 401452 diff --git a/datasets/openslr_yoruba/yof_02484_00459365705.wav b/datasets/openslr_yoruba/yof_02484_00459365705.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ab4d1d618950de0caca2c5beb8197c5a43d5152 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00459365705.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c7a48acb61235aeae8779e759acf4a6db4b6d7bb8d6dc658c0aa431b68c792 +size 278572 diff --git a/datasets/openslr_yoruba/yof_02484_00494017459.wav b/datasets/openslr_yoruba/yof_02484_00494017459.wav new file mode 100644 index 0000000000000000000000000000000000000000..1cf936dd6b91f09cc160e54c407daee178391dfe --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00494017459.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e5115c8baef83248bfedc9097cd69d42947f59b8b6609c79bf814399a2afe1 +size 417836 diff --git a/datasets/openslr_yoruba/yof_02484_00509715747.wav b/datasets/openslr_yoruba/yof_02484_00509715747.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5772950eae8fc764ab97229abc4eaa7697d434b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00509715747.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:242b5da882ec1760ff3730590eefa8fc0151df2103abebc7ab084d57262414b9 +size 303148 diff --git a/datasets/openslr_yoruba/yof_02484_00536208042.wav b/datasets/openslr_yoruba/yof_02484_00536208042.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a60490332626bdb86dc8b65972de1514132e15a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00536208042.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5426313927594d2e2e874d91e68cd072e06c44b20abf04fd758c0683b0ab238d +size 573484 diff --git a/datasets/openslr_yoruba/yof_02484_00585273800.wav b/datasets/openslr_yoruba/yof_02484_00585273800.wav new file mode 100644 index 0000000000000000000000000000000000000000..b2371e2611d43e7ed27745a167c2f2db54afcb3b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00585273800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1a2e0f13da2c683137787c73379f75a185a988ca30589af3c56474679ce7c1 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02484_00606215462.wav b/datasets/openslr_yoruba/yof_02484_00606215462.wav new file mode 100644 index 0000000000000000000000000000000000000000..08b7c29b2e54e235646882d6e513c037174b0fb6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00606215462.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af958c72a776ded77da54013f30cd8d1b26126f779ea3d756349ca2060a2c62 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02484_00632943504.wav b/datasets/openslr_yoruba/yof_02484_00632943504.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b361b671e958cdcf7ce5ef05d65e0e1eba14101 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00632943504.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa68fe169a5d111fd1b579d818c193a91bec14ea63bd8e9bc7ee17ada5bf7b8 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02484_00654316610.wav b/datasets/openslr_yoruba/yof_02484_00654316610.wav new file mode 100644 index 0000000000000000000000000000000000000000..29462381e25fc2c5143f338f5a09e11a85c46fb7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00654316610.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e5e5751fd98651f97d3d1c215915e53b969427ccbc02da643f8836dffbe421 +size 393260 diff --git a/datasets/openslr_yoruba/yof_02484_00660906556.wav b/datasets/openslr_yoruba/yof_02484_00660906556.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b282e4ebc83852e3f72735397b8151483fd5ac5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00660906556.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b149d7a67df034f04bfae8e555f1ae8afca374e9d42efd3537b09bc985f58d +size 335916 diff --git a/datasets/openslr_yoruba/yof_02484_00676972956.wav b/datasets/openslr_yoruba/yof_02484_00676972956.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d36b2c46f7bdb599bf08cecaa4d05814226f8a3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00676972956.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049553b3784ed1df05bcfb62aa6f9d3b186ffb2c927c2ddc356d7b6d6e7ed5d8 +size 311340 diff --git a/datasets/openslr_yoruba/yof_02484_00691317878.wav b/datasets/openslr_yoruba/yof_02484_00691317878.wav new file mode 100644 index 0000000000000000000000000000000000000000..5efce09945d33c9926572a4f0f72b35210ea1de1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00691317878.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d8958aac04fbbfc51248371d06be7f803fae493da8e8fefa8c60c02d0cb5979 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02484_00724222816.wav b/datasets/openslr_yoruba/yof_02484_00724222816.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4f8c5cd7d1771b31ffa7a4ca6624adbe0174af8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00724222816.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92365c42669594b393b07835a20c54a87d51e5f5bff753e2321bd0fbe275ac3d +size 278572 diff --git a/datasets/openslr_yoruba/yof_02484_00764772991.wav b/datasets/openslr_yoruba/yof_02484_00764772991.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcfc8f423f835b948726f82db6a4d2c7d0f116db --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00764772991.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3448623bd44bbb90ea9cb51864a9ad67a695d666fc8dbf97c3144719e9b82dd2 +size 491564 diff --git a/datasets/openslr_yoruba/yof_02484_00786005763.wav b/datasets/openslr_yoruba/yof_02484_00786005763.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0ac29a7b801c3af050e8fa3698c93a653a655a2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00786005763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994f23e2b05b109e01586e7ff382c06cb56277a9f0ede332c6091be657895350 +size 385068 diff --git a/datasets/openslr_yoruba/yof_02484_00830544591.wav b/datasets/openslr_yoruba/yof_02484_00830544591.wav new file mode 100644 index 0000000000000000000000000000000000000000..507b8dfeb7e6b15537c5a2b8722d7d7614148581 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00830544591.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119be2924ed5bca374afe40b6f1f503039217e7b38146f7c6f1a06aed483e6f9 +size 335916 diff --git a/datasets/openslr_yoruba/yof_02484_00832296930.wav b/datasets/openslr_yoruba/yof_02484_00832296930.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcb29eca657bb494936e5369fb193a41969b6a7b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00832296930.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c55ffee04c8ce55b29640a022020bec74c2b36074c42d8df4104b30ba24350 +size 466988 diff --git a/datasets/openslr_yoruba/yof_02484_00877011242.wav b/datasets/openslr_yoruba/yof_02484_00877011242.wav new file mode 100644 index 0000000000000000000000000000000000000000..21d66d5d91da425bdf4eeebb291b0984d87ea4ce --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00877011242.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca141661173bf37c68f4ad6e4435aee27946a28c09d0548b14154ded20fdd403 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02484_00918450504.wav b/datasets/openslr_yoruba/yof_02484_00918450504.wav new file mode 100644 index 0000000000000000000000000000000000000000..21cf2eac5a42940d5a257396199909098d99f96d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00918450504.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e37856d6662944a06cf23a08b1ce1d96a4e109a4a30242af91f82309d7ec8c +size 417836 diff --git a/datasets/openslr_yoruba/yof_02484_00918570975.wav b/datasets/openslr_yoruba/yof_02484_00918570975.wav new file mode 100644 index 0000000000000000000000000000000000000000..500795a2f3cbcb1798be5f92c7fc5081412834d0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00918570975.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b8e9651dace4cc93cba9dc1cae7163a510441bd82ba61c14fdd8303044024a +size 262188 diff --git a/datasets/openslr_yoruba/yof_02484_00920524038.wav b/datasets/openslr_yoruba/yof_02484_00920524038.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b28249a8996c61dd67e63dffee6ca76a31343f4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00920524038.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8820be0b93765df6d80231a428180e76deb6a24a6276c002324761c0aa62c218 +size 335916 diff --git a/datasets/openslr_yoruba/yof_02484_00939482693.wav b/datasets/openslr_yoruba/yof_02484_00939482693.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a5e302c9e496611490b8324a86049c8d0ff33ae --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00939482693.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c394fd9809fd6282919ebf66233d3ff8315875af4805686ec4c99640c06148 +size 524332 diff --git a/datasets/openslr_yoruba/yof_02484_00963185972.wav b/datasets/openslr_yoruba/yof_02484_00963185972.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f3fe968a614b5b9f39d0e125389279d44387f1a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00963185972.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c635260670218e587fb0325312580087958e85c71554b6c382add5e81c036556 +size 450604 diff --git a/datasets/openslr_yoruba/yof_02484_00968759546.wav b/datasets/openslr_yoruba/yof_02484_00968759546.wav new file mode 100644 index 0000000000000000000000000000000000000000..68740fe2a4ca6c4d3c17d53422e51e22f70df0d0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00968759546.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a04f498ccf4fdd00beeec9364d0fefd99f2829c16df77b3d6a14c2a69d2b501 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02484_00976182994.wav b/datasets/openslr_yoruba/yof_02484_00976182994.wav new file mode 100644 index 0000000000000000000000000000000000000000..e55ecafa21e9afd78dd6dff45028c1e852a53437 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_00976182994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a9830c2c36c89ae20e57c91042c6f665dc75e5f1b42e784af42095312828cf +size 335916 diff --git a/datasets/openslr_yoruba/yof_02484_01006650717.wav b/datasets/openslr_yoruba/yof_02484_01006650717.wav new file mode 100644 index 0000000000000000000000000000000000000000..a90e5cf5fddd6e14fdd9f128eb5f3e38f6633dcb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01006650717.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8beb00fea0bcefaa60bcd4e94b4e17d7d69304ab16c3880c161564edf8f8858 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02484_01008603985.wav b/datasets/openslr_yoruba/yof_02484_01008603985.wav new file mode 100644 index 0000000000000000000000000000000000000000..a796784ee6574610497c7900dd45e02e0120fbfb --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01008603985.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a1f6469e6c0865e602a1a792a137e17a68f1c476194d1cdc2ea5f95e74d919 +size 581676 diff --git a/datasets/openslr_yoruba/yof_02484_01012955131.wav b/datasets/openslr_yoruba/yof_02484_01012955131.wav new file mode 100644 index 0000000000000000000000000000000000000000..d04f4a656fe0ce6163d72931d5f7853d4639e968 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01012955131.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be248659c9ac1f2dbbafa7c90ebd8a23c4a5ec3544fdd2ac5208a1f83e18250 +size 253996 diff --git a/datasets/openslr_yoruba/yof_02484_01043432786.wav b/datasets/openslr_yoruba/yof_02484_01043432786.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1b3f123f2d583db4939bd69f49a0b3a72e4cc68 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01043432786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50ac71b133e4482c6f65c306d0e8cd8509d444167749297ce54972d19132a45 +size 221228 diff --git a/datasets/openslr_yoruba/yof_02484_01064046949.wav b/datasets/openslr_yoruba/yof_02484_01064046949.wav new file mode 100644 index 0000000000000000000000000000000000000000..342ae7366e405c47a39d0e06e82f9265b41c9b5f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01064046949.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1536eb061643c3fe8f41bc06abbeae4e3c2df966f78c0105e910d5260d0af071 +size 409644 diff --git a/datasets/openslr_yoruba/yof_02484_01087002126.wav b/datasets/openslr_yoruba/yof_02484_01087002126.wav new file mode 100644 index 0000000000000000000000000000000000000000..53c28c14f7ea0e99066dbff48f011840c0cad94c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01087002126.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c804bf92745c0fc3550e9849d1bc483cebc7b18536e137b984d6ff8c8f8b06 +size 483372 diff --git a/datasets/openslr_yoruba/yof_02484_01094305838.wav b/datasets/openslr_yoruba/yof_02484_01094305838.wav new file mode 100644 index 0000000000000000000000000000000000000000..1b7b455fb412d899055492f61a236ee21cb13a57 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01094305838.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1f710cffa03a779a197ed11052f9ae1000920e06b068013b9a043d2a49c166 +size 360492 diff --git a/datasets/openslr_yoruba/yof_02484_01096901911.wav b/datasets/openslr_yoruba/yof_02484_01096901911.wav new file mode 100644 index 0000000000000000000000000000000000000000..2150369403ce033fe7f72836c5206d451f5a0626 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01096901911.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d6f5a774821f78438434cfc26f4ae78be1c1a533864097b8297b7cdf94653d +size 434220 diff --git a/datasets/openslr_yoruba/yof_02484_01144784609.wav b/datasets/openslr_yoruba/yof_02484_01144784609.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f6122afaa702b50b533a43185ece0a7ea5a1aff --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01144784609.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f85c4b9bdc492935010071469dc958b1b0438beb38cdfcd2ed9bbc841f33cf +size 270380 diff --git a/datasets/openslr_yoruba/yof_02484_01190303313.wav b/datasets/openslr_yoruba/yof_02484_01190303313.wav new file mode 100644 index 0000000000000000000000000000000000000000..5be492aca5f80741612dbb5ce1356ec8e9cae363 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01190303313.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bcea970df6ea93ac20c9e8150f709214067fadf3a21b6a26ff085791e7d029 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02484_01239009714.wav b/datasets/openslr_yoruba/yof_02484_01239009714.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f28cc6ea30977bfbcfb73eceb887eb9b18f6b43 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01239009714.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204121960530c4e8dd1b065dad5f4adf93406b881a82eb4c72ca00020ed538bf +size 286764 diff --git a/datasets/openslr_yoruba/yof_02484_01289739568.wav b/datasets/openslr_yoruba/yof_02484_01289739568.wav new file mode 100644 index 0000000000000000000000000000000000000000..549d4efca8dcf1fcc4c899f8daf697df6ab7621f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01289739568.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f0ad3064ade801b8a68af2cf0dbffabeed14256151cb755ecbeeb81e312820 +size 368684 diff --git a/datasets/openslr_yoruba/yof_02484_01292048152.wav b/datasets/openslr_yoruba/yof_02484_01292048152.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1647ca30918199cb52a32017a24c7e678ab3621 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01292048152.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ab40786cfa9b0f1ce3a4b53f2df314424ecc9c6b94edb8267e2358c9d0b54e6 +size 466988 diff --git a/datasets/openslr_yoruba/yof_02484_01306054110.wav b/datasets/openslr_yoruba/yof_02484_01306054110.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8a32199ca9f0cd41535f13859bff078417cae2b --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01306054110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c23abe203533a973522308cf4ac30049407603f6f08ef844ad8dcb6cb3d00cc +size 344108 diff --git a/datasets/openslr_yoruba/yof_02484_01318183615.wav b/datasets/openslr_yoruba/yof_02484_01318183615.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb6360434c2384c84727086857a203842da26ec3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01318183615.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f304ec4f4202cc8674dbf18e33c4fcbe51d531720d084779bb4f7702e62da40 +size 516140 diff --git a/datasets/openslr_yoruba/yof_02484_01355967813.wav b/datasets/openslr_yoruba/yof_02484_01355967813.wav new file mode 100644 index 0000000000000000000000000000000000000000..04f4fd911fa41fafbd0f6f7a4f04ffb00813a4af --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01355967813.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0796d8a7b1ba59b2715692fa2ad8bb54c1b96443a7e50a275857490647b5863 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02484_01358389254.wav b/datasets/openslr_yoruba/yof_02484_01358389254.wav new file mode 100644 index 0000000000000000000000000000000000000000..f95de30806c54fdc467dbdc461f99a00c264a3b9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01358389254.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e20ed3c858658c75cda2e9aedd7ca1a04d86f67adde76a4ad6e224869f3a7d +size 245804 diff --git a/datasets/openslr_yoruba/yof_02484_01390813997.wav b/datasets/openslr_yoruba/yof_02484_01390813997.wav new file mode 100644 index 0000000000000000000000000000000000000000..be4dd1dda71686379ca2060e910ca1557e048d29 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01390813997.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08018c79e34e7f5d093cdf9fd172889bdae9a066bd6b3004e97f2a6728aa7db4 +size 303148 diff --git a/datasets/openslr_yoruba/yof_02484_01430850632.wav b/datasets/openslr_yoruba/yof_02484_01430850632.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1eb933b47e6aeb8c9e398c077c93a7d4645fa42 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01430850632.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269af405c46a456275ebe69f55a6a9b540e713bab36180fa3fec7e019e004a1d +size 303148 diff --git a/datasets/openslr_yoruba/yof_02484_01440813087.wav b/datasets/openslr_yoruba/yof_02484_01440813087.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0b27760de6f11475b79e9433eef90ed2361b72a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01440813087.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0040759db90520d54988bbc78f27440e5c28a6920c49305980eb9af57188425e +size 262188 diff --git a/datasets/openslr_yoruba/yof_02484_01466316633.wav b/datasets/openslr_yoruba/yof_02484_01466316633.wav new file mode 100644 index 0000000000000000000000000000000000000000..da816ae5f1b470a866faa5c4f8fac05878746987 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01466316633.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f091b86344a40150d0c3fbb5c3cabab28d1c1a8e2fc2dd684940c8eee250d73 +size 376876 diff --git a/datasets/openslr_yoruba/yof_02484_01481249550.wav b/datasets/openslr_yoruba/yof_02484_01481249550.wav new file mode 100644 index 0000000000000000000000000000000000000000..2baa08c7ea4f12f92b9c6576109bd91c3f589f8e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01481249550.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:977510aa7a18a39c32b3d1f24740eab6ed92716deb6c1fcd3cec46e8262d2516 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02484_01508867112.wav b/datasets/openslr_yoruba/yof_02484_01508867112.wav new file mode 100644 index 0000000000000000000000000000000000000000..479ef9d4f2eb330ba0633204ccdbd52b8a7d68e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01508867112.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edeb495d094fc3394c19071c7a67c4adb95e375ff48f2ca05bf6f6fb97d09e88 +size 434220 diff --git a/datasets/openslr_yoruba/yof_02484_01511236377.wav b/datasets/openslr_yoruba/yof_02484_01511236377.wav new file mode 100644 index 0000000000000000000000000000000000000000..7676349b20b6b69312f73bf6e194487b3cfe245d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01511236377.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0746db0a999fb2128357fab16133fca4451ce19818b1cf6affd2fcef2579c62 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02484_01513293074.wav b/datasets/openslr_yoruba/yof_02484_01513293074.wav new file mode 100644 index 0000000000000000000000000000000000000000..03198c50f32b908208e8affad1fc87fe2d211e23 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01513293074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a6ff3923197da70c534888a1d91742511255e152bcc98871c66f302f925c65 +size 401452 diff --git a/datasets/openslr_yoruba/yof_02484_01530360621.wav b/datasets/openslr_yoruba/yof_02484_01530360621.wav new file mode 100644 index 0000000000000000000000000000000000000000..ada7acdb3357ddc09fa848c9bc3cd6c466ed1ad5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01530360621.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275b7d912b9fd42d88cfb1f3e9bb44eedd33b5338636bdbc97893d52681b8acc +size 401452 diff --git a/datasets/openslr_yoruba/yof_02484_01547076484.wav b/datasets/openslr_yoruba/yof_02484_01547076484.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0321902834aad62944b48d63e45876c45e9b511 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01547076484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d72f954ca5207ce822730c1a81b07715fa0a5ac3cb13dee16c7f4f4110a352 +size 335916 diff --git a/datasets/openslr_yoruba/yof_02484_01606464452.wav b/datasets/openslr_yoruba/yof_02484_01606464452.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9ddb2e320c97eaec120878ca8ba6a9eef6ab4cc --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01606464452.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ddd389c5d5c4e2247b656e6be86a90fd63045488ac9e9b7f8a8246d69ae82e9 +size 679980 diff --git a/datasets/openslr_yoruba/yof_02484_01631778849.wav b/datasets/openslr_yoruba/yof_02484_01631778849.wav new file mode 100644 index 0000000000000000000000000000000000000000..371ab4f3f7604b6768d211705bc352db8f6bb7ca --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01631778849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff76da124d0c22dc696876acda42b300fa76011d66b46578f7d26caa5325560 +size 319532 diff --git a/datasets/openslr_yoruba/yof_02484_01636644213.wav b/datasets/openslr_yoruba/yof_02484_01636644213.wav new file mode 100644 index 0000000000000000000000000000000000000000..88652c1052a36ccb74b51fad0a56c4e86064e87f --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01636644213.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb6de07f27664abb26fab627bfdabbe9bf6f60f684c46b2d856f14c2e4921bd +size 360492 diff --git a/datasets/openslr_yoruba/yof_02484_01640200660.wav b/datasets/openslr_yoruba/yof_02484_01640200660.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc2ec774f22b8902054bb633a724e7a0cf8fa77a --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01640200660.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad7622137a88c54dbef9083ea6e4da1c62d8e5ad261d986a8f2e664a436c304e +size 253996 diff --git a/datasets/openslr_yoruba/yof_02484_01654910843.wav b/datasets/openslr_yoruba/yof_02484_01654910843.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5f47ae6fc437f998d16929485eb6c724e7a0db2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01654910843.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e729c2ed22e513453b75f558cfe0e65468794818ae292530743604aff90e6135 +size 262188 diff --git a/datasets/openslr_yoruba/yof_02484_01688731934.wav b/datasets/openslr_yoruba/yof_02484_01688731934.wav new file mode 100644 index 0000000000000000000000000000000000000000..02b9ab5ce5999f8d40b3850085bd6554a5a87691 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01688731934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06b10863c7bfe9e8548a7a73bdc1da49248c01c7fbd688911e45fe4b4568bbf +size 409644 diff --git a/datasets/openslr_yoruba/yof_02484_01696956093.wav b/datasets/openslr_yoruba/yof_02484_01696956093.wav new file mode 100644 index 0000000000000000000000000000000000000000..52c07b3afa92dbec1231613614c4c20f646f3088 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01696956093.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20bf487deeb42d25fd1306212f2eac1c4db217904420e15fa008f37f38426713 +size 385068 diff --git a/datasets/openslr_yoruba/yof_02484_01712528763.wav b/datasets/openslr_yoruba/yof_02484_01712528763.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c0b32475703fb9dfee1bfbeb71c6ce1f72e5588 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01712528763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6aa6df01a80538fe80af76fe9d330253b0d595525e726e45bbe0360ab8ae817 +size 286764 diff --git a/datasets/openslr_yoruba/yof_02484_01722485657.wav b/datasets/openslr_yoruba/yof_02484_01722485657.wav new file mode 100644 index 0000000000000000000000000000000000000000..82b93d82f5ac0db7e7f750fd6ad58610182ff0a3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01722485657.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1cc386ed6f0a274676bcb50f390626eab77f0ef66fc1db4e524dbb2357b60ec +size 278572 diff --git a/datasets/openslr_yoruba/yof_02484_01739384373.wav b/datasets/openslr_yoruba/yof_02484_01739384373.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b8995d8a641367f81bd913475d4acc4da1e4252 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01739384373.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e336cc430e9b13e2e587a23e1bd1df0e4f1346a782959e2ab8ea3ac8dfc9824d +size 294956 diff --git a/datasets/openslr_yoruba/yof_02484_01776498885.wav b/datasets/openslr_yoruba/yof_02484_01776498885.wav new file mode 100644 index 0000000000000000000000000000000000000000..f8ebd5a24715c8f3181437812b4f406d06f240d3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01776498885.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c14a4bab1961a081644f30c1ed0ee44ea3bc2f6d3c4fc30487fa97133002b6 +size 458796 diff --git a/datasets/openslr_yoruba/yof_02484_01804504315.wav b/datasets/openslr_yoruba/yof_02484_01804504315.wav new file mode 100644 index 0000000000000000000000000000000000000000..a08f4d95e928f0556a2bc5f62547608d93864951 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01804504315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4db3e5acf65fd9529045c5a3a6a096f0c4b091c8e730398ada1b8c831685b5 +size 426028 diff --git a/datasets/openslr_yoruba/yof_02484_01813830684.wav b/datasets/openslr_yoruba/yof_02484_01813830684.wav new file mode 100644 index 0000000000000000000000000000000000000000..713162c675b11303dbf85e69f6c34f590e646fd5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01813830684.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84aafb367e6ad74a24085c8b91873f88e38e5d0e6e51c7a3d1c98f041a513928 +size 294956 diff --git a/datasets/openslr_yoruba/yof_02484_01814388192.wav b/datasets/openslr_yoruba/yof_02484_01814388192.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a1131751af97f4db9b6b6d4d08fb6f127ef667c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01814388192.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2dbb9c95f4828b08fe5bd21c9180bda41c330b93f2c218db936a107515cedc7 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02484_01903695751.wav b/datasets/openslr_yoruba/yof_02484_01903695751.wav new file mode 100644 index 0000000000000000000000000000000000000000..b92ee9167c9e1857b581bc2a27f91454d2e8396d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01903695751.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85089de5490bb9136caaffdd5ac0e2630279949fc3df152361608acf608f4656 +size 344108 diff --git a/datasets/openslr_yoruba/yof_02484_01947347844.wav b/datasets/openslr_yoruba/yof_02484_01947347844.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf2127c9bb74bd9c1292fccaab9901ab0cf9e680 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01947347844.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3624606d4ca7d8908dd5df92c50029b038518b3c31677830060a70044f547bf +size 311340 diff --git a/datasets/openslr_yoruba/yof_02484_01952469150.wav b/datasets/openslr_yoruba/yof_02484_01952469150.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ebb6d38a737b5177c4dfe166f4e49ac44c9dc6c --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01952469150.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a11b36e6debffa33fc4d2b5bfbafb2ca564b7ba853df1d2e0b238ac0cc6471 +size 352300 diff --git a/datasets/openslr_yoruba/yof_02484_01980138009.wav b/datasets/openslr_yoruba/yof_02484_01980138009.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b776323854beb58b59da8615d5c609fa90e211e --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01980138009.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c330012f660d08e0a963dc0ec69f7a100af1d821b433085210cc4eec0e070b1b +size 458796 diff --git a/datasets/openslr_yoruba/yof_02484_01981452867.wav b/datasets/openslr_yoruba/yof_02484_01981452867.wav new file mode 100644 index 0000000000000000000000000000000000000000..bfc345171538a881b3deff85d81d2008951c8bf8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01981452867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f38f41c070c2a1f8427231fc50e4448e44a59960b5fd90b9ecf055056e39bb9 +size 270380 diff --git a/datasets/openslr_yoruba/yof_02484_01983019780.wav b/datasets/openslr_yoruba/yof_02484_01983019780.wav new file mode 100644 index 0000000000000000000000000000000000000000..df26ff163939b6466be941749e55b93df91925e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01983019780.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4d92ad4bbd7cfffb4c8a254549d0b3f09cbb2ba224996f99b9a1b7aec53dce +size 327724 diff --git a/datasets/openslr_yoruba/yof_02484_01995229507.wav b/datasets/openslr_yoruba/yof_02484_01995229507.wav new file mode 100644 index 0000000000000000000000000000000000000000..d407bac0804d205878ca4b65bb0f35f82657f564 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_01995229507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f474e2d0a687e4c4d5d5fcd52fea270551b22c43ec6a569b3231154b2adc440b +size 270380 diff --git a/datasets/openslr_yoruba/yof_02484_02037251366.wav b/datasets/openslr_yoruba/yof_02484_02037251366.wav new file mode 100644 index 0000000000000000000000000000000000000000..0933a75f189db99ad8cc8b7fab74c6dcf44aa849 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_02037251366.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae54804c14db5ac2f02732c497dd8d850cf943fa6793379259ca86723b492c36 +size 229420 diff --git a/datasets/openslr_yoruba/yof_02484_02051319706.wav b/datasets/openslr_yoruba/yof_02484_02051319706.wav new file mode 100644 index 0000000000000000000000000000000000000000..4277b5188a886004ad8207315b9ec5185d9738ab --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_02051319706.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9695fed63c3e1e7ba75995f9aea0478697683d38a4b8bd14f5bbf4aff3de2d8 +size 335916 diff --git a/datasets/openslr_yoruba/yof_02484_02051757674.wav b/datasets/openslr_yoruba/yof_02484_02051757674.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a95cdefc707509221f87cd58a8c65c51f2a36c1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_02051757674.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fd05972a847de29d4fa65ffe3993046e6bde163820b34b8fb374c33e8e5802 +size 450604 diff --git a/datasets/openslr_yoruba/yof_02484_02090141456.wav b/datasets/openslr_yoruba/yof_02484_02090141456.wav new file mode 100644 index 0000000000000000000000000000000000000000..b667795002f874969fa7e00f560130284219526d --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_02090141456.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783aeecbb835d6f979ae3ca9742a292c9b6585404dc04f50ee7323befcef8d18 +size 622636 diff --git a/datasets/openslr_yoruba/yof_02484_02096050669.wav b/datasets/openslr_yoruba/yof_02484_02096050669.wav new file mode 100644 index 0000000000000000000000000000000000000000..b853896c42c32a6527f8ec623256e1eb748b6868 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_02096050669.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b584d74ae19e3632918b7b7bc93d94b4cd5f995c71bcb9fe62771e043ab01 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02484_02116635835.wav b/datasets/openslr_yoruba/yof_02484_02116635835.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc1e682be447fceb20786549c13a18271af94b09 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_02116635835.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5495ca9fea9a225893c1051195a5943f7d383cc87903c4cfbcff5bd434bde9 +size 327724 diff --git a/datasets/openslr_yoruba/yof_02484_02120824187.wav b/datasets/openslr_yoruba/yof_02484_02120824187.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ace562decae55d67cda718f10e6fd1a2fc55b08 --- /dev/null +++ b/datasets/openslr_yoruba/yof_02484_02120824187.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1bedbf278d94d57c04bbdac2a1c9d4c5aed29318224ee514998cb617f5fbe0 +size 327724 diff --git a/datasets/openslr_yoruba/yof_03034_00018006611.wav b/datasets/openslr_yoruba/yof_03034_00018006611.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a561bb5f88169cf9c59fdaad5708a79263862ce --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00018006611.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39240fb1bcfa618084d0a7bc3078c2bd88bd57f07a1b5d7e12538c66b0be9ccd +size 270380 diff --git a/datasets/openslr_yoruba/yof_03034_00020547990.wav b/datasets/openslr_yoruba/yof_03034_00020547990.wav new file mode 100644 index 0000000000000000000000000000000000000000..8787e09a70b21fedf0c46662619f233b872242a4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00020547990.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6606c50dbc0bb04ba3454b4678917615378c086d1501825413229e5103547c41 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03034_00023157117.wav b/datasets/openslr_yoruba/yof_03034_00023157117.wav new file mode 100644 index 0000000000000000000000000000000000000000..38d78515c54fdc0011a165431b79865818012241 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00023157117.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef16961784061b3aaddcedcf60c67bc4ae0ff98231b5882089d22f14743465b +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_00047358379.wav b/datasets/openslr_yoruba/yof_03034_00047358379.wav new file mode 100644 index 0000000000000000000000000000000000000000..86766a1832eaaff0f03eda27a5495551a704ce6e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00047358379.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d243b75a11c80febb0290fff4b4add6f53d3082020be9ed557c786204baff2 +size 466988 diff --git a/datasets/openslr_yoruba/yof_03034_00063417513.wav b/datasets/openslr_yoruba/yof_03034_00063417513.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ceeebae69fb67bd295341519adaa673ef09e419 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00063417513.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b03dc1cf310ecbc21426c7fd140c6f238f8f440fea65b0f736a96ddfb096e8c +size 245804 diff --git a/datasets/openslr_yoruba/yof_03034_00067848901.wav b/datasets/openslr_yoruba/yof_03034_00067848901.wav new file mode 100644 index 0000000000000000000000000000000000000000..34898eea2cbbe4ae458e03849e4c985bf5da9058 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00067848901.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420fdfe100d34b1d92a7f9c18a0088803556ac12e18c9b29f05b61027b5c621f +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_00083466670.wav b/datasets/openslr_yoruba/yof_03034_00083466670.wav new file mode 100644 index 0000000000000000000000000000000000000000..26391a98123742356ee2bc005614b42f2cc139d4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00083466670.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5c6512ec39cc2b6e11b24a97b79808b2d76b82b64201c37474480fc2d2bd1d +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_00097168549.wav b/datasets/openslr_yoruba/yof_03034_00097168549.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c1897f71b5d5816882e7574a0e8dfc372e14b91 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00097168549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d21ad3f044d5229aeb5734fdbad8a155dff7526e84798ca1c909ecf83c9bca +size 344108 diff --git a/datasets/openslr_yoruba/yof_03034_00108964020.wav b/datasets/openslr_yoruba/yof_03034_00108964020.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9f09a29e5025915bce4e99075bb1643e7dfd4fe --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00108964020.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d15d16590a990bec7783c45bf482bc726646ba377bf58da1152197bde73303 +size 319532 diff --git a/datasets/openslr_yoruba/yof_03034_00194240920.wav b/datasets/openslr_yoruba/yof_03034_00194240920.wav new file mode 100644 index 0000000000000000000000000000000000000000..0199cafcb1d7ea10531c0a95c4f5ef367d5fb91b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00194240920.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4aa13969bc671b842e750417adc83e4ed54b7ba98370ef95094164112aa01fc +size 278572 diff --git a/datasets/openslr_yoruba/yof_03034_00245094758.wav b/datasets/openslr_yoruba/yof_03034_00245094758.wav new file mode 100644 index 0000000000000000000000000000000000000000..706a6deac5af7871dcdac4eb6f6f035b1d64bd92 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00245094758.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f299a4982a2800405ab57e7575089c0d1c592368911786d4035bb81e78834c0 +size 368684 diff --git a/datasets/openslr_yoruba/yof_03034_00249866285.wav b/datasets/openslr_yoruba/yof_03034_00249866285.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a3c466c032fea8a6a9f62573a38316e302c65d6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00249866285.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7b4875e956578dd3052ce170226591779f249ca0ed5a882b8171d55c072a0ec +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_00264939782.wav b/datasets/openslr_yoruba/yof_03034_00264939782.wav new file mode 100644 index 0000000000000000000000000000000000000000..84d4569f8aba3e5e3cd80bdf26740a54fd61fd29 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00264939782.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac50ff38770d6d86285f33a5973ba6727602c34e7697ae46b4422ef218435b3 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_00293147965.wav b/datasets/openslr_yoruba/yof_03034_00293147965.wav new file mode 100644 index 0000000000000000000000000000000000000000..d10ec281546ec8ccf4942bc872cfa967300a8e66 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00293147965.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1504fab31464759a02ed012d218c8e3d72b60c46d121f76d11f219925dabc182 +size 475180 diff --git a/datasets/openslr_yoruba/yof_03034_00296669137.wav b/datasets/openslr_yoruba/yof_03034_00296669137.wav new file mode 100644 index 0000000000000000000000000000000000000000..2337e1d88baab52b05cecc412353a2160092c409 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00296669137.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7f2c6c98ec230e67ded5bb243c62622a8fa0aef2f7b5b640c023a89867aa0c +size 278572 diff --git a/datasets/openslr_yoruba/yof_03034_00299576843.wav b/datasets/openslr_yoruba/yof_03034_00299576843.wav new file mode 100644 index 0000000000000000000000000000000000000000..66733edfd33a44c78871a0efe86e96ad1faf1a8d --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00299576843.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fd3672c96ff4d1308ef295db4d733a61076485fa890cf6c4b5ea4bca323243 +size 360492 diff --git a/datasets/openslr_yoruba/yof_03034_00305234805.wav b/datasets/openslr_yoruba/yof_03034_00305234805.wav new file mode 100644 index 0000000000000000000000000000000000000000..4cd63b2293c401e1bf38fc38da825ff61ff6f63e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00305234805.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88205a880da6fedd0b341c7099ec489606e3c0d548eb4f66e87acb7df7970458 +size 434220 diff --git a/datasets/openslr_yoruba/yof_03034_00308549077.wav b/datasets/openslr_yoruba/yof_03034_00308549077.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac4f99123a385dc127b3f32b608e0e076648f280 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00308549077.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6246ed5938d0ad371644fa66feb5d84f3bda5fd9587321d19d0476b2c0c62383 +size 393260 diff --git a/datasets/openslr_yoruba/yof_03034_00325997819.wav b/datasets/openslr_yoruba/yof_03034_00325997819.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3aecd77dfeb8dbdfa8cd5064f73415b9fa5de1f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00325997819.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0b045ec54364ffae5dbd26f0157d6b6c34a99fe699c211e2925d87ebe98d34 +size 360492 diff --git a/datasets/openslr_yoruba/yof_03034_00341126073.wav b/datasets/openslr_yoruba/yof_03034_00341126073.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c468dcea939fa83dd81cb7c94e68fa1fd6a5fab --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00341126073.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ff72e0a8b45bee931cc674aa25172bd2d736c1cf9d6c702bf023e82066105e +size 229420 diff --git a/datasets/openslr_yoruba/yof_03034_00362824215.wav b/datasets/openslr_yoruba/yof_03034_00362824215.wav new file mode 100644 index 0000000000000000000000000000000000000000..5997465fe442f2d8394c617c6cebb40b932b7d02 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00362824215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07fcea50bd32b5032050b49fd49e93ec7532011eb335cf68499b51a654b10a19 +size 458796 diff --git a/datasets/openslr_yoruba/yof_03034_00385355112.wav b/datasets/openslr_yoruba/yof_03034_00385355112.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa71e372f67c10bc636d0c7471c633db409a3835 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00385355112.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf83e5fa4088d18d3c5177a3f3bcdb50822538ac06235b20e84d1f488e233192 +size 237612 diff --git a/datasets/openslr_yoruba/yof_03034_00391575646.wav b/datasets/openslr_yoruba/yof_03034_00391575646.wav new file mode 100644 index 0000000000000000000000000000000000000000..38c94aa6eab67a56b9be70fdfbb0a361cf00412d --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00391575646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b71457907bf75beb5f3c50c6bee666928d9e2e50c983d0e96eba5cec9975765 +size 761900 diff --git a/datasets/openslr_yoruba/yof_03034_00396583484.wav b/datasets/openslr_yoruba/yof_03034_00396583484.wav new file mode 100644 index 0000000000000000000000000000000000000000..443e91ff9c8724ab7d06759d2baa0cd20ef25342 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00396583484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b39c72ac81dfbc040e87fc2187d0dd3aeb1afa2cabbb52b2fef66b4b5e676aa +size 426028 diff --git a/datasets/openslr_yoruba/yof_03034_00397823787.wav b/datasets/openslr_yoruba/yof_03034_00397823787.wav new file mode 100644 index 0000000000000000000000000000000000000000..8060c5fc76546c1efeec6a917c6e13a124433111 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00397823787.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ef7f8daf03d5abe9f099e444856781b4e873177a57da1f719d5bea2d26bdd3 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03034_00421681937.wav b/datasets/openslr_yoruba/yof_03034_00421681937.wav new file mode 100644 index 0000000000000000000000000000000000000000..77a287e0b33c9a7032a1aae4245e9e76267817e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00421681937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90bbbbba6cd0848af92258f7a6c9539f4c692bf2de00fa9dde149f1caa0bd0f0 +size 499756 diff --git a/datasets/openslr_yoruba/yof_03034_00459752949.wav b/datasets/openslr_yoruba/yof_03034_00459752949.wav new file mode 100644 index 0000000000000000000000000000000000000000..a6218376d79e8b1dbceece4cd8c59dee6ef1ccf5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00459752949.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e114a96c0f92f8c8e34208eec1564ec9fb6e76e304854efc298319dcca64115 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_00474128447.wav b/datasets/openslr_yoruba/yof_03034_00474128447.wav new file mode 100644 index 0000000000000000000000000000000000000000..2be1b66bc8d9c7c9722c743f6d47b43367d37c60 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00474128447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343a831d38f2d7b8e0806ddcebc67d53e47ae1111b1ee96213863f3af409a315 +size 483372 diff --git a/datasets/openslr_yoruba/yof_03034_00500474867.wav b/datasets/openslr_yoruba/yof_03034_00500474867.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a0782c758507bcf19ae3c620e3f3134f90211fd --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00500474867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2df1d08dbe908b692fc374d9b818c32f9f2e4407dafcdeb1ed030c9f0359097 +size 221228 diff --git a/datasets/openslr_yoruba/yof_03034_00520981556.wav b/datasets/openslr_yoruba/yof_03034_00520981556.wav new file mode 100644 index 0000000000000000000000000000000000000000..79874447f772753ab3c87eed793c3f8ed0b37e39 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00520981556.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfc91757605f27548d74de2a9443db277fab6a3740da5f6934b96fc427401b0 +size 204844 diff --git a/datasets/openslr_yoruba/yof_03034_00547294103.wav b/datasets/openslr_yoruba/yof_03034_00547294103.wav new file mode 100644 index 0000000000000000000000000000000000000000..c90ca965ff617430f5caf0fcb237fb1a7bec846e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00547294103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed902439e2877690e1a5971cfedf2ab864ed5f1cb785cae4f54997e1d2e12e9 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03034_00584914499.wav b/datasets/openslr_yoruba/yof_03034_00584914499.wav new file mode 100644 index 0000000000000000000000000000000000000000..9cf14c1c0c1c7a2cf03cc67a93ededc50fbbdf99 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00584914499.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d49f019ca3af3e1fa0cd06e4df89ee30a2b30ca3fe4e0e8ea484d16c46bc5c5d +size 253996 diff --git a/datasets/openslr_yoruba/yof_03034_00650227009.wav b/datasets/openslr_yoruba/yof_03034_00650227009.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ec5d3f8a6a2912054808b07e57ef53833f50f31 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00650227009.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3731e50c4c2716bfab10e5b08698b27c13a2b9f0e61823055c33aa28da3592ef +size 335916 diff --git a/datasets/openslr_yoruba/yof_03034_00719500674.wav b/datasets/openslr_yoruba/yof_03034_00719500674.wav new file mode 100644 index 0000000000000000000000000000000000000000..a14dd8d5de94d574f5a2a4c7535b5d12fd36f08b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00719500674.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b125ad28d50867b064dd49dcf6b8621d0614ea743dc8ec0222e7a487812581b +size 237612 diff --git a/datasets/openslr_yoruba/yof_03034_00731449875.wav b/datasets/openslr_yoruba/yof_03034_00731449875.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef53371ed0e8ec00c5ef651715d31211432afac8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00731449875.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7a1b62e861774d911153d4d62f79f8aacc486d1b99e6ff37c15c18cd8621cd +size 311340 diff --git a/datasets/openslr_yoruba/yof_03034_00744627221.wav b/datasets/openslr_yoruba/yof_03034_00744627221.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6f9e14e6d9c035af4cf877b5e070c4b5fcdf450 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00744627221.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8131cbe8f2005df71b39ffafe84433573d9bd7c1af4f7e47ad6e6b26fd66081 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03034_00758919241.wav b/datasets/openslr_yoruba/yof_03034_00758919241.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c7f12b991ded991724b4392b265e130d0ac54c5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00758919241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e4a609bcb0cf4a55109d88f744af87a470a539f1838b011d57e832c5a5570e +size 229420 diff --git a/datasets/openslr_yoruba/yof_03034_00807477395.wav b/datasets/openslr_yoruba/yof_03034_00807477395.wav new file mode 100644 index 0000000000000000000000000000000000000000..c7789871afc64cb05d9e30ceb2b0b0f1338e9ff8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00807477395.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e338ef51461f6d25fc4615ce77ddaa4bd3b6456929928aa0cac5b34d2e6d1f +size 213036 diff --git a/datasets/openslr_yoruba/yof_03034_00839073614.wav b/datasets/openslr_yoruba/yof_03034_00839073614.wav new file mode 100644 index 0000000000000000000000000000000000000000..34c8598fbe86b7c3b1bbfaace9294a78dc9b73e1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00839073614.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dedf445ff092e0b94c43dc9c58f92775d6098fb02619e63c02e6804b879ca675 +size 622636 diff --git a/datasets/openslr_yoruba/yof_03034_00878348105.wav b/datasets/openslr_yoruba/yof_03034_00878348105.wav new file mode 100644 index 0000000000000000000000000000000000000000..b0baacf4105239e3d96b1cf09b77d8b2eab8a1b9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00878348105.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39e6c894630a50f874726e259912aa76c7bce1ca00e79837931aead4e5fd906 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03034_00893415284.wav b/datasets/openslr_yoruba/yof_03034_00893415284.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd17087af911b63558918b376e20a050021d9065 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00893415284.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dafd545fa1d507f6601121ef5812e3ea120a036dc6895423c3a677646e4ff506 +size 663596 diff --git a/datasets/openslr_yoruba/yof_03034_00922138325.wav b/datasets/openslr_yoruba/yof_03034_00922138325.wav new file mode 100644 index 0000000000000000000000000000000000000000..f23b3ef70a495bbfdae1863c56f5e4e4b5d0f1d8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00922138325.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df9489525142c74883ac98d92cbae6ba982e127362b8c96a912eb2d86587ad9 +size 426028 diff --git a/datasets/openslr_yoruba/yof_03034_00961577784.wav b/datasets/openslr_yoruba/yof_03034_00961577784.wav new file mode 100644 index 0000000000000000000000000000000000000000..d270231d79e34be3be3646a45dcf3a50d2be7540 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00961577784.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:250ca78d466b24dc4202910cc8fdece4f7061f40f07e3f1bfd298269b3e28ce6 +size 270380 diff --git a/datasets/openslr_yoruba/yof_03034_00977433668.wav b/datasets/openslr_yoruba/yof_03034_00977433668.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c437ba566c8aecfabe7339d2ae35d8ea367f729 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00977433668.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2abefa4be9e4f8bdc9883d7d6b798a0e2c84be7fbda2889686cb6a295ca09146 +size 294956 diff --git a/datasets/openslr_yoruba/yof_03034_00981265646.wav b/datasets/openslr_yoruba/yof_03034_00981265646.wav new file mode 100644 index 0000000000000000000000000000000000000000..0bff9448c717e0fa4f96224e38fbb1a49d540105 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00981265646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6acbbf2c5a55771e031291d2f7c9cd7a0fa4aa34a14380efdcbb3c39c820b894 +size 335916 diff --git a/datasets/openslr_yoruba/yof_03034_00992189887.wav b/datasets/openslr_yoruba/yof_03034_00992189887.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd573cebe356259edd1102fca8bc6524e897cce1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_00992189887.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17fc5f70d05e6add68b3673bc5b21c17011f99fd78764cff21b58c97405605a +size 450604 diff --git a/datasets/openslr_yoruba/yof_03034_01016577741.wav b/datasets/openslr_yoruba/yof_03034_01016577741.wav new file mode 100644 index 0000000000000000000000000000000000000000..66b5099866837bbe4457f5994a161e3755060af1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01016577741.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8042dea6e062e5fd56c38fd5cd872fe338acc56e71fc97765f6e3f8fb6a685 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03034_01019745955.wav b/datasets/openslr_yoruba/yof_03034_01019745955.wav new file mode 100644 index 0000000000000000000000000000000000000000..bedc8c09b5c4e8077b8b7ea930901c2fb895b5f4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01019745955.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470f3d3adad030f344c20550006b798aa4823c5248bc9e422255a1baf4817676 +size 270380 diff --git a/datasets/openslr_yoruba/yof_03034_01026748314.wav b/datasets/openslr_yoruba/yof_03034_01026748314.wav new file mode 100644 index 0000000000000000000000000000000000000000..48dc7c3c5202233c8a12d76a037e9ea7995a2b63 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01026748314.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea6c4bbdc3715e0fba08d90a273c0232f647ef0299d83431e9e0c164769830e +size 262188 diff --git a/datasets/openslr_yoruba/yof_03034_01044506045.wav b/datasets/openslr_yoruba/yof_03034_01044506045.wav new file mode 100644 index 0000000000000000000000000000000000000000..c254ebf00847ba65539dc32c80afcfdd088dab6c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01044506045.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd64ff72ba7d6066c2b6fd0a0df8f2867501a233cd1eef82a8c49692b2754459 +size 393260 diff --git a/datasets/openslr_yoruba/yof_03034_01047522616.wav b/datasets/openslr_yoruba/yof_03034_01047522616.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b18f58c99bcf0de044f6affd9176797a553213e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01047522616.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896890bef0d9d6d35d256105ceb2311addfae3290f04f6de455d6387d6f00972 +size 376876 diff --git a/datasets/openslr_yoruba/yof_03034_01108805717.wav b/datasets/openslr_yoruba/yof_03034_01108805717.wav new file mode 100644 index 0000000000000000000000000000000000000000..e71481dae0215a5051bbedc415afbebd873c1151 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01108805717.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a679bbd806d71bcfc0ab09b6c90bc7c53ba6f8f7e9ef9617b9b85b51a1a12399 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_01143992860.wav b/datasets/openslr_yoruba/yof_03034_01143992860.wav new file mode 100644 index 0000000000000000000000000000000000000000..8920874d671c9e392f19c822b238f5c34201a346 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01143992860.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ed7313a9dad7c2154768f66855609d64a1901b263d7749d7563fa0d98b4faa +size 294956 diff --git a/datasets/openslr_yoruba/yof_03034_01157942821.wav b/datasets/openslr_yoruba/yof_03034_01157942821.wav new file mode 100644 index 0000000000000000000000000000000000000000..74f4b8bf869b80b918c92cc6f57f283d2c38d766 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01157942821.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8c2af67c7614af1abe89984f29a28dfc62b37110f446a8163321b226125420 +size 253996 diff --git a/datasets/openslr_yoruba/yof_03034_01184452318.wav b/datasets/openslr_yoruba/yof_03034_01184452318.wav new file mode 100644 index 0000000000000000000000000000000000000000..74bda8eb0a7cc7fdbd74509287e2bae4ff10258d --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01184452318.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850690d7ed8cf5115c1e2b4a413fc630d6ff8e5a6afbd16cc2414fa9b3c533f2 +size 335916 diff --git a/datasets/openslr_yoruba/yof_03034_01191710683.wav b/datasets/openslr_yoruba/yof_03034_01191710683.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a6963f076915b13e2531ddbd661f28894f45a37 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01191710683.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492a8891bcc8160b1285cad751e9edbeaabcf1839695a26cff9fc0228658e8fd +size 213036 diff --git a/datasets/openslr_yoruba/yof_03034_01210344257.wav b/datasets/openslr_yoruba/yof_03034_01210344257.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5387e1ab106f0422f17aecbb77143c7d390f154 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01210344257.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a77ada7698c7398e181f301d92b713ed0f9a80d1f4bc5a7b13c1f83383d974 +size 524332 diff --git a/datasets/openslr_yoruba/yof_03034_01217469750.wav b/datasets/openslr_yoruba/yof_03034_01217469750.wav new file mode 100644 index 0000000000000000000000000000000000000000..df39b12fd53f0fab57d9fdce82b2bb1e9c1e192d --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01217469750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fedced22b6f132d0d3d7920d6e253e0262c60d21768ca3fc154fed9df2ed3cc +size 344108 diff --git a/datasets/openslr_yoruba/yof_03034_01222630776.wav b/datasets/openslr_yoruba/yof_03034_01222630776.wav new file mode 100644 index 0000000000000000000000000000000000000000..e03766ac98c643b1cefc4e15d2cf68db832c3df1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01222630776.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9883d2944ea07ecc7f86a2ddde896023fff22568836457c9456dac68fd6915f7 +size 548908 diff --git a/datasets/openslr_yoruba/yof_03034_01224218751.wav b/datasets/openslr_yoruba/yof_03034_01224218751.wav new file mode 100644 index 0000000000000000000000000000000000000000..039047e6cedf8270e3d14a3a9101715498cc4751 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01224218751.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc26e54d360cb1a6f770cf3be40ff4859f80ed7ab27a6589333a3ff34bbc89f +size 385068 diff --git a/datasets/openslr_yoruba/yof_03034_01248305054.wav b/datasets/openslr_yoruba/yof_03034_01248305054.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9629ec1dc6b772f5bb0f45a34b6d6e23770cb61 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01248305054.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f8561aaae946c4bf486954b3b5cef8791fbf90ce21bfccddec98bbe13f2d81 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03034_01273576086.wav b/datasets/openslr_yoruba/yof_03034_01273576086.wav new file mode 100644 index 0000000000000000000000000000000000000000..aca293175902dcbdbd57c0b82536497681a2efd5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01273576086.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80bd434d7c5c59390a590c1b22b804817b28caa71b9cd89d78bd12c95a06f11 +size 196652 diff --git a/datasets/openslr_yoruba/yof_03034_01279003043.wav b/datasets/openslr_yoruba/yof_03034_01279003043.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffe67a1fb666795c80d841c5ef373b29f27c0989 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01279003043.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb45b7957f4acf7ab00b999a5287098ec69e9d9f808aedf96bdc0488f79fc8b +size 245804 diff --git a/datasets/openslr_yoruba/yof_03034_01357625953.wav b/datasets/openslr_yoruba/yof_03034_01357625953.wav new file mode 100644 index 0000000000000000000000000000000000000000..6502b139bbd89337295118638be20efb359fad04 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01357625953.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3fc118a9a2216212826615e81eba53a573399ca0d8a72bddb6f3f426808e5c +size 204844 diff --git a/datasets/openslr_yoruba/yof_03034_01373308907.wav b/datasets/openslr_yoruba/yof_03034_01373308907.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a329aaebd8ea4eaf4326a005a99c2d720571d7a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01373308907.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cc53ea1205d9d962c9a867de875f4edb4cdfa69be74cd970f2fab4461a932db +size 335916 diff --git a/datasets/openslr_yoruba/yof_03034_01380443131.wav b/datasets/openslr_yoruba/yof_03034_01380443131.wav new file mode 100644 index 0000000000000000000000000000000000000000..56ff46439e8fdeba141aa234d7e71c85333bad79 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01380443131.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f832041fbb8fd5757ed9c9024d7766c4cebf5b4e5349cc756ae63e345b93a3 +size 393260 diff --git a/datasets/openslr_yoruba/yof_03034_01389385018.wav b/datasets/openslr_yoruba/yof_03034_01389385018.wav new file mode 100644 index 0000000000000000000000000000000000000000..944e9f2e7510895640208d8b9107c90d21899113 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01389385018.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7b39a0e0c56f879bcb352f335a95de2ea2325abe441b3e858df7af8ef74ac8 +size 368684 diff --git a/datasets/openslr_yoruba/yof_03034_01401678267.wav b/datasets/openslr_yoruba/yof_03034_01401678267.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a30d3656026bc525239a6f8704a81077cd0e539 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01401678267.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7e7e26aed81ffe276034a0b2e4e1e27aed64f5e3991945fd11e12f676efdef +size 352300 diff --git a/datasets/openslr_yoruba/yof_03034_01406706309.wav b/datasets/openslr_yoruba/yof_03034_01406706309.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cf06a33cc4aefaac83c837b65e061ab6bacc4d4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01406706309.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8837fb6498eb341e0561ab4b5f033b96f7c11550c81d3b223f889a1805b3a7e9 +size 376876 diff --git a/datasets/openslr_yoruba/yof_03034_01434705197.wav b/datasets/openslr_yoruba/yof_03034_01434705197.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b11ad8d4710b83e6eaf00e533254a9b89d859e8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01434705197.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec18696259bf92c402f5593cabcc462e53912fbc4984bdd8dcc716881c76dce +size 393260 diff --git a/datasets/openslr_yoruba/yof_03034_01445313467.wav b/datasets/openslr_yoruba/yof_03034_01445313467.wav new file mode 100644 index 0000000000000000000000000000000000000000..0698b878c920c5364799c2d500bae51f31befa92 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01445313467.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319631b403870516205c38b0ca3a2307e181154214a7904bf42fead25626d252 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03034_01446343771.wav b/datasets/openslr_yoruba/yof_03034_01446343771.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a80bb9aec4791c89b06f073d419637cf17810b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01446343771.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ca7939147f248d35388ca5fdb3757245a21cb0859530595f9522eac0752036 +size 229420 diff --git a/datasets/openslr_yoruba/yof_03034_01446696064.wav b/datasets/openslr_yoruba/yof_03034_01446696064.wav new file mode 100644 index 0000000000000000000000000000000000000000..8674f25d9bfa674d475a7c7efc16fbbb648d2064 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01446696064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0913b503823fd2b783dc84ab231a4770b226c0a868e4e183625590b2b247620c +size 245804 diff --git a/datasets/openslr_yoruba/yof_03034_01464979147.wav b/datasets/openslr_yoruba/yof_03034_01464979147.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b634028b0f42a32a9720c22982e181a638a84e3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01464979147.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62faa1c030d123410e06f18152f36c34d12ff66d1efc6da4a67742d545617c0 +size 286764 diff --git a/datasets/openslr_yoruba/yof_03034_01484294019.wav b/datasets/openslr_yoruba/yof_03034_01484294019.wav new file mode 100644 index 0000000000000000000000000000000000000000..2bb3d3a64342d87bee8eaaa2ae70f6ba675eb3d2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01484294019.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740c4e2c9af041938751ece9a137ad89d677618913f2de8201507dd635d16aa7 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03034_01539186019.wav b/datasets/openslr_yoruba/yof_03034_01539186019.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7f8d5799de7bf5c2dd3b3eeb1e4840a31d92bbd --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01539186019.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baeeeaf33e70f858ceacdd5eabcbbf183ddf0a261274f1a84a99db3b66a5f313 +size 253996 diff --git a/datasets/openslr_yoruba/yof_03034_01553782781.wav b/datasets/openslr_yoruba/yof_03034_01553782781.wav new file mode 100644 index 0000000000000000000000000000000000000000..7fdb42a2e2f90ec5e3875f109118daf60974e9ad --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01553782781.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3f1dd4dc7c25ed1991078874ce279f8c19a367c61cb9f7f304ec6802f6373d +size 843820 diff --git a/datasets/openslr_yoruba/yof_03034_01556118428.wav b/datasets/openslr_yoruba/yof_03034_01556118428.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e24ce8d1a7048d15ae09481bbccdfe9974fbd09 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01556118428.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6d3914e922900b6a90ce665b8433a0ce86b6ccfd93cc216f4efecc079bf184 +size 286764 diff --git a/datasets/openslr_yoruba/yof_03034_01581815945.wav b/datasets/openslr_yoruba/yof_03034_01581815945.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e75254fbd35a7217d26d71f280b7b66abeb4b84 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01581815945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02d452b6252ebcbcd3c1f62a0a3c76e13ce677ad47f85fd05e39814c93cd5696 +size 327724 diff --git a/datasets/openslr_yoruba/yof_03034_01619608827.wav b/datasets/openslr_yoruba/yof_03034_01619608827.wav new file mode 100644 index 0000000000000000000000000000000000000000..77360713d1ad63c5dc15959c7395254a05665ff4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01619608827.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc16f51a92e4a4e7701039a4ed0ea24916289b60447bfb8e32c0e9adc90aec2 +size 286764 diff --git a/datasets/openslr_yoruba/yof_03034_01624808350.wav b/datasets/openslr_yoruba/yof_03034_01624808350.wav new file mode 100644 index 0000000000000000000000000000000000000000..2281839433868762995a695b47d8bd535a656306 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01624808350.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1ace7dd1c066c0938eafe1f408f264c5056b29a64c660ad41cae4366f99e4f4 +size 319532 diff --git a/datasets/openslr_yoruba/yof_03034_01627999529.wav b/datasets/openslr_yoruba/yof_03034_01627999529.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b61c00d43e27199302a2e748e706270fb7599bf --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01627999529.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0556c5dfc4177bc0adb79d4330af0a7a1c9cfc07346b7592d04578904b29c08 +size 385068 diff --git a/datasets/openslr_yoruba/yof_03034_01633076971.wav b/datasets/openslr_yoruba/yof_03034_01633076971.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc1777ddc9cd45a9bb006e90988de106db924962 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01633076971.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6650bd1d290f8fd4d7d8504051d3bdc7205814862bcfd5c91bd546f5db3c765a +size 327724 diff --git a/datasets/openslr_yoruba/yof_03034_01665376585.wav b/datasets/openslr_yoruba/yof_03034_01665376585.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f2532c0df6261fb5ce8ca334fd9b22121573f7a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01665376585.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cbcc69d7208b86c16b6c308a68d5754deab3e3c5e3016af3a69e111228ca14d +size 426028 diff --git a/datasets/openslr_yoruba/yof_03034_01688012815.wav b/datasets/openslr_yoruba/yof_03034_01688012815.wav new file mode 100644 index 0000000000000000000000000000000000000000..210933402b267ce82cc758420e77aede43558c0c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01688012815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784bac6b7875d74f1dadcaaa4896df5d35e478fccc0c3138e52a07f1ef384d2a +size 294956 diff --git a/datasets/openslr_yoruba/yof_03034_01814831512.wav b/datasets/openslr_yoruba/yof_03034_01814831512.wav new file mode 100644 index 0000000000000000000000000000000000000000..607b77837d04e6eb6f81f9ad0a46484829414de9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01814831512.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e18065b54477fdefa1c1a80f1f685fc25abe5e8a2f26f4b2b7f015e7f1b0bc7 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03034_01828481800.wav b/datasets/openslr_yoruba/yof_03034_01828481800.wav new file mode 100644 index 0000000000000000000000000000000000000000..591c81a313cfb2a63a9c859a56a4aedadaac09ed --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01828481800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57c5ef85b79521b6d882bb8731357a6b04fbe76de62e3c1a72b099990920e34 +size 237612 diff --git a/datasets/openslr_yoruba/yof_03034_01847424174.wav b/datasets/openslr_yoruba/yof_03034_01847424174.wav new file mode 100644 index 0000000000000000000000000000000000000000..588b481caa7f1790d5b33c5cfc31c61689178ad1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01847424174.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bc484a109ffbfa2b5b9ecddbd86ae9f8286a6b998eddb5f7225c65d6922849 +size 245804 diff --git a/datasets/openslr_yoruba/yof_03034_01900273328.wav b/datasets/openslr_yoruba/yof_03034_01900273328.wav new file mode 100644 index 0000000000000000000000000000000000000000..86998effa61ce1d0fba20703abec46bdda1d8a88 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01900273328.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:677f748db8379a77a36e61ae57d1a71303e2462a47ccca97412bea17d628e676 +size 294956 diff --git a/datasets/openslr_yoruba/yof_03034_01910707030.wav b/datasets/openslr_yoruba/yof_03034_01910707030.wav new file mode 100644 index 0000000000000000000000000000000000000000..ff42fc46d84a542ac2d879851a68b95c8ae01f88 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01910707030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610bb37dc4e55c1612035ebd69cf9501cb3d9842dee9546d99b703eafd9e577a +size 368684 diff --git a/datasets/openslr_yoruba/yof_03034_01916752308.wav b/datasets/openslr_yoruba/yof_03034_01916752308.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a5ac5b43e6c2a7fe868c91266359d83010c0d6a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01916752308.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee2236df103d982a92ed3a9ea12a8d49fdb2bdce4dd8ce514a01b2d098a73065 +size 327724 diff --git a/datasets/openslr_yoruba/yof_03034_01991796319.wav b/datasets/openslr_yoruba/yof_03034_01991796319.wav new file mode 100644 index 0000000000000000000000000000000000000000..28f9cfa0bc833bec43b791fde278c11ce13c4b88 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_01991796319.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a46e9ad320e57886a24852b13541b257bd64299624e1fb97a7552074cca5aca5 +size 196652 diff --git a/datasets/openslr_yoruba/yof_03034_02005258693.wav b/datasets/openslr_yoruba/yof_03034_02005258693.wav new file mode 100644 index 0000000000000000000000000000000000000000..f65299789bc13376ed06ea2ecd3dea97d37ad56c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02005258693.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a17d5e87fdd2d2a9dbcae822aa5964e9d252b8ddb47932f5121256f8262a4f +size 417836 diff --git a/datasets/openslr_yoruba/yof_03034_02024877653.wav b/datasets/openslr_yoruba/yof_03034_02024877653.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bab5c8a5c2d6642b2fec114889025120200bfb1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02024877653.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012cbbce8c2479c591780bac258abb430f330d0b54e40e7f93f80e35545907e6 +size 270380 diff --git a/datasets/openslr_yoruba/yof_03034_02033899438.wav b/datasets/openslr_yoruba/yof_03034_02033899438.wav new file mode 100644 index 0000000000000000000000000000000000000000..b681f16db75af14402395d4b3271bfd9df9213c4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02033899438.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb77010ec5d1d5f1d25b557957ce088ea7e6b018fafe03460c8c4027f326ba9 +size 401452 diff --git a/datasets/openslr_yoruba/yof_03034_02061554891.wav b/datasets/openslr_yoruba/yof_03034_02061554891.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b7e3c21f5c4d47ef0de1c8278bc8d2437a346c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02061554891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c523bd5a805fec506212f8ac0cd5b41fce1b3fd4e95def20c345759d40c5ce1 +size 368684 diff --git a/datasets/openslr_yoruba/yof_03034_02110641615.wav b/datasets/openslr_yoruba/yof_03034_02110641615.wav new file mode 100644 index 0000000000000000000000000000000000000000..3827dc015857b509616387fbb66b795bb32b3dd1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02110641615.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e29c432b89615637205d0cd1135ef10e935df244712de0a318c67b253909816 +size 253996 diff --git a/datasets/openslr_yoruba/yof_03034_02130000328.wav b/datasets/openslr_yoruba/yof_03034_02130000328.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd722b5627a6fbb045303a443ce4f3829b942500 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02130000328.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a9d19167bbee8a64377378059539bbd81cc1b7cc418b226e7c6eeb08fc9d824 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03034_02139854889.wav b/datasets/openslr_yoruba/yof_03034_02139854889.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3ed17e2efc1c766e16a1c84c70877df7f264ea5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02139854889.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf46cc1ef611739d97f1fa684ad559305c9d148e24b8c3d40b56d2b0a23f55b +size 262188 diff --git a/datasets/openslr_yoruba/yof_03034_02140492495.wav b/datasets/openslr_yoruba/yof_03034_02140492495.wav new file mode 100644 index 0000000000000000000000000000000000000000..165ea291dbce9e993b27d55246aadb86a8916776 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03034_02140492495.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee019a824f17c3b8e2c044b42c913ba44e908af7b952a77abed1a4a81ce53e7 +size 335916 diff --git a/datasets/openslr_yoruba/yof_03349_00000032238.wav b/datasets/openslr_yoruba/yof_03349_00000032238.wav new file mode 100644 index 0000000000000000000000000000000000000000..1181b46351cc46896bfd73e1472f9885b7c61381 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00000032238.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a448428ae69f04b2f64064b49984164b428cc0eea7a9033509fe47cacb375c +size 344108 diff --git a/datasets/openslr_yoruba/yof_03349_00019721518.wav b/datasets/openslr_yoruba/yof_03349_00019721518.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a4113339dbf85932cd4355f40bc4e362569d549 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00019721518.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79883482be9ac23f461e7e0bc72215ba4511b229a70db3a217ae314d2d1b1b0e +size 466988 diff --git a/datasets/openslr_yoruba/yof_03349_00030437901.wav b/datasets/openslr_yoruba/yof_03349_00030437901.wav new file mode 100644 index 0000000000000000000000000000000000000000..0473f3b632015ae223be484293ccd6cca0f29bfa --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00030437901.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdfc10f993c1a878567fef347d5387fe532bd5a7cf6e8c71a59823cfbcf5795 +size 458796 diff --git a/datasets/openslr_yoruba/yof_03349_00034880533.wav b/datasets/openslr_yoruba/yof_03349_00034880533.wav new file mode 100644 index 0000000000000000000000000000000000000000..b428b1e718b3603146158e464fa230dc55a24c68 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00034880533.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5598af13ea08b5f62ce0b06ccb652f084c266bd5a4d8ac30fc6379840585b989 +size 524332 diff --git a/datasets/openslr_yoruba/yof_03349_00045889139.wav b/datasets/openslr_yoruba/yof_03349_00045889139.wav new file mode 100644 index 0000000000000000000000000000000000000000..85b04d474d6929dd0076101b4d8f719248af9b9b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00045889139.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5957649d4a1be8f00a0ad5608518ab6ee0ea4191984c3a27329e8c018d39d252 +size 917548 diff --git a/datasets/openslr_yoruba/yof_03349_00052507588.wav b/datasets/openslr_yoruba/yof_03349_00052507588.wav new file mode 100644 index 0000000000000000000000000000000000000000..608709017a2e96b55f86ab0be20fe33a059d45fd --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00052507588.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77310aed0abb15f767a0744980b660acae0c1c15449167512daa465f469d38b5 +size 434220 diff --git a/datasets/openslr_yoruba/yof_03349_00065717155.wav b/datasets/openslr_yoruba/yof_03349_00065717155.wav new file mode 100644 index 0000000000000000000000000000000000000000..5d37f556912ecee2bff701e83b159c982da3e500 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00065717155.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52fd4ab8fa412165ac003d1b9af7119d0bcd6138a86c9f7bec7192310f3572c8 +size 475180 diff --git a/datasets/openslr_yoruba/yof_03349_00092397148.wav b/datasets/openslr_yoruba/yof_03349_00092397148.wav new file mode 100644 index 0000000000000000000000000000000000000000..80cf2fb9b767e052c251da47f4b804a0b95e2725 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00092397148.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c83a115788b1ac380f94ac9232cf16c32737f2e48c1657b1c60f2fe0e273e0 +size 385068 diff --git a/datasets/openslr_yoruba/yof_03349_00104686266.wav b/datasets/openslr_yoruba/yof_03349_00104686266.wav new file mode 100644 index 0000000000000000000000000000000000000000..37e8444bef51ff92f0d20cfd5330ec854ce7809b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00104686266.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c8b72232b20e705d07fbcd77b72afaf9fea540548ad3bc834f3e2dab3c5485 +size 409644 diff --git a/datasets/openslr_yoruba/yof_03349_00109019121.wav b/datasets/openslr_yoruba/yof_03349_00109019121.wav new file mode 100644 index 0000000000000000000000000000000000000000..83ab74676216b23901f5c699e973c51d6505bbad --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00109019121.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ba376009da1e5aaa10452538639f816a520f3977f5a38bf9c28eb832960e08b +size 434220 diff --git a/datasets/openslr_yoruba/yof_03349_00146932066.wav b/datasets/openslr_yoruba/yof_03349_00146932066.wav new file mode 100644 index 0000000000000000000000000000000000000000..22d7a04c2139aec1d07d7d4fff55f1b61e33dae5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00146932066.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc22925330b6b48fc711e6cbad6cdc64dfda4a59390f24d30c50e869fb4d755 +size 540716 diff --git a/datasets/openslr_yoruba/yof_03349_00163875259.wav b/datasets/openslr_yoruba/yof_03349_00163875259.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2d416c2809ad978bc837f1598543d83745c9149 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00163875259.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f4ef11fea3f01b368636bbae53274fdaef64965499e25dd431c8530a5fa6ac +size 417836 diff --git a/datasets/openslr_yoruba/yof_03349_00170129191.wav b/datasets/openslr_yoruba/yof_03349_00170129191.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3156f7075d1f59543216445fee70be71628d1e7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00170129191.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9858fcf61cd814f750fc903388b503247f78bda8628c7a699e3ef31a60b67e77 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03349_00187906632.wav b/datasets/openslr_yoruba/yof_03349_00187906632.wav new file mode 100644 index 0000000000000000000000000000000000000000..64830a3498ea1c34fb15aa249eaf9374869bbc55 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00187906632.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669bffa40531d9de7753e75aab9a038bb099998cc4b30e2adcdaf9bfc094222e +size 458796 diff --git a/datasets/openslr_yoruba/yof_03349_00251213885.wav b/datasets/openslr_yoruba/yof_03349_00251213885.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c2378783f21c2473c5fac871adebd3aa1de5ca1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00251213885.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab60b088a103ccaef1daeb0ab15e582d594488b2fa97794817564d954613c4d +size 483372 diff --git a/datasets/openslr_yoruba/yof_03349_00295023738.wav b/datasets/openslr_yoruba/yof_03349_00295023738.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e4e22e941f37a0118c4fc5f3d105477942ab29f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00295023738.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79fda55e1a2f26d3f9b16aa63ff56f621830682bcff6de71ac72c4df22b00f8 +size 327724 diff --git a/datasets/openslr_yoruba/yof_03349_00295894179.wav b/datasets/openslr_yoruba/yof_03349_00295894179.wav new file mode 100644 index 0000000000000000000000000000000000000000..807375014e3f179519bec99c299febac77f89137 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00295894179.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7e1251ac45713d7d7c2e6c6134310560e4387bf3c086332832f8f0d4a15986 +size 442412 diff --git a/datasets/openslr_yoruba/yof_03349_00324095070.wav b/datasets/openslr_yoruba/yof_03349_00324095070.wav new file mode 100644 index 0000000000000000000000000000000000000000..74b7cd1b46717f2d7f5dafb387f9d8e3e73a1dbb --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00324095070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c70bca391f8c149383fb9c0b05a3ce1ca5773f6915351c3080491edc859998d +size 475180 diff --git a/datasets/openslr_yoruba/yof_03349_00345672879.wav b/datasets/openslr_yoruba/yof_03349_00345672879.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed65ef8b78539df51c5e4f8e2c653250d3a65670 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00345672879.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a297bbd36088576c694dbccaff98f28d183200792c62630211eebb7c0f6d8eb2 +size 581676 diff --git a/datasets/openslr_yoruba/yof_03349_00376784731.wav b/datasets/openslr_yoruba/yof_03349_00376784731.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc092a2a61e68c115b9c97c2df59800ce87fdb91 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00376784731.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abff0e4da1ef06c1026cef699fc72c59500c63e2d7236f20a8609c21f6acf07a +size 630828 diff --git a/datasets/openslr_yoruba/yof_03349_00403845633.wav b/datasets/openslr_yoruba/yof_03349_00403845633.wav new file mode 100644 index 0000000000000000000000000000000000000000..d90edf4f0fd22860097032eff401149321457538 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00403845633.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835c58c23f57164d8401bbdfc610ae19fd3a654c1fb9742d8ed58330b24d95f3 +size 483372 diff --git a/datasets/openslr_yoruba/yof_03349_00408969313.wav b/datasets/openslr_yoruba/yof_03349_00408969313.wav new file mode 100644 index 0000000000000000000000000000000000000000..182f871c74a7c96bd435cdd195eb801d67305a32 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00408969313.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c3eb90cb2c85488f325ab86131d779fc0e9cf01fabdef7f18b6ac24ae9b6a0 +size 557100 diff --git a/datasets/openslr_yoruba/yof_03349_00453205016.wav b/datasets/openslr_yoruba/yof_03349_00453205016.wav new file mode 100644 index 0000000000000000000000000000000000000000..118b1cdf4c63170908a03b24f10890c2134410f2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00453205016.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7cabdb34d346ba27b337e79c9c497f761704918862ab6e5e19202fb02da6252 +size 524332 diff --git a/datasets/openslr_yoruba/yof_03349_00495976734.wav b/datasets/openslr_yoruba/yof_03349_00495976734.wav new file mode 100644 index 0000000000000000000000000000000000000000..48110a2ee695744ea4729dff104f4e7a549c3b81 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00495976734.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10aa00cfef3a6b45fc17fd293c5c6126e58e89ed6e6ef869225bd88205cf2860 +size 352300 diff --git a/datasets/openslr_yoruba/yof_03349_00504745142.wav b/datasets/openslr_yoruba/yof_03349_00504745142.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3377657862cf7774635a84920a6c168977c199f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00504745142.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b57478bb4c7aea91547ffb98a1c231d7a66c4b44f41159d882fc583c1fff4f +size 598060 diff --git a/datasets/openslr_yoruba/yof_03349_00511312448.wav b/datasets/openslr_yoruba/yof_03349_00511312448.wav new file mode 100644 index 0000000000000000000000000000000000000000..fab81e37d0c5ba9564882913a3a9e84419807d18 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00511312448.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b2331d35f785f48b36b460581971da497ce5d68d77b2e90d1fc59742d9a563 +size 548908 diff --git a/datasets/openslr_yoruba/yof_03349_00520899394.wav b/datasets/openslr_yoruba/yof_03349_00520899394.wav new file mode 100644 index 0000000000000000000000000000000000000000..aab0d77d4348495bd3066e5c7cad5b6d01f81b14 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00520899394.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1982955ea8bb86cfbb38b8d4a26be3c70264cdefbdf4a4ba118acf6ace1fdb4c +size 524332 diff --git a/datasets/openslr_yoruba/yof_03349_00566422663.wav b/datasets/openslr_yoruba/yof_03349_00566422663.wav new file mode 100644 index 0000000000000000000000000000000000000000..a75bb1d4496dd627070212f26b3ed2a27c3c6808 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00566422663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c400230f400e4ddb237528bf77a3a61f89e466e8f251c5f9bb4d6d0cfad5d9 +size 417836 diff --git a/datasets/openslr_yoruba/yof_03349_00579344252.wav b/datasets/openslr_yoruba/yof_03349_00579344252.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4e008f61dd192ac923e4d792579f0b01349695a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00579344252.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c6563ccdf06b748b0e741db39220cd57befb320914cc7c93af8df7058f51d4 +size 409644 diff --git a/datasets/openslr_yoruba/yof_03349_00647645032.wav b/datasets/openslr_yoruba/yof_03349_00647645032.wav new file mode 100644 index 0000000000000000000000000000000000000000..7813df6c514c2eaeb70dbd8f21a4ce964c9a15e0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00647645032.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60f024d101cab5ed066328f7287cee4ad8efc0a87f110e0835bf967defbd619 +size 335916 diff --git a/datasets/openslr_yoruba/yof_03349_00682505549.wav b/datasets/openslr_yoruba/yof_03349_00682505549.wav new file mode 100644 index 0000000000000000000000000000000000000000..45108128cdf07051f4e5c77afc9bdf46d346fa82 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00682505549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a1233f6c11def57c66d275d8af1d5512ffbade27166bbf3628d0270c01587c +size 573484 diff --git a/datasets/openslr_yoruba/yof_03349_00684277122.wav b/datasets/openslr_yoruba/yof_03349_00684277122.wav new file mode 100644 index 0000000000000000000000000000000000000000..68096f4accfd536a8ce7f6f21190f5b433e1652b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00684277122.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662860a825a6d2284ebcc5c4ac5a5fd6c0226b19b2be607334cabbbfc0d70194 +size 524332 diff --git a/datasets/openslr_yoruba/yof_03349_00688281399.wav b/datasets/openslr_yoruba/yof_03349_00688281399.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8de6b39d3dd4aa9b00e9c175d450484824dfb69 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00688281399.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843a48213cb9efa6e1be10ff0c5d7b06efd001de96181385e0418c1807b17839 +size 401452 diff --git a/datasets/openslr_yoruba/yof_03349_00699991876.wav b/datasets/openslr_yoruba/yof_03349_00699991876.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c22850779d6d8d0542c5452c2cee4965e3d1dbc --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00699991876.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e72d9f0f9ae8888dda2e2ee944ab246d6b631e0dce3c584d4ebaad02fd7cbe8e +size 548908 diff --git a/datasets/openslr_yoruba/yof_03349_00711107668.wav b/datasets/openslr_yoruba/yof_03349_00711107668.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a087c5f65d6e6deebac0211ecd17065e66353a8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00711107668.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:031ffb48b231f82906e01fb704fe021a9d160e7012b343a9522c601c8a11dd2c +size 393260 diff --git a/datasets/openslr_yoruba/yof_03349_00713908097.wav b/datasets/openslr_yoruba/yof_03349_00713908097.wav new file mode 100644 index 0000000000000000000000000000000000000000..4299885718687a17a00f7b1552c1eb9a23d93571 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00713908097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af51f9ff59533bc84ac8f10696354d9968e8e8241a7401e3df7943c07a68b291 +size 352300 diff --git a/datasets/openslr_yoruba/yof_03349_00799989042.wav b/datasets/openslr_yoruba/yof_03349_00799989042.wav new file mode 100644 index 0000000000000000000000000000000000000000..3fde8b1344db7129f5cf6484187bf45d6dfd1ba0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00799989042.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38471968ed737cd2902ee2a895d64e456a68cc4d6d110b1a72df55d820bb6fa6 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03349_00807014507.wav b/datasets/openslr_yoruba/yof_03349_00807014507.wav new file mode 100644 index 0000000000000000000000000000000000000000..8783205751348503ee15388bb690a54fe70675f3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00807014507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5609b386692bf7a018cfd7c86369c223c40e81e63ec788312e2cbd71e4a33648 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03349_00891839080.wav b/datasets/openslr_yoruba/yof_03349_00891839080.wav new file mode 100644 index 0000000000000000000000000000000000000000..9335360be039ac317a5a500027f241bfac8b8365 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00891839080.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57ae5b8bde6317a06cd0f3a0474e67816fbc6bec264e7ff5324c0fede33e7c7 +size 909356 diff --git a/datasets/openslr_yoruba/yof_03349_00898841129.wav b/datasets/openslr_yoruba/yof_03349_00898841129.wav new file mode 100644 index 0000000000000000000000000000000000000000..42b8501f4bcdb58b9984270d8203688fd63e5a94 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00898841129.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d25b010358f5436e98fc26e579a13ac7c00ac67994d2aef5b1f71acb4dd441 +size 475180 diff --git a/datasets/openslr_yoruba/yof_03349_00908784246.wav b/datasets/openslr_yoruba/yof_03349_00908784246.wav new file mode 100644 index 0000000000000000000000000000000000000000..53a070403d7479a9bc9ad7130ecb0c47723596cb --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00908784246.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be75e57d37c9a071710bcb0a1d322792727059341b548876a3122cc7c962a8ff +size 294956 diff --git a/datasets/openslr_yoruba/yof_03349_00922269821.wav b/datasets/openslr_yoruba/yof_03349_00922269821.wav new file mode 100644 index 0000000000000000000000000000000000000000..d440df8399cff522eec2c6991c36d3eff848b815 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00922269821.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ffb1d1fec76e203da966aef5ef1d0f1d94022809828904f345500e7a0a8f411 +size 286764 diff --git a/datasets/openslr_yoruba/yof_03349_00932759575.wav b/datasets/openslr_yoruba/yof_03349_00932759575.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b5515a920ba687ee009505b02d2108982352c0f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00932759575.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5faf2807474e4676c6c5ce27adab9ab409d419a2ddd551c9f533a4fbdb21073 +size 417836 diff --git a/datasets/openslr_yoruba/yof_03349_00960224235.wav b/datasets/openslr_yoruba/yof_03349_00960224235.wav new file mode 100644 index 0000000000000000000000000000000000000000..87e56bd079b150ea451a708c6a7cfa5290e71977 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00960224235.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c53a233edf0d092dcdc67c70384b8a6de6054577c9ad39cc049b582b7dd1b0 +size 475180 diff --git a/datasets/openslr_yoruba/yof_03349_00970310332.wav b/datasets/openslr_yoruba/yof_03349_00970310332.wav new file mode 100644 index 0000000000000000000000000000000000000000..8677553f813cfa73e213d319c2700f6f5424dcde --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_00970310332.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1010721c7a2708946e5f75058fdfa65c7360c74febfa99a650d97fb978dd8353 +size 335916 diff --git a/datasets/openslr_yoruba/yof_03349_01003076462.wav b/datasets/openslr_yoruba/yof_03349_01003076462.wav new file mode 100644 index 0000000000000000000000000000000000000000..f18a01e505ef975c8f7f8e9a5b7e5f7a892e175c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01003076462.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dd313eb185e35f26cfdcd33653b74d5658bf45b5d8c31631ecb43ed95bafdd0 +size 802860 diff --git a/datasets/openslr_yoruba/yof_03349_01041962042.wav b/datasets/openslr_yoruba/yof_03349_01041962042.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a8f20021f83b0638b1902421b5c0b89c3e8537f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01041962042.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6b76c7c0387ddec80e0f0927521d73b5624e0580ac9ba0ad1d876cbde25513 +size 540716 diff --git a/datasets/openslr_yoruba/yof_03349_01055360692.wav b/datasets/openslr_yoruba/yof_03349_01055360692.wav new file mode 100644 index 0000000000000000000000000000000000000000..eade685802e36f9c1e17cf3d7991fa1d3d3a2fe5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01055360692.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11433f6154aa220a9032975954932496143924134525a9a2cca4136a8fc1817 +size 409644 diff --git a/datasets/openslr_yoruba/yof_03349_01120154549.wav b/datasets/openslr_yoruba/yof_03349_01120154549.wav new file mode 100644 index 0000000000000000000000000000000000000000..147cf0f00967a11c6bebc8256268de418dd6af73 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01120154549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c3f2317b63e049acf6da3c6e43187b7b2cfe108e0cf56b801fededf8fd13fc +size 598060 diff --git a/datasets/openslr_yoruba/yof_03349_01130496855.wav b/datasets/openslr_yoruba/yof_03349_01130496855.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9f7d7c0c78542bd32120edd4e9560bc4bfae49b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01130496855.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279871cbf37b9d1c642da481fe8503d9f3510cf47e3c30b254e36a5a8ec88510 +size 483372 diff --git a/datasets/openslr_yoruba/yof_03349_01140749304.wav b/datasets/openslr_yoruba/yof_03349_01140749304.wav new file mode 100644 index 0000000000000000000000000000000000000000..9440aa07fbcb6c3a6c7a1f45aa1bfa73f5f37629 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01140749304.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0ab00363e25c0ea9db97fb1f82a98d357a86e5cdac42b57740ea4eccaad3a0 +size 548908 diff --git a/datasets/openslr_yoruba/yof_03349_01156904086.wav b/datasets/openslr_yoruba/yof_03349_01156904086.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d97e4a201923c7e3758fa0651da5812d547f6fd --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01156904086.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e59b34cc307c6236c1088917cd44fb0c968baa581c3809d6d32fe56cc4f95db +size 516140 diff --git a/datasets/openslr_yoruba/yof_03349_01182190308.wav b/datasets/openslr_yoruba/yof_03349_01182190308.wav new file mode 100644 index 0000000000000000000000000000000000000000..9baf2d4269f8cc8360a8271b350c6707b6d209b7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01182190308.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb021d9543cc45345abe4df2e5128be2091c9a6c80cb85bcf1a9a6ac8160f4e +size 401452 diff --git a/datasets/openslr_yoruba/yof_03349_01207699701.wav b/datasets/openslr_yoruba/yof_03349_01207699701.wav new file mode 100644 index 0000000000000000000000000000000000000000..966a5baa5739a3981b995126efe8b3167b351547 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01207699701.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1435307b45a342eee167007c77dc2801cf4b9775489f1ccba9ba2b974c760f7 +size 417836 diff --git a/datasets/openslr_yoruba/yof_03349_01217089714.wav b/datasets/openslr_yoruba/yof_03349_01217089714.wav new file mode 100644 index 0000000000000000000000000000000000000000..d81a9c62d0bc05b126429f8891e14ba265cab2b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01217089714.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b10c2e9cd5c7727feea8fb60e647900e85e337ca1c11ef97372e791358851d +size 557100 diff --git a/datasets/openslr_yoruba/yof_03349_01221045308.wav b/datasets/openslr_yoruba/yof_03349_01221045308.wav new file mode 100644 index 0000000000000000000000000000000000000000..e767efad3ffd4606ab1f733cae5c8f82561f3bec --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01221045308.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b757b8e6048833e90f2a02c76dfb25d5ed5a1a2f96fc3603d3aef9f26656365f +size 737324 diff --git a/datasets/openslr_yoruba/yof_03349_01301743291.wav b/datasets/openslr_yoruba/yof_03349_01301743291.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a645a98fb311ea394e359220b32c2884a902f49 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01301743291.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ddd12e5bc1d0e66ef01dbef45976ae3414990a8a0b0611466d975114292094f +size 270380 diff --git a/datasets/openslr_yoruba/yof_03349_01365950510.wav b/datasets/openslr_yoruba/yof_03349_01365950510.wav new file mode 100644 index 0000000000000000000000000000000000000000..2acf70a0752c54934c5ab5245218ccf39f04c85d --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01365950510.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c80ffed100519effe2c92ea24dc071db0e537ba31b0ea27df934d0c6b6abcf +size 426028 diff --git a/datasets/openslr_yoruba/yof_03349_01383192585.wav b/datasets/openslr_yoruba/yof_03349_01383192585.wav new file mode 100644 index 0000000000000000000000000000000000000000..040efc8e1dcc9285ef5385d2377a7d9fc39f64b7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01383192585.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31aa1c9842adc6a1f09b1e1b3d3da07fee646eaf4aac5e686e5fafa7e04ac978 +size 417836 diff --git a/datasets/openslr_yoruba/yof_03349_01412723244.wav b/datasets/openslr_yoruba/yof_03349_01412723244.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e0f6ec148a4b53d12a7cffd9de8a8662ddbf9ee --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01412723244.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bca51020d11db1a9fd97fbc44ccdc3282aa0427f6e978acbb80cac38bef40558 +size 852012 diff --git a/datasets/openslr_yoruba/yof_03349_01414107079.wav b/datasets/openslr_yoruba/yof_03349_01414107079.wav new file mode 100644 index 0000000000000000000000000000000000000000..fb6fd1fd749fd90eb3c45d3ce48db076d83ca042 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01414107079.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d11681ccef1394ec0a4ec84f9a9e409dc744f0ad4101d99cbf2a45ca67344b +size 507948 diff --git a/datasets/openslr_yoruba/yof_03349_01416029040.wav b/datasets/openslr_yoruba/yof_03349_01416029040.wav new file mode 100644 index 0000000000000000000000000000000000000000..028f4b615e870484db24114dd75c690e09aab5d0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01416029040.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419e2b4f8626f903796134d4e9798cd0648e95b01b8b69eb5997f4f1e9f7a4b5 +size 401452 diff --git a/datasets/openslr_yoruba/yof_03349_01417324168.wav b/datasets/openslr_yoruba/yof_03349_01417324168.wav new file mode 100644 index 0000000000000000000000000000000000000000..67557f508f2604aeae53a5626ba878cb5da0baaf --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01417324168.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df1c64001b065d771f72d8e429436ec22b4723a2b9ea7ca2db527e3548e8124 +size 565292 diff --git a/datasets/openslr_yoruba/yof_03349_01454035176.wav b/datasets/openslr_yoruba/yof_03349_01454035176.wav new file mode 100644 index 0000000000000000000000000000000000000000..e65c169cc45e33124f55fc5ad44dcddd7d8dd7ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01454035176.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ae95e2b4112b6612da31e2965f51158ce1a2b07ecd558c39b8b64538afa71a +size 557100 diff --git a/datasets/openslr_yoruba/yof_03349_01468949885.wav b/datasets/openslr_yoruba/yof_03349_01468949885.wav new file mode 100644 index 0000000000000000000000000000000000000000..31252b319def6a02296d5e4e5d81f3b1a55526cf --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01468949885.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433772a43d3b9ac212453d701f040444b28597d65bfc04a5cbb441bb707b3802 +size 892972 diff --git a/datasets/openslr_yoruba/yof_03349_01469603012.wav b/datasets/openslr_yoruba/yof_03349_01469603012.wav new file mode 100644 index 0000000000000000000000000000000000000000..c17144650d3c6774cdd2a97f60bfc9582e4234d4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01469603012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa37d7c425c4ab750e1c9ba455ef91613516b1ffac3dd77d2656004a90805fc6 +size 548908 diff --git a/datasets/openslr_yoruba/yof_03349_01479800419.wav b/datasets/openslr_yoruba/yof_03349_01479800419.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d4ffe90dbd3e2260138ac03b0a23a44687b4d61 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01479800419.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741df3dc5ee6bbdc17fa1dd4dac7e97fcfe130ac293f14a959fb0342f07a148e +size 483372 diff --git a/datasets/openslr_yoruba/yof_03349_01484091702.wav b/datasets/openslr_yoruba/yof_03349_01484091702.wav new file mode 100644 index 0000000000000000000000000000000000000000..bce048352242eccfd59381e2742defcd0b2fd597 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01484091702.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992885a2a9845b1c1c54d66492654fca692540d8dc33d95d12a43cbf5a0d69c0 +size 507948 diff --git a/datasets/openslr_yoruba/yof_03349_01488219667.wav b/datasets/openslr_yoruba/yof_03349_01488219667.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6e0e4c33ee03f1c0e01ab4d8f721be46d7c10e7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01488219667.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f7f5bebe82f4f59fab1a7bbf8b0f6357844a27ead6cf5f6190e3e9007bd36b +size 483372 diff --git a/datasets/openslr_yoruba/yof_03349_01505782680.wav b/datasets/openslr_yoruba/yof_03349_01505782680.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c20edb32134d0d1bfe8f38639337ac8e5d85d81 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01505782680.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6a1f882580ca52e40d854793451156984a6c936bdea876f898c0e592107fa9 +size 262188 diff --git a/datasets/openslr_yoruba/yof_03349_01530257260.wav b/datasets/openslr_yoruba/yof_03349_01530257260.wav new file mode 100644 index 0000000000000000000000000000000000000000..6215d0cc91b58d7942cd8d95c4b38cc9b8dfb82e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01530257260.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc0aee8568c34cc2cc36968b846a88883a0ec19cb565cfc373721b7fd639887 +size 720940 diff --git a/datasets/openslr_yoruba/yof_03349_01538712004.wav b/datasets/openslr_yoruba/yof_03349_01538712004.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d7072506276ca102ffafe7757c4c6e126a163a8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01538712004.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b34aa76e2481d885cd59b4eee150d8389cc0c49e1781a46954b5932790dcc36 +size 368684 diff --git a/datasets/openslr_yoruba/yof_03349_01541381697.wav b/datasets/openslr_yoruba/yof_03349_01541381697.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7f9891950b573e2e0ae3bdab10a782e906f7798 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01541381697.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30f2624d83525668123ea16a86dcf8f8825ef40cad839c101a38729aa0aa4ec +size 368684 diff --git a/datasets/openslr_yoruba/yof_03349_01606359332.wav b/datasets/openslr_yoruba/yof_03349_01606359332.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c1b549f30d4a4282534fa2ab3fcbe8c637b62bb --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01606359332.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a872208d07de5e90cce603c8bd6cea9ad6f06ea2cdc30087d66fce01ccbc148 +size 630828 diff --git a/datasets/openslr_yoruba/yof_03349_01620641530.wav b/datasets/openslr_yoruba/yof_03349_01620641530.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1b68e08983cd34f3e36d9e76b12651c6c657402 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01620641530.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f35a3255ce9be74078e9504e432bd494d02a2e81b868e089b6500630e4f4c6a +size 868396 diff --git a/datasets/openslr_yoruba/yof_03349_01629558772.wav b/datasets/openslr_yoruba/yof_03349_01629558772.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3910aa7a1a69db48ae70acbae6d4035c14cdfb3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01629558772.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09bcc0394899c8776f10d81bfebc2e4d1c53974f3e326bd10a706f2f6f35231 +size 925740 diff --git a/datasets/openslr_yoruba/yof_03349_01668857659.wav b/datasets/openslr_yoruba/yof_03349_01668857659.wav new file mode 100644 index 0000000000000000000000000000000000000000..88cf7dce00d845ee13733c1bb4959a77482ac58b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01668857659.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4a2e597d63a339e1a372e7ddf50335c912cc39f1bfc3b1e1496576124987db +size 417836 diff --git a/datasets/openslr_yoruba/yof_03349_01673975940.wav b/datasets/openslr_yoruba/yof_03349_01673975940.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a063d4af017098c62115a8b823348a6d094b786 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01673975940.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b8a99d0ec9963ca3482529691e60a763f5fcfd21467d6bf19cd55da221d832 +size 368684 diff --git a/datasets/openslr_yoruba/yof_03349_01690857219.wav b/datasets/openslr_yoruba/yof_03349_01690857219.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a620c62ba4152147ca796fcaebd728b9cf2408c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01690857219.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87bf0b0537cc3ded2029660e5ef2d3f79a7a4620acc6aaae89316e6e72fa9c10 +size 811052 diff --git a/datasets/openslr_yoruba/yof_03349_01706341410.wav b/datasets/openslr_yoruba/yof_03349_01706341410.wav new file mode 100644 index 0000000000000000000000000000000000000000..9edd917d5df73f3bf8766e48a04e5668e6257553 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01706341410.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f44e8eb81200a62406469f393c29e3def48fc70ebffdae9d71a4120402605ac +size 671788 diff --git a/datasets/openslr_yoruba/yof_03349_01724932923.wav b/datasets/openslr_yoruba/yof_03349_01724932923.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a39b85f68fede64dc3821d601f61078f2e1739d --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01724932923.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb4c0fa4ee1b9faf07dd28c735e04979408a881f852960d9a86309eacd987f2 +size 983084 diff --git a/datasets/openslr_yoruba/yof_03349_01726220586.wav b/datasets/openslr_yoruba/yof_03349_01726220586.wav new file mode 100644 index 0000000000000000000000000000000000000000..861e8e01892116d3254f2f46dd18b8553aabccbc --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01726220586.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115f268df4e3c12381c3534c1091f6bbee9551b17d28d6825eba51dfbc8279af +size 548908 diff --git a/datasets/openslr_yoruba/yof_03349_01738541207.wav b/datasets/openslr_yoruba/yof_03349_01738541207.wav new file mode 100644 index 0000000000000000000000000000000000000000..17e2c9fed6c2022f034474b13061bb5a4e5ce91f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01738541207.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983da0328c417230d3bf00cf4bff1fa5a90ccc8a74d85c2649d96b8f3b4a2c0c +size 417836 diff --git a/datasets/openslr_yoruba/yof_03349_01765299691.wav b/datasets/openslr_yoruba/yof_03349_01765299691.wav new file mode 100644 index 0000000000000000000000000000000000000000..93febce8fb134521904d238d321fe44d8aa27380 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01765299691.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020d9b9a568f04332d8ea33dac407aced6794ff37aa89836711eae82abcc103f +size 442412 diff --git a/datasets/openslr_yoruba/yof_03349_01799123763.wav b/datasets/openslr_yoruba/yof_03349_01799123763.wav new file mode 100644 index 0000000000000000000000000000000000000000..8634a6708ed768f18cf4c5720c5f04d8d408fc83 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01799123763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8aa17a78b920e9d00331e4f904f8fe89b31fb76ecf168e372bf3ccb0f6b42a +size 352300 diff --git a/datasets/openslr_yoruba/yof_03349_01818675421.wav b/datasets/openslr_yoruba/yof_03349_01818675421.wav new file mode 100644 index 0000000000000000000000000000000000000000..b2d04bf07290a3a1b5eefe55be9b1e9e82299147 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01818675421.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a67c58fd03b2fb5a42b26972090e88c28a69ee183e4b7c1f55ad4b439a7c60 +size 573484 diff --git a/datasets/openslr_yoruba/yof_03349_01837686344.wav b/datasets/openslr_yoruba/yof_03349_01837686344.wav new file mode 100644 index 0000000000000000000000000000000000000000..e96ba9ab3a8370fae7f214ae64b33dd3e1dfa12e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01837686344.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e35d9c0dffd66f2d455921d688773e67a7c9f8757ff641b09e551797fc7403 +size 630828 diff --git a/datasets/openslr_yoruba/yof_03349_01856331007.wav b/datasets/openslr_yoruba/yof_03349_01856331007.wav new file mode 100644 index 0000000000000000000000000000000000000000..f65784804f1056ad238759a80f2fb1e5fe846c0e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01856331007.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efd3d9c280491523c64e65cbf84060839623bb1c7f9d5284411901764838186 +size 475180 diff --git a/datasets/openslr_yoruba/yof_03349_01858971864.wav b/datasets/openslr_yoruba/yof_03349_01858971864.wav new file mode 100644 index 0000000000000000000000000000000000000000..81f1c7241c02796a83371acda406de51fabd5b4c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01858971864.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9876d8fce2c05630e2861b681b8f18d254b4ab72d4c6b376f9ca1469dd983a43 +size 409644 diff --git a/datasets/openslr_yoruba/yof_03349_01864562994.wav b/datasets/openslr_yoruba/yof_03349_01864562994.wav new file mode 100644 index 0000000000000000000000000000000000000000..a12d98d40099d10c35574d849722be79745b322a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01864562994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5083ee7298548a61b743a44db027a535580a05d7b5d9a3df1578ff5a551b7114 +size 860204 diff --git a/datasets/openslr_yoruba/yof_03349_01901953740.wav b/datasets/openslr_yoruba/yof_03349_01901953740.wav new file mode 100644 index 0000000000000000000000000000000000000000..53d63f74dd67fdb95b18dd6b6a242af910df3e95 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01901953740.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c434d43848243555109588b5e2a27567290e841e6238691ff2b4a6e7df82dc84 +size 892972 diff --git a/datasets/openslr_yoruba/yof_03349_01957803301.wav b/datasets/openslr_yoruba/yof_03349_01957803301.wav new file mode 100644 index 0000000000000000000000000000000000000000..548f56cbf0a7be1eeb4c0a1b78b52f295f076830 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01957803301.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5e9ad7ec51c9a41279259fe62cab16e0cbc13faaada4897ddd249c6f1a1f44 +size 294956 diff --git a/datasets/openslr_yoruba/yof_03349_01964933670.wav b/datasets/openslr_yoruba/yof_03349_01964933670.wav new file mode 100644 index 0000000000000000000000000000000000000000..721e4f9e5a184e27a5477e7cb2a113b28f46d242 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01964933670.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6a1a18b5fe22426fc5f13b6b0ed918c6170118fbadd64600c96281df879963 +size 720940 diff --git a/datasets/openslr_yoruba/yof_03349_01977905254.wav b/datasets/openslr_yoruba/yof_03349_01977905254.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e783efd6bdc19b03fc446bbab98315594d55a23 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_01977905254.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13665efad6d491939bc55958c57e7894ee0d9a1d00695f5746883cbc55d0dfa9 +size 598060 diff --git a/datasets/openslr_yoruba/yof_03349_02009196297.wav b/datasets/openslr_yoruba/yof_03349_02009196297.wav new file mode 100644 index 0000000000000000000000000000000000000000..79fcbfde0fafcfce0e5c8dc7dcd33784b4e918d2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_02009196297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9cdcc7dc0e9d582aa3eab0b26cf63f496c8df295e80c9959118ca490f01b8b +size 327724 diff --git a/datasets/openslr_yoruba/yof_03349_02027858799.wav b/datasets/openslr_yoruba/yof_03349_02027858799.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1a4ba369c8ef1bcf5ff27e535e8b86ae507c89a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_02027858799.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da4229f1883e0766bdef6c08c003e8927140a00a43ea9800262cac09d4eed38 +size 442412 diff --git a/datasets/openslr_yoruba/yof_03349_02039935534.wav b/datasets/openslr_yoruba/yof_03349_02039935534.wav new file mode 100644 index 0000000000000000000000000000000000000000..97e207ee061cf85210a675cfe92b331c0cb14dd0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_02039935534.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fd06a59a079d6e5a4f689081ab21ee79c644f843ccc6f82c26079522cba305 +size 327724 diff --git a/datasets/openslr_yoruba/yof_03349_02044174158.wav b/datasets/openslr_yoruba/yof_03349_02044174158.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8be89fcfb16750471810e8406111adea7748cc6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_02044174158.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af9f6f58b797a9c0d4055f8278fe23b68f509e154a1041a54f659c3d24aec31d +size 434220 diff --git a/datasets/openslr_yoruba/yof_03349_02073147689.wav b/datasets/openslr_yoruba/yof_03349_02073147689.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc24517bca770fa97ef0dcc9fcd61a5f53d41e24 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03349_02073147689.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee998f99d46c190b7b023f55c30285a182ad1e8e9bf534fdd367b7dec90f2b13 +size 679980 diff --git a/datasets/openslr_yoruba/yof_03397_00003671547.wav b/datasets/openslr_yoruba/yof_03397_00003671547.wav new file mode 100644 index 0000000000000000000000000000000000000000..26b5ac20e77bbf0a624f085ac2125f72595c9881 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00003671547.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ab7bf1c8c7246de6cc8a31887731b065456a4c572b72ac488f2ff78a005707 +size 270380 diff --git a/datasets/openslr_yoruba/yof_03397_00061704958.wav b/datasets/openslr_yoruba/yof_03397_00061704958.wav new file mode 100644 index 0000000000000000000000000000000000000000..479aa302126e7effd451ee23a20066ae36062319 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00061704958.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fad53cb5a42f14af950bff221990d49360e893adfe27feb8c844bf283c9e197 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_00067643311.wav b/datasets/openslr_yoruba/yof_03397_00067643311.wav new file mode 100644 index 0000000000000000000000000000000000000000..0792435648c9a6c6879a217ad12d8c27680f1701 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00067643311.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59dac71b3cb87d4445758479e1759f863293cb6535e72387b1423f81b9b61f6 +size 262188 diff --git a/datasets/openslr_yoruba/yof_03397_00077615792.wav b/datasets/openslr_yoruba/yof_03397_00077615792.wav new file mode 100644 index 0000000000000000000000000000000000000000..afe8edd9c3df67ccab589a6127813260fe8704c3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00077615792.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370ba6fc825916ae2b3d1e82ce66b8c37e2c4dca2b42118e61ada71c4a9303c6 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_00093092142.wav b/datasets/openslr_yoruba/yof_03397_00093092142.wav new file mode 100644 index 0000000000000000000000000000000000000000..5df7ad8c4f94dab6a75840d1d2477e7e6c8bb2a9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00093092142.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d019877f5e7dec1d35033b0fa02dcd349c0b25d6ac4966c760be6a0aeb79833 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_00095310712.wav b/datasets/openslr_yoruba/yof_03397_00095310712.wav new file mode 100644 index 0000000000000000000000000000000000000000..a07c27279822193602513e63a87a199e2bdb4789 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00095310712.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f63a47c4bc369e79c2bd1f91ee43fd99c40447b561b8fd514086f0f4165676 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_00128241889.wav b/datasets/openslr_yoruba/yof_03397_00128241889.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e1cb1c6b0ae3bd7103ca4ef1015e58c7c3a4005 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00128241889.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851c6aac0cc278f483b752ae11133f5828dcde919473fbf51f2a44b3d468c664 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03397_00200180185.wav b/datasets/openslr_yoruba/yof_03397_00200180185.wav new file mode 100644 index 0000000000000000000000000000000000000000..da3c83200b09bfa82beeed92ce13b70c4422ea1f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00200180185.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b5e69ca7c1ceacb40ac9c107a4b6c20b1d71422cbc89b94a4e547f3ddd0eb0 +size 499756 diff --git a/datasets/openslr_yoruba/yof_03397_00205083435.wav b/datasets/openslr_yoruba/yof_03397_00205083435.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e0a6e48c4700519971091b04d17a3a2b8aa6417 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00205083435.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969cfaabf86156b90f0ef030dde4b0641b00ad91626d3ddb87ca0a1ee3eccb1b +size 376876 diff --git a/datasets/openslr_yoruba/yof_03397_00215586777.wav b/datasets/openslr_yoruba/yof_03397_00215586777.wav new file mode 100644 index 0000000000000000000000000000000000000000..44176f3aa7f85be6bb9b700a16b7a3bc12aa5f7d --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00215586777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7cd5bdfe02b7808180a050f4f673da8089c1283bbf424ae4d72d5dda8fa76b8 +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_00267961680.wav b/datasets/openslr_yoruba/yof_03397_00267961680.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ec095e71b6b689043a1515467830b1f3d2ebdc5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00267961680.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9ba13d22320115a65cd6c1ac9ae34968a01aeeff66134a5aa7c4dfe5fe3696 +size 335916 diff --git a/datasets/openslr_yoruba/yof_03397_00273694937.wav b/datasets/openslr_yoruba/yof_03397_00273694937.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a07e5b5aa350221b87e56dbd1384e0769a3e8d4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00273694937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8349d947f4c9ea045f993c7ac9cee9207b204dcfadbacc956fcad50090e3ad07 +size 548908 diff --git a/datasets/openslr_yoruba/yof_03397_00295107415.wav b/datasets/openslr_yoruba/yof_03397_00295107415.wav new file mode 100644 index 0000000000000000000000000000000000000000..0fb175b0443bd275106396072498c1584288ff52 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00295107415.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd87d871ebe0ae82b2417b0b732955b46b0f584f57400e85b19ddf5df8387c43 +size 385068 diff --git a/datasets/openslr_yoruba/yof_03397_00309530699.wav b/datasets/openslr_yoruba/yof_03397_00309530699.wav new file mode 100644 index 0000000000000000000000000000000000000000..a5835170f58885c98021def260c060a6439e337c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00309530699.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a07645cbf9351f7e8798690f19c0ec1e05bc992678c12f72b49f6136a53a9c +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_00348474787.wav b/datasets/openslr_yoruba/yof_03397_00348474787.wav new file mode 100644 index 0000000000000000000000000000000000000000..d8228450d7d3ce017a01b9c5460a2b1fb822c703 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00348474787.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18e067b0513cba7f6666cc6bd7451c1d6e2a38ec1f1b6d39bba18266f22839f +size 270380 diff --git a/datasets/openslr_yoruba/yof_03397_00365374581.wav b/datasets/openslr_yoruba/yof_03397_00365374581.wav new file mode 100644 index 0000000000000000000000000000000000000000..db824152d6f0c2f2f41a4e00e159cd266991c7dc --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00365374581.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe6969966e18500910841a11664a4043c522257b384a50151ac26b224bd7019 +size 540716 diff --git a/datasets/openslr_yoruba/yof_03397_00377246441.wav b/datasets/openslr_yoruba/yof_03397_00377246441.wav new file mode 100644 index 0000000000000000000000000000000000000000..c25d3be346ff8d83fc86f7006f31febb626b9b08 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00377246441.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e86a4501638762ed25e978b2c3d2837109e05371af014f288c1e35f25f2893 +size 507948 diff --git a/datasets/openslr_yoruba/yof_03397_00386441079.wav b/datasets/openslr_yoruba/yof_03397_00386441079.wav new file mode 100644 index 0000000000000000000000000000000000000000..a64683b12d0e0db3765c4440d32787b96602caa9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00386441079.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed008e3c903a945d5acddd19715af716e977d16a130a802a8588bed7265fbae4 +size 294956 diff --git a/datasets/openslr_yoruba/yof_03397_00396341299.wav b/datasets/openslr_yoruba/yof_03397_00396341299.wav new file mode 100644 index 0000000000000000000000000000000000000000..17252592c1134d509dc13d4c9011caaeb154a575 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00396341299.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14370f0e6bd496076234df28a42350d9fa68e6600bf6080377f46b5fd81f2bb1 +size 401452 diff --git a/datasets/openslr_yoruba/yof_03397_00429798808.wav b/datasets/openslr_yoruba/yof_03397_00429798808.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e1b64cc811b799cf542a00ca43a4f5ecf786560 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00429798808.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc096cc96c5eb9c4b065d2410ff68eeda8437162b91127b47438d94d4417d41 +size 483372 diff --git a/datasets/openslr_yoruba/yof_03397_00432926679.wav b/datasets/openslr_yoruba/yof_03397_00432926679.wav new file mode 100644 index 0000000000000000000000000000000000000000..c86c79ab8c05d54f0f8eb1307bdfc8cfad8b820a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00432926679.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe687a6b75cc30cae7b3b048057beb3da1db92bf351a83e1890ed80eab0a0f37 +size 491564 diff --git a/datasets/openslr_yoruba/yof_03397_00461398457.wav b/datasets/openslr_yoruba/yof_03397_00461398457.wav new file mode 100644 index 0000000000000000000000000000000000000000..db42c49e12df67d05893e9f10710cf85befcf8e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00461398457.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765c0c264b2f28de501614142890b8b4892f01900f5d2c70fa9105f9737e4682 +size 614444 diff --git a/datasets/openslr_yoruba/yof_03397_00517287199.wav b/datasets/openslr_yoruba/yof_03397_00517287199.wav new file mode 100644 index 0000000000000000000000000000000000000000..a57b33990983c15b61ffc4ae7274fdef7c71a98a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00517287199.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e83a28871e907c024e114389c04f14739a35ce37e7d887a4a3f55616d5b17ba +size 614444 diff --git a/datasets/openslr_yoruba/yof_03397_00576669459.wav b/datasets/openslr_yoruba/yof_03397_00576669459.wav new file mode 100644 index 0000000000000000000000000000000000000000..213289c612e087f8da42bf7de7f97d3a6abd6a83 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00576669459.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c69678612e9cdd927b738852d53ad910d7d49dc893abc26caed9b40b2b1cb2 +size 360492 diff --git a/datasets/openslr_yoruba/yof_03397_00584554648.wav b/datasets/openslr_yoruba/yof_03397_00584554648.wav new file mode 100644 index 0000000000000000000000000000000000000000..830b03ff77a7292970ff8c731bb73cdc45e5dafe --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00584554648.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630cb099dc47d0cd914c6ee7e1794c14d34bd02326c16673933098f136e6e777 +size 352300 diff --git a/datasets/openslr_yoruba/yof_03397_00693722552.wav b/datasets/openslr_yoruba/yof_03397_00693722552.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a2f4ea676379885383ae53ec6b2ba1b8ba9760e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00693722552.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a086cfc946581bd97afc00053593c25dc615b15b59501500b8987f3955591f6f +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_00728103925.wav b/datasets/openslr_yoruba/yof_03397_00728103925.wav new file mode 100644 index 0000000000000000000000000000000000000000..3bfa8dd21988038b29d4c085143822904b4d1984 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00728103925.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b6e4c6acf101fe575f484eaf8116e33aab96810b48f4302cfc508903c74371 +size 245804 diff --git a/datasets/openslr_yoruba/yof_03397_00730282820.wav b/datasets/openslr_yoruba/yof_03397_00730282820.wav new file mode 100644 index 0000000000000000000000000000000000000000..328b9e245c3a465f710a44defe6bd42be3539609 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00730282820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3404aa6d74c95689bfe24bd63be25dcb128e7fb0ff7286915235f41ffc98080 +size 262188 diff --git a/datasets/openslr_yoruba/yof_03397_00732935162.wav b/datasets/openslr_yoruba/yof_03397_00732935162.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa3b61c269026a79babad50f64e88a10de7ed940 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00732935162.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52799a16bc15ea865287970f777173572ec97e722d8b45054186850a0dd57af2 +size 385068 diff --git a/datasets/openslr_yoruba/yof_03397_00754438846.wav b/datasets/openslr_yoruba/yof_03397_00754438846.wav new file mode 100644 index 0000000000000000000000000000000000000000..54d450517eda3ffc7dc1ae3c1d3f50296d4ecee5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00754438846.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926c08f7200d8e88d496c85e812af2429d0ee69dc99f13cff780a0c20c4a24d0 +size 557100 diff --git a/datasets/openslr_yoruba/yof_03397_00760492847.wav b/datasets/openslr_yoruba/yof_03397_00760492847.wav new file mode 100644 index 0000000000000000000000000000000000000000..c710877935ce6a0b8b42af3088182d89b54daaad --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00760492847.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb1d372234a13055d896bfe47830f59fd76d470e8a729f654a4d98f9244ea9a +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_00789135904.wav b/datasets/openslr_yoruba/yof_03397_00789135904.wav new file mode 100644 index 0000000000000000000000000000000000000000..097473c9a681833e3af5a355a6d711fa2899aa61 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00789135904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd68c39d0a45f44a11a27fa078c27b6579d21dbc5f4af05f3ff750942ede28a +size 229420 diff --git a/datasets/openslr_yoruba/yof_03397_00802202432.wav b/datasets/openslr_yoruba/yof_03397_00802202432.wav new file mode 100644 index 0000000000000000000000000000000000000000..62dcfa5bcee124b4e42b1fd7ea04f812911818ea --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00802202432.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6863cd0599c5642a0725f339597deb7521412f250b9575d67de677165969048e +size 335916 diff --git a/datasets/openslr_yoruba/yof_03397_00804328212.wav b/datasets/openslr_yoruba/yof_03397_00804328212.wav new file mode 100644 index 0000000000000000000000000000000000000000..2424dff58b2714e81328e7fcabb0d70a2cafb623 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00804328212.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2da147a10050bb2ba99f91f155af7b3447e8220de715c3b65d313deb8ca8a4e +size 360492 diff --git a/datasets/openslr_yoruba/yof_03397_00812934082.wav b/datasets/openslr_yoruba/yof_03397_00812934082.wav new file mode 100644 index 0000000000000000000000000000000000000000..37d59cba692c4cd153de64e536cec6c5c799b713 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00812934082.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb571d130bff5da6786e146617bb75d166209956c530216c149e1e227226306e +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_00821646554.wav b/datasets/openslr_yoruba/yof_03397_00821646554.wav new file mode 100644 index 0000000000000000000000000000000000000000..513d52de77d5e2d1395788487bd8b1d94c7871d4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00821646554.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81992b885fda24882e79d4e78b1f0f9a5bc907d7563450ad8727a29778f6fcdf +size 319532 diff --git a/datasets/openslr_yoruba/yof_03397_00898278541.wav b/datasets/openslr_yoruba/yof_03397_00898278541.wav new file mode 100644 index 0000000000000000000000000000000000000000..db2364863a8b5c153c9f077f68be7c1b72b48c68 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00898278541.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0bf685fe21ed228947ef66a5c41153991ddb02cdaa1b99fae32c087503c4252 +size 286764 diff --git a/datasets/openslr_yoruba/yof_03397_00919605004.wav b/datasets/openslr_yoruba/yof_03397_00919605004.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8e80d0eaed0b7c31c65439a8542f60cc8c08587 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00919605004.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a07c2ef116a9df6cf250b4b1a2c4d65d1a12a46fd622fe305faed92b16fd5f1 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_00938589490.wav b/datasets/openslr_yoruba/yof_03397_00938589490.wav new file mode 100644 index 0000000000000000000000000000000000000000..d85f11cf16ace90a70f75e94f1baa123b7d05a04 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00938589490.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc15d62e31000d468b0f307a157a83cbacc36810422ef62a91107ee12d4539a +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_00943400655.wav b/datasets/openslr_yoruba/yof_03397_00943400655.wav new file mode 100644 index 0000000000000000000000000000000000000000..af304a36ac34162226f41b6e440a03a9d088d04e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00943400655.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af2068819b287fa687c0f362a3ca0e8776fa8803720435b40878447a82e22ae +size 286764 diff --git a/datasets/openslr_yoruba/yof_03397_00945734245.wav b/datasets/openslr_yoruba/yof_03397_00945734245.wav new file mode 100644 index 0000000000000000000000000000000000000000..7fa5a2d5c8c5ae87b2dea04f9d93844a1dfe1248 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00945734245.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2172d260c42b0d3d04a983d8515ff79f102538735fd0c9ee760953ca0f10e787 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_00963710396.wav b/datasets/openslr_yoruba/yof_03397_00963710396.wav new file mode 100644 index 0000000000000000000000000000000000000000..4f0f00c7854139ad7026a4f22ac1fa5ec1850fa8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00963710396.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7547b5aa77594dffa5732a43fff59451f47ee4af6ea6e1d12d619a279577b3b +size 294956 diff --git a/datasets/openslr_yoruba/yof_03397_00977047253.wav b/datasets/openslr_yoruba/yof_03397_00977047253.wav new file mode 100644 index 0000000000000000000000000000000000000000..1bd63711c87b4b9f2108283dd573825841760bb5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00977047253.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f03344a9a5e5906a9e5d9646a1dbfd5158bd5a9cc198332cc46428e2ac1071 +size 450604 diff --git a/datasets/openslr_yoruba/yof_03397_00983594756.wav b/datasets/openslr_yoruba/yof_03397_00983594756.wav new file mode 100644 index 0000000000000000000000000000000000000000..b97a7037445e2f7e59b8249debcc4ce422ebc874 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00983594756.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8775c92a5e4f6cb4b8c45237fba2005c7baecea99a0d7f56a6c4e9192498b120 +size 352300 diff --git a/datasets/openslr_yoruba/yof_03397_00984741297.wav b/datasets/openslr_yoruba/yof_03397_00984741297.wav new file mode 100644 index 0000000000000000000000000000000000000000..04fdb34c710573c7338eb0e4770b54b4810de2f6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_00984741297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d0cf781cc5a57aa9245b1394ec581c1d47a11a5c51e8e164c5c8f8d468a66d0 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_01034461155.wav b/datasets/openslr_yoruba/yof_03397_01034461155.wav new file mode 100644 index 0000000000000000000000000000000000000000..acd28c98e02b091699a4942ab387f88583b0e442 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01034461155.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97be71f912ff60d3e77a825e0585b83c43cb6ddfd4f2fb1c17d0e061da65b0a6 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_01039447076.wav b/datasets/openslr_yoruba/yof_03397_01039447076.wav new file mode 100644 index 0000000000000000000000000000000000000000..d84c6ba6b0fc0bb34b0de6f22fbfdfd713768527 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01039447076.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c91856d37c150600d127d8131da513c763dadeba4a0d6dc07cbb91115f19b0 +size 286764 diff --git a/datasets/openslr_yoruba/yof_03397_01041264034.wav b/datasets/openslr_yoruba/yof_03397_01041264034.wav new file mode 100644 index 0000000000000000000000000000000000000000..7912732a30601763bb5e9e639b5b48eae1158c92 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01041264034.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40b39cdc14b67e71e2814a03a930c3bac98140c6811cc94ffac8ec6945fd9a4 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03397_01070230204.wav b/datasets/openslr_yoruba/yof_03397_01070230204.wav new file mode 100644 index 0000000000000000000000000000000000000000..a6efd099d07bdf847edebd090fbf6ee21b1f308f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01070230204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e907d659ac74732cad5fce4dc589733d9163e02aa0ca4c35dbdc8f8df3f8406f +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_01078911533.wav b/datasets/openslr_yoruba/yof_03397_01078911533.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8cf4dc1e11884ef14d47ee9513a24bd5aee6fe9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01078911533.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f91b5ad758cd6beff4c6aed38a201ccf488b429715b08ae65cbf2f6511f406 +size 450604 diff --git a/datasets/openslr_yoruba/yof_03397_01091309012.wav b/datasets/openslr_yoruba/yof_03397_01091309012.wav new file mode 100644 index 0000000000000000000000000000000000000000..2edeb849b47d4528763f2f3e2d74ba6963b4d912 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01091309012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b037c5a104cdbf8ca452d987137554ee521915254bc46decde2de1c93ec717a9 +size 262188 diff --git a/datasets/openslr_yoruba/yof_03397_01120133625.wav b/datasets/openslr_yoruba/yof_03397_01120133625.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab624a86bb9863d8a44feeb4fc6c49834209c7cc --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01120133625.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5715267289b836efffb20f51a0f10b4e396b534ec87d97443cf37bbf56532a42 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_01157459252.wav b/datasets/openslr_yoruba/yof_03397_01157459252.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c96f32b775bef1184d2bc3db048ce1df738fc8e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01157459252.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ca6d8534a053e32035ab918ccde16b4f9c193babf18089c788a953be1de02b +size 385068 diff --git a/datasets/openslr_yoruba/yof_03397_01172957501.wav b/datasets/openslr_yoruba/yof_03397_01172957501.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b693e889b95e563fa0e489580d4e914d1745e23 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01172957501.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8455c113cd4c3829c08be3dd009377291b5f82df839065d55f873297f2589e6 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_01181772654.wav b/datasets/openslr_yoruba/yof_03397_01181772654.wav new file mode 100644 index 0000000000000000000000000000000000000000..05ede8123e3200c1db0ebc17c7f24dafcc806bdd --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01181772654.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0aee930d9a80ece25987cfcd8d6f61aaff89b18d7d85d6076fcf6795200888 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_01192744519.wav b/datasets/openslr_yoruba/yof_03397_01192744519.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8999c546406fa74d4a111668f390cf2fbccec08 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01192744519.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c72f029a1c6036adc9d48cbdca6851500bb7fc660bd0f73dee104e0261adfd5a +size 368684 diff --git a/datasets/openslr_yoruba/yof_03397_01216055225.wav b/datasets/openslr_yoruba/yof_03397_01216055225.wav new file mode 100644 index 0000000000000000000000000000000000000000..8471a3fa204760f5eec15e31015818196c52a75a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01216055225.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f20f48afdedbaeb1f6044fa683dec8372c8844bff0ac7dd764f74e356d208e3 +size 245804 diff --git a/datasets/openslr_yoruba/yof_03397_01216171839.wav b/datasets/openslr_yoruba/yof_03397_01216171839.wav new file mode 100644 index 0000000000000000000000000000000000000000..b73ff54531a7b740ec353274fab10e4f4c860a05 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01216171839.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77082e4d6d952d21d5b4fb79c985c1c5226726ebf63490a8cdda06ef3a2d734b +size 614444 diff --git a/datasets/openslr_yoruba/yof_03397_01226004504.wav b/datasets/openslr_yoruba/yof_03397_01226004504.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf5287aed1af8656f0a60eb674089dff044441de --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01226004504.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df866e4c5ddc5633ff1b9488fe4c4a7bd0e752d0c16cd39b95d20afab8cd46a0 +size 294956 diff --git a/datasets/openslr_yoruba/yof_03397_01227075578.wav b/datasets/openslr_yoruba/yof_03397_01227075578.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d51b3b20c3582cd80af7fae55f81c4f83e5b5b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01227075578.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503dab582ac9a792fbddcc5310904e35e70ff9420fc28f0c78bb1e9fa8eb7b5d +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_01228808555.wav b/datasets/openslr_yoruba/yof_03397_01228808555.wav new file mode 100644 index 0000000000000000000000000000000000000000..a02ae50e60d5178db19ef6dfe82563b15f6a353e --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01228808555.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e060500c3e66bc34bb303967dcd88c4c21418d045f7fd89c8ce48eed88cb0a +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_01264108095.wav b/datasets/openslr_yoruba/yof_03397_01264108095.wav new file mode 100644 index 0000000000000000000000000000000000000000..448912acf803dba74514755495460f1b72b53618 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01264108095.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f8ba04b8c8159570d2c7a7dd97438522e416bc8a5290ab15b11c639e2010a7 +size 417836 diff --git a/datasets/openslr_yoruba/yof_03397_01297201903.wav b/datasets/openslr_yoruba/yof_03397_01297201903.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa5696600435778402b91769f0ff36e62bf9121b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01297201903.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018f12a30d65be6b58e2200c5d42cb56c65b1560273cf1f99a29751c296e09fa +size 344108 diff --git a/datasets/openslr_yoruba/yof_03397_01318934933.wav b/datasets/openslr_yoruba/yof_03397_01318934933.wav new file mode 100644 index 0000000000000000000000000000000000000000..866d49470ff511ca37df8eb480903194c28884dc --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01318934933.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c177bd5929828f083a92ab54be488430c22134f7be22df2268abca248f5c3df2 +size 245804 diff --git a/datasets/openslr_yoruba/yof_03397_01325603742.wav b/datasets/openslr_yoruba/yof_03397_01325603742.wav new file mode 100644 index 0000000000000000000000000000000000000000..877dd37a32dec372e5bb0f423ef11624889c5af9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01325603742.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4627f4d3c9576271623154ce8a3d6ca88c5bea7fc61b51cd568abb25d56b6b45 +size 294956 diff --git a/datasets/openslr_yoruba/yof_03397_01332634983.wav b/datasets/openslr_yoruba/yof_03397_01332634983.wav new file mode 100644 index 0000000000000000000000000000000000000000..7130bf1431e005ef10d398d20d2265bf75185218 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01332634983.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d210417a633b59b20999d39ae3ac2708083a61584b8b96d53408656f8c17ea +size 360492 diff --git a/datasets/openslr_yoruba/yof_03397_01352253317.wav b/datasets/openslr_yoruba/yof_03397_01352253317.wav new file mode 100644 index 0000000000000000000000000000000000000000..a98c455837df4990bac20aa1629e7d7b084789c3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01352253317.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce6762cf37ffebf2ecdca45d5d70dbc3e2bb57c4b393efa4c8369b074594338 +size 360492 diff --git a/datasets/openslr_yoruba/yof_03397_01363012169.wav b/datasets/openslr_yoruba/yof_03397_01363012169.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1e4c573ba37d83c2e34700c0dfa4c1f6aedc54f --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01363012169.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e8d34f83da947072c9dd12ff34707fbb16f80c5bebcebc45d95a8cc3f75c6f +size 245804 diff --git a/datasets/openslr_yoruba/yof_03397_01399500688.wav b/datasets/openslr_yoruba/yof_03397_01399500688.wav new file mode 100644 index 0000000000000000000000000000000000000000..a14e01cc8309d5eafb744b5384f38b666769ae34 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01399500688.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553b84a25802ce71c654f0a0c4fb19496be98cad39cd572649d5f1a20ddbc8ed +size 385068 diff --git a/datasets/openslr_yoruba/yof_03397_01401887020.wav b/datasets/openslr_yoruba/yof_03397_01401887020.wav new file mode 100644 index 0000000000000000000000000000000000000000..d963d9188df406c74e905717b1b5caee3725e6ec --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01401887020.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5dde8351e6ad1ad6925fd3591ee9020e69ec6e7400458f4d040f765ebf58f8 +size 557100 diff --git a/datasets/openslr_yoruba/yof_03397_01408050296.wav b/datasets/openslr_yoruba/yof_03397_01408050296.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d10d753cd584228dc9ccf2da21b220f893d747c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01408050296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b35666da5c23f67ce1bcce291c4180cdaefc5f32003b889a3f4af2e0f8dba26 +size 253996 diff --git a/datasets/openslr_yoruba/yof_03397_01410426771.wav b/datasets/openslr_yoruba/yof_03397_01410426771.wav new file mode 100644 index 0000000000000000000000000000000000000000..3fb4cccb0f4958dedf7fa42a693d044ff7bffcea --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01410426771.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673f61e02be731e90a9cb3f2c7e0e27b185df3d318446847945f98a74adbe331 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03397_01443818787.wav b/datasets/openslr_yoruba/yof_03397_01443818787.wav new file mode 100644 index 0000000000000000000000000000000000000000..def49df76d69dec1d30098c1233adc58a6c114d6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01443818787.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bbc5dbd1cd1c58618531e041984f3376962a57c84523efad92513612c033f5 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03397_01499237739.wav b/datasets/openslr_yoruba/yof_03397_01499237739.wav new file mode 100644 index 0000000000000000000000000000000000000000..3938afadda1df092d42854ad67e9b557e41b63e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01499237739.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5372a41361d5481fa3026758c6924748a3fcf1fde69568c8bd79d5ea794af02 +size 409644 diff --git a/datasets/openslr_yoruba/yof_03397_01551855798.wav b/datasets/openslr_yoruba/yof_03397_01551855798.wav new file mode 100644 index 0000000000000000000000000000000000000000..18f1a5036e18dc77e2f7052a11b8df0e700b790a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01551855798.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2744b3a2987e9ff88085d427947c5a7c01112eab96f370eb3186256eaa14328c +size 417836 diff --git a/datasets/openslr_yoruba/yof_03397_01560512845.wav b/datasets/openslr_yoruba/yof_03397_01560512845.wav new file mode 100644 index 0000000000000000000000000000000000000000..309ac3072c02072adaa411454a0177a2e2786f29 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01560512845.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7cdff0d9674e81da2f6927ab8fd880c0d67c58174228b639f4b0a09d78e6c2 +size 327724 diff --git a/datasets/openslr_yoruba/yof_03397_01579483526.wav b/datasets/openslr_yoruba/yof_03397_01579483526.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba606eaf249bc7e8981980188322ec0d11e0f35a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01579483526.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349938f09145b918797f92c79e4b7a48cfe2ae23acbd67d17b6acdeca96c0c3d +size 319532 diff --git a/datasets/openslr_yoruba/yof_03397_01603357489.wav b/datasets/openslr_yoruba/yof_03397_01603357489.wav new file mode 100644 index 0000000000000000000000000000000000000000..b29e774d6e96a80bc6349e2b807f9951e45c2cde --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01603357489.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ce9df4b0aee91b48d058b3f52e9f9c69af83adeedb154300e8f54a7cc3768c +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_01637875819.wav b/datasets/openslr_yoruba/yof_03397_01637875819.wav new file mode 100644 index 0000000000000000000000000000000000000000..79de447465c3188d2943478f8ca00f9437c6522b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01637875819.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1f8aee282df487412efbb9bb92c80b96bdccec034686dc331cb59f72b39009 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03397_01709815471.wav b/datasets/openslr_yoruba/yof_03397_01709815471.wav new file mode 100644 index 0000000000000000000000000000000000000000..e26f37403d4e2289e519d73a9f9b668b21a42bdd --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01709815471.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102ddcf7c7261a7dee3511b8e3d9fa613b7af2f0124201cd65e60907631b5512 +size 237612 diff --git a/datasets/openslr_yoruba/yof_03397_01759774370.wav b/datasets/openslr_yoruba/yof_03397_01759774370.wav new file mode 100644 index 0000000000000000000000000000000000000000..be6ccb7c46ef0e6f18136634f003a738c1364ac1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01759774370.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e2b887fd3b649e4db6447ebef040620657e6f7f5ac54f0f97ef41b98fe7622 +size 335916 diff --git a/datasets/openslr_yoruba/yof_03397_01762543893.wav b/datasets/openslr_yoruba/yof_03397_01762543893.wav new file mode 100644 index 0000000000000000000000000000000000000000..f8b250d7c4f57acbe55947bc8f0679dcb772ce68 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01762543893.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4edf9793cd6c8e953448d3a972363b858781b9b9345204f4f327b38a206d028 +size 253996 diff --git a/datasets/openslr_yoruba/yof_03397_01766137260.wav b/datasets/openslr_yoruba/yof_03397_01766137260.wav new file mode 100644 index 0000000000000000000000000000000000000000..334cb50fc25a2c04cad6327cd75a27bb95e8c1fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01766137260.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa62ba9517a9212c137ac938e5469060a3ccd72ab3e3e638d0d3bfa02f6b06b +size 385068 diff --git a/datasets/openslr_yoruba/yof_03397_01826473343.wav b/datasets/openslr_yoruba/yof_03397_01826473343.wav new file mode 100644 index 0000000000000000000000000000000000000000..418617a7c34b2fa1781933b2d80e7a7ea24e39b3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01826473343.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93586fad5fe56e26bedc03f9e31704c004ad8914ca7f493b95471431eb273302 +size 376876 diff --git a/datasets/openslr_yoruba/yof_03397_01827060981.wav b/datasets/openslr_yoruba/yof_03397_01827060981.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca7e9c6a610b2a6b197231faa4b250763ab7d25c --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01827060981.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e03b5fb341aeaf33d479129b24fbf6ea297c993e7430c219133fa352bce24b +size 688172 diff --git a/datasets/openslr_yoruba/yof_03397_01830149516.wav b/datasets/openslr_yoruba/yof_03397_01830149516.wav new file mode 100644 index 0000000000000000000000000000000000000000..c970d4382dfb5e5cb9f836c166e1e901cdcd1d72 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01830149516.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36684dafb949e1e6b84129e378e9dd70b1dfd335e525923891c455130af2bbe4 +size 327724 diff --git a/datasets/openslr_yoruba/yof_03397_01836749809.wav b/datasets/openslr_yoruba/yof_03397_01836749809.wav new file mode 100644 index 0000000000000000000000000000000000000000..731c3666149c16dce90eb60b4e501cd0db777886 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01836749809.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e59e5469cc4828836104dcf969cf5669ccdb8e901f4398b44a2af4e28e5a8e1 +size 253996 diff --git a/datasets/openslr_yoruba/yof_03397_01839557474.wav b/datasets/openslr_yoruba/yof_03397_01839557474.wav new file mode 100644 index 0000000000000000000000000000000000000000..164b2acab1a356dc9ac819380ba672150daf693a --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01839557474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800df730d7137c54fb80066e489ea65338172fd989865046eba8b31a62b91afb +size 319532 diff --git a/datasets/openslr_yoruba/yof_03397_01872041694.wav b/datasets/openslr_yoruba/yof_03397_01872041694.wav new file mode 100644 index 0000000000000000000000000000000000000000..a31822ad817e3fdda34e414b6b3de38a3fbe1fe9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01872041694.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e219eaedf040db0148f4b609270b854a1dee92ccabc68645aff322b4a9e5e15 +size 270380 diff --git a/datasets/openslr_yoruba/yof_03397_01876359592.wav b/datasets/openslr_yoruba/yof_03397_01876359592.wav new file mode 100644 index 0000000000000000000000000000000000000000..e74f6c22cd4c90bef41632105d01696d4cf8ca95 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01876359592.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1697a13a6424eee1bd874e05bd8d9d3511efe370dd378d9bd265e674ae405b14 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_01885922611.wav b/datasets/openslr_yoruba/yof_03397_01885922611.wav new file mode 100644 index 0000000000000000000000000000000000000000..daa37b365931bc307717c85c35d854a952db6d88 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01885922611.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31bf6470675a482270cb2f10a3949c76c721b8447363dce66fd97436592ad640 +size 360492 diff --git a/datasets/openslr_yoruba/yof_03397_01914060254.wav b/datasets/openslr_yoruba/yof_03397_01914060254.wav new file mode 100644 index 0000000000000000000000000000000000000000..486e356cdee5f111207a2051c135a262d4580148 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01914060254.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d25f4b379bea8ba39f251d67d2a7a700af8e517397f225e9e86f9ed51bfd0b0 +size 278572 diff --git a/datasets/openslr_yoruba/yof_03397_01919220752.wav b/datasets/openslr_yoruba/yof_03397_01919220752.wav new file mode 100644 index 0000000000000000000000000000000000000000..213ed3fa05c43fa3b90129c3dcf03a892660fab2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01919220752.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a264b9eec330dce62781599d5c7cc935b6f2e6ac623e44ed0858962aa1687e +size 253996 diff --git a/datasets/openslr_yoruba/yof_03397_01922915596.wav b/datasets/openslr_yoruba/yof_03397_01922915596.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b77ad1574520813d666403a5dc3264f8f683b13 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01922915596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6d354cd3e3d8752337dc1e254c9cbd16ec4c418f6a99e53bcf04d45a9ca477 +size 270380 diff --git a/datasets/openslr_yoruba/yof_03397_01945747888.wav b/datasets/openslr_yoruba/yof_03397_01945747888.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8e4c6fc6718d68dfee2030a33acb170ea546265 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01945747888.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5c281bf577c481a2595b2a51baa2289ff55df373c9578e432142acad501fb0 +size 344108 diff --git a/datasets/openslr_yoruba/yof_03397_01964701198.wav b/datasets/openslr_yoruba/yof_03397_01964701198.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e28a232f9373b85be232df40a3f6359351e4c3b --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01964701198.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03c3d3bf77cd2077d02e65fb5a20c372d86e8a85a6a197f618de1367017dc976 +size 311340 diff --git a/datasets/openslr_yoruba/yof_03397_01988675719.wav b/datasets/openslr_yoruba/yof_03397_01988675719.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd0e146c25de88e1c45d202939b91db15d2b5984 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_01988675719.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcc67d23366809a42455e738f921d5e19ac8401fb5e42cf7ba24daf558bdf62 +size 294956 diff --git a/datasets/openslr_yoruba/yof_03397_02017342165.wav b/datasets/openslr_yoruba/yof_03397_02017342165.wav new file mode 100644 index 0000000000000000000000000000000000000000..8872798e5dc88930f528b17c7b4f582050a8b6aa --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_02017342165.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a786bd6fe5f56b969ef37794a07da2188e3ab9c3c7b774e580e725b85754c90d +size 303148 diff --git a/datasets/openslr_yoruba/yof_03397_02027479857.wav b/datasets/openslr_yoruba/yof_03397_02027479857.wav new file mode 100644 index 0000000000000000000000000000000000000000..7b19d5d9fd45395fdaff77092dab76e2a2980575 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_02027479857.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e7c74977236423dc8d5d1e4f1efdd136dbc6527b982f29c011c2b7f7697400 +size 286764 diff --git a/datasets/openslr_yoruba/yof_03397_02101545755.wav b/datasets/openslr_yoruba/yof_03397_02101545755.wav new file mode 100644 index 0000000000000000000000000000000000000000..56a1f02c15edb6c481d14c3731674db42bfd7ad8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_03397_02101545755.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e0693494d886216379e564c0eb4a11b5658ed84d75ad995ae225c20bb615a8 +size 417836 diff --git a/datasets/openslr_yoruba/yof_04310_00015303829.wav b/datasets/openslr_yoruba/yof_04310_00015303829.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7ce86c935cde1d98a89f9e2fffbc14b3e42661d --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00015303829.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bd7beae12daa0c40c21e082e1cf9b727cdc27f3e08d0dfdc91d84d78b9e2c7 +size 188460 diff --git a/datasets/openslr_yoruba/yof_04310_00038493315.wav b/datasets/openslr_yoruba/yof_04310_00038493315.wav new file mode 100644 index 0000000000000000000000000000000000000000..95309eb1954bae4ac92819c5cef7f33da01a4f18 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00038493315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44011de58f3d979c3d40f47b9fa63418d835baddfe376158bc512670cb182169 +size 417836 diff --git a/datasets/openslr_yoruba/yof_04310_00056710885.wav b/datasets/openslr_yoruba/yof_04310_00056710885.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc8a8abf0b9af4e11589e9564d575a8a886c64a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00056710885.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe38a0b72cc4e5078707121a653cdad735df5a6175398209536f2d9a9b3d1ed +size 327724 diff --git a/datasets/openslr_yoruba/yof_04310_00056726027.wav b/datasets/openslr_yoruba/yof_04310_00056726027.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a49939742f7e02917c5287c13bfe817c66a064d --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00056726027.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010540d3e1394dabeb5092b478692ae8b2ed2bbac1bd28dd4c075b4009a77df3 +size 262188 diff --git a/datasets/openslr_yoruba/yof_04310_00085429033.wav b/datasets/openslr_yoruba/yof_04310_00085429033.wav new file mode 100644 index 0000000000000000000000000000000000000000..092de43985f0d5bf1f3358aab66d7582dcc1cb2c --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00085429033.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2565b1b63771b745d1b4dc7849417e0a7ae99c556ddb82d11cf0be87176e63 +size 278572 diff --git a/datasets/openslr_yoruba/yof_04310_00097013035.wav b/datasets/openslr_yoruba/yof_04310_00097013035.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5551f125744ffc506326485a70a5a9465e8f4aa --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00097013035.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc90731b59334ca3e265e3bb5e365147a6517a979d3739c333c02c8bdbde911 +size 213036 diff --git a/datasets/openslr_yoruba/yof_04310_00133613790.wav b/datasets/openslr_yoruba/yof_04310_00133613790.wav new file mode 100644 index 0000000000000000000000000000000000000000..6099933be61d487d1e37964e6d09fca6b00dddf4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00133613790.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a2bfc8321efe666b4092da587e140839bb880020ae843f6cabc0e9c8aaf6e6 +size 573484 diff --git a/datasets/openslr_yoruba/yof_04310_00141945315.wav b/datasets/openslr_yoruba/yof_04310_00141945315.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e88ed31f131f42012269bd36c20ab150d53c9c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00141945315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b90c0fa0590972f1c0f08ef7479644cdd233a92f788a6805ed21aaae6adc8b7 +size 376876 diff --git a/datasets/openslr_yoruba/yof_04310_00152557726.wav b/datasets/openslr_yoruba/yof_04310_00152557726.wav new file mode 100644 index 0000000000000000000000000000000000000000..471af5755ace8c4c377644cf2bf198f4cf410273 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00152557726.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e552a2117fccbca7b0b45580a95a3df1b6dcfbad7f6a1046779e5d5ae5840e9a +size 221228 diff --git a/datasets/openslr_yoruba/yof_04310_00160309100.wav b/datasets/openslr_yoruba/yof_04310_00160309100.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b271684e644372c43a76a7fc1ca01a71533c9b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00160309100.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a084d4aac4648accf50e54096b2518003a25f8476deb6e4865338aa897169db +size 622636 diff --git a/datasets/openslr_yoruba/yof_04310_00210476340.wav b/datasets/openslr_yoruba/yof_04310_00210476340.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9605f1ece7c4855bc0bd4d508fd05c77bfda67c --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00210476340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a854bf87b94fa851434a01dd92312759cc8f053bd65b3d57f3163f7f672330 +size 188460 diff --git a/datasets/openslr_yoruba/yof_04310_00232948022.wav b/datasets/openslr_yoruba/yof_04310_00232948022.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e2de9da90452139908d08d1bdf17d030d0b2a42 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00232948022.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51409c3c17a739c29a0d22f0c64eedbc549bed1d4049323165b7d5d1ccc605a3 +size 532524 diff --git a/datasets/openslr_yoruba/yof_04310_00272647249.wav b/datasets/openslr_yoruba/yof_04310_00272647249.wav new file mode 100644 index 0000000000000000000000000000000000000000..501a8a8c401bbb03cdedf771a8f5a176b1558374 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00272647249.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72dc5fd16a8895f90caf0667b4f5486e0e621fe22cbf100801d4bcbf9cce102b +size 180268 diff --git a/datasets/openslr_yoruba/yof_04310_00329742582.wav b/datasets/openslr_yoruba/yof_04310_00329742582.wav new file mode 100644 index 0000000000000000000000000000000000000000..d537c295d1d8d51fb3d1328f82c99ed7e2906430 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00329742582.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6cd641068e420863abd9f4245fa535d3d531f8e24de5c1aae4aff699200110d +size 311340 diff --git a/datasets/openslr_yoruba/yof_04310_00338152807.wav b/datasets/openslr_yoruba/yof_04310_00338152807.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5c0a113ee2def90a2bc2d339794ac31b1a1c6aa --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00338152807.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d66a21ef36b6e8016980ba37ff16ed5c3f876fdf3d8b20a5b37cc89716b8ffe +size 262188 diff --git a/datasets/openslr_yoruba/yof_04310_00338359348.wav b/datasets/openslr_yoruba/yof_04310_00338359348.wav new file mode 100644 index 0000000000000000000000000000000000000000..030ed027025dcf2e17ae1933fdda954d9f30027c --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00338359348.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8233432baa459f7e40dfd2565e9beae8fe9505ab55e1a7e15d831bd7b18cd43b +size 172076 diff --git a/datasets/openslr_yoruba/yof_04310_00353481540.wav b/datasets/openslr_yoruba/yof_04310_00353481540.wav new file mode 100644 index 0000000000000000000000000000000000000000..20a2affb92129baee76511be21b9ba84c7f6d13b --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00353481540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634ba04c313120cf865ff8302f9585cc2346e9e5692edc58d10d64cad718c016 +size 188460 diff --git a/datasets/openslr_yoruba/yof_04310_00378435737.wav b/datasets/openslr_yoruba/yof_04310_00378435737.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd5908e7c02e30dfd04a76cd8958def239240e8c --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00378435737.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccab72c28f0a453b861086c86b2872fa84f892ff3544431c95e384f466b96020 +size 213036 diff --git a/datasets/openslr_yoruba/yof_04310_00407639306.wav b/datasets/openslr_yoruba/yof_04310_00407639306.wav new file mode 100644 index 0000000000000000000000000000000000000000..09783a456c58ea05e210f96967301b48d14ed783 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00407639306.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866965f662322f499ef55c780c232040ea5303217ea7a1667b8cae026422c99f +size 204844 diff --git a/datasets/openslr_yoruba/yof_04310_00408193235.wav b/datasets/openslr_yoruba/yof_04310_00408193235.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd1bdbcd89867d625fd32902024819886c6a6cc6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00408193235.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15bcaaee7e5a6612fde1c55389b762ea4c59f18a41bf9d1bd9b257559c9699d4 +size 270380 diff --git a/datasets/openslr_yoruba/yof_04310_00415876786.wav b/datasets/openslr_yoruba/yof_04310_00415876786.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8b1fa8e28257c353afedf97a97f04e5fda7216b --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00415876786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487dd31d73d5eb0c1656575082ed4d75c91af369f6f1546ff2945c0ed90e6421 +size 196652 diff --git a/datasets/openslr_yoruba/yof_04310_00422116887.wav b/datasets/openslr_yoruba/yof_04310_00422116887.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c0ea9733819d69f6a630d7012483b6e2e2f186a --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00422116887.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a13bce0fa6a91c0819d9d311699fbd26330b65fa30f02a08f78d3ee9fb04bed5 +size 180268 diff --git a/datasets/openslr_yoruba/yof_04310_00433700017.wav b/datasets/openslr_yoruba/yof_04310_00433700017.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f43be1331e24586beb6704089d15089a72fc23a --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00433700017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5462193a0a937b1e11ba8247a2929babaf0a3c2979e576fb45a35859a96938d3 +size 335916 diff --git a/datasets/openslr_yoruba/yof_04310_00458175426.wav b/datasets/openslr_yoruba/yof_04310_00458175426.wav new file mode 100644 index 0000000000000000000000000000000000000000..a46b66fdd6a29ea97626f24a1095ab65dafe5893 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00458175426.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c152f2a83e8dbdecc1f210b00b7e08d03d6a10467aba25d9dcafec2dc34a43 +size 376876 diff --git a/datasets/openslr_yoruba/yof_04310_00469190884.wav b/datasets/openslr_yoruba/yof_04310_00469190884.wav new file mode 100644 index 0000000000000000000000000000000000000000..8eca12e7098b2d826ec043e0289b718cf4a67d98 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00469190884.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78440b8ebf928aeb5a35e3e97065258024da6cc3e994ad16fb6d2739c66bb0a6 +size 278572 diff --git a/datasets/openslr_yoruba/yof_04310_00494778742.wav b/datasets/openslr_yoruba/yof_04310_00494778742.wav new file mode 100644 index 0000000000000000000000000000000000000000..6643bbfc09e47d9b275b43b32ff73da0b3a8bd63 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00494778742.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2bd06754db1eafc02356a0aa0f6ca0abded6fe2f031fb03d2aa33025764f23 +size 294956 diff --git a/datasets/openslr_yoruba/yof_04310_00506487301.wav b/datasets/openslr_yoruba/yof_04310_00506487301.wav new file mode 100644 index 0000000000000000000000000000000000000000..8643c38aff9234e99513e731cba6f2dcdab005b5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00506487301.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6ea35bb9b5e9955b2d6d9be97c77383e2389a0fb9cb4a39cc25f80fce206ba +size 204844 diff --git a/datasets/openslr_yoruba/yof_04310_00516337811.wav b/datasets/openslr_yoruba/yof_04310_00516337811.wav new file mode 100644 index 0000000000000000000000000000000000000000..61abd4f738a766de017f642f26e7b0d93df9fee3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00516337811.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff130c351f9986e1a3e1f2b2280ca35f53451377ba623a4c4d427f5d4cc6e8e3 +size 262188 diff --git a/datasets/openslr_yoruba/yof_04310_00533620836.wav b/datasets/openslr_yoruba/yof_04310_00533620836.wav new file mode 100644 index 0000000000000000000000000000000000000000..79261404a5acbe8bf1f20cdffa5f13288f6b6fe0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00533620836.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014737512faa30e9118768963dfe9425da56567dcfe97580ddf40e48b18a26bf +size 286764 diff --git a/datasets/openslr_yoruba/yof_04310_00556815597.wav b/datasets/openslr_yoruba/yof_04310_00556815597.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f3bb333c2be3cf3461a74935dc2bd81d68ff9de --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00556815597.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e472539b74bd6fd054c97665002a25066bf2e4c005f73f31578b9c1da72ef2 +size 319532 diff --git a/datasets/openslr_yoruba/yof_04310_00570515222.wav b/datasets/openslr_yoruba/yof_04310_00570515222.wav new file mode 100644 index 0000000000000000000000000000000000000000..956142c26461cafdb73432e62392b729a2f7ecba --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00570515222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a6575d74a16dea17530374c4e78deebae4c21a165b7c39687fd334cea14f429 +size 270380 diff --git a/datasets/openslr_yoruba/yof_04310_00614899915.wav b/datasets/openslr_yoruba/yof_04310_00614899915.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bcda078b3d76d6daacfa21fd0cf1714f8043281 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00614899915.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012b143b4162c540d1269a8f6eb3bda0189d83c02c98710a9fa663bacdad6a49 +size 630828 diff --git a/datasets/openslr_yoruba/yof_04310_00630696266.wav b/datasets/openslr_yoruba/yof_04310_00630696266.wav new file mode 100644 index 0000000000000000000000000000000000000000..68b63097f6f770a684bc14437b82b074ade789e1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00630696266.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00c25081e58bc1546b4b6c19f222ca8db21088efbabec377fb754944027f4b3 +size 286764 diff --git a/datasets/openslr_yoruba/yof_04310_00631642349.wav b/datasets/openslr_yoruba/yof_04310_00631642349.wav new file mode 100644 index 0000000000000000000000000000000000000000..1415ab8fcd1dc0704ca8b4e26813120032727373 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00631642349.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8c1a77a3298dc4f816d838e1b1acb043e475b46031aa4b3187cdae467a1821 +size 294956 diff --git a/datasets/openslr_yoruba/yof_04310_00641107401.wav b/datasets/openslr_yoruba/yof_04310_00641107401.wav new file mode 100644 index 0000000000000000000000000000000000000000..d107b1436a80d3bf8114bc1505cbdabd8ff17f84 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00641107401.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f470c3db8f93fee6a15f4b6d5081a6a3679b667fb8558b3a0834c90524654ac +size 221228 diff --git a/datasets/openslr_yoruba/yof_04310_00679911403.wav b/datasets/openslr_yoruba/yof_04310_00679911403.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c727ba6a0ca41cf5fc8748dbb77a204c81a9046 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00679911403.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e87fbcaddfc4ccc5c00b91c132ae45f5272c62e9b54c2faa6e3cd69dbfc7c89 +size 393260 diff --git a/datasets/openslr_yoruba/yof_04310_00700503650.wav b/datasets/openslr_yoruba/yof_04310_00700503650.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d0258a121c6c045d40cd7857191776606518776 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00700503650.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bcd328ee164b774eca5291cabc4e9324c68cff5b3c3720761a31141f83061c5 +size 180268 diff --git a/datasets/openslr_yoruba/yof_04310_00716846595.wav b/datasets/openslr_yoruba/yof_04310_00716846595.wav new file mode 100644 index 0000000000000000000000000000000000000000..95163e763dc3f7e3cfb54abe7496dcbf8855c837 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00716846595.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6082c3fc05294b70d3b1f5636fece216f4a9fa567414a7a8413946dde86faef9 +size 327724 diff --git a/datasets/openslr_yoruba/yof_04310_00774388707.wav b/datasets/openslr_yoruba/yof_04310_00774388707.wav new file mode 100644 index 0000000000000000000000000000000000000000..f947167bd970db3854dedc5b1fecbb0675556698 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00774388707.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0f8b9418c5c240f80bc46006b9a855bb2719f0428d856bf661d2b9e9a7c8b4 +size 270380 diff --git a/datasets/openslr_yoruba/yof_04310_00813235591.wav b/datasets/openslr_yoruba/yof_04310_00813235591.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e3266e44b59ab6c98b49352e03840af6dd24b25 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00813235591.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb57d923d2afb70f4caad570899075de2f8001d6f3fb2e9286072ba213e1c9f +size 426028 diff --git a/datasets/openslr_yoruba/yof_04310_00820007304.wav b/datasets/openslr_yoruba/yof_04310_00820007304.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec071c165f4d85023e7c8c17b300491f48739dcf --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00820007304.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814449e06f7eae71f0964b1f44741ee8cd1dbbc3d1b75313b955abc41db8ce50 +size 237612 diff --git a/datasets/openslr_yoruba/yof_04310_00836554568.wav b/datasets/openslr_yoruba/yof_04310_00836554568.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac75a5417603b425d8c56e7eeda2e7c743d84e15 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00836554568.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573e5357c51849f6a2fd59ed1e49d6f193a998d7fbdc99f8d1f11fc37c0f167f +size 286764 diff --git a/datasets/openslr_yoruba/yof_04310_00843208575.wav b/datasets/openslr_yoruba/yof_04310_00843208575.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5cff3e3d05063cab30b4321ac4565ea939d8ae2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00843208575.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63aac65695983b83b9692f6d3285ec09bae4bc690f4448d4974102069058d2c +size 294956 diff --git a/datasets/openslr_yoruba/yof_04310_00856689436.wav b/datasets/openslr_yoruba/yof_04310_00856689436.wav new file mode 100644 index 0000000000000000000000000000000000000000..094025d9184a8ffd321651c2b133158f3fcfddea --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00856689436.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f57273f5ba412809a480509f3773744741630e32b22fee917eb7116eead6dd +size 245804 diff --git a/datasets/openslr_yoruba/yof_04310_00869740967.wav b/datasets/openslr_yoruba/yof_04310_00869740967.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1a1e3917510c7788bf92abe1ad8d3a02aaf29de --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00869740967.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19818c27eb2c3799cb331e4e16650ad443010d5a9232d3005ee1022fd3b6ba28 +size 327724 diff --git a/datasets/openslr_yoruba/yof_04310_00890520978.wav b/datasets/openslr_yoruba/yof_04310_00890520978.wav new file mode 100644 index 0000000000000000000000000000000000000000..68444a4b6384660a595b8c32cb8bb6e446926e04 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00890520978.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd4f58bf0086e4942785220f0f3b6850c80e08128732491cbf97e9e3ed843d1 +size 237612 diff --git a/datasets/openslr_yoruba/yof_04310_00896135803.wav b/datasets/openslr_yoruba/yof_04310_00896135803.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab1a546d8fc68888b68cc9ce2a9c0a148a741bc6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00896135803.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe82ee027e3ecb575293fe98e428cfcc0a8addeb85e254c785444b96a639c79 +size 204844 diff --git a/datasets/openslr_yoruba/yof_04310_00904609684.wav b/datasets/openslr_yoruba/yof_04310_00904609684.wav new file mode 100644 index 0000000000000000000000000000000000000000..50d5a9fd183333f8bedcb373295c13477f79b6dc --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00904609684.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f00130cce3bf285135fc973a5546f034e068f48683da08af2bb2ea1da34f0da +size 270380 diff --git a/datasets/openslr_yoruba/yof_04310_00905639906.wav b/datasets/openslr_yoruba/yof_04310_00905639906.wav new file mode 100644 index 0000000000000000000000000000000000000000..5215217832efae939afcdd5e915060546e32cf90 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00905639906.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ddd8165c663c64694067cd00eeed591d1c38a936c8417f128374f2fba3a4a94 +size 458796 diff --git a/datasets/openslr_yoruba/yof_04310_00910236777.wav b/datasets/openslr_yoruba/yof_04310_00910236777.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f0fe58f6398de40131e104ff606b1561b8ec06d --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00910236777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fad295701c67a4a04eedddbc36a143303dad554121e1dd045c58a3f39c7bdf +size 352300 diff --git a/datasets/openslr_yoruba/yof_04310_00927801921.wav b/datasets/openslr_yoruba/yof_04310_00927801921.wav new file mode 100644 index 0000000000000000000000000000000000000000..15c8a4cd49968ee042aee976a806cb86b5cd0f7a --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00927801921.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e51ab28034e19c1f1ea1222d282363c1831826e58a8f4f815b62f63808851e +size 311340 diff --git a/datasets/openslr_yoruba/yof_04310_00956240726.wav b/datasets/openslr_yoruba/yof_04310_00956240726.wav new file mode 100644 index 0000000000000000000000000000000000000000..84abc525a47949ac4e20fa7aa41baef0ddbddc8c --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00956240726.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9889326428e5acd7817614b595c9fd3404506d0676364ee029985c09e47bbcf3 +size 229420 diff --git a/datasets/openslr_yoruba/yof_04310_00967300235.wav b/datasets/openslr_yoruba/yof_04310_00967300235.wav new file mode 100644 index 0000000000000000000000000000000000000000..5311f74b7d015b9f9ded7cca6a6f7c82b4093f9d --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00967300235.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7932613040493ada3de0fe2ca698ab0f185a9ce4f47b3a20ed21de4fb7deb6 +size 172076 diff --git a/datasets/openslr_yoruba/yof_04310_00972463444.wav b/datasets/openslr_yoruba/yof_04310_00972463444.wav new file mode 100644 index 0000000000000000000000000000000000000000..80a7a8fdc4b01db365314cd3ebab6fac8e9c4a66 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00972463444.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1164c7778b1608a356b729975324e31f9d85e5b5b5b60406210d3989feee90af +size 352300 diff --git a/datasets/openslr_yoruba/yof_04310_00976803357.wav b/datasets/openslr_yoruba/yof_04310_00976803357.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ebda8cf540da71889c043254ae05a7e05f01a96 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00976803357.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241d3efad53bd9505f5e14cf27268143172cc351731025ab1b7885ffe16e78c9 +size 221228 diff --git a/datasets/openslr_yoruba/yof_04310_00993834189.wav b/datasets/openslr_yoruba/yof_04310_00993834189.wav new file mode 100644 index 0000000000000000000000000000000000000000..130764536e3bfc76884f9d57c7e0cd60cdbb47ee --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_00993834189.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a421c9c5fc63553a5415acc24451cf7c131d62a143dfbbaf1785a1683d24323 +size 417836 diff --git a/datasets/openslr_yoruba/yof_04310_01074793906.wav b/datasets/openslr_yoruba/yof_04310_01074793906.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ba389927814838fe0902fc37f486d8a056983b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01074793906.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c41cf16dc1cb602bca0b8c2c7b81c8b06fd9f696bb635073fe2e8f5ba0df960 +size 213036 diff --git a/datasets/openslr_yoruba/yof_04310_01092361479.wav b/datasets/openslr_yoruba/yof_04310_01092361479.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7ba808a189890a0ad9475386f47b225813bec48 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01092361479.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:535eb85254e52c78dabeb3605e3a2727e6be791f5f7a8338b52a8fca6a5985b5 +size 270380 diff --git a/datasets/openslr_yoruba/yof_04310_01092495014.wav b/datasets/openslr_yoruba/yof_04310_01092495014.wav new file mode 100644 index 0000000000000000000000000000000000000000..d45f53513fc2e52664d2aaf802532a9d1e7cf2e8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01092495014.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fe8ad87693efd7bb66bc32f84c36d8bbb0b4856bb9b44cb9e72c17bf871a0e +size 163884 diff --git a/datasets/openslr_yoruba/yof_04310_01165246344.wav b/datasets/openslr_yoruba/yof_04310_01165246344.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2539212cbb973d7832b3febfdf9a865b46995c3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01165246344.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca716f29a586a2c8eea8bae776504e58becbc8fb7fd4332bf49b34daf89e94fc +size 319532 diff --git a/datasets/openslr_yoruba/yof_04310_01174196641.wav b/datasets/openslr_yoruba/yof_04310_01174196641.wav new file mode 100644 index 0000000000000000000000000000000000000000..c934a26cdd779fba2e1b0a45084ebc5219a46aed --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01174196641.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba94e912276707239dbceca7c06470d8fd3ac4d39156ee4b7f01d6d750e3d797 +size 188460 diff --git a/datasets/openslr_yoruba/yof_04310_01178816266.wav b/datasets/openslr_yoruba/yof_04310_01178816266.wav new file mode 100644 index 0000000000000000000000000000000000000000..848d5812ef81fa62c8d6febe058130d52640881b --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01178816266.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782d99a30bcc78842cf02ee144b4cf493c631988bae4db236ebcb890bdd36834 +size 270380 diff --git a/datasets/openslr_yoruba/yof_04310_01178909646.wav b/datasets/openslr_yoruba/yof_04310_01178909646.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf9a661fa9847b18a426960b303aa1069ef94f94 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01178909646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983819c57c957891baae470ec3ee7a07c1625cef926b3666d04af53efca5f0ce +size 483372 diff --git a/datasets/openslr_yoruba/yof_04310_01200382801.wav b/datasets/openslr_yoruba/yof_04310_01200382801.wav new file mode 100644 index 0000000000000000000000000000000000000000..132a724dbfd08926547d7cd8ee86a95ee6966aed --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01200382801.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6cb10c64b4aa5817f406232aaea1603121c603ab12cb9c3d4fbccb3a71a2e96 +size 278572 diff --git a/datasets/openslr_yoruba/yof_04310_01265456913.wav b/datasets/openslr_yoruba/yof_04310_01265456913.wav new file mode 100644 index 0000000000000000000000000000000000000000..49662da19b654e38992dbc5e335f163bb62b940d --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01265456913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5fc3e86b468cc105be83a830cfafdfaa303c45c1559de854cfbc0d208c4a124 +size 229420 diff --git a/datasets/openslr_yoruba/yof_04310_01284367189.wav b/datasets/openslr_yoruba/yof_04310_01284367189.wav new file mode 100644 index 0000000000000000000000000000000000000000..abcb1a6b21c598d4ec34825c128f7b8b2620f787 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01284367189.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98d7667225196f3560cd41d9bc37cb1a7ed2b4783966adb24fab121832b86a5 +size 327724 diff --git a/datasets/openslr_yoruba/yof_04310_01284468210.wav b/datasets/openslr_yoruba/yof_04310_01284468210.wav new file mode 100644 index 0000000000000000000000000000000000000000..f15fe9655ac8e59cb1b55b4c5d33e4cce4db2684 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01284468210.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29dda04327b8aa428ddf9a602ec164e33e7274e721a667f70432caa919f762cc +size 385068 diff --git a/datasets/openslr_yoruba/yof_04310_01323536617.wav b/datasets/openslr_yoruba/yof_04310_01323536617.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad62dd4ce2c5a391210993c0b0730b62377d6ea7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01323536617.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916113521dc1aac8f611ee5cb3fed1a5c580a777e53623462ae642e734474c8a +size 213036 diff --git a/datasets/openslr_yoruba/yof_04310_01328630448.wav b/datasets/openslr_yoruba/yof_04310_01328630448.wav new file mode 100644 index 0000000000000000000000000000000000000000..b55d0580a4adcd2c8e1f6f858f70f5fc100e19c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01328630448.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28b9386833fdc73f12c07fa613b3ab2a1d03091797755a122a42d5da2bf40ae +size 237612 diff --git a/datasets/openslr_yoruba/yof_04310_01382698134.wav b/datasets/openslr_yoruba/yof_04310_01382698134.wav new file mode 100644 index 0000000000000000000000000000000000000000..f8f8345f612e54490ed056613e39801cde888453 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01382698134.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784d9ac4ce8faa5ec5578fa8a46eec1e3a7bfd05f5dcf90b1bec764c79e9dc06 +size 319532 diff --git a/datasets/openslr_yoruba/yof_04310_01398412702.wav b/datasets/openslr_yoruba/yof_04310_01398412702.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce2dbd13cb8c0ae0acfd8eea05b1ba198ccaae81 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01398412702.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308b766ba41a533c814e844c15de033139057b95f10e0f9fd2ef841e42021dd4 +size 319532 diff --git a/datasets/openslr_yoruba/yof_04310_01425946679.wav b/datasets/openslr_yoruba/yof_04310_01425946679.wav new file mode 100644 index 0000000000000000000000000000000000000000..161723574e809f24f18b827113db264502c6726c --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01425946679.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab08a7fe819fdf80b512ae935a1e26162d3cdb2b6886bd0ae1db077d96b42da +size 245804 diff --git a/datasets/openslr_yoruba/yof_04310_01437630549.wav b/datasets/openslr_yoruba/yof_04310_01437630549.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1c006dd0183048e8b3d130997dd7b150449bff5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01437630549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d486f292003f7ca57dce00304c3eab6578d894c2c755940e18e9177e42dfa92 +size 278572 diff --git a/datasets/openslr_yoruba/yof_04310_01439778715.wav b/datasets/openslr_yoruba/yof_04310_01439778715.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a82c2a35ccf253d7fc08a798c8772f9d576d774 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01439778715.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce697db8920f6d2c65b28d7b89f5a333948156bd38a5d81d373f114b84c0b225 +size 237612 diff --git a/datasets/openslr_yoruba/yof_04310_01466171125.wav b/datasets/openslr_yoruba/yof_04310_01466171125.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9fb00e28354f6fc7261ea6e90e887cdc7d2203a --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01466171125.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a434a15faa8ee4ce130c590a98a460879dee2ee4121e8cb8b0416516c667d0 +size 245804 diff --git a/datasets/openslr_yoruba/yof_04310_01491615865.wav b/datasets/openslr_yoruba/yof_04310_01491615865.wav new file mode 100644 index 0000000000000000000000000000000000000000..e837dbd60f9c165168f49c906f6f15a7bc3dd75e --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01491615865.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df67f4983e6838fbf2e3000c0e797e0879867a6bc4c5cde2c4bfc2f55fdc63a +size 221228 diff --git a/datasets/openslr_yoruba/yof_04310_01542210037.wav b/datasets/openslr_yoruba/yof_04310_01542210037.wav new file mode 100644 index 0000000000000000000000000000000000000000..50ea168ccf5e7ccd9919191bf72726ab8b2eb4b6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01542210037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4b339b99ae650a23d1a8439cb9187de19dc53de7d369fb5f2fbae4a67b38fe +size 409644 diff --git a/datasets/openslr_yoruba/yof_04310_01548013571.wav b/datasets/openslr_yoruba/yof_04310_01548013571.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b16e1fef6bcc4b608c770f7ebb38cd9d5e9f7ce --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01548013571.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6770c414130f85b83df242b524a38366df35891789dbbcf1b55e102d2feb73fc +size 426028 diff --git a/datasets/openslr_yoruba/yof_04310_01551487218.wav b/datasets/openslr_yoruba/yof_04310_01551487218.wav new file mode 100644 index 0000000000000000000000000000000000000000..7919a5b57c5c73a2a3e4633ce3ff8ee329ea77f1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01551487218.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e348e99182f057ed66163e051f659264a5a6a614300ba9101abc535d67a491 +size 311340 diff --git a/datasets/openslr_yoruba/yof_04310_01556491316.wav b/datasets/openslr_yoruba/yof_04310_01556491316.wav new file mode 100644 index 0000000000000000000000000000000000000000..38ac41d4f1ca3661d9ef6897aab530a631893a5f --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01556491316.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee13b25c71f8f7f011796b70668ffa586c4652bb2006f28cd32ae46c72a9c135 +size 188460 diff --git a/datasets/openslr_yoruba/yof_04310_01620390540.wav b/datasets/openslr_yoruba/yof_04310_01620390540.wav new file mode 100644 index 0000000000000000000000000000000000000000..c579003440c672b537697b0f643e99de28a9da10 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01620390540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3a743227ac19507cde524b949073ea3fca4a73bf73198e41606de0d33756ce +size 172076 diff --git a/datasets/openslr_yoruba/yof_04310_01628283664.wav b/datasets/openslr_yoruba/yof_04310_01628283664.wav new file mode 100644 index 0000000000000000000000000000000000000000..f28f7accfe61dab5ffd85efae5413fb4aaf34384 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01628283664.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec9b360df898dc5e7f01ad7c68658c0469db6c6839b13e477e4fc394c3712170 +size 229420 diff --git a/datasets/openslr_yoruba/yof_04310_01628595155.wav b/datasets/openslr_yoruba/yof_04310_01628595155.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa0577723e100a3d5443c13e9b951b2520cb7a1f --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01628595155.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071491dd7fb1458f21ca1c90e27684becdfa73f4eaf07ffb019e3f5befde2118 +size 172076 diff --git a/datasets/openslr_yoruba/yof_04310_01677090287.wav b/datasets/openslr_yoruba/yof_04310_01677090287.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f585f87f5ff2905eefc0d15107aebfd82218587 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01677090287.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bd0db76f91ec798b6674f456c291cc37de70d85f8cbdb02131ce29f0d8fb77 +size 237612 diff --git a/datasets/openslr_yoruba/yof_04310_01719598923.wav b/datasets/openslr_yoruba/yof_04310_01719598923.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce0d6def4a89eb30ca09c6f9f2c98a5e370e3b11 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01719598923.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d041eb89bf8031218fc81c5fd694f2052e73f446a940f9c13da66fdcba9b956 +size 286764 diff --git a/datasets/openslr_yoruba/yof_04310_01728965986.wav b/datasets/openslr_yoruba/yof_04310_01728965986.wav new file mode 100644 index 0000000000000000000000000000000000000000..cee9e34194aadfcaa42b5d65db5f094b4500edd7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01728965986.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10d2d433985d703b4761798f4998230fcb4b7c283aa6d0b752e7b6369e72f29 +size 253996 diff --git a/datasets/openslr_yoruba/yof_04310_01758880915.wav b/datasets/openslr_yoruba/yof_04310_01758880915.wav new file mode 100644 index 0000000000000000000000000000000000000000..686cf6becaa4e342b54866734accebbf9f1402cd --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01758880915.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03c4ff0b35e8d10188d39f50e4497ba2b243db1bae52d01f781ca1f465dc6648 +size 237612 diff --git a/datasets/openslr_yoruba/yof_04310_01762351338.wav b/datasets/openslr_yoruba/yof_04310_01762351338.wav new file mode 100644 index 0000000000000000000000000000000000000000..ee9bcf1e3808393bebc3b5a994032505bfedd6f3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01762351338.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:755f1c3501c02528013d5dcde5c9019cf70f2e055c72dbfc034588ed301096af +size 303148 diff --git a/datasets/openslr_yoruba/yof_04310_01797835069.wav b/datasets/openslr_yoruba/yof_04310_01797835069.wav new file mode 100644 index 0000000000000000000000000000000000000000..18781f510254412eb41ea3e90edb78385008871e --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01797835069.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27e58beb1159fddec4183f1c40b48ca1addabfb5136a7e7d80bd20ee5ed2f65 +size 188460 diff --git a/datasets/openslr_yoruba/yof_04310_01840517382.wav b/datasets/openslr_yoruba/yof_04310_01840517382.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7bb64c9c61c741f29233b3c9de65395718fdd48 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01840517382.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7f7bf4cc8f5e8c853b7ad06ef19e9394f9d491f6b22c8c3e419bbbe64dd0da +size 483372 diff --git a/datasets/openslr_yoruba/yof_04310_01860843961.wav b/datasets/openslr_yoruba/yof_04310_01860843961.wav new file mode 100644 index 0000000000000000000000000000000000000000..450b02def81d7740d84dfeeb7d66d01b644c184d --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01860843961.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c303dd3cb99418f4939a3e692fdc5be28e682aaf5e17f9d24b1076bd8a2f5f +size 360492 diff --git a/datasets/openslr_yoruba/yof_04310_01892910806.wav b/datasets/openslr_yoruba/yof_04310_01892910806.wav new file mode 100644 index 0000000000000000000000000000000000000000..c90a7ff06aaea7f3955b60458a9fb50ac770e632 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01892910806.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9add3f963e55be62da2fd7af4993e143b643bf422add6d80d028b6f6c0d491 +size 278572 diff --git a/datasets/openslr_yoruba/yof_04310_01908374575.wav b/datasets/openslr_yoruba/yof_04310_01908374575.wav new file mode 100644 index 0000000000000000000000000000000000000000..4f8af74d5d149566a02ec1bfc78a1748a0b2b4f5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01908374575.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4458caf68cd34fc6f9939cd1ad4e4e02de02d570a5809e39ea51e7db4f37f9 +size 270380 diff --git a/datasets/openslr_yoruba/yof_04310_01919547339.wav b/datasets/openslr_yoruba/yof_04310_01919547339.wav new file mode 100644 index 0000000000000000000000000000000000000000..b320dc32287c2c00c557ef6a2cf30f25e6e414a2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01919547339.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1749d6297b70a3d66ba4dd00f2ede4842462c14aa4bcd34c4c6e8bb4376ec737 +size 196652 diff --git a/datasets/openslr_yoruba/yof_04310_01932829824.wav b/datasets/openslr_yoruba/yof_04310_01932829824.wav new file mode 100644 index 0000000000000000000000000000000000000000..a987cd51b3bdba3839a869dba7d9b39113b23d63 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01932829824.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb069353cf7f913d5c158cb8b6ccfcf6ff9ef599d71370151fda13d665463eb +size 335916 diff --git a/datasets/openslr_yoruba/yof_04310_01940084104.wav b/datasets/openslr_yoruba/yof_04310_01940084104.wav new file mode 100644 index 0000000000000000000000000000000000000000..a63c245a085b4f4173ff8652aac1cdcfde2a78bd --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01940084104.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443947a4ee027d15409d314155325ab555ad242ddd6e9da0a5b12f50b6cdd112 +size 319532 diff --git a/datasets/openslr_yoruba/yof_04310_01990795795.wav b/datasets/openslr_yoruba/yof_04310_01990795795.wav new file mode 100644 index 0000000000000000000000000000000000000000..283e1fa51c250125831afa56eed34bb83632ce16 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_01990795795.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ea11a8b47a413f2b817b3110e79f0f546c5acc0edef4581384df7a91c9378c +size 335916 diff --git a/datasets/openslr_yoruba/yof_04310_02045852950.wav b/datasets/openslr_yoruba/yof_04310_02045852950.wav new file mode 100644 index 0000000000000000000000000000000000000000..829a3a56df1d5f30b801c6b8e332cf1640b4e783 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_02045852950.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7abe1b0a8403b384266cb0b9061a18d790dbeb18bb7a846ec0c5bbbb5f47a39 +size 286764 diff --git a/datasets/openslr_yoruba/yof_04310_02067836659.wav b/datasets/openslr_yoruba/yof_04310_02067836659.wav new file mode 100644 index 0000000000000000000000000000000000000000..2720f8c05f6d6fb6859e825faf28f1b3223cf5de --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_02067836659.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ef8929541177b5a9b0bbbf50091ceda9888da2eb6071de0cfd7520f0ccb8ae +size 262188 diff --git a/datasets/openslr_yoruba/yof_04310_02135700449.wav b/datasets/openslr_yoruba/yof_04310_02135700449.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f3915c42976facdb77c30f7b2450a1fe56081b6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_04310_02135700449.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17d28c3011d511aceb7580382fa37329e5e3afff14f96f1bc1def18385ec594 +size 466988 diff --git a/datasets/openslr_yoruba/yof_05223_00032169015.wav b/datasets/openslr_yoruba/yof_05223_00032169015.wav new file mode 100644 index 0000000000000000000000000000000000000000..83e03075d718e448d6aacb97a92e7d04b9af221b --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00032169015.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69317c075dffbc1f9d2c13dd75d49d88d344a815082fa7408070bd28fb96aa30 +size 548908 diff --git a/datasets/openslr_yoruba/yof_05223_00056237070.wav b/datasets/openslr_yoruba/yof_05223_00056237070.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd950c3917d70eaf0d7d3996aa96341046bb7cae --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00056237070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:219666ffc385e2e10de616d7dd551756dbea091d847d184448469d74fecf282e +size 499756 diff --git a/datasets/openslr_yoruba/yof_05223_00082147141.wav b/datasets/openslr_yoruba/yof_05223_00082147141.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4535f0ad528c7b60a0f50b0e4e7a23cef72dce8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00082147141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60ab22f92a3666d9ed1539e56d0de30816e1c910b980086c13df493ef4a02ae +size 376876 diff --git a/datasets/openslr_yoruba/yof_05223_00097603716.wav b/datasets/openslr_yoruba/yof_05223_00097603716.wav new file mode 100644 index 0000000000000000000000000000000000000000..40fa379f756de57fafbaa491cb7278bd0f9de4b0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00097603716.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c360f2615cdff0f2382305d198818bf63fd7398f72e9a11d50ee78da3a2ccc5 +size 475180 diff --git a/datasets/openslr_yoruba/yof_05223_00153144305.wav b/datasets/openslr_yoruba/yof_05223_00153144305.wav new file mode 100644 index 0000000000000000000000000000000000000000..40d49f43234dee138114adf9663467b73d3778a4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00153144305.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c4c06aa43598e7c513876bee35d63193e05a72075bc723470acad8f1ce48e8 +size 426028 diff --git a/datasets/openslr_yoruba/yof_05223_00247005512.wav b/datasets/openslr_yoruba/yof_05223_00247005512.wav new file mode 100644 index 0000000000000000000000000000000000000000..7bb79a4b9c1cc79207396be1a464ad312f659a20 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00247005512.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dfb2a3e1ae3239b08869af4901fd4832b59dcd2bc204e6d301537a0655552b1 +size 712748 diff --git a/datasets/openslr_yoruba/yof_05223_00251603303.wav b/datasets/openslr_yoruba/yof_05223_00251603303.wav new file mode 100644 index 0000000000000000000000000000000000000000..69c67c3b91988bd81e002d3cf92effe311bcb38f --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00251603303.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673e2fe17bf7fbb39dcc0a34234039dbfa39aaf3b7db0c87badd0ee5ba96b0d5 +size 409644 diff --git a/datasets/openslr_yoruba/yof_05223_00254808948.wav b/datasets/openslr_yoruba/yof_05223_00254808948.wav new file mode 100644 index 0000000000000000000000000000000000000000..cded646f082a798c4fa105722d9f2319ef22490b --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00254808948.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf108f42ab9ff1a841eadfbf7e14d7be6679ab82c1a755f1bb882b9e31af648 +size 327724 diff --git a/datasets/openslr_yoruba/yof_05223_00256406909.wav b/datasets/openslr_yoruba/yof_05223_00256406909.wav new file mode 100644 index 0000000000000000000000000000000000000000..bcc005902dee23e45c8a5c84d50d425c7d887f6e --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00256406909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da809fdbfed9b5141c8030c3a8eabc4143ee8c719ab0164b0188f6c919e4289 +size 426028 diff --git a/datasets/openslr_yoruba/yof_05223_00290108088.wav b/datasets/openslr_yoruba/yof_05223_00290108088.wav new file mode 100644 index 0000000000000000000000000000000000000000..23973c829a4787e82a59d382c51cd9cccf4c08f4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00290108088.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ae0d81c9a5a789057302d0a031583554c7da0e6ee0d6a3f2d08f435aa4c331 +size 466988 diff --git a/datasets/openslr_yoruba/yof_05223_00296269338.wav b/datasets/openslr_yoruba/yof_05223_00296269338.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9d5b4cf4422b5c3b0a643e99e5f777fead7e9c9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00296269338.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c2a0d3f5a261d96d4c21bd0ea06641e0b1e53bc5084000042c72405888d133 +size 745516 diff --git a/datasets/openslr_yoruba/yof_05223_00298082843.wav b/datasets/openslr_yoruba/yof_05223_00298082843.wav new file mode 100644 index 0000000000000000000000000000000000000000..6dd7b6a5ad473264cf219bbaa77f73d896a0fe0f --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00298082843.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ab746142186e82a085216acf348594bf473d0ac25d6efc26159b91ea7d39e7 +size 540716 diff --git a/datasets/openslr_yoruba/yof_05223_00320595286.wav b/datasets/openslr_yoruba/yof_05223_00320595286.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b837bd917e6578195bd883d18059f98c5f31603 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00320595286.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26e0c6a7b535d8e5a9211775743fbea5d22372d63fca0822edc40b39494d973 +size 524332 diff --git a/datasets/openslr_yoruba/yof_05223_00356816840.wav b/datasets/openslr_yoruba/yof_05223_00356816840.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e7d9d71b6687b4582de443475619fd7e9608a01 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00356816840.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da554586913e84740d751f258440c412f329f913eff0f9d3d180d4f52066fc32 +size 335916 diff --git a/datasets/openslr_yoruba/yof_05223_00363408145.wav b/datasets/openslr_yoruba/yof_05223_00363408145.wav new file mode 100644 index 0000000000000000000000000000000000000000..50c7f8d73e156911dfa5a0e84a104e83159b9ba2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00363408145.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c873a5cb6cf56ac1f4941eabb26ed597deae40c7a0ba69450ffa68317b5c0c6 +size 466988 diff --git a/datasets/openslr_yoruba/yof_05223_00365169300.wav b/datasets/openslr_yoruba/yof_05223_00365169300.wav new file mode 100644 index 0000000000000000000000000000000000000000..018267c99a0d26e84436f8d7aadd720ce7833a44 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00365169300.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fb19f535912b76e9e10e6831c9ead591d8ba525b7f42803ea1795164b8922af +size 409644 diff --git a/datasets/openslr_yoruba/yof_05223_00399396004.wav b/datasets/openslr_yoruba/yof_05223_00399396004.wav new file mode 100644 index 0000000000000000000000000000000000000000..c82252244c4aadbbbc47b77bc4cfa5a1ea3c819a --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00399396004.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9fd0d9342a9752daec1879b2b51538a7a18ed0ee85b22e406db5605c9bc54d3 +size 507948 diff --git a/datasets/openslr_yoruba/yof_05223_00429558761.wav b/datasets/openslr_yoruba/yof_05223_00429558761.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5e581ecfd4e29b0e46129fe0c02bcbb5217bac1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00429558761.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0a9afdcebebdba56d8396d2eb1d6cf85ac13e9e0e8bafcacdef09a3e730101 +size 311340 diff --git a/datasets/openslr_yoruba/yof_05223_00442985240.wav b/datasets/openslr_yoruba/yof_05223_00442985240.wav new file mode 100644 index 0000000000000000000000000000000000000000..253a3d38fd50639e4fbd29859fc6cd6c18124f90 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00442985240.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c896cf4a077e92aa3161e602d8c92815d7421225c435174c2666af6d2ad25323 +size 540716 diff --git a/datasets/openslr_yoruba/yof_05223_00456699097.wav b/datasets/openslr_yoruba/yof_05223_00456699097.wav new file mode 100644 index 0000000000000000000000000000000000000000..a99ddd1e01e2174b794bf9b1de5bb80fd6220420 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00456699097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c144cf6ea83225cf6565e5b70e7acd3c0265754accecf06eaca3561d269ba7b5 +size 581676 diff --git a/datasets/openslr_yoruba/yof_05223_00512519783.wav b/datasets/openslr_yoruba/yof_05223_00512519783.wav new file mode 100644 index 0000000000000000000000000000000000000000..2fd238c916efc5f3238121bbb64fe6b11b27b17d --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00512519783.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f120e746cd738f0eee9ebb53ed4f5f706d6e899f37b456aed56aca38f14adc15 +size 385068 diff --git a/datasets/openslr_yoruba/yof_05223_00533851592.wav b/datasets/openslr_yoruba/yof_05223_00533851592.wav new file mode 100644 index 0000000000000000000000000000000000000000..64bd27b97d8567d93f939d466e788c69fc22e39b --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00533851592.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572cff5b08ccf5cef6056ad8f8412405a91856607137c4dfafca9ec9f8aa7ca2 +size 466988 diff --git a/datasets/openslr_yoruba/yof_05223_00560233785.wav b/datasets/openslr_yoruba/yof_05223_00560233785.wav new file mode 100644 index 0000000000000000000000000000000000000000..1991990fb8607209525a6e927746390eb8cce812 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00560233785.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e67dcc54f45e344bb6110e6aed2f142689b9dffd76bd02b89d00eac0154342 +size 327724 diff --git a/datasets/openslr_yoruba/yof_05223_00566293633.wav b/datasets/openslr_yoruba/yof_05223_00566293633.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b103416d17b566853c49b28dd30fc947911099e --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00566293633.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d45bd86b84dbe362c6625ce63f8696f9931db45fc01128b267d2091a8c86e2 +size 409644 diff --git a/datasets/openslr_yoruba/yof_05223_00567029601.wav b/datasets/openslr_yoruba/yof_05223_00567029601.wav new file mode 100644 index 0000000000000000000000000000000000000000..93ad3f675e6355d55984599b62c87c6abfbbede2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00567029601.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fefcd94a10b8904e10f6c8584086bf74d32f90b93a10b1aa24e53af00979284 +size 761900 diff --git a/datasets/openslr_yoruba/yof_05223_00570210136.wav b/datasets/openslr_yoruba/yof_05223_00570210136.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc626ffcc569f669a780cd572fd32d59d1cc4c83 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00570210136.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da95014858822bbdf789c6ebd59c3e8286d6ba99359bb967b6b613422709e20c +size 688172 diff --git a/datasets/openslr_yoruba/yof_05223_00573679356.wav b/datasets/openslr_yoruba/yof_05223_00573679356.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f3b9c7e529201db8735a18a5eeeea0eb8e9b050 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00573679356.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a71b6df3c52fc291610d9739006488efcfd7d0424a41147d2fc3fc514432d2 +size 548908 diff --git a/datasets/openslr_yoruba/yof_05223_00612526087.wav b/datasets/openslr_yoruba/yof_05223_00612526087.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa9ca17f833c78f1ee28a8aa441ed9e2409871d5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00612526087.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4772a6f0123aa07852f7689f779f85bbfc7d37ea677f19ba39d2049da64d3be +size 647212 diff --git a/datasets/openslr_yoruba/yof_05223_00638657519.wav b/datasets/openslr_yoruba/yof_05223_00638657519.wav new file mode 100644 index 0000000000000000000000000000000000000000..d87fa177cd5e1ceb41bbe1830a7edddc3476f85d --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00638657519.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c17838aee15085427caf0ea454e50f493ca125dbb2fc2a10c40aec87a9f5d8 +size 458796 diff --git a/datasets/openslr_yoruba/yof_05223_00644756392.wav b/datasets/openslr_yoruba/yof_05223_00644756392.wav new file mode 100644 index 0000000000000000000000000000000000000000..58c0802426f265bf734ad30bf97e79b99af65bdd --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00644756392.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c718a389057b1c2ae9b75efa4f37f944da106bb7787ee1d615e73a0fa3baf2 +size 442412 diff --git a/datasets/openslr_yoruba/yof_05223_00672430975.wav b/datasets/openslr_yoruba/yof_05223_00672430975.wav new file mode 100644 index 0000000000000000000000000000000000000000..9005ca0faf6a22938547751df72c2e195fa2a521 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00672430975.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3196efba24723f0aab58d8bf2d0370c529cc73908b52112f31235d4745ca0b9a +size 426028 diff --git a/datasets/openslr_yoruba/yof_05223_00707107553.wav b/datasets/openslr_yoruba/yof_05223_00707107553.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc99f3b0672f981d006e272d03024124256ffedb --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00707107553.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb2fd8ed0d5bb086d64e2c9bf9abca80d5dfdf7b20a56211d9c596ccb248e33 +size 532524 diff --git a/datasets/openslr_yoruba/yof_05223_00729229036.wav b/datasets/openslr_yoruba/yof_05223_00729229036.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0d8a8ebf8c18c894c8cec82198c0c76410c0ccc --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00729229036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7ea9fa2121ce012fd090e39d0d954f312b6331a25399de39a8ff9c9b3b8aac +size 639020 diff --git a/datasets/openslr_yoruba/yof_05223_00884160013.wav b/datasets/openslr_yoruba/yof_05223_00884160013.wav new file mode 100644 index 0000000000000000000000000000000000000000..524b7f41b7cc71ba1cbde23877102bbcfcc57322 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00884160013.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e44aa30b002afd99b6ccf5facc631c3bbba7ce4b29ced44bee442e54271499f +size 491564 diff --git a/datasets/openslr_yoruba/yof_05223_00893102907.wav b/datasets/openslr_yoruba/yof_05223_00893102907.wav new file mode 100644 index 0000000000000000000000000000000000000000..a045b45b8469be9a90869ecf279031eb312692b0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00893102907.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54158820f59069a5f51714ce60ebd5ce452e95d3b05f8bbad7c77222cf7ffab3 +size 729132 diff --git a/datasets/openslr_yoruba/yof_05223_00902017986.wav b/datasets/openslr_yoruba/yof_05223_00902017986.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9bcadc6b34679cbb8e4cc9f48cb94f2f8dd6c5d --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00902017986.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7ce7fbad05db887f5eeb802c1e8b01b8334daa67dc15474225dd3188a0dd2c +size 581676 diff --git a/datasets/openslr_yoruba/yof_05223_00920511538.wav b/datasets/openslr_yoruba/yof_05223_00920511538.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec32af32e6f86c266146ab080720aec9b2dbf4b4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00920511538.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b1eb93acc10fd40dfada1b87a898a68af8117a27ab03fd4edb445fb29037a5 +size 483372 diff --git a/datasets/openslr_yoruba/yof_05223_00950675915.wav b/datasets/openslr_yoruba/yof_05223_00950675915.wav new file mode 100644 index 0000000000000000000000000000000000000000..3930a51f01229b5f55897a369a2dca47e74bb021 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00950675915.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f596150ac3eafa3076a559444b1e83f7628c4af0a3b01fa6dca51616e4e04f39 +size 630828 diff --git a/datasets/openslr_yoruba/yof_05223_00986197833.wav b/datasets/openslr_yoruba/yof_05223_00986197833.wav new file mode 100644 index 0000000000000000000000000000000000000000..9dc948205aed452de5e46db54a47c6deb987f74d --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_00986197833.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93987452e2083c3bef59d9820151ffbae9ff2395041156b92f05ddb4bbf2b86e +size 442412 diff --git a/datasets/openslr_yoruba/yof_05223_01011084610.wav b/datasets/openslr_yoruba/yof_05223_01011084610.wav new file mode 100644 index 0000000000000000000000000000000000000000..359bd14484b8d9568ea9d9a046b091ca15d06154 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01011084610.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc7e24ebd2acc3bbf9d338d2b5dc04d0ab1f6000bf683d50ed5642c3b0de8e6 +size 368684 diff --git a/datasets/openslr_yoruba/yof_05223_01066585617.wav b/datasets/openslr_yoruba/yof_05223_01066585617.wav new file mode 100644 index 0000000000000000000000000000000000000000..50136648511210e1d5bb8e143ac60a6f38f864eb --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01066585617.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c014a5de030801c698a20854c9a4dc40712edf713b93844d3fbb1f64cbf4d672 +size 311340 diff --git a/datasets/openslr_yoruba/yof_05223_01079017715.wav b/datasets/openslr_yoruba/yof_05223_01079017715.wav new file mode 100644 index 0000000000000000000000000000000000000000..1b4b05aabeb2945bb3abe49947371e8829df2091 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01079017715.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2af895998b468fec49559cd1909c4fc19b3bc789f19636583ac36dcf71b4e3 +size 606252 diff --git a/datasets/openslr_yoruba/yof_05223_01151524736.wav b/datasets/openslr_yoruba/yof_05223_01151524736.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9f8e6126d973e280060acc5b65575c420088926 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01151524736.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd867b083df3ae4764cf18462de084af21ce9373bcd42195d94d0c8ec414f8f +size 458796 diff --git a/datasets/openslr_yoruba/yof_05223_01159658335.wav b/datasets/openslr_yoruba/yof_05223_01159658335.wav new file mode 100644 index 0000000000000000000000000000000000000000..9bcb56a1cd341643560043c09219c9a51d209da1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01159658335.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03ccbcb5b8a9dc61c3f1823724b0a501f55b66481c943045fc9a02439df61da8 +size 524332 diff --git a/datasets/openslr_yoruba/yof_05223_01182310093.wav b/datasets/openslr_yoruba/yof_05223_01182310093.wav new file mode 100644 index 0000000000000000000000000000000000000000..50c83755368d3ff89c0451d17b5b948a242e5860 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01182310093.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acc757c072b684b88c410075ae6f7b04eb437dd97b368135e3ceb6dc4c0aada6 +size 393260 diff --git a/datasets/openslr_yoruba/yof_05223_01186842869.wav b/datasets/openslr_yoruba/yof_05223_01186842869.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc61d18863839793d2f56a6fa49ea5f8392aa674 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01186842869.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2f6ef42290104420f586d8632c37ede7b72f122d8c361f3dcff7e9d4239229 +size 614444 diff --git a/datasets/openslr_yoruba/yof_05223_01215869368.wav b/datasets/openslr_yoruba/yof_05223_01215869368.wav new file mode 100644 index 0000000000000000000000000000000000000000..87c183b2d3bd3243f0f7b5cde5752ee3ac1e9063 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01215869368.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d5f52ca6b44b19a639f2f21aeb43904f7361a093243c0ee62c2aca237b1253 +size 704556 diff --git a/datasets/openslr_yoruba/yof_05223_01265600293.wav b/datasets/openslr_yoruba/yof_05223_01265600293.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffcc78807e09b21d1e03b83154f5f207a983da25 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01265600293.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ff4eefd13c12eb45f29c3daf358ff4f07308f0de3745efad7589695999db02 +size 344108 diff --git a/datasets/openslr_yoruba/yof_05223_01271590618.wav b/datasets/openslr_yoruba/yof_05223_01271590618.wav new file mode 100644 index 0000000000000000000000000000000000000000..401fc8fc4b13ba19cee7f171743667d26e993781 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01271590618.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d423234186dc6be85a616e0d2dc706895161a6f455cac5037f0afdc34f217e +size 417836 diff --git a/datasets/openslr_yoruba/yof_05223_01328846423.wav b/datasets/openslr_yoruba/yof_05223_01328846423.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd781f5452a19759e019a8525bd2ab11d737ba85 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01328846423.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac0558984015f5405ba0fb75264997e1056cd1948b0d229548eea71206ff61d +size 401452 diff --git a/datasets/openslr_yoruba/yof_05223_01345280705.wav b/datasets/openslr_yoruba/yof_05223_01345280705.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5ecd6b26b37de39ef19701d717fd6ea14f0cf2c --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01345280705.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1cae74fd60fcd5948129f12486434ed567be88fd0e27552c5849652dffc1c6 +size 434220 diff --git a/datasets/openslr_yoruba/yof_05223_01368956376.wav b/datasets/openslr_yoruba/yof_05223_01368956376.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2b6f66de03a24843e20ff860d40c92678940be1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01368956376.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949035e16ef438957107b14c6aabdcf23e76e915ca775ff6b7516e3d700a59c5 +size 516140 diff --git a/datasets/openslr_yoruba/yof_05223_01377045141.wav b/datasets/openslr_yoruba/yof_05223_01377045141.wav new file mode 100644 index 0000000000000000000000000000000000000000..eadd734728c4eaf81749d2ac23aec02b670a6c9b --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01377045141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd0201a4e8ef0d97cfaf215073e28e729e1ce2dc0b495a9f1b9483c7351fbd7 +size 327724 diff --git a/datasets/openslr_yoruba/yof_05223_01387174438.wav b/datasets/openslr_yoruba/yof_05223_01387174438.wav new file mode 100644 index 0000000000000000000000000000000000000000..896e7b469014e0b572477fedf8176ed5fee0cee5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01387174438.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b59c2ecb165cea68bc91001e7faef274fa86ed8464cdd06935861a067b1b841 +size 450604 diff --git a/datasets/openslr_yoruba/yof_05223_01388550871.wav b/datasets/openslr_yoruba/yof_05223_01388550871.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3e4502296d6e0fa5a0e71fbffee0cdd315c1e08 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01388550871.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30b59baa79f9eb5e981600b9b39db48a302b533a79f426cd749fe53710437d4 +size 434220 diff --git a/datasets/openslr_yoruba/yof_05223_01406099113.wav b/datasets/openslr_yoruba/yof_05223_01406099113.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e03fa66594b6f78883a5641d4738b9b5869c2ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01406099113.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6b59f52d0a8350fa19f84e0f4303bd90a4ffb526e8c9df5551302fca94aca5 +size 434220 diff --git a/datasets/openslr_yoruba/yof_05223_01431473872.wav b/datasets/openslr_yoruba/yof_05223_01431473872.wav new file mode 100644 index 0000000000000000000000000000000000000000..754fa95fbdf3a555256a3f0f62a7e7a9309d1e46 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01431473872.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a27b9386966c36153130fdc772e6eefab58eb13d0075a02e2a174d5f2dcddb71 +size 458796 diff --git a/datasets/openslr_yoruba/yof_05223_01432045584.wav b/datasets/openslr_yoruba/yof_05223_01432045584.wav new file mode 100644 index 0000000000000000000000000000000000000000..58721dd6d6ef3ab79d4170a546f5a803fcc59d21 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01432045584.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829e4088039e0eb8b3f93496d4e720860b104d1c947ea8ff632cbacd0694e488 +size 704556 diff --git a/datasets/openslr_yoruba/yof_05223_01438796130.wav b/datasets/openslr_yoruba/yof_05223_01438796130.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ce12b76b1231139d71296250090e9815b89cd19 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01438796130.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f013bbce4fbba8f70054995f2403d0e47ef02cf728012fe2182fb1a9f91679 +size 434220 diff --git a/datasets/openslr_yoruba/yof_05223_01497686619.wav b/datasets/openslr_yoruba/yof_05223_01497686619.wav new file mode 100644 index 0000000000000000000000000000000000000000..d46279912b748999873ad4db073fb3f2408fd305 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01497686619.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cfc8c3cc2bb936ca26695b4bcc3e8192b589cfecfc3ee475d4584ff31d7404a +size 458796 diff --git a/datasets/openslr_yoruba/yof_05223_01505324070.wav b/datasets/openslr_yoruba/yof_05223_01505324070.wav new file mode 100644 index 0000000000000000000000000000000000000000..318412d450a7dbae832908bee8598a5c4edb06f7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01505324070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a66005cf7c70e893beca1ef38d2ce344986474f1c46e28ce94cd2b88954c1c2 +size 426028 diff --git a/datasets/openslr_yoruba/yof_05223_01516609173.wav b/datasets/openslr_yoruba/yof_05223_01516609173.wav new file mode 100644 index 0000000000000000000000000000000000000000..f36784cbb92e151661ad06dcabcf368dfb33602f --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01516609173.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f08fbbbfb4a20c5af6c4da0912802f89bb73b925e1419e20db0fd900fb5624b +size 385068 diff --git a/datasets/openslr_yoruba/yof_05223_01517740488.wav b/datasets/openslr_yoruba/yof_05223_01517740488.wav new file mode 100644 index 0000000000000000000000000000000000000000..f13148b1bf53bb7e9e4fd29f5cd1f33f46008531 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01517740488.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c79182d4c6b36dcdbba86040d5dcf234660c5ec4c339b00cf591c2bcedbfdd9 +size 426028 diff --git a/datasets/openslr_yoruba/yof_05223_01535618206.wav b/datasets/openslr_yoruba/yof_05223_01535618206.wav new file mode 100644 index 0000000000000000000000000000000000000000..15ddc287e6be3cdfd94b498a39b4985072e75383 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01535618206.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01170c59900a358c78dfa965938f604530d460b169768361b2c2e8acd273d6e8 +size 499756 diff --git a/datasets/openslr_yoruba/yof_05223_01542302581.wav b/datasets/openslr_yoruba/yof_05223_01542302581.wav new file mode 100644 index 0000000000000000000000000000000000000000..acb91c9630612e5f291288388070324785c7b881 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01542302581.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48619944312ed3a23ed4f552f9170ccdb3b666114e68449088eba9f1a0d41a79 +size 532524 diff --git a/datasets/openslr_yoruba/yof_05223_01568584354.wav b/datasets/openslr_yoruba/yof_05223_01568584354.wav new file mode 100644 index 0000000000000000000000000000000000000000..6c1c73df1b81246325b84e2ce505c27ab6d6ebcf --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01568584354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f5ab4857a9f08da6ca1f353f3c7731f7c0ad925ba469c8ace702aade6fabd6 +size 532524 diff --git a/datasets/openslr_yoruba/yof_05223_01583517800.wav b/datasets/openslr_yoruba/yof_05223_01583517800.wav new file mode 100644 index 0000000000000000000000000000000000000000..5acfcf07f732022f3ddb8d6daea226cc8dc6443b --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01583517800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a9d82a07f594799a55d54b01ec7f4f1a5f362e84137bca188eb6ba6825417a +size 426028 diff --git a/datasets/openslr_yoruba/yof_05223_01594866710.wav b/datasets/openslr_yoruba/yof_05223_01594866710.wav new file mode 100644 index 0000000000000000000000000000000000000000..4be0133292a3b86e5b6cd796bac2c2c2a3c72859 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01594866710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2605cf79289e4c923e12e8c04cc43ae52c4d2a1d3f2ab2e3fd13a9c5f298304 +size 507948 diff --git a/datasets/openslr_yoruba/yof_05223_01602819783.wav b/datasets/openslr_yoruba/yof_05223_01602819783.wav new file mode 100644 index 0000000000000000000000000000000000000000..ee53ed234e377e56ce4ab69b8bf513052defa399 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01602819783.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb2441caa56480238341e35949863dfe6dc45963a7e3bfe35fd4040a4d7fab2 +size 696364 diff --git a/datasets/openslr_yoruba/yof_05223_01673220954.wav b/datasets/openslr_yoruba/yof_05223_01673220954.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c34cf3c6ffaad690978220178ffd974f6a75594 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01673220954.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e31dfbcedab0831a09350bfd633f141830a8ac1c37aa7869fe3f10e4aa332582 +size 835628 diff --git a/datasets/openslr_yoruba/yof_05223_01681822112.wav b/datasets/openslr_yoruba/yof_05223_01681822112.wav new file mode 100644 index 0000000000000000000000000000000000000000..1cbd8839ff1979870bb62ce57b2bda96c38eb9e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01681822112.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55898854354a5806bf1d920d72283e05c64a4fac000064859c65aad4d4ed09f5 +size 606252 diff --git a/datasets/openslr_yoruba/yof_05223_01694466211.wav b/datasets/openslr_yoruba/yof_05223_01694466211.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ac39ef4847e1564129cb2ddff1198d510394c29 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01694466211.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20640a03075aeedc005da60295e4fc3f506ba614ec6bcee46aebcaeda3ac1151 +size 548908 diff --git a/datasets/openslr_yoruba/yof_05223_01728483868.wav b/datasets/openslr_yoruba/yof_05223_01728483868.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cb6d17004180c099ef760785c7384fa2e9777fe --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01728483868.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12d36780723ad7349b90df94148fe984ba36e1a1a6ae0652aaddba4978c6e8a +size 655404 diff --git a/datasets/openslr_yoruba/yof_05223_01728592727.wav b/datasets/openslr_yoruba/yof_05223_01728592727.wav new file mode 100644 index 0000000000000000000000000000000000000000..b48866c45655c9ab7fbb03d44d26567dbdf44790 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01728592727.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a5b4b0ff70b16c51a0e5a54be0fd8bd19decdd8662ab34ffeaa818671521d7 +size 852012 diff --git a/datasets/openslr_yoruba/yof_05223_01730150498.wav b/datasets/openslr_yoruba/yof_05223_01730150498.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f0239bf63c7eae8951b90297a28baaabe2b44d9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01730150498.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:659ae6c4b5ad2dc2e39375b138e8ae903343a707de090839f9436527706b4f63 +size 639020 diff --git a/datasets/openslr_yoruba/yof_05223_01758594289.wav b/datasets/openslr_yoruba/yof_05223_01758594289.wav new file mode 100644 index 0000000000000000000000000000000000000000..feee30ca6cda4d530f9884dd1d63dfabce5e8af9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01758594289.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13584c1573bcdadbcf71b2b58925eee08972dc2fe8b51aef59552d9236943d38 +size 540716 diff --git a/datasets/openslr_yoruba/yof_05223_01772150238.wav b/datasets/openslr_yoruba/yof_05223_01772150238.wav new file mode 100644 index 0000000000000000000000000000000000000000..2aa6a343c1d11a42b489819189719c0c78ebeed1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01772150238.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4ab2c6e604196e0368a5906fa1e2f1ce5c90e2bce4648a2a90f582cfb46131 +size 532524 diff --git a/datasets/openslr_yoruba/yof_05223_01775748092.wav b/datasets/openslr_yoruba/yof_05223_01775748092.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e5c188a918692e902b09b6230cbf1e2a225398c --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01775748092.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4099d73393853b24de50e3df2a353f8fb65137ab5c45079b1c0e6fe0cd434c0c +size 548908 diff --git a/datasets/openslr_yoruba/yof_05223_01782832065.wav b/datasets/openslr_yoruba/yof_05223_01782832065.wav new file mode 100644 index 0000000000000000000000000000000000000000..84ce763b46bce7e62b80be56751ef29f4cc63a6c --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01782832065.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bf0d5a9d629bfe58da343aaf2afc6beb941c3de3144649b4c145e75df4c23b +size 475180 diff --git a/datasets/openslr_yoruba/yof_05223_01807961868.wav b/datasets/openslr_yoruba/yof_05223_01807961868.wav new file mode 100644 index 0000000000000000000000000000000000000000..d45ad0d633d01740b20bbf443181e883e12252c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01807961868.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714a375832e9d7b46ee0331775097959c037c972c780e48a88fcb87bfc0ab905 +size 442412 diff --git a/datasets/openslr_yoruba/yof_05223_01819100625.wav b/datasets/openslr_yoruba/yof_05223_01819100625.wav new file mode 100644 index 0000000000000000000000000000000000000000..65226b83b413c5ff5b528a2b46712b11092de918 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01819100625.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4125e77ecbcfd794049314c5179e756b9a5fcab113a6beabae699df3f9bfba +size 393260 diff --git a/datasets/openslr_yoruba/yof_05223_01828699056.wav b/datasets/openslr_yoruba/yof_05223_01828699056.wav new file mode 100644 index 0000000000000000000000000000000000000000..a755c8e07be3bf92961292569419f20f317bb0fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01828699056.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b2aaadbbdec69f7c1bcd67134cf052801617bc6ca65f7434c619c6ec03b044 +size 524332 diff --git a/datasets/openslr_yoruba/yof_05223_01858772536.wav b/datasets/openslr_yoruba/yof_05223_01858772536.wav new file mode 100644 index 0000000000000000000000000000000000000000..facd00fe1b490e896992dfaa2ac7c921b20ccdf9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01858772536.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e06a628b5cd45dbbe467f113e516acccb82877c5cc8faaff99c1a0d1cb05e5 +size 327724 diff --git a/datasets/openslr_yoruba/yof_05223_01859615563.wav b/datasets/openslr_yoruba/yof_05223_01859615563.wav new file mode 100644 index 0000000000000000000000000000000000000000..6318281ad51d50d3fa9ecd160a9d0b541fd263b8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01859615563.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a1b20832d92b1365544294d528d8c7ba57501768b418dfbbc9da16ae4a953c +size 442412 diff --git a/datasets/openslr_yoruba/yof_05223_01872549474.wav b/datasets/openslr_yoruba/yof_05223_01872549474.wav new file mode 100644 index 0000000000000000000000000000000000000000..e941030565e1f3b031bfe60f874ad797a86e59c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01872549474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee67f7e3669b6a8c62b3d6e0260cfdbc0d5eee8bef6548cb40d45f2c6fe8ca5 +size 409644 diff --git a/datasets/openslr_yoruba/yof_05223_01876027689.wav b/datasets/openslr_yoruba/yof_05223_01876027689.wav new file mode 100644 index 0000000000000000000000000000000000000000..03905924b74193462114e9b9dbb673ec7bd67f72 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01876027689.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7992de14ceda38e9067a25457a135dcfc2f43bcacb3e4f3406e2a9b4d8ad42b0 +size 581676 diff --git a/datasets/openslr_yoruba/yof_05223_01891656881.wav b/datasets/openslr_yoruba/yof_05223_01891656881.wav new file mode 100644 index 0000000000000000000000000000000000000000..1648a41f7c48f744abb575900aa75625418b6cda --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01891656881.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138d320b4f23c8cf2de7698f17ff43ffe27d7a4adb6a0a62c54e31ca736302ea +size 401452 diff --git a/datasets/openslr_yoruba/yof_05223_01893825453.wav b/datasets/openslr_yoruba/yof_05223_01893825453.wav new file mode 100644 index 0000000000000000000000000000000000000000..ceb007c2458bf765b8e1916e911b9ccbeda52773 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01893825453.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c35ac1b8cdb3810549528b3a5619f8c19f82dd96f0f04507972c05ae9c68e0 +size 466988 diff --git a/datasets/openslr_yoruba/yof_05223_01899691871.wav b/datasets/openslr_yoruba/yof_05223_01899691871.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3aa8621550a97ac4d497d082a01380825451564 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01899691871.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41e17147d4083ca3073cfaa433f8d28ef615e1a1aee0c12200d28fec5ba6071 +size 639020 diff --git a/datasets/openslr_yoruba/yof_05223_01923553900.wav b/datasets/openslr_yoruba/yof_05223_01923553900.wav new file mode 100644 index 0000000000000000000000000000000000000000..61e186d4ce38be85106db520e4a1498bf48343de --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01923553900.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd220b5a893b334cdda7a960301151ea99570a72ce581eef1c3897d92b067a9 +size 409644 diff --git a/datasets/openslr_yoruba/yof_05223_01965398017.wav b/datasets/openslr_yoruba/yof_05223_01965398017.wav new file mode 100644 index 0000000000000000000000000000000000000000..1fd8ad810986c2b70d45e5ce800de9eedd62155d --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01965398017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e847b3d562608830d469c3ddf9058494cc6fbef59e89052dc7caf7828553c5 +size 761900 diff --git a/datasets/openslr_yoruba/yof_05223_01972194135.wav b/datasets/openslr_yoruba/yof_05223_01972194135.wav new file mode 100644 index 0000000000000000000000000000000000000000..c8854c8eeaf38f8677e2759b3b529ce092dbfac0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01972194135.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2a9485933d4586360a689b14978550cb73da55382eaee33457e3de19cf6070 +size 491564 diff --git a/datasets/openslr_yoruba/yof_05223_01987584125.wav b/datasets/openslr_yoruba/yof_05223_01987584125.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2b065f4ae27425323dad94a74e873038b25de3e --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_01987584125.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072191ad460bbe29f3e7ca71d4b41ca66fec62d1af3de8e986d1da3efe046206 +size 483372 diff --git a/datasets/openslr_yoruba/yof_05223_02014655312.wav b/datasets/openslr_yoruba/yof_05223_02014655312.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a967bc702c93e21b5e89b5a6bccc068f94b00f4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_02014655312.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1a340bd3010e931d25dfc12c9b68e71181037074b34363a57a9c83cf7980c4 +size 499756 diff --git a/datasets/openslr_yoruba/yof_05223_02016086701.wav b/datasets/openslr_yoruba/yof_05223_02016086701.wav new file mode 100644 index 0000000000000000000000000000000000000000..c99ce89a5bb81c2a962d91ae97ae7a415eba5a7f --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_02016086701.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49530a26305d5fc1f04a20bc6efbc7811af4e20514f4ac7f9f90dba25978dfcc +size 442412 diff --git a/datasets/openslr_yoruba/yof_05223_02044544241.wav b/datasets/openslr_yoruba/yof_05223_02044544241.wav new file mode 100644 index 0000000000000000000000000000000000000000..835a6c5406831aba9fa3f53b7910e3dcc2c6fa4a --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_02044544241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419180ae441a0aea1154f98f4c8289e0112f3ca90e5b562e5e978ea73f4d6311 +size 540716 diff --git a/datasets/openslr_yoruba/yof_05223_02066223744.wav b/datasets/openslr_yoruba/yof_05223_02066223744.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8ed9c3335a0675937a6dd9db385b525b99a2227 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_02066223744.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01bb300273f50c0f28b116c44e9d7c6aa9cbbd96e6a0da6104031a95e467e47 +size 598060 diff --git a/datasets/openslr_yoruba/yof_05223_02067421566.wav b/datasets/openslr_yoruba/yof_05223_02067421566.wav new file mode 100644 index 0000000000000000000000000000000000000000..c907cc8f05949294c512b64e91783027ff454b68 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_02067421566.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56681589dfa544d404ae10bfdb78ac50f46f565ab7f6d5589ff5f3d3229090df +size 712748 diff --git a/datasets/openslr_yoruba/yof_05223_02094549470.wav b/datasets/openslr_yoruba/yof_05223_02094549470.wav new file mode 100644 index 0000000000000000000000000000000000000000..715212dc4aca53a0078139577dd81ec1440d22c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_02094549470.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efac0f400afe89388383671702bf2eaa0ffda2dcb55d78ed07db6332f9c24ee2 +size 507948 diff --git a/datasets/openslr_yoruba/yof_05223_02094567934.wav b/datasets/openslr_yoruba/yof_05223_02094567934.wav new file mode 100644 index 0000000000000000000000000000000000000000..df0a82881f41b7adaa9e07383ee241007289d92a --- /dev/null +++ b/datasets/openslr_yoruba/yof_05223_02094567934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0208c41b156b08cac8d6872c950b2995a9feb16b251c44db80eb392b5a079d0 +size 426028 diff --git a/datasets/openslr_yoruba/yof_06136_00016098074.wav b/datasets/openslr_yoruba/yof_06136_00016098074.wav new file mode 100644 index 0000000000000000000000000000000000000000..7757e9a3f22b62cf90befbec0ff3c6581524d59d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00016098074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116ea5f81885c13bd25e15161086ad9158c500bfd3b796b0d595ed4ab076002b +size 204844 diff --git a/datasets/openslr_yoruba/yof_06136_00089680530.wav b/datasets/openslr_yoruba/yof_06136_00089680530.wav new file mode 100644 index 0000000000000000000000000000000000000000..def31612fbc9b8326186ee03789df11b35847e90 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00089680530.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3123abd997673ddd7ca8cc8e460f693b5e9a410721004141b7cc20c5f8e105 +size 262188 diff --git a/datasets/openslr_yoruba/yof_06136_00175208137.wav b/datasets/openslr_yoruba/yof_06136_00175208137.wav new file mode 100644 index 0000000000000000000000000000000000000000..1028a211155ae8347954af63ac6ed6676e5be65e --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00175208137.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a059ca8171ce924ade981cab7945ccb98d2673b2608c5cc9017f516ad5dad8 +size 278572 diff --git a/datasets/openslr_yoruba/yof_06136_00187552585.wav b/datasets/openslr_yoruba/yof_06136_00187552585.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a758db49e54bf5a8575f6b8e724cc89b7c07781 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00187552585.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489a6579bf11c1808c9526222ddbaf6dbee20400802219f7bb0ffce0bb13810a +size 499756 diff --git a/datasets/openslr_yoruba/yof_06136_00206021326.wav b/datasets/openslr_yoruba/yof_06136_00206021326.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f7b87f020ac1a8667068b2791f1548899212ea0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00206021326.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc0b70b0e8cb106648f19abe051b5f377073b570b159e500b7c9332c58a7980d +size 311340 diff --git a/datasets/openslr_yoruba/yof_06136_00207590210.wav b/datasets/openslr_yoruba/yof_06136_00207590210.wav new file mode 100644 index 0000000000000000000000000000000000000000..d702aa06e7a71b28c51efc0ec5d57a16f2b4a70e --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00207590210.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52676833afa0b78beb2c9e90971b07d573560d24d5d92a2c96af12ea93a8866c +size 352300 diff --git a/datasets/openslr_yoruba/yof_06136_00252320632.wav b/datasets/openslr_yoruba/yof_06136_00252320632.wav new file mode 100644 index 0000000000000000000000000000000000000000..e13cf3629b0daabd39ad981a8c588b84fda92981 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00252320632.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37394393a01696e9e11742944f91b09378c50466b6a03e8f5149d9a8e5b555d2 +size 221228 diff --git a/datasets/openslr_yoruba/yof_06136_00259614219.wav b/datasets/openslr_yoruba/yof_06136_00259614219.wav new file mode 100644 index 0000000000000000000000000000000000000000..e36acb204bda26daec6907c90cebc57702efc868 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00259614219.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3bc6d7c0a9054509e223d94732622eeef8d75ce2be3541cfaadccecde4a7b4 +size 401452 diff --git a/datasets/openslr_yoruba/yof_06136_00276239440.wav b/datasets/openslr_yoruba/yof_06136_00276239440.wav new file mode 100644 index 0000000000000000000000000000000000000000..2cf2f654de61f05cf68195fefa07e142435268fe --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00276239440.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd58cfad6bcf71ac918eda0af010640185f9b4ee1b4272ec5191f11462394483 +size 253996 diff --git a/datasets/openslr_yoruba/yof_06136_00295644528.wav b/datasets/openslr_yoruba/yof_06136_00295644528.wav new file mode 100644 index 0000000000000000000000000000000000000000..876d779c830e3b120179ee0882fe810966b34654 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00295644528.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee64beb64394dd4c62fc77c194187c18ec912c5c455a3a85b695acc9d48bc6f +size 221228 diff --git a/datasets/openslr_yoruba/yof_06136_00298333158.wav b/datasets/openslr_yoruba/yof_06136_00298333158.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f436b6e492fb4ddff5b74897c85ecf4a98c063b --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00298333158.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5740c162a9e93d2b0fa1e12f539c431b224aa3ed2b77fb530d5c09154d524cd4 +size 417836 diff --git a/datasets/openslr_yoruba/yof_06136_00319213356.wav b/datasets/openslr_yoruba/yof_06136_00319213356.wav new file mode 100644 index 0000000000000000000000000000000000000000..73b81f62dc19a63a196b1c91acc64f478134995b --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00319213356.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4150c84c732361feeae13dec046ad3ea268729a77d873b8f9bab77bdba4ab4 +size 294956 diff --git a/datasets/openslr_yoruba/yof_06136_00342631254.wav b/datasets/openslr_yoruba/yof_06136_00342631254.wav new file mode 100644 index 0000000000000000000000000000000000000000..e994df58081b52c8551d4417c343a4bdde825bbe --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00342631254.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5f1bfc1d3986eba84eef347961d63b10514f105413c7c0cd4882ef9dade616 +size 262188 diff --git a/datasets/openslr_yoruba/yof_06136_00347347264.wav b/datasets/openslr_yoruba/yof_06136_00347347264.wav new file mode 100644 index 0000000000000000000000000000000000000000..6df14b8c563f03b5ce73e73e7d8b5e18f992c4b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00347347264.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7201da83922d7fa84f4af337a9093cf739f1487b081efa258ba82a54125a3b40 +size 360492 diff --git a/datasets/openslr_yoruba/yof_06136_00367673294.wav b/datasets/openslr_yoruba/yof_06136_00367673294.wav new file mode 100644 index 0000000000000000000000000000000000000000..31cb7812e9b6012efaef95568defc295c693f420 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00367673294.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce779bc21dbbef2d72ec6aabd038119f3766096172ef6018c3ab8cf575e56c37 +size 557100 diff --git a/datasets/openslr_yoruba/yof_06136_00376415227.wav b/datasets/openslr_yoruba/yof_06136_00376415227.wav new file mode 100644 index 0000000000000000000000000000000000000000..b422f9fa4a8682067af55cadc682041a397f4477 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00376415227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf77314aab918634817c45e38530721ba359ead566492d698d2e53a56d2f37b2 +size 286764 diff --git a/datasets/openslr_yoruba/yof_06136_00377845639.wav b/datasets/openslr_yoruba/yof_06136_00377845639.wav new file mode 100644 index 0000000000000000000000000000000000000000..e94f2c166b07cbb91fb0057bdc95f69c7ab36999 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00377845639.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1f7830d4ed5f21121a36ad012e60f8a61593c904e05ec72b0ca54f51b9305b +size 303148 diff --git a/datasets/openslr_yoruba/yof_06136_00379738451.wav b/datasets/openslr_yoruba/yof_06136_00379738451.wav new file mode 100644 index 0000000000000000000000000000000000000000..8479c6f25574f77a1beebf8814ee88d0e9225505 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00379738451.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65bf46b4bf5f8635ec7c7aee5446c3686a77c672a1b1160b5b1a58ee4869b300 +size 327724 diff --git a/datasets/openslr_yoruba/yof_06136_00394484520.wav b/datasets/openslr_yoruba/yof_06136_00394484520.wav new file mode 100644 index 0000000000000000000000000000000000000000..c6703242f37a64a9bba8acf93719e531fb533824 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00394484520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ff0b8feb83a5ebf0aedd5933df4ebca6c86b6f21cc4af1adbc53d13a5ce6da +size 335916 diff --git a/datasets/openslr_yoruba/yof_06136_00414323577.wav b/datasets/openslr_yoruba/yof_06136_00414323577.wav new file mode 100644 index 0000000000000000000000000000000000000000..4e13d6149b3fc0103c564fe2b3e4d5396a654417 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00414323577.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999952b2b15e7ab3b47da320f7aa9e8509f42788909c993736bd0a7ec9330b9b +size 327724 diff --git a/datasets/openslr_yoruba/yof_06136_00478058506.wav b/datasets/openslr_yoruba/yof_06136_00478058506.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c52d1f9b3951d25a38102b815ffd7945b4346c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00478058506.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b31bccdce4c5eefba316fb2f4b5d2724034bf429db569e3a0391ae909c1ab0 +size 278572 diff --git a/datasets/openslr_yoruba/yof_06136_00491301918.wav b/datasets/openslr_yoruba/yof_06136_00491301918.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f691dcd02e236e34eb672a576bd71b4c02942be --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00491301918.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95597ee527ec78790d3f1a31e131100cb6f1c6213b7dbeac15affd2b70b895fb +size 245804 diff --git a/datasets/openslr_yoruba/yof_06136_00517965312.wav b/datasets/openslr_yoruba/yof_06136_00517965312.wav new file mode 100644 index 0000000000000000000000000000000000000000..a34537a9f9454bddf9e9a35caec83f2bceadc3e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00517965312.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db487f239e86cb41a842640bf7200a76b5c00a1a511c2ccdd6865a4e573c267b +size 335916 diff --git a/datasets/openslr_yoruba/yof_06136_00530300363.wav b/datasets/openslr_yoruba/yof_06136_00530300363.wav new file mode 100644 index 0000000000000000000000000000000000000000..294294ebf57890694179e2c533e33c4261bfe9d9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00530300363.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b820e14e6438ee7a62270cbb64e9bac4c3e7f057c4c89bc88dd3d1131783946d +size 237612 diff --git a/datasets/openslr_yoruba/yof_06136_00566491540.wav b/datasets/openslr_yoruba/yof_06136_00566491540.wav new file mode 100644 index 0000000000000000000000000000000000000000..40b1dd0642107a31a3c9be9db51140018e23f8a5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00566491540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7b13ba51011e4b396242560de06b95ed0b15d620ce0cffae9e7ae4c9687898 +size 188460 diff --git a/datasets/openslr_yoruba/yof_06136_00574517508.wav b/datasets/openslr_yoruba/yof_06136_00574517508.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1ca77e63fd895b175b8b087a1565eb6af95d8a3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00574517508.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d44604effac58876f4abd7d172189dfff96cc925d90a9f4e9e629de15f95ee4 +size 475180 diff --git a/datasets/openslr_yoruba/yof_06136_00578231299.wav b/datasets/openslr_yoruba/yof_06136_00578231299.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac5f9695d3a6091201e7f5b01d6f8f21d198715e --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00578231299.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8d418f3708ee03cab03445515f8ab727ef170c6ee98be195c4fcb36af0d090 +size 327724 diff --git a/datasets/openslr_yoruba/yof_06136_00605241039.wav b/datasets/openslr_yoruba/yof_06136_00605241039.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bf4607f4c32d4092158a8775c7581a85bf031f6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00605241039.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16353fdd4a383a48876c24ec44cee956366096571696e7013dd917798b039a8b +size 221228 diff --git a/datasets/openslr_yoruba/yof_06136_00606933345.wav b/datasets/openslr_yoruba/yof_06136_00606933345.wav new file mode 100644 index 0000000000000000000000000000000000000000..e77cdf8052bc44221298fe61f1a043f4fc23a6fd --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00606933345.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95fd0a60f9d94b1e5657761c391242b340f3ade0bce512dde4471eef8aa99519 +size 245804 diff --git a/datasets/openslr_yoruba/yof_06136_00615215021.wav b/datasets/openslr_yoruba/yof_06136_00615215021.wav new file mode 100644 index 0000000000000000000000000000000000000000..32a771775edd90bedafc8336f11b70a7b6611ab0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00615215021.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d83a9769c8a508e376ae021746623b4ecdcdd755ecdc4a5431bafddbb725c7 +size 319532 diff --git a/datasets/openslr_yoruba/yof_06136_00616155826.wav b/datasets/openslr_yoruba/yof_06136_00616155826.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9e449eafb203b14409eea35e1a6fb428000f43d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00616155826.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71b641a8718a0d9c0598988e591db4ee244a10ceb898b7040db17104b282de4 +size 294956 diff --git a/datasets/openslr_yoruba/yof_06136_00619601554.wav b/datasets/openslr_yoruba/yof_06136_00619601554.wav new file mode 100644 index 0000000000000000000000000000000000000000..f104520f9c63f41938ae103da99155688d489fc9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00619601554.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222ae1646b3509fa415e9fe7e57c70f84501a46aed60602343bcc44243bc930f +size 360492 diff --git a/datasets/openslr_yoruba/yof_06136_00634072030.wav b/datasets/openslr_yoruba/yof_06136_00634072030.wav new file mode 100644 index 0000000000000000000000000000000000000000..509d739ceef231fa47dd6cbaebffe25c7f023e7d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00634072030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f288006e75d390df8d272c1bddcdcb951d2e1936d41542db20e8e454121dfa +size 376876 diff --git a/datasets/openslr_yoruba/yof_06136_00656128867.wav b/datasets/openslr_yoruba/yof_06136_00656128867.wav new file mode 100644 index 0000000000000000000000000000000000000000..86263a20c2d9dc921baaa6db9da681fa167ef13a --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00656128867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f287243a0e05144e6e7e83989e8febaeddc2d9685ebc681a329b19932306b63a +size 303148 diff --git a/datasets/openslr_yoruba/yof_06136_00677990391.wav b/datasets/openslr_yoruba/yof_06136_00677990391.wav new file mode 100644 index 0000000000000000000000000000000000000000..e04697879e6860bcbf389d7f6dec77641c8692a3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00677990391.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38fc055b27210f16a5f41c396c52244d230df4eb3d99f63a5b4f3fb446220980 +size 237612 diff --git a/datasets/openslr_yoruba/yof_06136_00679852471.wav b/datasets/openslr_yoruba/yof_06136_00679852471.wav new file mode 100644 index 0000000000000000000000000000000000000000..cff5e7b3165ff06901a112c490cf414dc176f442 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00679852471.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e58f00e014432e7562f00772d3709487c8f8625fe0ce0586504c133c9b94c8d +size 229420 diff --git a/datasets/openslr_yoruba/yof_06136_00680095634.wav b/datasets/openslr_yoruba/yof_06136_00680095634.wav new file mode 100644 index 0000000000000000000000000000000000000000..860988d270e89ea90bdb1bf710d0ffe3eab61fd8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00680095634.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1db6b5ce08b584f278a4829ebff534aff5c22975038538393138db8a325c5bdd +size 229420 diff --git a/datasets/openslr_yoruba/yof_06136_00782406218.wav b/datasets/openslr_yoruba/yof_06136_00782406218.wav new file mode 100644 index 0000000000000000000000000000000000000000..1368b5ec72b5ff4942d221a57bc3c1ade35c3068 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00782406218.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f9c351d46b54a16dc62463ce85abb10ccc43fb95d28113d158e203f177269e +size 466988 diff --git a/datasets/openslr_yoruba/yof_06136_00792512190.wav b/datasets/openslr_yoruba/yof_06136_00792512190.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f8d403b847f78c7f60bebe0b7520239cc07a61f --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00792512190.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a87d0c035da941c85ea46528a552506ddce0aa0d470b6d79207d69cb0b31f0b +size 426028 diff --git a/datasets/openslr_yoruba/yof_06136_00798580406.wav b/datasets/openslr_yoruba/yof_06136_00798580406.wav new file mode 100644 index 0000000000000000000000000000000000000000..33282f5a33d21da28c24359b889437b3f98042b7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00798580406.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4241ec3467ccc7aa01a8e998e419fce416828b972d61ffcbdde5a33080fbf2ff +size 294956 diff --git a/datasets/openslr_yoruba/yof_06136_00845245042.wav b/datasets/openslr_yoruba/yof_06136_00845245042.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad897e74b0828d3c8c5a1e55e42bffb4111d66c6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00845245042.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb95fee16fae9b8ded07b5cb9a363c3dcee0f351087a635c9c8a91fcd45506de +size 221228 diff --git a/datasets/openslr_yoruba/yof_06136_00852892464.wav b/datasets/openslr_yoruba/yof_06136_00852892464.wav new file mode 100644 index 0000000000000000000000000000000000000000..61442d7ceaa6bc01efd373a8dc414504f9b55197 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00852892464.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5dd7ad3c2118bec8698ab40f95fb45d5d9de2445bf4d05c578b062795a11fc +size 344108 diff --git a/datasets/openslr_yoruba/yof_06136_00877626961.wav b/datasets/openslr_yoruba/yof_06136_00877626961.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e83a0c2334411e120b6b373d8b5d3388466ef9b --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00877626961.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48869ff559b13203fc0291b0e5fdf133350100a98b8120e12fb9f34171cab0ae +size 770092 diff --git a/datasets/openslr_yoruba/yof_06136_00908610451.wav b/datasets/openslr_yoruba/yof_06136_00908610451.wav new file mode 100644 index 0000000000000000000000000000000000000000..3944261b9a5e6379b99aaf1a468b33423b5234ce --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00908610451.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a157aa0caeefbc5d31dfc3203fdc2171255db29f82a5a36aa648a40b507e7c +size 311340 diff --git a/datasets/openslr_yoruba/yof_06136_00908691223.wav b/datasets/openslr_yoruba/yof_06136_00908691223.wav new file mode 100644 index 0000000000000000000000000000000000000000..fbb9efe48764f646d5773b8fe8d06062c7a1cf08 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00908691223.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d088c491dc55c9521de55404dc2924b39ae43931db8b7c42527ecc46d4b7b55 +size 507948 diff --git a/datasets/openslr_yoruba/yof_06136_00913564539.wav b/datasets/openslr_yoruba/yof_06136_00913564539.wav new file mode 100644 index 0000000000000000000000000000000000000000..288de4c3e85d9c759fece3af4e48b98ff7d7833d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00913564539.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ad1629e473a57732e8522c931be4f26c5eb9cf5026d3eece5e9d1adc89883a +size 352300 diff --git a/datasets/openslr_yoruba/yof_06136_00931220222.wav b/datasets/openslr_yoruba/yof_06136_00931220222.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a44937ddcbd2680d85daacacefc70db21518bdc --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00931220222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6634cd2f2859eff8205320ee934ef7776930bbf535e6ddea9d05fb3cec206ec3 +size 229420 diff --git a/datasets/openslr_yoruba/yof_06136_00959726417.wav b/datasets/openslr_yoruba/yof_06136_00959726417.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4941201863c66203da53562ecef484b2ac4d7c4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00959726417.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01bf767325e8e04eaaa9d4c0b2961c5520cffd5ad76fb24083f6de62de1d00ec +size 581676 diff --git a/datasets/openslr_yoruba/yof_06136_00981963925.wav b/datasets/openslr_yoruba/yof_06136_00981963925.wav new file mode 100644 index 0000000000000000000000000000000000000000..59919a546d58bc404f5b2d1ce9cb02303ab6ae0f --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00981963925.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f6be818f0f778bb7db1e59beb6c620bf1f7fa2fbf34fd297bc07e1f963e5a1 +size 401452 diff --git a/datasets/openslr_yoruba/yof_06136_00984752246.wav b/datasets/openslr_yoruba/yof_06136_00984752246.wav new file mode 100644 index 0000000000000000000000000000000000000000..d239076529c7c9278846f3d499644ad99c0455ca --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_00984752246.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976ef7b644374fbef7f7b2f6a429d5459cb0172b8a9e6ff753c7bd522c05a04b +size 253996 diff --git a/datasets/openslr_yoruba/yof_06136_01024096676.wav b/datasets/openslr_yoruba/yof_06136_01024096676.wav new file mode 100644 index 0000000000000000000000000000000000000000..93308240f73a0591d7c911b8fb6e6e6a22f76a7d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01024096676.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a475e2f964baeef572759e52ac93c47f7841a222014bb952e8edd1bfdc7acecd +size 278572 diff --git a/datasets/openslr_yoruba/yof_06136_01029156035.wav b/datasets/openslr_yoruba/yof_06136_01029156035.wav new file mode 100644 index 0000000000000000000000000000000000000000..4cb6209974580dc2a9d04f08c47053e7b200c3c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01029156035.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b31cf0d1109b07ccdee0532583e75cf4e54a0d06039f8a8c1b7761991e26b97 +size 221228 diff --git a/datasets/openslr_yoruba/yof_06136_01050572298.wav b/datasets/openslr_yoruba/yof_06136_01050572298.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a001c38139d95b47558f04ad80edd87db37b646 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01050572298.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650cd2456499646edc5b31a302e7c167f2985c7ba8ac25d54228ebd490d5b149 +size 294956 diff --git a/datasets/openslr_yoruba/yof_06136_01063669619.wav b/datasets/openslr_yoruba/yof_06136_01063669619.wav new file mode 100644 index 0000000000000000000000000000000000000000..55b1f423e891a0075e48771053fdbef89e311adc --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01063669619.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde32073da9ab4d4cb03e1a6c61a951341e03e18f03e8e734c96dde956db0b8f +size 294956 diff --git a/datasets/openslr_yoruba/yof_06136_01064555289.wav b/datasets/openslr_yoruba/yof_06136_01064555289.wav new file mode 100644 index 0000000000000000000000000000000000000000..a70a940fad6abc3a8a53c4af785a72d8355ae54e --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01064555289.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4bc0cca6de619340a9e73db600baa6158fd901c401fca5e8345b7cd12727086 +size 532524 diff --git a/datasets/openslr_yoruba/yof_06136_01065114100.wav b/datasets/openslr_yoruba/yof_06136_01065114100.wav new file mode 100644 index 0000000000000000000000000000000000000000..a6a6ed396fa4c0010f7ca2886ec0c87602929c2c --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01065114100.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1f76487e1763abf111016ce0d96e80052443b2e94e143db54416d3416727c4 +size 204844 diff --git a/datasets/openslr_yoruba/yof_06136_01085823195.wav b/datasets/openslr_yoruba/yof_06136_01085823195.wav new file mode 100644 index 0000000000000000000000000000000000000000..9215ebb3d6cafeb835c52f081938bfa014b056e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01085823195.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31225a31b13dc2ea232082b343957343ba746bd81ff65b8af5ae8bc110dd44da +size 573484 diff --git a/datasets/openslr_yoruba/yof_06136_01094360780.wav b/datasets/openslr_yoruba/yof_06136_01094360780.wav new file mode 100644 index 0000000000000000000000000000000000000000..8295c0bff8fa24e626516721df0d0ec582e12d3c --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01094360780.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4904610dabd93f40125fbd72f33c5e8061fcf4c96490d867d44fbc09fc2b441 +size 426028 diff --git a/datasets/openslr_yoruba/yof_06136_01151773106.wav b/datasets/openslr_yoruba/yof_06136_01151773106.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0b16f2169c0ed2d8dd27823dca608a80e776b63 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01151773106.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15469b97544b75e324d46652da36b90bcc78fd2c935f3d10bad2d61c0d00b063 +size 335916 diff --git a/datasets/openslr_yoruba/yof_06136_01186529612.wav b/datasets/openslr_yoruba/yof_06136_01186529612.wav new file mode 100644 index 0000000000000000000000000000000000000000..bbbda3b27812c205bfdd4c6da319d15121c118c7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01186529612.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9ebe437b7c6b3fa55e66dafa2b52b8a5c12c28f9f5a58339cfa984467f9b5b +size 557100 diff --git a/datasets/openslr_yoruba/yof_06136_01224200502.wav b/datasets/openslr_yoruba/yof_06136_01224200502.wav new file mode 100644 index 0000000000000000000000000000000000000000..30818f8b1af970c8e907c4a9e76b93d14060eb35 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01224200502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c126eb2eebe87340ecdbb6d6a967965f3ff8a23c0ac92e9f9d481abbb09b0f8 +size 188460 diff --git a/datasets/openslr_yoruba/yof_06136_01239284866.wav b/datasets/openslr_yoruba/yof_06136_01239284866.wav new file mode 100644 index 0000000000000000000000000000000000000000..642e2880b6c1cdca28a60cfde09cd779427ffb28 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01239284866.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b8f22761b21bf94f9dd7636729078e1776f72e46f8fe8d50c03b4a1f05480d +size 327724 diff --git a/datasets/openslr_yoruba/yof_06136_01270915354.wav b/datasets/openslr_yoruba/yof_06136_01270915354.wav new file mode 100644 index 0000000000000000000000000000000000000000..7621fa20e16906484777eb44fa59b25b9f1c7de8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01270915354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3785cd1fca0ba792783cd1b24330282344eae7b1b2d0d1427a0746e05522c86 +size 237612 diff --git a/datasets/openslr_yoruba/yof_06136_01279969512.wav b/datasets/openslr_yoruba/yof_06136_01279969512.wav new file mode 100644 index 0000000000000000000000000000000000000000..177244e3cda212b264367685fea097be9193bf74 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01279969512.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d366ee3ee83748767843c22cd47810b02d31c3b2daa98cbbabd616eccb431a3 +size 458796 diff --git a/datasets/openslr_yoruba/yof_06136_01371642069.wav b/datasets/openslr_yoruba/yof_06136_01371642069.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e975dbec165ff5f9a5c94bdd824664b5fb61b41 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01371642069.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb64a9768a9bb08eff03de81d135a6869698c57eb9592e7b1a5c459a587d1438 +size 221228 diff --git a/datasets/openslr_yoruba/yof_06136_01387293319.wav b/datasets/openslr_yoruba/yof_06136_01387293319.wav new file mode 100644 index 0000000000000000000000000000000000000000..47a4d8eb9eb31de4fb83d17a3bc1c3c414281d7b --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01387293319.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033a262da6751ce44a3afb9741859feb0b633e29a8238978d25deaba11cb00fd +size 385068 diff --git a/datasets/openslr_yoruba/yof_06136_01392479779.wav b/datasets/openslr_yoruba/yof_06136_01392479779.wav new file mode 100644 index 0000000000000000000000000000000000000000..0fc3fc32f5696d5882063b10fcab8770311f8f6b --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01392479779.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b890c68fda06d08267a3e52b77da1a9ef59a765f7ef4945069f0ee5fe5c964 +size 376876 diff --git a/datasets/openslr_yoruba/yof_06136_01392507828.wav b/datasets/openslr_yoruba/yof_06136_01392507828.wav new file mode 100644 index 0000000000000000000000000000000000000000..d0c53a2d7999b263e7060b883fb4d189534b598c --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01392507828.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752d956775ae680317faa822ffed47dfeab4acaed03dee44b7185e309e51f62e +size 270380 diff --git a/datasets/openslr_yoruba/yof_06136_01402624383.wav b/datasets/openslr_yoruba/yof_06136_01402624383.wav new file mode 100644 index 0000000000000000000000000000000000000000..dad770e33eaec59720eaff43da13eadb54af841d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01402624383.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8800cc3586c9005aaea3d29b9ca410f7ef20b792c32dbf9819365878862f25 +size 196652 diff --git a/datasets/openslr_yoruba/yof_06136_01430869154.wav b/datasets/openslr_yoruba/yof_06136_01430869154.wav new file mode 100644 index 0000000000000000000000000000000000000000..87bb73a8cf6d5d8ee9c0c6d044e313daff7d9df1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01430869154.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070d557cd32f16f9cfe26af998463ce523b2d759b8e1d285a6f221afc2320e09 +size 253996 diff --git a/datasets/openslr_yoruba/yof_06136_01472596302.wav b/datasets/openslr_yoruba/yof_06136_01472596302.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d1348519fc90e29f590a8f43f3d940ddc8a7634 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01472596302.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d23e42aacaa52001c3e6f9ab6e52b7cbf76bdf9df002fb67b0f5bb156e8486d +size 270380 diff --git a/datasets/openslr_yoruba/yof_06136_01516345648.wav b/datasets/openslr_yoruba/yof_06136_01516345648.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d9e2bac4dfa16782521858d938bc16cd6499c1e --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01516345648.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0aae90806c2ecd26ac9af98fd369aa40694e3dcbc5cb776b34537d808bb876c +size 180268 diff --git a/datasets/openslr_yoruba/yof_06136_01532254621.wav b/datasets/openslr_yoruba/yof_06136_01532254621.wav new file mode 100644 index 0000000000000000000000000000000000000000..df80d5209ccb03ead029607cd464ebf6557c09d7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01532254621.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e43861624625d299aa6dc51350432973a78d5a91fdffd8fa9abd1d7d33903b9 +size 286764 diff --git a/datasets/openslr_yoruba/yof_06136_01576530439.wav b/datasets/openslr_yoruba/yof_06136_01576530439.wav new file mode 100644 index 0000000000000000000000000000000000000000..3550482c4df2a719661560dbb6cd1e458d79dbb4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01576530439.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c16c5411afa4209d7909a7a0e66a487ea19c8470b948f1c118f2e55d1070bf7a +size 311340 diff --git a/datasets/openslr_yoruba/yof_06136_01583250418.wav b/datasets/openslr_yoruba/yof_06136_01583250418.wav new file mode 100644 index 0000000000000000000000000000000000000000..42b5863646331b41762e1ad850a10a8df3f12696 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01583250418.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cd9422ac1345ce262a7b74f68110e9117e2c0af59f0a8b024fbeaa94bd029b5 +size 221228 diff --git a/datasets/openslr_yoruba/yof_06136_01613006891.wav b/datasets/openslr_yoruba/yof_06136_01613006891.wav new file mode 100644 index 0000000000000000000000000000000000000000..d056b95e00b22db7c490cb2715687f20e87768e8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01613006891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08271aee9f9fd28d38a6e26297334cbed391e3d29bfd43f6510b0cc46947627a +size 827436 diff --git a/datasets/openslr_yoruba/yof_06136_01623819071.wav b/datasets/openslr_yoruba/yof_06136_01623819071.wav new file mode 100644 index 0000000000000000000000000000000000000000..4148ccf6d847213c495a3faa0d0021898b090357 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01623819071.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d31c4cab386c9975d6642e71b0aeb55aecaec4e7be23607f937771e83a957a +size 270380 diff --git a/datasets/openslr_yoruba/yof_06136_01625531988.wav b/datasets/openslr_yoruba/yof_06136_01625531988.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c24cf7ab60617b5dbd4281802c420c25c8b69f8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01625531988.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b28e81a60e25302423dbf43aca968f9d7d71c349e390b5426f7562dca1651b +size 319532 diff --git a/datasets/openslr_yoruba/yof_06136_01684608292.wav b/datasets/openslr_yoruba/yof_06136_01684608292.wav new file mode 100644 index 0000000000000000000000000000000000000000..eaae5f61c34f358c4cbae41ae6a13bdc2f33ceb5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01684608292.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95eccba8822609bfc7a25aee1d915aed4edc54f70b1bb3eeb0fa03608fd49b4e +size 237612 diff --git a/datasets/openslr_yoruba/yof_06136_01703572881.wav b/datasets/openslr_yoruba/yof_06136_01703572881.wav new file mode 100644 index 0000000000000000000000000000000000000000..127cf62ac53d3e75dc4426f9fdf30e052156937d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01703572881.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7958ff8f2e248fe174d6ebbd54883adbf2ee6cca90685db855331626fe0f3b4 +size 286764 diff --git a/datasets/openslr_yoruba/yof_06136_01712627096.wav b/datasets/openslr_yoruba/yof_06136_01712627096.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d6cb49f91bfeb4ea8d7936fbb1ae2853f8ae849 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01712627096.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f52d90a06b7ac732e1510f97a8fcdc2276f7596b327333cb10a9bd15258d8bc +size 368684 diff --git a/datasets/openslr_yoruba/yof_06136_01738523617.wav b/datasets/openslr_yoruba/yof_06136_01738523617.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc2511f8544e8c76fd73836e9f7a8f0a31d4fff5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01738523617.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5995e0c27e60699f8ba94caff91d702799be3f94df5ffddc293376d859849d +size 352300 diff --git a/datasets/openslr_yoruba/yof_06136_01738843337.wav b/datasets/openslr_yoruba/yof_06136_01738843337.wav new file mode 100644 index 0000000000000000000000000000000000000000..c104bdd3eeb364b65cb2eb07453cad83f40e49e7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01738843337.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be77b98fd46d37887258cdcd67984b550934e109aeb571e77fbc7a3548f6664e +size 294956 diff --git a/datasets/openslr_yoruba/yof_06136_01760701628.wav b/datasets/openslr_yoruba/yof_06136_01760701628.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b57fdcb855315697ea14569a69fd22b5b42c095 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01760701628.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a20b9d196ceb9aa573cf874ca24a67315ad7799bd66ed4708088908cc1b6e1 +size 507948 diff --git a/datasets/openslr_yoruba/yof_06136_01769930032.wav b/datasets/openslr_yoruba/yof_06136_01769930032.wav new file mode 100644 index 0000000000000000000000000000000000000000..6294a5cb5d71af8d97745a1a2027b5ebb299356d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01769930032.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d37711e03878ee8fff515ce84602635a6dad58958ce448e21ae21eff95e4c2 +size 426028 diff --git a/datasets/openslr_yoruba/yof_06136_01772505826.wav b/datasets/openslr_yoruba/yof_06136_01772505826.wav new file mode 100644 index 0000000000000000000000000000000000000000..88830e637139d2cc3b3bc0d5b68e6887d152d67c --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01772505826.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e59ddba73afbbfac4c9e6e1604573fd231accdddb9956ca3d47d70d6caf471 +size 270380 diff --git a/datasets/openslr_yoruba/yof_06136_01773820677.wav b/datasets/openslr_yoruba/yof_06136_01773820677.wav new file mode 100644 index 0000000000000000000000000000000000000000..637b1524cbe47b9555b1d2c7972997b05c8ef34d --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01773820677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea70717a20deef19d7d9b443693c861fd4a9c74089fed9fd37efd02fa0b6bd2 +size 704556 diff --git a/datasets/openslr_yoruba/yof_06136_01778543902.wav b/datasets/openslr_yoruba/yof_06136_01778543902.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca0498109f2614782654c4078036be5914d91241 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01778543902.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3cbb39fda5e8593b46b0c08d0f8b5ebe0526dd60fe808ad49d842f546f7c5c +size 458796 diff --git a/datasets/openslr_yoruba/yof_06136_01778669469.wav b/datasets/openslr_yoruba/yof_06136_01778669469.wav new file mode 100644 index 0000000000000000000000000000000000000000..61b1f5fe6e785f14b297238a9633d9374b1d5dfb --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01778669469.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafa39cde97b9d2022bc7d3a5e0dc1aec34719854adfd5e7221cbce85457fb51 +size 466988 diff --git a/datasets/openslr_yoruba/yof_06136_01836609989.wav b/datasets/openslr_yoruba/yof_06136_01836609989.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c55f6669db44cf0d230ca5a7ab71dccaacaeb04 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01836609989.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78f7b5d7b70934799d83d588167cc5ded6bababe5424e133287ce76bc5afb32 +size 319532 diff --git a/datasets/openslr_yoruba/yof_06136_01854493514.wav b/datasets/openslr_yoruba/yof_06136_01854493514.wav new file mode 100644 index 0000000000000000000000000000000000000000..5881c395c00310455f85538730f33a839788cfe9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01854493514.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601eb64a786edc174c8e7012e120986d43bc46556425da4e20d4d889eef0713b +size 229420 diff --git a/datasets/openslr_yoruba/yof_06136_01885345989.wav b/datasets/openslr_yoruba/yof_06136_01885345989.wav new file mode 100644 index 0000000000000000000000000000000000000000..156924d9ac0578927fc2a4f25ba4b1ab1d6794e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01885345989.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac80dcefebb3d4839faa85fb57465efb2b1d610d015f245890861076eb2b4a8 +size 253996 diff --git a/datasets/openslr_yoruba/yof_06136_01906129204.wav b/datasets/openslr_yoruba/yof_06136_01906129204.wav new file mode 100644 index 0000000000000000000000000000000000000000..efe2bde3cf0610be6dcb1fd47ca19af9d4f3b2c3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01906129204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4eb014e37212e7627bf0e2e2e57edcde67d9efb5308dc6442f379335755c67e +size 409644 diff --git a/datasets/openslr_yoruba/yof_06136_01920577611.wav b/datasets/openslr_yoruba/yof_06136_01920577611.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c4d198580817484b1c3caec16ba41724794a378 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01920577611.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4120a0f043bffb148d6b9bbfa928ab11b390f6480e08caf64632cc39d628b5b3 +size 294956 diff --git a/datasets/openslr_yoruba/yof_06136_01949694738.wav b/datasets/openslr_yoruba/yof_06136_01949694738.wav new file mode 100644 index 0000000000000000000000000000000000000000..887c65f767c2894b30ef2fea5cdb1d08fdcd0a07 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01949694738.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bddef774fe199b69e1c6bc4748dcc8ec6ef268d7498918dda18badd3e3ede32e +size 704556 diff --git a/datasets/openslr_yoruba/yof_06136_01956124024.wav b/datasets/openslr_yoruba/yof_06136_01956124024.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad0e10cb8f1c8468dff5391a6b8ea560f158d39e --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01956124024.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf937d3b44630d7b8e818b9d33ef2ffa65b4246c8d3a7a87765d8b7adab03c82 +size 385068 diff --git a/datasets/openslr_yoruba/yof_06136_01971716735.wav b/datasets/openslr_yoruba/yof_06136_01971716735.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d4e5de8a96e9504ff11f9a6c4794768f9041179 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01971716735.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:486ab8290ed126ef680acb72904d4410f82eb776e0ffb18d279cdb7b4b8bbd2e +size 204844 diff --git a/datasets/openslr_yoruba/yof_06136_01988102429.wav b/datasets/openslr_yoruba/yof_06136_01988102429.wav new file mode 100644 index 0000000000000000000000000000000000000000..3609fb8fbb5b6cd712cf7b6ff615f6a86cea92a4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_01988102429.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0207c261ded8ccc5c9d76257bebc188da4c06a03bbf0af31eeab6e81ed5e824 +size 385068 diff --git a/datasets/openslr_yoruba/yof_06136_02111299993.wav b/datasets/openslr_yoruba/yof_06136_02111299993.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e121ef2c2f239360d7543fc65759c5e27c64ef3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_02111299993.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b559e62f3cc72c1c250cb08d780f5973aa3a360c61b3d9d89a55a0110e8bfe7 +size 352300 diff --git a/datasets/openslr_yoruba/yof_06136_02120628850.wav b/datasets/openslr_yoruba/yof_06136_02120628850.wav new file mode 100644 index 0000000000000000000000000000000000000000..bce81994ccc88df5e147260643a8941389fc1270 --- /dev/null +++ b/datasets/openslr_yoruba/yof_06136_02120628850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6dc7588abfe5cd716ec6bab0bf6cb8f2943539f28d44a4faac62939fab117e1 +size 303148 diff --git a/datasets/openslr_yoruba/yof_07049_00005976462.wav b/datasets/openslr_yoruba/yof_07049_00005976462.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a03902c97812acc4d273452872bc60e1ce2b7a5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00005976462.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0cb4823e002b430f98833c12bcd6b23a466b6037fa8e20fcd2ef6d4f311b0d +size 516140 diff --git a/datasets/openslr_yoruba/yof_07049_00078850866.wav b/datasets/openslr_yoruba/yof_07049_00078850866.wav new file mode 100644 index 0000000000000000000000000000000000000000..4995f4625ec0d61fa510f6b33e5b3c66a9baee6b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00078850866.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff00cf883c21c2d89f145a50b507b72f9e6c7299bf79c8e2eabbfa57942d00fb +size 294956 diff --git a/datasets/openslr_yoruba/yof_07049_00087395211.wav b/datasets/openslr_yoruba/yof_07049_00087395211.wav new file mode 100644 index 0000000000000000000000000000000000000000..f08abaff6a08c115ec1a2a936860da51bb3c8c1a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00087395211.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd95010b9822cf6cfc7f3b781ae3d93199035a62a44b87ebd11ab70d33e5526 +size 335916 diff --git a/datasets/openslr_yoruba/yof_07049_00136003666.wav b/datasets/openslr_yoruba/yof_07049_00136003666.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6506c525616331b1da2665661187ab7ccd297be --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00136003666.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddba1ab9eacd029b0636ee054723f257f2e9a7cc61a4f07ed090f5824ccb09d +size 319532 diff --git a/datasets/openslr_yoruba/yof_07049_00153738067.wav b/datasets/openslr_yoruba/yof_07049_00153738067.wav new file mode 100644 index 0000000000000000000000000000000000000000..37c8ea52d2b6a6006daa67c9ddbb6e7f05d9f6c1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00153738067.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207885fe38b0d1d183591db85d5e86e3344ec200648eba4efdffc176f0b59c08 +size 286764 diff --git a/datasets/openslr_yoruba/yof_07049_00159882110.wav b/datasets/openslr_yoruba/yof_07049_00159882110.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a9e6d6cf97cb67ae086ddc16aac095f9f2cff6b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00159882110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ddda9d807cf6c74c7412d11ba7c129ce023b7c24c4b22c26ec33fc51749e7ae +size 303148 diff --git a/datasets/openslr_yoruba/yof_07049_00235830127.wav b/datasets/openslr_yoruba/yof_07049_00235830127.wav new file mode 100644 index 0000000000000000000000000000000000000000..d03f0aca2947ffee4ec0196e43e564cdb9e9ae4f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00235830127.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbe7b3249e17687974c48b49c7fec7318af85e84b092c9b60ab44a6237a7527 +size 385068 diff --git a/datasets/openslr_yoruba/yof_07049_00274271992.wav b/datasets/openslr_yoruba/yof_07049_00274271992.wav new file mode 100644 index 0000000000000000000000000000000000000000..c43418a232a8056eb089e46f1b0580bd60cb6406 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00274271992.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a528cb9aafb35abbef774224548f110071451e1e55e6a40c1dd2be9b65163643 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07049_00278461185.wav b/datasets/openslr_yoruba/yof_07049_00278461185.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b271a2411d3424fbf695017d1f9a659ef93b9a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00278461185.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f44f57f6f9db585e06d49ebff475419f98a0b7b6fa704f85c76b35dea1ae2e +size 393260 diff --git a/datasets/openslr_yoruba/yof_07049_00279339129.wav b/datasets/openslr_yoruba/yof_07049_00279339129.wav new file mode 100644 index 0000000000000000000000000000000000000000..bfc397868fcdadf1f680031d7b416cc591e63234 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00279339129.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d3cfce41a2c7738910ba25edf25cedb0c5ffafb99280d15470878e660ba876e +size 270380 diff --git a/datasets/openslr_yoruba/yof_07049_00304333546.wav b/datasets/openslr_yoruba/yof_07049_00304333546.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc837394a18a05c36969fb56671b836a5b9125ae --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00304333546.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:051517cbf0eaf264b03ac471af8394eb0d37dc767754d9cc7d0a903d3a3f4039 +size 368684 diff --git a/datasets/openslr_yoruba/yof_07049_00313558137.wav b/datasets/openslr_yoruba/yof_07049_00313558137.wav new file mode 100644 index 0000000000000000000000000000000000000000..6869743446728c69e053ed1fbc30c538571e8649 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00313558137.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dfbb4def3dda9512f187030d63dc969c45fa34784f8ddd3114269698f1cbbef +size 335916 diff --git a/datasets/openslr_yoruba/yof_07049_00326736690.wav b/datasets/openslr_yoruba/yof_07049_00326736690.wav new file mode 100644 index 0000000000000000000000000000000000000000..647a28a4d7544f76ce522348d3097337eecaa01c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00326736690.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a6074c4f45d4cc23e84f3cd226b45e5946bdf39cf955703a179007d917b8ae +size 368684 diff --git a/datasets/openslr_yoruba/yof_07049_00346398042.wav b/datasets/openslr_yoruba/yof_07049_00346398042.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4a2e2e89de64e32a15456510a0208d44001844a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00346398042.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627cd8659007a87eb7632d213f09c997cef66591ad246dec0b2070a50954e953 +size 262188 diff --git a/datasets/openslr_yoruba/yof_07049_00360321482.wav b/datasets/openslr_yoruba/yof_07049_00360321482.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe3c79903e16ec5c8acd50ca671cd4883c8ec2f3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00360321482.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0bf27465138f8f37813ab54063e664a92372e7175fc146be6816a6f8e14ad46 +size 327724 diff --git a/datasets/openslr_yoruba/yof_07049_00400744683.wav b/datasets/openslr_yoruba/yof_07049_00400744683.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b8e2ab855fe8f4f7adfcd7ed9660f20153e892d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00400744683.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2315887b64b353e1d71f253558526a48bf3b7f8b85793e2ce8027be821a8fe +size 376876 diff --git a/datasets/openslr_yoruba/yof_07049_00468261470.wav b/datasets/openslr_yoruba/yof_07049_00468261470.wav new file mode 100644 index 0000000000000000000000000000000000000000..ae74422482fb841368ba088a1c6efda97e16b34c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00468261470.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99829ac8296b8593d67b9946fd71286e6408c703502273095ddc0433d9e1f657 +size 573484 diff --git a/datasets/openslr_yoruba/yof_07049_00492240564.wav b/datasets/openslr_yoruba/yof_07049_00492240564.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ec09b204f8370e30bc0ada3c33a6d8e91d707b5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00492240564.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a59a6989476f75d15b11bd4093dfbd145886b452614520bf6fd12a43c4c90f +size 426028 diff --git a/datasets/openslr_yoruba/yof_07049_00505571393.wav b/datasets/openslr_yoruba/yof_07049_00505571393.wav new file mode 100644 index 0000000000000000000000000000000000000000..8717c5bd78f1b9040bad8dfc66e06bbe750c01e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00505571393.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de181e39cb7d51d74b9812c2375447cc0d4e0b917e35001105b9133ca5c9da32 +size 393260 diff --git a/datasets/openslr_yoruba/yof_07049_00528110335.wav b/datasets/openslr_yoruba/yof_07049_00528110335.wav new file mode 100644 index 0000000000000000000000000000000000000000..26e33c2d914eb9368baab1666866b48ec24d0e4c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00528110335.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f0562e4e137438ed57e0abcbeb0b414c10a842b9779b5f6c6e306aa7ab6e6b +size 475180 diff --git a/datasets/openslr_yoruba/yof_07049_00531290381.wav b/datasets/openslr_yoruba/yof_07049_00531290381.wav new file mode 100644 index 0000000000000000000000000000000000000000..121ef7207682a05e7bbd23f8ef4ecea8e74f38b0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00531290381.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bd17574527929b85b265655262aba792ba450f63e28d392782aa3425f6af32 +size 376876 diff --git a/datasets/openslr_yoruba/yof_07049_00547174360.wav b/datasets/openslr_yoruba/yof_07049_00547174360.wav new file mode 100644 index 0000000000000000000000000000000000000000..df867fbffc21a9420657fac3feeaccf8d63aeaac --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00547174360.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c3c18d39c9d28bee2b5acfa543cf5acaf06d7e97848c226543f1ee2e4d58a4 +size 327724 diff --git a/datasets/openslr_yoruba/yof_07049_00588179307.wav b/datasets/openslr_yoruba/yof_07049_00588179307.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4163a2ce5611a9754517a582c178b9d419a9848 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00588179307.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f93ef39183e44c7f1376e4df403038f86f991e61b74fd17d72680bfc4b38ccb7 +size 475180 diff --git a/datasets/openslr_yoruba/yof_07049_00588967694.wav b/datasets/openslr_yoruba/yof_07049_00588967694.wav new file mode 100644 index 0000000000000000000000000000000000000000..12b4adb4415a5c1bbe5ca0b1f36911ba54b6852d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00588967694.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c74e7cc6774ff6e601fc510c1abc7305935fc7298da3baa4ff234d612642bef +size 385068 diff --git a/datasets/openslr_yoruba/yof_07049_00778904123.wav b/datasets/openslr_yoruba/yof_07049_00778904123.wav new file mode 100644 index 0000000000000000000000000000000000000000..8df3851a582e29f7ad13a310485b1b465dad1efb --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00778904123.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66fd0c99b71bb232a37ce92de54b668c696cab1a999b71aefe758566bcf1d4c +size 335916 diff --git a/datasets/openslr_yoruba/yof_07049_00780329259.wav b/datasets/openslr_yoruba/yof_07049_00780329259.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd757797894010483e8e5f9b18079eb9c9cdc849 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00780329259.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f282f2797c5e3cdc088289faf77f5c8773de089c83011f08aaeee36397e242db +size 483372 diff --git a/datasets/openslr_yoruba/yof_07049_00780852618.wav b/datasets/openslr_yoruba/yof_07049_00780852618.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce00331ca147bc176be946b40fb5ecd54a69df8c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00780852618.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aca5756caa2a3ef1d234d0482bcc582ea9ab2d232769264de480d324ec48972 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07049_00801845713.wav b/datasets/openslr_yoruba/yof_07049_00801845713.wav new file mode 100644 index 0000000000000000000000000000000000000000..b197e18a131f92d60bb67adc7852a3c09c9d445e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00801845713.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2975a5eed156983a1dc392ad10755fc6b91f6a5135621f667e5bda69c162bd76 +size 237612 diff --git a/datasets/openslr_yoruba/yof_07049_00834063085.wav b/datasets/openslr_yoruba/yof_07049_00834063085.wav new file mode 100644 index 0000000000000000000000000000000000000000..1bfa9494bb27d7242df4c56c9e67f3326f6e20d7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00834063085.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd349d0c70b62fce9d13a44e4fa5faeb8f8b9d72a9567dd6d4d7ddf369c07df6 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07049_00845135352.wav b/datasets/openslr_yoruba/yof_07049_00845135352.wav new file mode 100644 index 0000000000000000000000000000000000000000..b71ab8c0b69937dc29f2f37bd40243c43a54d113 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00845135352.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8ff546a43e1c3d6af05280d055b219eb3f762335d12e0f53811bac9097555d +size 352300 diff --git a/datasets/openslr_yoruba/yof_07049_00915835146.wav b/datasets/openslr_yoruba/yof_07049_00915835146.wav new file mode 100644 index 0000000000000000000000000000000000000000..36a81ef2c9f7e7e35a05e30e885d91e58b63d738 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00915835146.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a89f71e1068a2e64dfa404c34a9fda9c3339de2b345ce248006d0c0d49a4a24 +size 426028 diff --git a/datasets/openslr_yoruba/yof_07049_00917793398.wav b/datasets/openslr_yoruba/yof_07049_00917793398.wav new file mode 100644 index 0000000000000000000000000000000000000000..156ca5e9748f84e2533aa55037b70696f67390a9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00917793398.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a83a1b8ee247433517905dd7273de1782c670b3bc470dfd4e1f3a3a192e9c23f +size 385068 diff --git a/datasets/openslr_yoruba/yof_07049_00923023128.wav b/datasets/openslr_yoruba/yof_07049_00923023128.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed237be42659d5561116fa4d341a26e196309f9d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00923023128.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc6d8ac13b4cc6d3f2c6ab15ba65f710194e3504115b83dea35709e181b9cfe +size 303148 diff --git a/datasets/openslr_yoruba/yof_07049_00923649568.wav b/datasets/openslr_yoruba/yof_07049_00923649568.wav new file mode 100644 index 0000000000000000000000000000000000000000..5cb88ccd61201cb85127a717130bfa4b77c14d06 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00923649568.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4efc8639ef9bc95a699e9fab64c90f800998866a56af444c7ebf932d2c7ced +size 483372 diff --git a/datasets/openslr_yoruba/yof_07049_00928611031.wav b/datasets/openslr_yoruba/yof_07049_00928611031.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5b7efc0ca43e6b860eee8768d4e4629218efa23 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00928611031.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3708496692a52686e87116163c8d653b7be0a864a5f395a8d7879049b24ee3 +size 327724 diff --git a/datasets/openslr_yoruba/yof_07049_00939517829.wav b/datasets/openslr_yoruba/yof_07049_00939517829.wav new file mode 100644 index 0000000000000000000000000000000000000000..78cf17266a662d42134a828f166402bdd30785c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00939517829.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484b4e363b064bf495ce472274d3ee3ad68c91ac19f1b5043a0aaa460734c338 +size 278572 diff --git a/datasets/openslr_yoruba/yof_07049_00975173110.wav b/datasets/openslr_yoruba/yof_07049_00975173110.wav new file mode 100644 index 0000000000000000000000000000000000000000..67e205ae20b8fbe65bc0e6fbca4cd1cc72029e1f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00975173110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:777b5f0132ab2c0f5ad7b17cf437044b55fca49ccb22a31cbe7b75c0300cc338 +size 696364 diff --git a/datasets/openslr_yoruba/yof_07049_00994788525.wav b/datasets/openslr_yoruba/yof_07049_00994788525.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2bd773dcef1952bd17acfd29ab4aec380ef358a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_00994788525.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939cdce5768474616eded8fe4721e39c904da1c2997df6bfd615f25703d294ae +size 319532 diff --git a/datasets/openslr_yoruba/yof_07049_01031676807.wav b/datasets/openslr_yoruba/yof_07049_01031676807.wav new file mode 100644 index 0000000000000000000000000000000000000000..7cc0d7a09f82b28f16404608de39a3fc96b4cf25 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01031676807.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617689220461e5d155fdd01a66bfb084c8f3d4f11f07db1b85c9dd1bf89e5da9 +size 344108 diff --git a/datasets/openslr_yoruba/yof_07049_01107757511.wav b/datasets/openslr_yoruba/yof_07049_01107757511.wav new file mode 100644 index 0000000000000000000000000000000000000000..2fb0a9cb0add47afc8276a6d45b570662ae8093b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01107757511.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1940e619f25fcc874c337ce30686f06ea0636637001ce1d31cb399609eaeb1ac +size 294956 diff --git a/datasets/openslr_yoruba/yof_07049_01147957480.wav b/datasets/openslr_yoruba/yof_07049_01147957480.wav new file mode 100644 index 0000000000000000000000000000000000000000..33ccb25ae340eda0e5a356a87911ab54f840fa7a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01147957480.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44dfd433235d88a394c08d64a1ad169c4c4441a08ff508f77e84401ebf16d88c +size 393260 diff --git a/datasets/openslr_yoruba/yof_07049_01155498599.wav b/datasets/openslr_yoruba/yof_07049_01155498599.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c321e2af61e0fd9eac56dc06c8de04374630e06 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01155498599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd60132dbf057974082f94e3ce0a2787011016d61c50b426d157c2c3a6ee9223 +size 409644 diff --git a/datasets/openslr_yoruba/yof_07049_01177255698.wav b/datasets/openslr_yoruba/yof_07049_01177255698.wav new file mode 100644 index 0000000000000000000000000000000000000000..83da4539833817d3d5b9c7c21587b4e19b7cf794 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01177255698.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55fe62380dbf60a5fe47ac7a6d75d890dc0988326dbfcceb3e4132ce9afb8099 +size 344108 diff --git a/datasets/openslr_yoruba/yof_07049_01184708283.wav b/datasets/openslr_yoruba/yof_07049_01184708283.wav new file mode 100644 index 0000000000000000000000000000000000000000..0fd64011345012c8b8f003b384ab6bac95c55552 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01184708283.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7459192ce53729b52bb3e6625fd2d0a0c3b9216925785a029ca076125afae70a +size 286764 diff --git a/datasets/openslr_yoruba/yof_07049_01186091241.wav b/datasets/openslr_yoruba/yof_07049_01186091241.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b3f72543f3048e440756492e230e69682886309 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01186091241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b4bffd8e1bb8989cb801bbe902b5f2bef1988730caedf2c84ba45860dd2dd4 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07049_01210522679.wav b/datasets/openslr_yoruba/yof_07049_01210522679.wav new file mode 100644 index 0000000000000000000000000000000000000000..774d7b74d99260996763195af478d1ff1d2d2bf9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01210522679.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843153919787b2afcc7ee798ae0e2924ca6a10ae00db256aa12a48595277c43d +size 245804 diff --git a/datasets/openslr_yoruba/yof_07049_01214603960.wav b/datasets/openslr_yoruba/yof_07049_01214603960.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bb4201d4087e83b0fbdc96370796840ac1641e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01214603960.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60406979297bb451e3449e692ccf078e39b244151b31ffbb9cde10c3c5237757 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07049_01228983958.wav b/datasets/openslr_yoruba/yof_07049_01228983958.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f119140ef4112a6d6afaec661f3a0552b86ca7b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01228983958.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc02436f1c679f5b51945a629413f2b190fff64750484919e1e077181006685 +size 335916 diff --git a/datasets/openslr_yoruba/yof_07049_01251927017.wav b/datasets/openslr_yoruba/yof_07049_01251927017.wav new file mode 100644 index 0000000000000000000000000000000000000000..97e6831aed0aa8bfa4371a33d4a10ae9e980e1d9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01251927017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e952eccc49c812b9904278167e5e1cc50f5f15633e9be41f4995b3801955e956 +size 729132 diff --git a/datasets/openslr_yoruba/yof_07049_01261727959.wav b/datasets/openslr_yoruba/yof_07049_01261727959.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d97a706ffec8ee5dde70b4fe93f3e852452d4d8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01261727959.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c895687ebb3ee04737ca77c802d5cb992b84204f27fd6011b8fb62f1f70c66dc +size 335916 diff --git a/datasets/openslr_yoruba/yof_07049_01263861207.wav b/datasets/openslr_yoruba/yof_07049_01263861207.wav new file mode 100644 index 0000000000000000000000000000000000000000..b925d434775034e8765962b197e37206ce5f8d8b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01263861207.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3805e9cb6acc8ee67ac7f6b02712e57c5df593351829e7994269ac49c3c2d7 +size 344108 diff --git a/datasets/openslr_yoruba/yof_07049_01266389373.wav b/datasets/openslr_yoruba/yof_07049_01266389373.wav new file mode 100644 index 0000000000000000000000000000000000000000..26c58e8fa77bb5185a2e8a973ced4aa59df104d3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01266389373.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:435f47ff8726d73f73bed55bb336a7193e068a77635e96328a66dc5cb577bd3a +size 262188 diff --git a/datasets/openslr_yoruba/yof_07049_01290018931.wav b/datasets/openslr_yoruba/yof_07049_01290018931.wav new file mode 100644 index 0000000000000000000000000000000000000000..655e3e841ec708c1bd3c4a0298415733e3a73c0d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01290018931.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6feb2d7006f5a21d70a6bfad6eb20228e1da153da772b5056e34ecdaacabc9 +size 573484 diff --git a/datasets/openslr_yoruba/yof_07049_01311259888.wav b/datasets/openslr_yoruba/yof_07049_01311259888.wav new file mode 100644 index 0000000000000000000000000000000000000000..890c66ec23be7b9a883d6b817cf95d9ef6c112ea --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01311259888.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e22fa6c3f00f9b6dc7e0b7cb9e733036b6e7f8e77e5fbe22e54e85e19357654 +size 327724 diff --git a/datasets/openslr_yoruba/yof_07049_01316255284.wav b/datasets/openslr_yoruba/yof_07049_01316255284.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e42c69b791b8237925585eb9a92732c3156aa15 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01316255284.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e3328e438a15c42e9eb75cceb6f247ad3bb54716e0193e7e8cf31e3d6b8902 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07049_01316508476.wav b/datasets/openslr_yoruba/yof_07049_01316508476.wav new file mode 100644 index 0000000000000000000000000000000000000000..80599f550bc49242aba2e397dbb812412fa82f49 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01316508476.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc80e558433aca508bf405c2342ff4bb0235f5070dfb8555f00c83370102a68 +size 729132 diff --git a/datasets/openslr_yoruba/yof_07049_01324447191.wav b/datasets/openslr_yoruba/yof_07049_01324447191.wav new file mode 100644 index 0000000000000000000000000000000000000000..03ee81a4c24f96f94f97b7199ccb2e3b5127f15c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01324447191.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec8feaa8d6c1849179c527d8f5957041f8926c82528431984a00411063eceae +size 548908 diff --git a/datasets/openslr_yoruba/yof_07049_01340613298.wav b/datasets/openslr_yoruba/yof_07049_01340613298.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ec42817b237d2b966db4e71f79739c50443cd49 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01340613298.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81fd6467a1ebeb3cb6874f418e8aafa810fee30b9345cb977cbab2bd825c0c04 +size 327724 diff --git a/datasets/openslr_yoruba/yof_07049_01341924253.wav b/datasets/openslr_yoruba/yof_07049_01341924253.wav new file mode 100644 index 0000000000000000000000000000000000000000..ff6cbd62ed6ed8db5fb329a9de5d7b3beccc3dbb --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01341924253.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366e35397c3f6fb5cc7116ccdcbd11ffc8d55e0f90684dc2489836ef65a781bc +size 294956 diff --git a/datasets/openslr_yoruba/yof_07049_01352344402.wav b/datasets/openslr_yoruba/yof_07049_01352344402.wav new file mode 100644 index 0000000000000000000000000000000000000000..b01d97c3cd425ffc97b6a233d3caaa3eef4a6347 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01352344402.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48ab0e4400feb9a5f45d1de5b4720954a7ee8beda06efa7c45475fd4ce6dc8a +size 475180 diff --git a/datasets/openslr_yoruba/yof_07049_01355198658.wav b/datasets/openslr_yoruba/yof_07049_01355198658.wav new file mode 100644 index 0000000000000000000000000000000000000000..3941c2728dec2284a0670ebdafc04afe4f244601 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01355198658.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a61a34bcdec2aad734a83188abdf31d6449dca73ecb1ef70f8d5ecaffd5e36 +size 245804 diff --git a/datasets/openslr_yoruba/yof_07049_01378993031.wav b/datasets/openslr_yoruba/yof_07049_01378993031.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1b5ab3c2824500f531b5154d940debfa5acf3ea --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01378993031.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4069324a6a9678d7644c816aa75528a1f006cbf301abe0185f13b998c3b9f0 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07049_01383219624.wav b/datasets/openslr_yoruba/yof_07049_01383219624.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d38110f3de26245f0796aa1a7d434f6f839aaa3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01383219624.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb9b5d7b9d1b4ab72354229f41a05ebb5325a4e8b86dbd963287c3d198b395ef +size 426028 diff --git a/datasets/openslr_yoruba/yof_07049_01385017817.wav b/datasets/openslr_yoruba/yof_07049_01385017817.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb68558119e81e6f22b6a86c9ef89eb2673297f7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01385017817.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e075927c9408bcf7b8ddbdc19f30284d58dd02c2128a3a00e9df88ac7a3692 +size 671788 diff --git a/datasets/openslr_yoruba/yof_07049_01386967596.wav b/datasets/openslr_yoruba/yof_07049_01386967596.wav new file mode 100644 index 0000000000000000000000000000000000000000..4360d0c68287c772831ab3543af6b6bbbae3dc3e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01386967596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a94474955f89174c19e2be43c76983b87c43e94528a9e071db377558fb60e1 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07049_01485518599.wav b/datasets/openslr_yoruba/yof_07049_01485518599.wav new file mode 100644 index 0000000000000000000000000000000000000000..2bee19939b57d3bc637e3c44080180f8f327b3d6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01485518599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585b7f5f25e7eb51316b05d2f5766ca78901cc6ed495978aadbd73242d8bda31 +size 598060 diff --git a/datasets/openslr_yoruba/yof_07049_01549341197.wav b/datasets/openslr_yoruba/yof_07049_01549341197.wav new file mode 100644 index 0000000000000000000000000000000000000000..ddb9aa269b1a55ff5b6f94edda7cd6aa33455a71 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01549341197.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea008bc9d163254d9bc0a378bd16ba40107578325c97727e7b33ca2ff746a7e +size 327724 diff --git a/datasets/openslr_yoruba/yof_07049_01570519517.wav b/datasets/openslr_yoruba/yof_07049_01570519517.wav new file mode 100644 index 0000000000000000000000000000000000000000..50faf6c5c27fdb00b1660535879ed6e21a7764a2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01570519517.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb8ab49d5bf3e3308b0888ff96ceb3bfe4c863c287cf10af0a088ce19dd4d3d +size 319532 diff --git a/datasets/openslr_yoruba/yof_07049_01581353881.wav b/datasets/openslr_yoruba/yof_07049_01581353881.wav new file mode 100644 index 0000000000000000000000000000000000000000..826ba503602239a6d1e9e4b51af2152ab9da1ac8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01581353881.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15620ba0e1df6ccd55e6c15324c77b8af5454479d3dde544f6b2ad05d4cf2379 +size 204844 diff --git a/datasets/openslr_yoruba/yof_07049_01597535678.wav b/datasets/openslr_yoruba/yof_07049_01597535678.wav new file mode 100644 index 0000000000000000000000000000000000000000..f1847753b6f675819c3dfe64a4912ff358e53ba4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01597535678.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fa47c6a528d5e01b6039ba0eb505fd506cf665f74a2d87e5107036c07945ca +size 319532 diff --git a/datasets/openslr_yoruba/yof_07049_01619526477.wav b/datasets/openslr_yoruba/yof_07049_01619526477.wav new file mode 100644 index 0000000000000000000000000000000000000000..66d79daed25cd0b73a699b7e5d2403915a6b7a1a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01619526477.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af6f6b3bacbd832e986e555ed045947a9859fca9e4ece20708e2eda1b6c34a3 +size 327724 diff --git a/datasets/openslr_yoruba/yof_07049_01623034007.wav b/datasets/openslr_yoruba/yof_07049_01623034007.wav new file mode 100644 index 0000000000000000000000000000000000000000..91a962341b8d2d18b5255b24eaff0518e5c8bc0b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01623034007.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea2bad3650648c4fe8e64cc38873636090c2f172231de2c23683bb11cd93264 +size 417836 diff --git a/datasets/openslr_yoruba/yof_07049_01634490943.wav b/datasets/openslr_yoruba/yof_07049_01634490943.wav new file mode 100644 index 0000000000000000000000000000000000000000..6411ba20c9b19f921261fe61a20d876c694c8d2d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01634490943.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3cad2e551f42606a57842a267f061c105001e32a6d81c49d1e161e355d36e1a +size 483372 diff --git a/datasets/openslr_yoruba/yof_07049_01701419720.wav b/datasets/openslr_yoruba/yof_07049_01701419720.wav new file mode 100644 index 0000000000000000000000000000000000000000..28d9070d44a3430235ea83d88d9041b77d526544 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01701419720.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465be1376ac78ff879308a8aec0d039257c66c8b92489315ccce97857baa78c7 +size 368684 diff --git a/datasets/openslr_yoruba/yof_07049_01719560442.wav b/datasets/openslr_yoruba/yof_07049_01719560442.wav new file mode 100644 index 0000000000000000000000000000000000000000..138c3a42381e0e9504d7774eb8cafabc2993c159 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01719560442.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a1a4f1a20de7b23538ee2f4eb9eb4f3839f1471fa2abf2b7870f434f224700 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07049_01725771540.wav b/datasets/openslr_yoruba/yof_07049_01725771540.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e1242e5adce4a5d8b575fcdb0a3161cdc771f5e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01725771540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9096ed6b6fc9809ff7005d5e0311009437f405c81db248e4ad48f07bb4b4a00a +size 294956 diff --git a/datasets/openslr_yoruba/yof_07049_01739905760.wav b/datasets/openslr_yoruba/yof_07049_01739905760.wav new file mode 100644 index 0000000000000000000000000000000000000000..79147ed4f7322326c9d07b00072c542842795565 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01739905760.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:693de7c5cee5f1d693ef8d6a14942c55c4fc7af10e73fbb01eb119a24737064d +size 352300 diff --git a/datasets/openslr_yoruba/yof_07049_01740818863.wav b/datasets/openslr_yoruba/yof_07049_01740818863.wav new file mode 100644 index 0000000000000000000000000000000000000000..9cec88f2fe9d037050a232801ef7a636b2d8ae67 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01740818863.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2403eca0d766eea17b84ba4280edf623fca6e49fd6da9d7fb4c8239e8bc8d4 +size 344108 diff --git a/datasets/openslr_yoruba/yof_07049_01783255606.wav b/datasets/openslr_yoruba/yof_07049_01783255606.wav new file mode 100644 index 0000000000000000000000000000000000000000..f554ffed23ddfcb0550347db0099b834ff62a19f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01783255606.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301132ee92d22b304b1ed5460ff9ce618f9d8d1d9829697d7f5cbcbc89b52f9c +size 385068 diff --git a/datasets/openslr_yoruba/yof_07049_01792666927.wav b/datasets/openslr_yoruba/yof_07049_01792666927.wav new file mode 100644 index 0000000000000000000000000000000000000000..822f35ab1a5cab5a401a72a8ccb53bf7a39df7a6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01792666927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7262aa9714aa70252e46b0c8c5af1a1e7337e19e4fb454e58f214273cba3b793 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07049_01804489133.wav b/datasets/openslr_yoruba/yof_07049_01804489133.wav new file mode 100644 index 0000000000000000000000000000000000000000..20034c650ee1a8118c4f5d3db7f86c2bc6291f54 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01804489133.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2982483840a2572cd3445ccaa7f7314eb76b4e951302439a65edd9b4ab3d91b0 +size 376876 diff --git a/datasets/openslr_yoruba/yof_07049_01823753028.wav b/datasets/openslr_yoruba/yof_07049_01823753028.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad61d03c8248ad04d003b9bc32f36706fd48517d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01823753028.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18ea69d75dc52789073e9982e920ff701e2154cf65ca377891fd9540ebc60a9 +size 434220 diff --git a/datasets/openslr_yoruba/yof_07049_01848488355.wav b/datasets/openslr_yoruba/yof_07049_01848488355.wav new file mode 100644 index 0000000000000000000000000000000000000000..017600bde4fd510ec4c538908ee50d29583a2db2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01848488355.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f08e199c62d84d27f6d06e8ffeeef7c081aed3e90154cde4c20eada74365f95 +size 450604 diff --git a/datasets/openslr_yoruba/yof_07049_01882396928.wav b/datasets/openslr_yoruba/yof_07049_01882396928.wav new file mode 100644 index 0000000000000000000000000000000000000000..57e686d7557cb743a951271348fd83b859b4ec2f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01882396928.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8051cf695ec856f1d8538001602fc3aba6784e424cdd7a85e1762704a843fb30 +size 385068 diff --git a/datasets/openslr_yoruba/yof_07049_01886652624.wav b/datasets/openslr_yoruba/yof_07049_01886652624.wav new file mode 100644 index 0000000000000000000000000000000000000000..1523a26cfa8be0ce2c25bffc8bd9abb6c65f05f5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01886652624.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab4585dcdc207d7fa027a562b0ad53b8206217d1b96fde513925c6704ef096e +size 294956 diff --git a/datasets/openslr_yoruba/yof_07049_01942697716.wav b/datasets/openslr_yoruba/yof_07049_01942697716.wav new file mode 100644 index 0000000000000000000000000000000000000000..27897bffbb8d9efdfb5bd076e905da9d250d2166 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01942697716.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec51577c8b603afd31fc90e35dafbda08b05f80e0f0dac864ced410c09edc9a +size 360492 diff --git a/datasets/openslr_yoruba/yof_07049_01950766461.wav b/datasets/openslr_yoruba/yof_07049_01950766461.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4f818510419ae1b7dba5ca62539d0f726d8ab1d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01950766461.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5151aaa42c128315d89e5745ce680e58617e7f747170fc9b49d9f688c5a98620 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07049_01952218879.wav b/datasets/openslr_yoruba/yof_07049_01952218879.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0ac5b74931d059aebbcfbe61197785be57c367d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01952218879.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a0dd3477163e7faa382afcb71713f071c1c3698953be3c2b626b2be27da3ae +size 458796 diff --git a/datasets/openslr_yoruba/yof_07049_01965969753.wav b/datasets/openslr_yoruba/yof_07049_01965969753.wav new file mode 100644 index 0000000000000000000000000000000000000000..5db9546d746e46140fdbbc8b9e8f6501caa05291 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01965969753.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb05c5a29ac2a08d37b9fcef7c2c0101e1de683e8b137f768315cf7b52cb3f18 +size 720940 diff --git a/datasets/openslr_yoruba/yof_07049_01984456055.wav b/datasets/openslr_yoruba/yof_07049_01984456055.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4da309153f47b7b41e1e74197c366140e6ba0a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_01984456055.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b28ec6e031c19b1b7f67c6dcfbd1b7ac1740ffa58f00c6fdb5e482c1710728d4 +size 426028 diff --git a/datasets/openslr_yoruba/yof_07049_02016319418.wav b/datasets/openslr_yoruba/yof_07049_02016319418.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d4e74fe5dcb088485825b8eba0e162eb72f5328 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02016319418.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1214cf5fe6c1633deaac2b9eb4ceeae666c1b87dd161e82cb62d8df3d05c75 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07049_02038390680.wav b/datasets/openslr_yoruba/yof_07049_02038390680.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f428c9b51c24808d7bd4d7ae4082329f59f6f7f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02038390680.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3910ed096a51652ae6d5c964077bd2947c125d7317e7f6fcfe85f2f85b006117 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07049_02051094706.wav b/datasets/openslr_yoruba/yof_07049_02051094706.wav new file mode 100644 index 0000000000000000000000000000000000000000..3df6b79bac29d04831aa8639cd069219f44e85cb --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02051094706.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540f61af96064ba4a2d8b1347642683747417261fb96a82ded9d4467bdc8ec2b +size 376876 diff --git a/datasets/openslr_yoruba/yof_07049_02070301853.wav b/datasets/openslr_yoruba/yof_07049_02070301853.wav new file mode 100644 index 0000000000000000000000000000000000000000..2d9c74f07c5e526ef547fca678d43f623677e482 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02070301853.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d47516626d757de3182bfe9e93b4837dde5c1e21e06b969783fbfcaae4cb90d +size 286764 diff --git a/datasets/openslr_yoruba/yof_07049_02109086861.wav b/datasets/openslr_yoruba/yof_07049_02109086861.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd0a70ebb9142c44899d2258c263eb748518f3a2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02109086861.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860ff157f7dbad68674be6b0cd15c198999f87f09e35129a53bf29767f7b4742 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07049_02122119774.wav b/datasets/openslr_yoruba/yof_07049_02122119774.wav new file mode 100644 index 0000000000000000000000000000000000000000..2288da5e6cf2fa1c71ffe238d3a2ca95b0b6f446 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02122119774.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5af2d89871197380f134dca44dcfcd2812f3bd9ca4f11bfbf921e3805473094 +size 450604 diff --git a/datasets/openslr_yoruba/yof_07049_02132000637.wav b/datasets/openslr_yoruba/yof_07049_02132000637.wav new file mode 100644 index 0000000000000000000000000000000000000000..5dd5377bdcbc12037468dcdac5b3ad1a5e9d3794 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02132000637.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d7b4bd6e2040144440a504f7c03853cd67c31c89d39389eacfc05b045aecf0 +size 303148 diff --git a/datasets/openslr_yoruba/yof_07049_02135353632.wav b/datasets/openslr_yoruba/yof_07049_02135353632.wav new file mode 100644 index 0000000000000000000000000000000000000000..930bd5491ff178f8bcd08e9175e34cf6d9e5079f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02135353632.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553625de36262efb1ebbc0905049fccb852526055d32d93b367a4676bfd9fcae +size 319532 diff --git a/datasets/openslr_yoruba/yof_07049_02144487462.wav b/datasets/openslr_yoruba/yof_07049_02144487462.wav new file mode 100644 index 0000000000000000000000000000000000000000..f25373fa3f70fc4ff882143004c4fc446a2d5d67 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07049_02144487462.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c3dfabee6213bf738f7ab6c1c0e55a00b09ed1a326b07f5b17ba4466d455ac5 +size 622636 diff --git a/datasets/openslr_yoruba/yof_07505_00008820380.wav b/datasets/openslr_yoruba/yof_07505_00008820380.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0ae74de2506cfdb145d1c07b912d24252a737a9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00008820380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645e5198670fbdde85032bc0c9836dd5c3bf0eaf406e7613d9bbec3eff1d5174 +size 335916 diff --git a/datasets/openslr_yoruba/yof_07505_00043653156.wav b/datasets/openslr_yoruba/yof_07505_00043653156.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ae3b8075a3103ee112492adb368c9d383f8158b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00043653156.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa90e7d58ad3b8af556c8ad941b9bef8533b6178b6ae543e9b8b2ae4034a91c3 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07505_00062924003.wav b/datasets/openslr_yoruba/yof_07505_00062924003.wav new file mode 100644 index 0000000000000000000000000000000000000000..332a78b83e6e727e65de7f8e99b67cff5a3f219e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00062924003.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c212c5a0717720056fc455e5331c1ab0c28a4bcaf8dea890c562dde9a2c771cd +size 376876 diff --git a/datasets/openslr_yoruba/yof_07505_00093022612.wav b/datasets/openslr_yoruba/yof_07505_00093022612.wav new file mode 100644 index 0000000000000000000000000000000000000000..f04e7ff306a4eb3726b328e1dd97efadb58caf41 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00093022612.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca3dd727eaae711415101677bb88866e209812ed8028b3ac71f5dcb32e8cd80 +size 491564 diff --git a/datasets/openslr_yoruba/yof_07505_00118794674.wav b/datasets/openslr_yoruba/yof_07505_00118794674.wav new file mode 100644 index 0000000000000000000000000000000000000000..b37d4329b11feab40003bbdf127eef2816e38104 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00118794674.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2501152294ddfc6774d0963efef03c86788c1a5411677920e7948b1291809cd6 +size 548908 diff --git a/datasets/openslr_yoruba/yof_07505_00130217514.wav b/datasets/openslr_yoruba/yof_07505_00130217514.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ecfe7bcdcf128b968a88d29aa3c7c463f2d504f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00130217514.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5231a8fe4a36736a8a85208692aeb21d2c7cee43b8e8ec36460d982cdf58383 +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_00148750272.wav b/datasets/openslr_yoruba/yof_07505_00148750272.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcdd908e124c5fb07e5b1f1be55cc60a3bb28642 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00148750272.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837d9a725d761643360a649ac14527bf37966f4479a32e7c6963659eb5bee73a +size 335916 diff --git a/datasets/openslr_yoruba/yof_07505_00167726127.wav b/datasets/openslr_yoruba/yof_07505_00167726127.wav new file mode 100644 index 0000000000000000000000000000000000000000..718bca1f227c2ef3a2e4bf732945ebd7e4e9960f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00167726127.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10d95051cfb19205d74d2d23a54d40926c4377b9a1f70526eff08b9d5e77587 +size 794668 diff --git a/datasets/openslr_yoruba/yof_07505_00224569445.wav b/datasets/openslr_yoruba/yof_07505_00224569445.wav new file mode 100644 index 0000000000000000000000000000000000000000..76485cbb9cb47568963b14c26b6889c79e9916d8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00224569445.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e8acd4be2ce9a1823f624fa2b62a904143376caac1fc9782772338631fdc4c +size 311340 diff --git a/datasets/openslr_yoruba/yof_07505_00247612154.wav b/datasets/openslr_yoruba/yof_07505_00247612154.wav new file mode 100644 index 0000000000000000000000000000000000000000..abe83bdebea3b0a4a4bfa722c5b1c5d2bf5b14af --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00247612154.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7e827e901916b0dcee07fb020c6f0d9f4aa2752a16b9dd380dcb0ab0842896 +size 385068 diff --git a/datasets/openslr_yoruba/yof_07505_00294960765.wav b/datasets/openslr_yoruba/yof_07505_00294960765.wav new file mode 100644 index 0000000000000000000000000000000000000000..5bc5cbf5349da70489e070d80dffa3c4fa1988fd --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00294960765.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc36d367aaa4878516e79c99a1f42b515bb8780d8272f59022bfef038b22624 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07505_00302207587.wav b/datasets/openslr_yoruba/yof_07505_00302207587.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8dc8b62a8e603843d8a9072c7dab42a71dc1c98 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00302207587.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d287fcb87df8cf3dc1c262e89a40eff83d5ffc9646e4007bceb7f26815b0f4 +size 376876 diff --git a/datasets/openslr_yoruba/yof_07505_00305088703.wav b/datasets/openslr_yoruba/yof_07505_00305088703.wav new file mode 100644 index 0000000000000000000000000000000000000000..f01b5b5b7fb68202684d079e04240ad2912c77c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00305088703.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d95657f050f2184c3952fa7436ff5628072cdcbc8d3e2774535e2a1a13f35d9 +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_00307512205.wav b/datasets/openslr_yoruba/yof_07505_00307512205.wav new file mode 100644 index 0000000000000000000000000000000000000000..a367fca2aa7d7086430a77e550088d9860059299 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00307512205.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05bd65dbc87edc4691a999f6ddfc25151f8e8a67aa441d58e7b2cba16d75e871 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07505_00324040990.wav b/datasets/openslr_yoruba/yof_07505_00324040990.wav new file mode 100644 index 0000000000000000000000000000000000000000..757343fa370263852a917ae33d4f3b23c9727d47 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00324040990.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a30ff64b91f7c77307d21130b5ad1f34141b4b881b731138c0e804cab3f827 +size 376876 diff --git a/datasets/openslr_yoruba/yof_07505_00337763425.wav b/datasets/openslr_yoruba/yof_07505_00337763425.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6d6de0a9de3257696cf367cc2467ce6dd65eb4d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00337763425.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e00b0a8b56f2d4205e5827273601e4c9ab1dae05e7842576cbf1e012222dd9 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07505_00348278570.wav b/datasets/openslr_yoruba/yof_07505_00348278570.wav new file mode 100644 index 0000000000000000000000000000000000000000..d5bbf0dec9d44b66475c3feba20539c8f8f5b8ce --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00348278570.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9a157d9f84834c1dc9529b81ea9ea6ead59b63a14f78149c27824a3fdcd239 +size 376876 diff --git a/datasets/openslr_yoruba/yof_07505_00354138746.wav b/datasets/openslr_yoruba/yof_07505_00354138746.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a2fcfbac1a0cf5c809d5535f181e324cb8d4af3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00354138746.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ecc1e53416c11df1f54b1263da9449eef431482834143d291ab70340240c04b +size 401452 diff --git a/datasets/openslr_yoruba/yof_07505_00360147414.wav b/datasets/openslr_yoruba/yof_07505_00360147414.wav new file mode 100644 index 0000000000000000000000000000000000000000..e04f01313533d64b9b53ee45a730815711888847 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00360147414.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95705ef8a649395a7bae1ea771d7e85d90f495da0785a38588a556578cd8503 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07505_00373776736.wav b/datasets/openslr_yoruba/yof_07505_00373776736.wav new file mode 100644 index 0000000000000000000000000000000000000000..514493b6764356da096a891a3d3c5ce1bd3a2893 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00373776736.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88a937f5d264cee3c2526b5e6af7659386ebe412b78fe61e2c896bfa9a3328b +size 417836 diff --git a/datasets/openslr_yoruba/yof_07505_00414690798.wav b/datasets/openslr_yoruba/yof_07505_00414690798.wav new file mode 100644 index 0000000000000000000000000000000000000000..c39162aa9a0087829ccb0adb3c8fe8398331548c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00414690798.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bdf0ebe348fdca3135cac3a057390a27c9053bec4793676699ff93841e9c6e1 +size 540716 diff --git a/datasets/openslr_yoruba/yof_07505_00437825811.wav b/datasets/openslr_yoruba/yof_07505_00437825811.wav new file mode 100644 index 0000000000000000000000000000000000000000..17c34db87b7be600d3b27f738dbfbc5b8373b77b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00437825811.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b280a6bb34ee87830370df671069a31de57ec9f067834c88f975eaff7683202f +size 598060 diff --git a/datasets/openslr_yoruba/yof_07505_00441090939.wav b/datasets/openslr_yoruba/yof_07505_00441090939.wav new file mode 100644 index 0000000000000000000000000000000000000000..362c415db67d54967220d3b6a7bf327aaf6c42d6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00441090939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7182d6d4e8f31bb0324cb0c4700fb9f6d6e078bfa102a73a6d8956822efda20 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_00461184390.wav b/datasets/openslr_yoruba/yof_07505_00461184390.wav new file mode 100644 index 0000000000000000000000000000000000000000..e357f8cf548399d47f3d9fd7f62f9f6f78c3f0c1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00461184390.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430628688d9e202b034848a7d254e0d5af815b3ee3b910a3db67c587b0d252d7 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_00482003654.wav b/datasets/openslr_yoruba/yof_07505_00482003654.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f040ef41263ccc2c7cceb3be77f243dc8319e31 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00482003654.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f8f67174379e5dec4c78475a9bbbca2aa51fcd4906fdabdd757f22f2a22c6f +size 426028 diff --git a/datasets/openslr_yoruba/yof_07505_00486568929.wav b/datasets/openslr_yoruba/yof_07505_00486568929.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec41310fc54cad8d11032e68dc6e9d7e9bce652c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00486568929.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c14296136c631f6b0b47362c24cb987bbf02b682b4e194f303eaf5054626aa +size 663596 diff --git a/datasets/openslr_yoruba/yof_07505_00492351957.wav b/datasets/openslr_yoruba/yof_07505_00492351957.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1ec0cf54489969aec726b60ddb7b428a83648c7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00492351957.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c286c254fa371064bb044633acbafd7855dcf051973a6397b36d5f613a16a35d +size 466988 diff --git a/datasets/openslr_yoruba/yof_07505_00496759467.wav b/datasets/openslr_yoruba/yof_07505_00496759467.wav new file mode 100644 index 0000000000000000000000000000000000000000..eece867d8a0196cd9f00e5040e4b9b5904821c44 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00496759467.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19242adc6a43f6c3d4891a2bfbf304737621d658eb0806a928a9fb1199a30e2a +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_00506347447.wav b/datasets/openslr_yoruba/yof_07505_00506347447.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e2a158c4badaa4e657e5de4451eed1ea616f1e4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00506347447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b59ceb8649b19299965799da1922b762be59536e6eb06949ef8d14c21d9378 +size 368684 diff --git a/datasets/openslr_yoruba/yof_07505_00541120679.wav b/datasets/openslr_yoruba/yof_07505_00541120679.wav new file mode 100644 index 0000000000000000000000000000000000000000..23849ac6446070e336efe735b606bfd4d1471c3b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00541120679.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0332576316374acbb6b0ceaa628ab5b7728788a4f3eb1b13391a020f3b57a34 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07505_00553428416.wav b/datasets/openslr_yoruba/yof_07505_00553428416.wav new file mode 100644 index 0000000000000000000000000000000000000000..eaf7ac924609909ce09571e139b27107ee286291 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00553428416.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b735ef9567d134b0e36e19cdfd3bce6870a1b32856815ab53289170dcb26564 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07505_00576738266.wav b/datasets/openslr_yoruba/yof_07505_00576738266.wav new file mode 100644 index 0000000000000000000000000000000000000000..7edbce6c9d363f215622114f77349ddde1dbe7a8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00576738266.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44369ec62cbe4fe344af0cf5e62cd6d19684ac5a97e16b37198f515f9a0b05da +size 475180 diff --git a/datasets/openslr_yoruba/yof_07505_00651254141.wav b/datasets/openslr_yoruba/yof_07505_00651254141.wav new file mode 100644 index 0000000000000000000000000000000000000000..edd8ea81cac1ce4020c68ecb4cf4ae83c6e7a53a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00651254141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3072c9c18fafb24c971881764d344177b439e5b8505bc393efa0fb38ede7690d +size 344108 diff --git a/datasets/openslr_yoruba/yof_07505_00702744514.wav b/datasets/openslr_yoruba/yof_07505_00702744514.wav new file mode 100644 index 0000000000000000000000000000000000000000..9809996c46a710a318b4f4ab69396a41a2e43285 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00702744514.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6008e3f4472541161db8b6445191bb7bf5e6c03c17f622598befae208b140411 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07505_00715199030.wav b/datasets/openslr_yoruba/yof_07505_00715199030.wav new file mode 100644 index 0000000000000000000000000000000000000000..265b1d4e5babe17d8f57560e67d2a7880dc1a7af --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00715199030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb5c50d6eb3e1e10b060cc30ba313fd995b7300ddee74a0c25d56a922cb9413 +size 671788 diff --git a/datasets/openslr_yoruba/yof_07505_00717610483.wav b/datasets/openslr_yoruba/yof_07505_00717610483.wav new file mode 100644 index 0000000000000000000000000000000000000000..9538255b70477dee00fd5312e1899eed04ea355f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00717610483.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3fe11532006478200242fd989e04caf0a11e59b0a43c4c6a4eec05b49084a9 +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_00742649507.wav b/datasets/openslr_yoruba/yof_07505_00742649507.wav new file mode 100644 index 0000000000000000000000000000000000000000..0acb327f5ab7ab24cae5534b63e5429f1e8df136 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00742649507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f25fba7c50dc1b246518ee4c74123231aca3a9aaf663935b8a3052831da1173 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07505_00761596969.wav b/datasets/openslr_yoruba/yof_07505_00761596969.wav new file mode 100644 index 0000000000000000000000000000000000000000..56bf3e1ca97cee8b5c6f8bbb9a2dad777817d84e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00761596969.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10213be4ca9221fc95b0bd182438abdb80e9625dcc87e7dfb2138aed1d8e2eda +size 360492 diff --git a/datasets/openslr_yoruba/yof_07505_00770042424.wav b/datasets/openslr_yoruba/yof_07505_00770042424.wav new file mode 100644 index 0000000000000000000000000000000000000000..45a132a3acb35513c4dd154079b8889b1c8c65f6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00770042424.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f89035f02331ccd8a85dd931045302a92771fb83363f340ba3727585b7f8eb +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_00786155626.wav b/datasets/openslr_yoruba/yof_07505_00786155626.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d3e8df4f4dc01398d12fa1a6767433f54e519bb --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00786155626.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:059ea9a93d6e5829950ddd343382a3d943863e634d88d13c444d3692992acaea +size 368684 diff --git a/datasets/openslr_yoruba/yof_07505_00817036781.wav b/datasets/openslr_yoruba/yof_07505_00817036781.wav new file mode 100644 index 0000000000000000000000000000000000000000..80d9e5c21bf54ad6800b02ea3fde087f99d7d174 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00817036781.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197793040e567e37af72a6aa1c67f8f5e006dc84ad20e5e0f9c96497b51f0aa3 +size 344108 diff --git a/datasets/openslr_yoruba/yof_07505_00823664251.wav b/datasets/openslr_yoruba/yof_07505_00823664251.wav new file mode 100644 index 0000000000000000000000000000000000000000..8158308b57f74c2abbd3a8c35ddec8067130b57d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00823664251.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3bde86c66a3e551e0832e2d8184910fa9837d9a1d09fbf4e710857d6108ef2 +size 696364 diff --git a/datasets/openslr_yoruba/yof_07505_00838659719.wav b/datasets/openslr_yoruba/yof_07505_00838659719.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f9435ba7166b63259c7e5c62f97a275c44d142a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00838659719.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe3f225d553675e6750f52364156bda7fbd4a9848d37c80b80d4300acac1860 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_00898111970.wav b/datasets/openslr_yoruba/yof_07505_00898111970.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ccafddf7ec08407a88958ee7dd0ddfdfa5345b8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00898111970.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1acd294345d7696d882dcdb4ef99677637e885ddd71efcdc508dfa046f0bee9a +size 499756 diff --git a/datasets/openslr_yoruba/yof_07505_00942247261.wav b/datasets/openslr_yoruba/yof_07505_00942247261.wav new file mode 100644 index 0000000000000000000000000000000000000000..2ef7b685371eea92c6c75962f2f06f56150d586e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00942247261.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8d80d1072b3189e053472529b327d08af925d3138163d8b874a8ab7f496bfc +size 483372 diff --git a/datasets/openslr_yoruba/yof_07505_00965029558.wav b/datasets/openslr_yoruba/yof_07505_00965029558.wav new file mode 100644 index 0000000000000000000000000000000000000000..80f5fa5eda2c27c0d687d35eb76188d683bc651d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00965029558.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60fb33c8e2aaff561b90a192aa0021b20a3931764895d5a78600f174f6dfd4d +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_00974694815.wav b/datasets/openslr_yoruba/yof_07505_00974694815.wav new file mode 100644 index 0000000000000000000000000000000000000000..3671c3ac2ceabc837fceb2d7f53f8afb25920243 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_00974694815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd3ba27c98c15408fa6b9fa28734e038d4eca338e8d09fd94c0a001c3a98059 +size 368684 diff --git a/datasets/openslr_yoruba/yof_07505_01004952572.wav b/datasets/openslr_yoruba/yof_07505_01004952572.wav new file mode 100644 index 0000000000000000000000000000000000000000..47af62e06460dc083d769cb504d026f6199fa492 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01004952572.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e67e9e95f11605ff246a33b91014c1ec6cef7db94e98e005d4acc76613df7f +size 335916 diff --git a/datasets/openslr_yoruba/yof_07505_01010344544.wav b/datasets/openslr_yoruba/yof_07505_01010344544.wav new file mode 100644 index 0000000000000000000000000000000000000000..016c56766d384a22bb10da29e4fdf080eeb80c3f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01010344544.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58951a3ac98e352f748fd4c9fed9e80fa2dffa9929fd5eacf08edcebe9e0226 +size 303148 diff --git a/datasets/openslr_yoruba/yof_07505_01021979323.wav b/datasets/openslr_yoruba/yof_07505_01021979323.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba83261ccfca6d9e6ba647e2f6a9892d52d2fe81 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01021979323.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce347c6bdc1d3c081bea70ac9936adea956c66ac41e0f9119ca8332b4da1763d +size 393260 diff --git a/datasets/openslr_yoruba/yof_07505_01073126517.wav b/datasets/openslr_yoruba/yof_07505_01073126517.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ef7dc3e9297444a46bb2151cd2ad682fffc25c4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01073126517.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe19915ef7acf99bc0d193d400be07803b0985b7b6229fe76b927f95b635a14 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07505_01075267765.wav b/datasets/openslr_yoruba/yof_07505_01075267765.wav new file mode 100644 index 0000000000000000000000000000000000000000..e65364c6a400065ccdcd8907886816f35235dcaf --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01075267765.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc0f9c8841dd205709d2e8e5b238b5389d297e13847585967e3d3a979eb9828 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07505_01089558483.wav b/datasets/openslr_yoruba/yof_07505_01089558483.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e1f3588fbc9a70312b9dd0310f6d174129ddf75 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01089558483.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a94e0dcbd547693ce0cc2968924316dcd0c00010ea6ca286e8964b5e0cf185 +size 507948 diff --git a/datasets/openslr_yoruba/yof_07505_01148674606.wav b/datasets/openslr_yoruba/yof_07505_01148674606.wav new file mode 100644 index 0000000000000000000000000000000000000000..eab30b195d2a26108b560f9eae683c903675f065 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01148674606.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e18faf17fcd85bffb52dd7717ca2beb3c50ed00d70f4ccacce5b866b932917d5 +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_01159479288.wav b/datasets/openslr_yoruba/yof_07505_01159479288.wav new file mode 100644 index 0000000000000000000000000000000000000000..7de14d5c3ad26f81d6a04791bba2bb0c2a49b55b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01159479288.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ead6d3db4376aa0d17f3843abf99818064cef080c5009596964dd7c792d8e0e +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_01182407901.wav b/datasets/openslr_yoruba/yof_07505_01182407901.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ee99c6c226d0acc28ad5dfd5306656cc7f88fd2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01182407901.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9244f98c8bdc8bf63acd5c27260541c22af0b62d9511e21b5ae6d0477df1300c +size 286764 diff --git a/datasets/openslr_yoruba/yof_07505_01189991343.wav b/datasets/openslr_yoruba/yof_07505_01189991343.wav new file mode 100644 index 0000000000000000000000000000000000000000..87a13481c5270e7c2df94dbaccbf098b03aa48e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01189991343.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1893af45fec8cdede583bba652f05319e62307521943b5ad25ab541097bb30 +size 491564 diff --git a/datasets/openslr_yoruba/yof_07505_01220961965.wav b/datasets/openslr_yoruba/yof_07505_01220961965.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e15c594b0aa7708c711725fa3d0b529ed8a010c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01220961965.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205c9c41cedaff3196fcf1155ac86592d75f5eca4858f5331b7974e139c1a0cd +size 385068 diff --git a/datasets/openslr_yoruba/yof_07505_01241206877.wav b/datasets/openslr_yoruba/yof_07505_01241206877.wav new file mode 100644 index 0000000000000000000000000000000000000000..2aa4252286f5ef82b479746a8b4284fe01b79033 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01241206877.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f888a8d425181974552f8359a48d1fbf84804fedd039c9a735d2ba7140602405 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_01267402712.wav b/datasets/openslr_yoruba/yof_07505_01267402712.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0222154a91a4d3ea8690f5eaab1faf97227b85a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01267402712.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efbdd4311fa6a3605a6f05400ee4d79decf52092980aae8f210d0e26d3518b61 +size 409644 diff --git a/datasets/openslr_yoruba/yof_07505_01311838963.wav b/datasets/openslr_yoruba/yof_07505_01311838963.wav new file mode 100644 index 0000000000000000000000000000000000000000..cbc747ebdf7955509bd6af922e7a3a722f8ea00e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01311838963.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40eabb14c94d3298de3689838329a8df9182119016d8e3f79a0067daa7b89ea8 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_01328719114.wav b/datasets/openslr_yoruba/yof_07505_01328719114.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d75644545b4ff8c8662c729505e9e13dc3fc25b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01328719114.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a9ac7fb710a01e7116301b96ff9bca2df23ac900b0cdffe09848171cb05804 +size 417836 diff --git a/datasets/openslr_yoruba/yof_07505_01337287283.wav b/datasets/openslr_yoruba/yof_07505_01337287283.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6433d03e58733e29581f4c377b9cc6fc196996f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01337287283.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed391ed201940ea244a4c1cc574f7a3a8b65964def44cc9d75ad0255477c69f +size 376876 diff --git a/datasets/openslr_yoruba/yof_07505_01351918760.wav b/datasets/openslr_yoruba/yof_07505_01351918760.wav new file mode 100644 index 0000000000000000000000000000000000000000..939a6f13b51f2615e72247e6c2bfad5472d1088e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01351918760.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4c412c4b7b5ad9bad360a75ad5316fcf416bf6454dbe07b60d041ca6138b34 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_01416245807.wav b/datasets/openslr_yoruba/yof_07505_01416245807.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f57292d5c5481e5dea77184a81f0ce852e992e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01416245807.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5666626cc4f94788f612e69a9491c1474018bf68e2ff398be634aec8c286002 +size 524332 diff --git a/datasets/openslr_yoruba/yof_07505_01416973658.wav b/datasets/openslr_yoruba/yof_07505_01416973658.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad0e15201980b7372dc1d5d80bcf3f34cf74a846 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01416973658.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a803609a210181062d29b3865f543ece709196484ea84b39391973e1464756 +size 450604 diff --git a/datasets/openslr_yoruba/yof_07505_01433868811.wav b/datasets/openslr_yoruba/yof_07505_01433868811.wav new file mode 100644 index 0000000000000000000000000000000000000000..4430a6ecc6b177d5fb3ccc7bb1751169bc40189b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01433868811.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8eb6205ac0c2d93f9d6f6eb65fbe994ccce7155b7941f290237429394f9247 +size 376876 diff --git a/datasets/openslr_yoruba/yof_07505_01439149460.wav b/datasets/openslr_yoruba/yof_07505_01439149460.wav new file mode 100644 index 0000000000000000000000000000000000000000..13d3ff77a5a7b39e3011be73d774deb0a19a9787 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01439149460.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a649068996e3eefcee5b9bd177d281e53c9a108c59f6d92c408f3c4aa740995 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07505_01441172211.wav b/datasets/openslr_yoruba/yof_07505_01441172211.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6ad89de4d4c494da57aff7fca47aca54ceb90f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01441172211.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c050934fe903238176df777fc4e0dfaf37d8a256054a39796e5fc95b99eafa +size 409644 diff --git a/datasets/openslr_yoruba/yof_07505_01448838967.wav b/datasets/openslr_yoruba/yof_07505_01448838967.wav new file mode 100644 index 0000000000000000000000000000000000000000..40d6ab3e66fbe1cbfece28699dad1e80bdfbc3ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01448838967.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51aa43f853b4eb3528f0f04b943468fd0e1078b89ccd646df38fe98e1344cc8 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07505_01517742901.wav b/datasets/openslr_yoruba/yof_07505_01517742901.wav new file mode 100644 index 0000000000000000000000000000000000000000..83c49dd145b5988d7a7193be86e6b6715de6d28b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01517742901.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2a9fd8768fd4fa6945de994c8dfaedd739e1b6ba520f8eb32deecaf10391da +size 458796 diff --git a/datasets/openslr_yoruba/yof_07505_01517896411.wav b/datasets/openslr_yoruba/yof_07505_01517896411.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c684740274c83a273d2858e71d246ad7d6297be --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01517896411.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6285afff254871c302202bc4a1001dea2bef49c0606ce83d16471cf5c9e3b89 +size 417836 diff --git a/datasets/openslr_yoruba/yof_07505_01542908689.wav b/datasets/openslr_yoruba/yof_07505_01542908689.wav new file mode 100644 index 0000000000000000000000000000000000000000..e550897ee44a84fa3fe0419ed20c31a9bf018a83 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01542908689.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53787ca56c3cd75ea2bcbb4ef5607c4b563ac5656dbd553a7696836555d5478f +size 483372 diff --git a/datasets/openslr_yoruba/yof_07505_01552261130.wav b/datasets/openslr_yoruba/yof_07505_01552261130.wav new file mode 100644 index 0000000000000000000000000000000000000000..96574a6f897bae0978526c50b90edd0559251ea1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01552261130.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a788a7d971cfcf0b9713d18621105d89b63cb3756ed469bf4c271392980fec +size 426028 diff --git a/datasets/openslr_yoruba/yof_07505_01563772970.wav b/datasets/openslr_yoruba/yof_07505_01563772970.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd096ea0ffa0580e284d298be082e47fb599a6cf --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01563772970.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8327f4c3736a0d35c9cfa0731480f68c968088678e9ee60077276a2bc848023 +size 524332 diff --git a/datasets/openslr_yoruba/yof_07505_01563852683.wav b/datasets/openslr_yoruba/yof_07505_01563852683.wav new file mode 100644 index 0000000000000000000000000000000000000000..63c6ade51d65049ae4a984d14c86b479fab71355 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01563852683.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8067003ee0502a8779ab9c9ffa319a0466bddb1cb256c0c73f2f82cfdc4cf520 +size 704556 diff --git a/datasets/openslr_yoruba/yof_07505_01617346118.wav b/datasets/openslr_yoruba/yof_07505_01617346118.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d0b4c7743e42bace1dc2db622e24bb5e627748c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01617346118.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ecea341aca0bcd64e97343e0aca8a39511ddc3694d274eaf4ffefb585caf53 +size 540716 diff --git a/datasets/openslr_yoruba/yof_07505_01631738985.wav b/datasets/openslr_yoruba/yof_07505_01631738985.wav new file mode 100644 index 0000000000000000000000000000000000000000..1336d3b7a919dc35a41022f2e0e7eb7074caed9f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01631738985.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46cb8015f249c7391f1c32c8b364af1c272ad31f5873485f5c0f6c56d4f5b5c5 +size 819244 diff --git a/datasets/openslr_yoruba/yof_07505_01679855606.wav b/datasets/openslr_yoruba/yof_07505_01679855606.wav new file mode 100644 index 0000000000000000000000000000000000000000..d8e0505b45481bb3d657064bf3d08b7bff678987 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01679855606.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d984cf5c45000c9a591d37c54a2cf000d0d95c14fd139ac4e6e017d8ad2578b3 +size 344108 diff --git a/datasets/openslr_yoruba/yof_07505_01696283173.wav b/datasets/openslr_yoruba/yof_07505_01696283173.wav new file mode 100644 index 0000000000000000000000000000000000000000..fba81534293bc3bb95c94cf9658a9bd94a1116ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01696283173.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4795607056ee6b13ca294dbaa19688a2dd5bc3442226ff2de55342562385bed6 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07505_01707769880.wav b/datasets/openslr_yoruba/yof_07505_01707769880.wav new file mode 100644 index 0000000000000000000000000000000000000000..26197370c4c6f401b380da8c169d52c68c390fe5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01707769880.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17216f4563271d46c37a056b84b9d831377b1c2b667ef7342807167aaa083b0d +size 434220 diff --git a/datasets/openslr_yoruba/yof_07505_01764281793.wav b/datasets/openslr_yoruba/yof_07505_01764281793.wav new file mode 100644 index 0000000000000000000000000000000000000000..9804dce2a8957991a906ac1aaab9d4c37c39d4de --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01764281793.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff551fe77302a18b3a961664450875a1fd858a2142cb9c1a4a626db391600527 +size 409644 diff --git a/datasets/openslr_yoruba/yof_07505_01806202091.wav b/datasets/openslr_yoruba/yof_07505_01806202091.wav new file mode 100644 index 0000000000000000000000000000000000000000..74b54314a4c66e7baac63a0467927ddd9f8dc5d2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01806202091.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717dcd74c41298d9933f5312b726c7c37173f63a29840e4f41fc2bf7e9b4765d +size 368684 diff --git a/datasets/openslr_yoruba/yof_07505_01806962470.wav b/datasets/openslr_yoruba/yof_07505_01806962470.wav new file mode 100644 index 0000000000000000000000000000000000000000..c7dfadcea792fa6054abe3673ac08274ff9d8c1b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01806962470.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a00ee71393007a197f0c3b2cc37cef20e64b4eee56b98005f0cfb050e8bc181 +size 270380 diff --git a/datasets/openslr_yoruba/yof_07505_01834248562.wav b/datasets/openslr_yoruba/yof_07505_01834248562.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ed30cb9019502314d639176b7da36837d3b872f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01834248562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec6066dcb8340ace61bf5ff7e745d9ebc293531f99783f49c422472bc274ab5 +size 393260 diff --git a/datasets/openslr_yoruba/yof_07505_01851862734.wav b/datasets/openslr_yoruba/yof_07505_01851862734.wav new file mode 100644 index 0000000000000000000000000000000000000000..3dc713a6a88329401abcd5b63c18631dcc45bc0d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01851862734.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0544e2b7980c9d6a9a7369ba233dca83c2cd02b901368b11b41430d3d8c87747 +size 499756 diff --git a/datasets/openslr_yoruba/yof_07505_01873104552.wav b/datasets/openslr_yoruba/yof_07505_01873104552.wav new file mode 100644 index 0000000000000000000000000000000000000000..82222efb525f4a8a5323fb5f40e55d36b2f867f2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01873104552.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db49a00b0efb87468566abc7f749149fbb7e53233d9f446fb7fc0fefe3d5537 +size 376876 diff --git a/datasets/openslr_yoruba/yof_07505_01899548242.wav b/datasets/openslr_yoruba/yof_07505_01899548242.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd32bfa84bffa2f6e4db1be6c77234f1533de314 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01899548242.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95d85f4ff17e05eab379ef0475c10a65c366d0c8d37715cee342b49b9258540 +size 466988 diff --git a/datasets/openslr_yoruba/yof_07505_01916019763.wav b/datasets/openslr_yoruba/yof_07505_01916019763.wav new file mode 100644 index 0000000000000000000000000000000000000000..ded7fd635f58e6b2ad118a1cb2bc9777b5dfcf16 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01916019763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b647ba51fb6c2a2664cf00085606e4df3c86a48e8e44cb3aab00804be0a8cd06 +size 426028 diff --git a/datasets/openslr_yoruba/yof_07505_01938142382.wav b/datasets/openslr_yoruba/yof_07505_01938142382.wav new file mode 100644 index 0000000000000000000000000000000000000000..f82de81e5dac5f99fa1c225200a8c0d6f0838dd8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01938142382.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40271c647b38712336f03a594c3b267c078c04aa0a2f81f7197bba0f3fe6fee0 +size 565292 diff --git a/datasets/openslr_yoruba/yof_07505_01960889329.wav b/datasets/openslr_yoruba/yof_07505_01960889329.wav new file mode 100644 index 0000000000000000000000000000000000000000..8000e2fa0e57c5257c05a51a7ca8fe3f457bf7f5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_01960889329.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b158dcb9f3890c07d8de3b8e9c30eabc1846edc69637d740e75861b997e76eea +size 475180 diff --git a/datasets/openslr_yoruba/yof_07505_02005553197.wav b/datasets/openslr_yoruba/yof_07505_02005553197.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b27532cf90e30210b23f7ab780efdc2d0409e7b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02005553197.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f0e1fcac782d8b2d094da7bcf50471db603e6202460ca8a72222d784f4e9af +size 450604 diff --git a/datasets/openslr_yoruba/yof_07505_02012362868.wav b/datasets/openslr_yoruba/yof_07505_02012362868.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d387d2eecc7dc46e130c4e90cfbd7b39268ef54 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02012362868.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258aa2b13848edafcac327e031d4f38cd626a6ac2a19e006eb08573defdb21d9 +size 491564 diff --git a/datasets/openslr_yoruba/yof_07505_02028522943.wav b/datasets/openslr_yoruba/yof_07505_02028522943.wav new file mode 100644 index 0000000000000000000000000000000000000000..d15f65de65a365b52a3f6fea65bc83873a2ecf88 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02028522943.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e909e9ad03cd020195261f8fa6550e9d24bfd3b6e9720723ad441075d79841a5 +size 475180 diff --git a/datasets/openslr_yoruba/yof_07505_02043036677.wav b/datasets/openslr_yoruba/yof_07505_02043036677.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a73e357e02319561ff8940d9ba1c20d0cfd90b2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02043036677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139fa27196643f2fbfc847dd0cc5705852523b989740ae0c716d1461757cd0ea +size 679980 diff --git a/datasets/openslr_yoruba/yof_07505_02069377383.wav b/datasets/openslr_yoruba/yof_07505_02069377383.wav new file mode 100644 index 0000000000000000000000000000000000000000..30e4890663087da57a3620fe177b76fcfb38a6e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02069377383.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c1171299f85cc146d4325970edc95ff2b4fce16bcfb3bbf356c3cda84b6be0 +size 688172 diff --git a/datasets/openslr_yoruba/yof_07505_02074794688.wav b/datasets/openslr_yoruba/yof_07505_02074794688.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf5f610b5ce57514926696cbc08f98c803e6a398 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02074794688.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a32a92600c215c53ebca69742925d8e88583a4eb22080966263a4d55e7e3fa +size 303148 diff --git a/datasets/openslr_yoruba/yof_07505_02074988661.wav b/datasets/openslr_yoruba/yof_07505_02074988661.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1e7d246140d0f1fed6797679c1e9bd0342c2271 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02074988661.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048cfc024376468cb372999334e38a29ef7ff15681d31e3a141c9f5aee42a892 +size 655404 diff --git a/datasets/openslr_yoruba/yof_07505_02079668596.wav b/datasets/openslr_yoruba/yof_07505_02079668596.wav new file mode 100644 index 0000000000000000000000000000000000000000..bdb51e3ee8af349cc55f2184b64d36a01225b247 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02079668596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746cd078b3f4f929427fd6279dba73d58a4bf5d1e9bf434aa5c830a0c282888e +size 368684 diff --git a/datasets/openslr_yoruba/yof_07505_02087322100.wav b/datasets/openslr_yoruba/yof_07505_02087322100.wav new file mode 100644 index 0000000000000000000000000000000000000000..c699ac6532b1a3e9eeed198b8575cc6da6f6d7e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07505_02087322100.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e0255ab1fdb7b62af879d6ec2ecdc7c61a879f10f8bef90171ce8cfad3aaf2 +size 385068 diff --git a/datasets/openslr_yoruba/yof_07508_00015485504.wav b/datasets/openslr_yoruba/yof_07508_00015485504.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d98748e1810c5f4e420cbcd440378919d66b975 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00015485504.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9240ffccd94628a39ed7fb8f9615a352156cbf9acde6769b134cfc9a475cbb84 +size 442412 diff --git a/datasets/openslr_yoruba/yof_07508_00016356171.wav b/datasets/openslr_yoruba/yof_07508_00016356171.wav new file mode 100644 index 0000000000000000000000000000000000000000..d79b53d556c03523e1959ce1b2a630558ec48a3d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00016356171.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9e99e79de117c371fbc01429cc65d1a8e5e304ffb25317bdfda312a9b7be36 +size 278572 diff --git a/datasets/openslr_yoruba/yof_07508_00024816106.wav b/datasets/openslr_yoruba/yof_07508_00024816106.wav new file mode 100644 index 0000000000000000000000000000000000000000..9549b7bd554206624359732151ff72b43e5244f7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00024816106.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10870b873940a70a281cdac19999480661be887a931fd607b97f1995d54541c2 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07508_00090606035.wav b/datasets/openslr_yoruba/yof_07508_00090606035.wav new file mode 100644 index 0000000000000000000000000000000000000000..361800e017810a93912ff561835ae54f5c7e6cc0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00090606035.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eeee5b154d9f5e84d7437675bd6122681b09db711ca3d2835f386d5ff6853ea +size 278572 diff --git a/datasets/openslr_yoruba/yof_07508_00113880867.wav b/datasets/openslr_yoruba/yof_07508_00113880867.wav new file mode 100644 index 0000000000000000000000000000000000000000..4340df08b8c01a32abc2fbde521358125f644318 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00113880867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3cff2608252ada039abef605310cf0fc42cb7eef289719789a0f3f4fc2601de +size 213036 diff --git a/datasets/openslr_yoruba/yof_07508_00122902148.wav b/datasets/openslr_yoruba/yof_07508_00122902148.wav new file mode 100644 index 0000000000000000000000000000000000000000..fbefda2b7abf04d576a05dd19fa75c7a927dee1e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00122902148.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bccf17c79c614045b78a064e878a4b9718efa65927d0cc56635aa013e32473 +size 262188 diff --git a/datasets/openslr_yoruba/yof_07508_00152030156.wav b/datasets/openslr_yoruba/yof_07508_00152030156.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f0a1fa9b397ca71df6037146ae15ceecc548b75 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00152030156.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57c6d5bfac2c87e3338c95f36590400388ddb8d891cee2011f486690279783c +size 311340 diff --git a/datasets/openslr_yoruba/yof_07508_00174866381.wav b/datasets/openslr_yoruba/yof_07508_00174866381.wav new file mode 100644 index 0000000000000000000000000000000000000000..66a116b334c1fd4720c930ab54745d62be004d0d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00174866381.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d414f962634ca19eca3c79de0199412e3c61a324eb75eaa634766a974419e6 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07508_00190659622.wav b/datasets/openslr_yoruba/yof_07508_00190659622.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e21cc636b80c5f59c7734e9960d10ca009bfffd --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00190659622.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4dd3d663c52ebc6c21fa5d94d47ffe411890e1261c631d12af5a7708ca977e +size 491564 diff --git a/datasets/openslr_yoruba/yof_07508_00210712895.wav b/datasets/openslr_yoruba/yof_07508_00210712895.wav new file mode 100644 index 0000000000000000000000000000000000000000..572691125ecc79d3cfb696342967c4af0139d2e1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00210712895.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831593d416d1ddd3ec594beddc45e3d8d170fb1ae690a6c7b1c4565407842996 +size 237612 diff --git a/datasets/openslr_yoruba/yof_07508_00219129694.wav b/datasets/openslr_yoruba/yof_07508_00219129694.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb7823412e4686a8d42076ecdbb0b1211d442615 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00219129694.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81f59a699711093e83e0a692bba7bd33b47c4d3417ba4f4b58eba849accc756 +size 278572 diff --git a/datasets/openslr_yoruba/yof_07508_00250364944.wav b/datasets/openslr_yoruba/yof_07508_00250364944.wav new file mode 100644 index 0000000000000000000000000000000000000000..08b8d14c6d06cdbba960f5efb32ed32b41769f26 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00250364944.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf0f333b6f35a7a6ae26b60c7364d513cd7241513747711d906a90729784477 +size 237612 diff --git a/datasets/openslr_yoruba/yof_07508_00262166348.wav b/datasets/openslr_yoruba/yof_07508_00262166348.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd8884392befc243822dcd747fa86a0f0d6af862 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00262166348.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcdb6d53807a301e027b8aa394f75270f6b1df0e165075c4be51a805424003bf +size 262188 diff --git a/datasets/openslr_yoruba/yof_07508_00263762178.wav b/datasets/openslr_yoruba/yof_07508_00263762178.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f741b721ed1b542f632de8a0ff72525f95a8e40 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00263762178.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6911bb8f219454454eee3d451e036b4cbf65165a45a9793380f0381b92498027 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07508_00270089775.wav b/datasets/openslr_yoruba/yof_07508_00270089775.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ba9a8c4bc44b11e385a4f91f4bc0e0561401381 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00270089775.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ecea0fb8f5d9a514d68bb0b2b276d0fa9adf0000fa0f18a33972ddffa8e64fe +size 360492 diff --git a/datasets/openslr_yoruba/yof_07508_00288539493.wav b/datasets/openslr_yoruba/yof_07508_00288539493.wav new file mode 100644 index 0000000000000000000000000000000000000000..6688e76cb935b68202a4a608fdf33e5c76c7a551 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00288539493.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646d27b039b60b5c8260b3da665725389d6168f150b89361cfe8080febcd51f9 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07508_00312304439.wav b/datasets/openslr_yoruba/yof_07508_00312304439.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4ed0a6804b514dec7d5773e6a2bd4e24d13e80b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00312304439.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc90bf281729965030a0d5ea7272b21b84a22474151f0f41ed864d6f9bd7379 +size 327724 diff --git a/datasets/openslr_yoruba/yof_07508_00343529757.wav b/datasets/openslr_yoruba/yof_07508_00343529757.wav new file mode 100644 index 0000000000000000000000000000000000000000..e61f6740ea0c372fc808be90bfcafeabadc53b73 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00343529757.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af20feaa008915d64471bc9b2474f7d8bbaf0298cfeca6dd81d107d2ea43095 +size 262188 diff --git a/datasets/openslr_yoruba/yof_07508_00364715547.wav b/datasets/openslr_yoruba/yof_07508_00364715547.wav new file mode 100644 index 0000000000000000000000000000000000000000..6642e2e63ac1abd6e025c3bd90298936bed797c4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00364715547.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faf32d251c6e67c096f8410270048bb5c6c9a9ced9640b57dfb0ad954edaacec +size 311340 diff --git a/datasets/openslr_yoruba/yof_07508_00371216868.wav b/datasets/openslr_yoruba/yof_07508_00371216868.wav new file mode 100644 index 0000000000000000000000000000000000000000..3629989901cccec2d4eb4ad5cc7876cfdc3da9b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00371216868.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc4917a8792b16502e9ed63659cc4edc8f14a4be4dffdc51ee69a0aa4f441f0 +size 442412 diff --git a/datasets/openslr_yoruba/yof_07508_00372321037.wav b/datasets/openslr_yoruba/yof_07508_00372321037.wav new file mode 100644 index 0000000000000000000000000000000000000000..c92c3087e0047a6f3613261b9b9ebfe04241f93d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00372321037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcdc82a2b7d14d8a6061695bec1973584ba13fe2df382365b2955d1ca541c99d +size 253996 diff --git a/datasets/openslr_yoruba/yof_07508_00460244025.wav b/datasets/openslr_yoruba/yof_07508_00460244025.wav new file mode 100644 index 0000000000000000000000000000000000000000..28d36a06e9f6bf686ccfc73469bb410913af0dd9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00460244025.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b23b80e68c1f8a97e1dd239cd0d0e968da4704cf79157182f80dea7ea7e4de +size 360492 diff --git a/datasets/openslr_yoruba/yof_07508_00461007987.wav b/datasets/openslr_yoruba/yof_07508_00461007987.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e68dac0fb4bbd904ed8ebc2b77716926187e86c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00461007987.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d17e78b7193f6d537b423a0355f065d54c3e6ab97692c3085520cf1ccc225ce +size 335916 diff --git a/datasets/openslr_yoruba/yof_07508_00473598921.wav b/datasets/openslr_yoruba/yof_07508_00473598921.wav new file mode 100644 index 0000000000000000000000000000000000000000..d0653783c1473b0fb1b7f594dbcc855173e05d1c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00473598921.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f81e996bdcdadd76fbb57bc96f1106f5889580b38f054cd0704c49d434aa1d9 +size 229420 diff --git a/datasets/openslr_yoruba/yof_07508_00480139489.wav b/datasets/openslr_yoruba/yof_07508_00480139489.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a6902e61de9118c9cfcd118c856aaba23b020ba --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00480139489.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1cd6783df23ce497d02156780fcc841657a7cb772cf5d82447992ba8faaf68 +size 213036 diff --git a/datasets/openslr_yoruba/yof_07508_00501211983.wav b/datasets/openslr_yoruba/yof_07508_00501211983.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf0b22b15f186eb31640126df30a2cede300d6c0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00501211983.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fcb1dc1782afe701531240fe044440394cca3a3adb89d794b4a30ef42c79f4 +size 245804 diff --git a/datasets/openslr_yoruba/yof_07508_00503101746.wav b/datasets/openslr_yoruba/yof_07508_00503101746.wav new file mode 100644 index 0000000000000000000000000000000000000000..49d19103a3bb11b0cf49b83563a91f9430ba375f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00503101746.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2f9f1cbd8ce785647f12b9f3180b820cd9f40b402ab66756d53e9f1a90deab +size 237612 diff --git a/datasets/openslr_yoruba/yof_07508_00510677721.wav b/datasets/openslr_yoruba/yof_07508_00510677721.wav new file mode 100644 index 0000000000000000000000000000000000000000..d0bc67b2f1153ae593f9b88400805e67617e8f41 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00510677721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8550ae4002fa4414adb2d58ecfb88ec3feb3cf434594d21a9de270d2ef7014 +size 237612 diff --git a/datasets/openslr_yoruba/yof_07508_00536283870.wav b/datasets/openslr_yoruba/yof_07508_00536283870.wav new file mode 100644 index 0000000000000000000000000000000000000000..97d7132757231ce51d34fd417e1c64387bf4f6b7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00536283870.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be6f3cfce99ee5eea75cb20971d20c3d5937dd543c0e3ec2fe1bcd54511deabd +size 270380 diff --git a/datasets/openslr_yoruba/yof_07508_00547664695.wav b/datasets/openslr_yoruba/yof_07508_00547664695.wav new file mode 100644 index 0000000000000000000000000000000000000000..e79e36f904e914c8a69c4f672b36d641c71b2518 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00547664695.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f249acb1bc33ca943957be5cdfd28f3da47738ec72f500ccab354db82f700d +size 344108 diff --git a/datasets/openslr_yoruba/yof_07508_00574923742.wav b/datasets/openslr_yoruba/yof_07508_00574923742.wav new file mode 100644 index 0000000000000000000000000000000000000000..712ede790733ce450816d5a568d90f6d3d207af7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00574923742.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c812486dc928436e469b886168b99d4196dfd9b807feaeffebcd658e768556a +size 278572 diff --git a/datasets/openslr_yoruba/yof_07508_00629515941.wav b/datasets/openslr_yoruba/yof_07508_00629515941.wav new file mode 100644 index 0000000000000000000000000000000000000000..94fca2bda88134d94fa882e8f69f32b62a456342 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00629515941.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9154b467ad4f71dc87fbd401f71ed3914e96a4a680b03488ca902ba039062148 +size 253996 diff --git a/datasets/openslr_yoruba/yof_07508_00671291127.wav b/datasets/openslr_yoruba/yof_07508_00671291127.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f98fb134fd052a3c26c0bda77304dcc1ace7667 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00671291127.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d7d287cd8f8421561a5a4cdded0ef247b9b38affa59ad3406ef5423a842af2 +size 270380 diff --git a/datasets/openslr_yoruba/yof_07508_00739318175.wav b/datasets/openslr_yoruba/yof_07508_00739318175.wav new file mode 100644 index 0000000000000000000000000000000000000000..08be69de251010b42dd415932daa645fcead95cb --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00739318175.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c862307b42420fb7bacd98ade1ae3710429e02bdcac383b91b12c03495cf11a +size 532524 diff --git a/datasets/openslr_yoruba/yof_07508_00761386400.wav b/datasets/openslr_yoruba/yof_07508_00761386400.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4b90c5f285a0edb3e566520cdec32f518f35c7f --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00761386400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4836d60926f523b94654d96e130567ccc00a4769f5315bf07465896e428fbf51 +size 253996 diff --git a/datasets/openslr_yoruba/yof_07508_00817136852.wav b/datasets/openslr_yoruba/yof_07508_00817136852.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e05d9aedec422e696b8ad9a2fc58410dbcc847c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00817136852.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2704ab612482594c30d09ec818a3ebda2e6d6a966e02aedab66a09434a54fdf4 +size 262188 diff --git a/datasets/openslr_yoruba/yof_07508_00855191783.wav b/datasets/openslr_yoruba/yof_07508_00855191783.wav new file mode 100644 index 0000000000000000000000000000000000000000..f648bad7740df2ff21d175e63880dbe95e9fe964 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00855191783.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:143f73486a962147ba5f7c905cd0fe60d401baa4901685b4687e7a3a35c5bb7a +size 311340 diff --git a/datasets/openslr_yoruba/yof_07508_00878713381.wav b/datasets/openslr_yoruba/yof_07508_00878713381.wav new file mode 100644 index 0000000000000000000000000000000000000000..acd350b2d6a79c7cd6631e79c84f8779257b78ba --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00878713381.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e617d420c2f2d796f9c8d95fb09717230a47362d019678f16ac2e50524c743f3 +size 270380 diff --git a/datasets/openslr_yoruba/yof_07508_00903578071.wav b/datasets/openslr_yoruba/yof_07508_00903578071.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc58d8549416ca48335d8853ee1f6ca786e1e862 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00903578071.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f14a450e6574159be8fc886fdfe5f637102a5f4c411824aded739eae03bf6252 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07508_00925096036.wav b/datasets/openslr_yoruba/yof_07508_00925096036.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffc9aa2e5e7ceef5877a025c3ed0776572e80e5d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00925096036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ec132dc1b6dff1f43214e7c5dcda49e133d1ad614e4daaa97a207a06c6ca4c +size 598060 diff --git a/datasets/openslr_yoruba/yof_07508_00960114240.wav b/datasets/openslr_yoruba/yof_07508_00960114240.wav new file mode 100644 index 0000000000000000000000000000000000000000..8820fe5d04c332df1174fb6329a8687a7fa85c38 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00960114240.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca635861ded079f8d7d669d0dfa1d906ee5cba986e192b9cbc692d54d22d861 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07508_00972680292.wav b/datasets/openslr_yoruba/yof_07508_00972680292.wav new file mode 100644 index 0000000000000000000000000000000000000000..a23f4b5e3561e9abb8214478c4b328496f2c260d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00972680292.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d7e1dfcb545185d2d6d127e4c416dca9d1d442f84d20b5214c284484fe2e95 +size 385068 diff --git a/datasets/openslr_yoruba/yof_07508_00976253159.wav b/datasets/openslr_yoruba/yof_07508_00976253159.wav new file mode 100644 index 0000000000000000000000000000000000000000..42020087ea40edd902ae86d664819b9202dc6b58 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00976253159.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1590269bf4065b0d015a7ab156da53fdc3e9efa75180041f13544805a213a8 +size 368684 diff --git a/datasets/openslr_yoruba/yof_07508_00982432175.wav b/datasets/openslr_yoruba/yof_07508_00982432175.wav new file mode 100644 index 0000000000000000000000000000000000000000..938608332899d489f3903fa06748c58a883e52b5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_00982432175.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7457e464468af60412931eb7cba8d5516fd361ccad321939bad677ebdcbb19 +size 450604 diff --git a/datasets/openslr_yoruba/yof_07508_01002282361.wav b/datasets/openslr_yoruba/yof_07508_01002282361.wav new file mode 100644 index 0000000000000000000000000000000000000000..532f43ec46a3606a607ac06d7231d51652904939 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01002282361.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257b2cdc9c25819c6db4d27ab65fc5234285022563da659780023fe5fc2d3625 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07508_01015589913.wav b/datasets/openslr_yoruba/yof_07508_01015589913.wav new file mode 100644 index 0000000000000000000000000000000000000000..4e6a75fb0152750046e7ebc660f7dc0195d90e3c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01015589913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8606363488a12e7c698659d4c0ea513f673490d6b8298333630ae63d0e058a76 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07508_01022041118.wav b/datasets/openslr_yoruba/yof_07508_01022041118.wav new file mode 100644 index 0000000000000000000000000000000000000000..e50e24f3631fc9fc54d0b1830a7aee15ef0e8884 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01022041118.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc97ede3f21738caf534a4f033d7c70d21aa3ba54d28c61039c1ee10669911b4 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07508_01046082859.wav b/datasets/openslr_yoruba/yof_07508_01046082859.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2c7188bfebe8dbd6fff5bb9e62ed1c3ecd19807 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01046082859.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:722a39f6c6d8342df2f9463ec99e925fc18825492ef9b49859e132ddd000e64e +size 311340 diff --git a/datasets/openslr_yoruba/yof_07508_01057177445.wav b/datasets/openslr_yoruba/yof_07508_01057177445.wav new file mode 100644 index 0000000000000000000000000000000000000000..77bfca2197ee94eacf5ac51b2ca43ab0890534d3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01057177445.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c7135371bb2c4f876390bf35e2dced2526e7dfa665da82ba0e63702a14a5f9 +size 548908 diff --git a/datasets/openslr_yoruba/yof_07508_01068871540.wav b/datasets/openslr_yoruba/yof_07508_01068871540.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9c4464bb9c164a882e477a5f11b85b759207ac8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01068871540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7165ffc4a68a5ab54e0eef971aaca3d30e653831cef394c7daa86eb6e7d215 +size 491564 diff --git a/datasets/openslr_yoruba/yof_07508_01094123540.wav b/datasets/openslr_yoruba/yof_07508_01094123540.wav new file mode 100644 index 0000000000000000000000000000000000000000..af3510a1675181bdbac709f1e7b66c1e452f7a39 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01094123540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6335d82d40e23538bf569910a611ce2157fcca531546dacf0de613d8e489d607 +size 458796 diff --git a/datasets/openslr_yoruba/yof_07508_01112119326.wav b/datasets/openslr_yoruba/yof_07508_01112119326.wav new file mode 100644 index 0000000000000000000000000000000000000000..b69917f4581204d708b6fce90759b7b229d9798a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01112119326.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4457ba16512441c577feecfb679b6fcaf8656a6fedf3cbea2cc6aa4453db5dc1 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07508_01121973175.wav b/datasets/openslr_yoruba/yof_07508_01121973175.wav new file mode 100644 index 0000000000000000000000000000000000000000..4e920dc9424ae8ffac03aa4fa243f02519b4fa70 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01121973175.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c14f19cc70f5967d7b0216c382cd888fd9449a8dad824ecf583878f845341bb9 +size 270380 diff --git a/datasets/openslr_yoruba/yof_07508_01129273695.wav b/datasets/openslr_yoruba/yof_07508_01129273695.wav new file mode 100644 index 0000000000000000000000000000000000000000..55b8f894275a156fe5360420b7e4848e744b4ce5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01129273695.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433d52fd725a3f8cc17b2a29342fb6278004caa2c34bafffc45a9e396ee00b92 +size 385068 diff --git a/datasets/openslr_yoruba/yof_07508_01183278413.wav b/datasets/openslr_yoruba/yof_07508_01183278413.wav new file mode 100644 index 0000000000000000000000000000000000000000..0beb26d09044512c07f224a32cfc811e563c4c20 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01183278413.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a2dfde76ff7d6c74c4b74b0ea165ee9210fccc5250b2de77c0c3e1bafc4478 +size 450604 diff --git a/datasets/openslr_yoruba/yof_07508_01194071814.wav b/datasets/openslr_yoruba/yof_07508_01194071814.wav new file mode 100644 index 0000000000000000000000000000000000000000..118212d46cbc1300a417ea19d95232578ca16d32 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01194071814.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ebc01a3b0acf6af628c2499110be9299d922533ebb82f620cb03dc0f36c9074 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07508_01198964831.wav b/datasets/openslr_yoruba/yof_07508_01198964831.wav new file mode 100644 index 0000000000000000000000000000000000000000..62207ca6b24f2ad8c20ad9b80bf7798767f044d2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01198964831.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34597686545536f0cf2fb8fcdc51b49c345939d9e30f7d6988673b465867542 +size 237612 diff --git a/datasets/openslr_yoruba/yof_07508_01199991008.wav b/datasets/openslr_yoruba/yof_07508_01199991008.wav new file mode 100644 index 0000000000000000000000000000000000000000..0442cd37cbde94bf16ace3cb8ef2b7d7ac89e6c5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01199991008.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240fdd626cef767d6fca8da0e60816bb3f788119ca6a67219b647bfd34b293b4 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07508_01228303447.wav b/datasets/openslr_yoruba/yof_07508_01228303447.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8f823cdb0e94c04a91522c982d97b3edb17bcb6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01228303447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ca5675535b5a7ee4db6a7bcfb407aadeaa425e1c69bf23de6ea9095d05db9d +size 286764 diff --git a/datasets/openslr_yoruba/yof_07508_01237670321.wav b/datasets/openslr_yoruba/yof_07508_01237670321.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd7746be18af7f7d8df9300794e1ed1c700261ec --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01237670321.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538f6df5103ac032b5c7d7485216aa7085435260bdbb32c727df29cc6f7eab3e +size 245804 diff --git a/datasets/openslr_yoruba/yof_07508_01248309922.wav b/datasets/openslr_yoruba/yof_07508_01248309922.wav new file mode 100644 index 0000000000000000000000000000000000000000..03c856b6d98702ed7b421f987bbda154e68d3b67 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01248309922.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c577f98cb43710f7e0783ee9688655fea5dff4261418006d0cc7ab2172b01601 +size 344108 diff --git a/datasets/openslr_yoruba/yof_07508_01251231478.wav b/datasets/openslr_yoruba/yof_07508_01251231478.wav new file mode 100644 index 0000000000000000000000000000000000000000..72521fee388db4850a50f3b1a00c98369ba066f6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01251231478.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a6036fe6fd9dc642361bd5da6e411e8b8618df94dec29fa12879d10278c7a0 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07508_01273924883.wav b/datasets/openslr_yoruba/yof_07508_01273924883.wav new file mode 100644 index 0000000000000000000000000000000000000000..500b181f952763e52723ac607dde1068a013bf90 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01273924883.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b96db09dbfdf3705460a582a285b0e5b8f69076caea607abfb0aa31887a7bc +size 434220 diff --git a/datasets/openslr_yoruba/yof_07508_01302288082.wav b/datasets/openslr_yoruba/yof_07508_01302288082.wav new file mode 100644 index 0000000000000000000000000000000000000000..81945011a053d0ae155ba48fda81e23f92c7810e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01302288082.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e28a6d1a57c8598780fe049eaf383ec5572875dce3223447fc0a0e268ed079f +size 278572 diff --git a/datasets/openslr_yoruba/yof_07508_01379798988.wav b/datasets/openslr_yoruba/yof_07508_01379798988.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3a66d4d52724cbae9de1e006da2f2914bd06110 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01379798988.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88b2d8f276c22419d174c6c9443581f9b2620d4e23e8322844f2a96c74d597f +size 303148 diff --git a/datasets/openslr_yoruba/yof_07508_01381664712.wav b/datasets/openslr_yoruba/yof_07508_01381664712.wav new file mode 100644 index 0000000000000000000000000000000000000000..3cc0cb01a930afc328886f9e9c2926aa1d634094 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01381664712.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83711aaef8cd9e6c9baed75a61fb1a424af1962745ff546567c79138fa64fd83 +size 294956 diff --git a/datasets/openslr_yoruba/yof_07508_01393368373.wav b/datasets/openslr_yoruba/yof_07508_01393368373.wav new file mode 100644 index 0000000000000000000000000000000000000000..21381428221a454bd4431801f2b4999a10d50841 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01393368373.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60c11b906d7b597b6367fa6ad4d3f6af5a86a2aeaf5889b63310f5155abaada +size 376876 diff --git a/datasets/openslr_yoruba/yof_07508_01526273037.wav b/datasets/openslr_yoruba/yof_07508_01526273037.wav new file mode 100644 index 0000000000000000000000000000000000000000..b2ee0399de32aaabf2c43d2fdfa181d6092a0bef --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01526273037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4255b0fe145c91ba46238dedd90ba93b17f134b52e5d38487bc22fb9c9ec882 +size 221228 diff --git a/datasets/openslr_yoruba/yof_07508_01630743107.wav b/datasets/openslr_yoruba/yof_07508_01630743107.wav new file mode 100644 index 0000000000000000000000000000000000000000..460280e87395066dd62989e2d524e122f74e405d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01630743107.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0579c0685dea40ba5d0e06ad50c4b34ba166048a2f0af759d39ee1ee2778339 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07508_01633838219.wav b/datasets/openslr_yoruba/yof_07508_01633838219.wav new file mode 100644 index 0000000000000000000000000000000000000000..2812b58753d99bf70ea2fc030d1b4ca2d478d321 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01633838219.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef794f6e0aeeeecbb10920c507f656cd53213dc8ff8dcd41ace85f5df7dafa2 +size 270380 diff --git a/datasets/openslr_yoruba/yof_07508_01634236773.wav b/datasets/openslr_yoruba/yof_07508_01634236773.wav new file mode 100644 index 0000000000000000000000000000000000000000..00a916dae4d6758bedcae2e223f412afd2a26491 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01634236773.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab53e0b3b1724fe1c5f153deca8251284e247c87477c0175704455f9b3a6e106 +size 401452 diff --git a/datasets/openslr_yoruba/yof_07508_01646387915.wav b/datasets/openslr_yoruba/yof_07508_01646387915.wav new file mode 100644 index 0000000000000000000000000000000000000000..db44eda8290c879f9c1ee28452a8b0a9f10aa2cf --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01646387915.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1021aa2eb80055ffdf70b4989a2b3405e4be29face5f5d70e38670d7fdecda +size 286764 diff --git a/datasets/openslr_yoruba/yof_07508_01698067682.wav b/datasets/openslr_yoruba/yof_07508_01698067682.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd04964402a803865206a8381636db32cac120dc --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01698067682.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96324bf954a2669522a698716d02c6dc62d2dd0b83b62f315bcdd80a5a9a92a3 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07508_01708018951.wav b/datasets/openslr_yoruba/yof_07508_01708018951.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca62283c020cb411ba68a71f152b226781f91bee --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01708018951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd0889728367a1ac961f70afa7313ac6a520b207f33620c6b1d273052e1f2f0 +size 245804 diff --git a/datasets/openslr_yoruba/yof_07508_01736533545.wav b/datasets/openslr_yoruba/yof_07508_01736533545.wav new file mode 100644 index 0000000000000000000000000000000000000000..e27688ee49e5e743a6c41fc840d02ea54b23cd0e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01736533545.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8dd62b3dc14a024a5f099e9becaa6c22c4c404e0c5e8f6e8d699f70b37f2e7 +size 385068 diff --git a/datasets/openslr_yoruba/yof_07508_01736765902.wav b/datasets/openslr_yoruba/yof_07508_01736765902.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e074e2de9324707ecfb02b6befc02b7681d8426 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01736765902.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00026176d41af50596028f55612824124d628633ae91f1badc9af8ecd97aaedf +size 278572 diff --git a/datasets/openslr_yoruba/yof_07508_01764551702.wav b/datasets/openslr_yoruba/yof_07508_01764551702.wav new file mode 100644 index 0000000000000000000000000000000000000000..490d9225e3a49c59d6a0e2251f89b83e5f4d6343 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01764551702.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d378cef36dc1ebb6434083d0fbeda978fc04f6dba8604000cf6b347e3d30bde6 +size 360492 diff --git a/datasets/openslr_yoruba/yof_07508_01766218068.wav b/datasets/openslr_yoruba/yof_07508_01766218068.wav new file mode 100644 index 0000000000000000000000000000000000000000..d788a66efe1c6de2ebcb5281c6365ffb7ef1d41c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01766218068.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3fb01ed1b5c381d066e462a43bef64d99dd05cc431fd424b6215255a48fce9e +size 344108 diff --git a/datasets/openslr_yoruba/yof_07508_01851147890.wav b/datasets/openslr_yoruba/yof_07508_01851147890.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a1941f51b4952ddaf70b258f19afc8dabb6f62a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01851147890.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27da523f32f3d6e6e95e628c84a229fe1d9580315f01291983f8c64f79b1c2c4 +size 319532 diff --git a/datasets/openslr_yoruba/yof_07508_01863905447.wav b/datasets/openslr_yoruba/yof_07508_01863905447.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ac8b6a601daf4e99ae8fcf59bef7e338a82b38b --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01863905447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d50d66a5fec38b762b964cb9adba704fbf43d77446b871d6f7db0771c66f32 +size 221228 diff --git a/datasets/openslr_yoruba/yof_07508_01882852893.wav b/datasets/openslr_yoruba/yof_07508_01882852893.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3e783922f6f27d173cfa811cc5c0c3eda3c241a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01882852893.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095145a18eff901485ae24a2a60e0f005d9874d23da98a4c16ee286e51688f28 +size 286764 diff --git a/datasets/openslr_yoruba/yof_07508_01891187502.wav b/datasets/openslr_yoruba/yof_07508_01891187502.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4ec9283ad5b12073008f8b0036caab0f8c2da2d --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01891187502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7f52813b55827f6a660b03969009b9430cb834c97a399c9774af24f5b6665b +size 245804 diff --git a/datasets/openslr_yoruba/yof_07508_01894057854.wav b/datasets/openslr_yoruba/yof_07508_01894057854.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0c4acb2ab9c3c709f013f1a307e4b5595920c01 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01894057854.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c412a24e946d14850090669860ec9f22decbb033cd7f88f4b8ce46cb948132ee +size 262188 diff --git a/datasets/openslr_yoruba/yof_07508_01897127743.wav b/datasets/openslr_yoruba/yof_07508_01897127743.wav new file mode 100644 index 0000000000000000000000000000000000000000..9175f30d980f3ecc2e0044ea369c5c714b3066b3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01897127743.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34252da55ed75148d08b18ff83fffce3f2d3dbc8e3d93c77b997c61fde12c2cb +size 393260 diff --git a/datasets/openslr_yoruba/yof_07508_01952773975.wav b/datasets/openslr_yoruba/yof_07508_01952773975.wav new file mode 100644 index 0000000000000000000000000000000000000000..6c139d6ca2bc29e681b412d963829226adfe3650 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01952773975.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8349514a2ce537ed61227d2a70b2edd1266fb82aaae29e082116dda0554e607 +size 303148 diff --git a/datasets/openslr_yoruba/yof_07508_01960853622.wav b/datasets/openslr_yoruba/yof_07508_01960853622.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3a0eefb44306f7f1d19309fcab8d6c4483f5b6a --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01960853622.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:424c5f0784ecbc1a437b5985aad9fcfe4596349414b82d626883d49078956961 +size 270380 diff --git a/datasets/openslr_yoruba/yof_07508_01962260204.wav b/datasets/openslr_yoruba/yof_07508_01962260204.wav new file mode 100644 index 0000000000000000000000000000000000000000..91fe567ea27126cf52630aaff43b737ae3aa5f04 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01962260204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb556025d192fac619e39f79f4460948d1f332caeb86934a57f4442699a7666c +size 393260 diff --git a/datasets/openslr_yoruba/yof_07508_01968711190.wav b/datasets/openslr_yoruba/yof_07508_01968711190.wav new file mode 100644 index 0000000000000000000000000000000000000000..436ca0eeacacc915840a778ea45c6a9b71784c11 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01968711190.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f730ce1968347512135f898d9d8c1654193b805de067c238d14618ddc1bc9adf +size 647212 diff --git a/datasets/openslr_yoruba/yof_07508_01984200087.wav b/datasets/openslr_yoruba/yof_07508_01984200087.wav new file mode 100644 index 0000000000000000000000000000000000000000..effa7a8bd254010256101af0a76ca03bd9731a29 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_01984200087.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1696dc17806e94304146b2e070ac4d4385770af38802671c513870245dcedb2 +size 245804 diff --git a/datasets/openslr_yoruba/yof_07508_02027007599.wav b/datasets/openslr_yoruba/yof_07508_02027007599.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ad41557f5b613865b5e7b8cd373cf83d5af9bd9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02027007599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06ac2e38bf45af8c97f4aa267dfef88891da5f951345ac43a36b42384e5bb00 +size 311340 diff --git a/datasets/openslr_yoruba/yof_07508_02028350467.wav b/datasets/openslr_yoruba/yof_07508_02028350467.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f3dc3a08847d468a61bc5f2e37dca1af59a76e0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02028350467.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3b167115fe62d91cfa35b80cd85465834c7976a754969dac7bba80752e599b +size 303148 diff --git a/datasets/openslr_yoruba/yof_07508_02031310832.wav b/datasets/openslr_yoruba/yof_07508_02031310832.wav new file mode 100644 index 0000000000000000000000000000000000000000..37c3df2edc2c2d1682085df0cf8ea3ec3a470c69 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02031310832.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d11108fc129bcdf1191e5a2c29017e94d7c20fc8cf7f08d1a5623abf7434542 +size 278572 diff --git a/datasets/openslr_yoruba/yof_07508_02036500710.wav b/datasets/openslr_yoruba/yof_07508_02036500710.wav new file mode 100644 index 0000000000000000000000000000000000000000..6115cf3ae8ff19166f42fb69d2444d5c76af44ba --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02036500710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6f9e9d31d8c609903eed08406242601615d61c4ca32f9d3a086af3c936441f +size 303148 diff --git a/datasets/openslr_yoruba/yof_07508_02091367016.wav b/datasets/openslr_yoruba/yof_07508_02091367016.wav new file mode 100644 index 0000000000000000000000000000000000000000..a0572adf60c2180fbc8c89e183c738a2f14b90d0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02091367016.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18cc818da552bbbd8ff9c9a8225bbc23f70ec8b617f4037f0b9d8109678a6a20 +size 483372 diff --git a/datasets/openslr_yoruba/yof_07508_02094450877.wav b/datasets/openslr_yoruba/yof_07508_02094450877.wav new file mode 100644 index 0000000000000000000000000000000000000000..4345e5b40958e8716e28512cf89c720bcddd4dab --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02094450877.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebbc6cb0b86e85a27c644488a32a82f031230607d8e6011702650e64e787cf25 +size 221228 diff --git a/datasets/openslr_yoruba/yof_07508_02109019112.wav b/datasets/openslr_yoruba/yof_07508_02109019112.wav new file mode 100644 index 0000000000000000000000000000000000000000..fdcf32673a5411de229b55519a676f57bac8355c --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02109019112.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e60cf72302a6af7a7b1c2b71566044edb1140097d7a3b89db79407b0d4039f8 +size 352300 diff --git a/datasets/openslr_yoruba/yof_07508_02122693945.wav b/datasets/openslr_yoruba/yof_07508_02122693945.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb69f70b26f26390e002861a1da7fbdb9f96e91e --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02122693945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b426b77de3e3fccc286ce927cebdc1bced21535de588c0da2d669f29fb9f37fe +size 262188 diff --git a/datasets/openslr_yoruba/yof_07508_02132249236.wav b/datasets/openslr_yoruba/yof_07508_02132249236.wav new file mode 100644 index 0000000000000000000000000000000000000000..f589af597611f6205f22b53d280bce54ef8027e1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02132249236.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf417bb29902fa72696286859501f37c60e0cd057210adc15f7f4375fccabff +size 434220 diff --git a/datasets/openslr_yoruba/yof_07508_02146569893.wav b/datasets/openslr_yoruba/yof_07508_02146569893.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e958d4e936e30a7ff16dc162e2ce09d90561364 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02146569893.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ca9bdcd6f20578cfa9e1b1801760afc1ca4107dfd270ebb0e874e71842df6a +size 303148 diff --git a/datasets/openslr_yoruba/yof_07508_02147105578.wav b/datasets/openslr_yoruba/yof_07508_02147105578.wav new file mode 100644 index 0000000000000000000000000000000000000000..7df48c9e9eac08946dfcfb389f35f2f60747e5b4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_07508_02147105578.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1298e6249cb3384a110fc012a4a54791fcfe3d4cce23a48fa5b6966089c4584f +size 368684 diff --git a/datasets/openslr_yoruba/yof_08421_00109898102.wav b/datasets/openslr_yoruba/yof_08421_00109898102.wav new file mode 100644 index 0000000000000000000000000000000000000000..c5ca0ec5edd481734ca04c44949dbfa96c011a85 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00109898102.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ac22df69166b591410eae5b72dbdd193d3e826ba9366f02f743b0d9a4cf714 +size 319532 diff --git a/datasets/openslr_yoruba/yof_08421_00124921259.wav b/datasets/openslr_yoruba/yof_08421_00124921259.wav new file mode 100644 index 0000000000000000000000000000000000000000..92f6546d63d370f833ad7a3b133131863e5a93dc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00124921259.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1040d130fecb5cd02816c1fcf14b33f3b54b15afe2d8f14070e4f63f14c14d90 +size 253996 diff --git a/datasets/openslr_yoruba/yof_08421_00139493817.wav b/datasets/openslr_yoruba/yof_08421_00139493817.wav new file mode 100644 index 0000000000000000000000000000000000000000..998956fcbd9cbe1e3724bde41ab1ed0cf01aa3b8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00139493817.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4812942cc5daeb38679a332e14e4c4ac249648b27fe69f49f4e677ef0faad387 +size 188460 diff --git a/datasets/openslr_yoruba/yof_08421_00164286573.wav b/datasets/openslr_yoruba/yof_08421_00164286573.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ef6cac6d0f1242cc835a5fcf58de7fa2ee2ac57 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00164286573.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149760e8952c8f2b1b61da1bbe7c1a609f0e6c897047545e1a39bd0fd40e7679 +size 237612 diff --git a/datasets/openslr_yoruba/yof_08421_00218614665.wav b/datasets/openslr_yoruba/yof_08421_00218614665.wav new file mode 100644 index 0000000000000000000000000000000000000000..d06956c3f977d9eba67dca846341ce66c26d1aae --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00218614665.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d86b846243333344bebe128c5c5ebb4eb903ff25375d7c0b4852060348b64d +size 237612 diff --git a/datasets/openslr_yoruba/yof_08421_00231301744.wav b/datasets/openslr_yoruba/yof_08421_00231301744.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b21c772a90c53352ae98fc07c65117e353ed577 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00231301744.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e96669082866e40318028dfb0ca4450d9f2afc2c2009521ac37885d5e6dba3b +size 221228 diff --git a/datasets/openslr_yoruba/yof_08421_00248957161.wav b/datasets/openslr_yoruba/yof_08421_00248957161.wav new file mode 100644 index 0000000000000000000000000000000000000000..c200790f5e0a9003f9e4e5a5b4428e6d96f88fa9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00248957161.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e242d7490ededd2d560d2a0b63e53d975a70c076df92ebab46c654356ef3237c +size 966700 diff --git a/datasets/openslr_yoruba/yof_08421_00288312893.wav b/datasets/openslr_yoruba/yof_08421_00288312893.wav new file mode 100644 index 0000000000000000000000000000000000000000..d13455ad62e14cb6a0b7e3471f4c57681f2c5482 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00288312893.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f329b648db71154564a0eee2e2909d8b399224a7953d7e672d240a2ad0e69b1 +size 442412 diff --git a/datasets/openslr_yoruba/yof_08421_00295837571.wav b/datasets/openslr_yoruba/yof_08421_00295837571.wav new file mode 100644 index 0000000000000000000000000000000000000000..80285be84a1c15914d0ca9fb81cad3afc7a0b363 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00295837571.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c975d970395111c54e70ed87c6c70bedf4b4e2065274c6b21d556284097e67 +size 368684 diff --git a/datasets/openslr_yoruba/yof_08421_00296052354.wav b/datasets/openslr_yoruba/yof_08421_00296052354.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf9123728a8f8d3f963dfbb8207ab1f460b8f3ac --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00296052354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b179fe0b96c0562d99fd7be98606e0f5d5f8c2b2315bb7314ae6b5ca701ade62 +size 516140 diff --git a/datasets/openslr_yoruba/yof_08421_00313709282.wav b/datasets/openslr_yoruba/yof_08421_00313709282.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a8f6b8faa1870286722a33bb89fe0f5c120262c --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00313709282.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551d2600125f88bd84eb06ce1ac04a4d1e697cc1dfb16904c9f1e826fd6e3ac0 +size 303148 diff --git a/datasets/openslr_yoruba/yof_08421_00320059067.wav b/datasets/openslr_yoruba/yof_08421_00320059067.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e2fbbde27ab63359fbcb62f14b2fd8335e9698c --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00320059067.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6217a93c7e3b5df3c954ca788605fc560f083f8175a60fb2bc88213e4884df3 +size 491564 diff --git a/datasets/openslr_yoruba/yof_08421_00375984995.wav b/datasets/openslr_yoruba/yof_08421_00375984995.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce535680442be4b51aefc448eb4c1f6c5ac61dec --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00375984995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cec191471c2b857333fb5c42c0ef3a648bd9c4949cbe799c593b08602e3e817 +size 385068 diff --git a/datasets/openslr_yoruba/yof_08421_00396477740.wav b/datasets/openslr_yoruba/yof_08421_00396477740.wav new file mode 100644 index 0000000000000000000000000000000000000000..0400c600ac0196c2d0cf0d438a6e301b2cde8ece --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00396477740.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686d3d3475b12bd3ed86effc14a8cf4d206ed928ac76a30cf3d98f9d7c0fa332 +size 753708 diff --git a/datasets/openslr_yoruba/yof_08421_00418889640.wav b/datasets/openslr_yoruba/yof_08421_00418889640.wav new file mode 100644 index 0000000000000000000000000000000000000000..44ed01d377af9b2126a9e404577ff3f839737f1a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00418889640.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1a9643d8e1547b60704b0d98541b2f3c309241fcd7e3e12b18147e2c94d286 +size 253996 diff --git a/datasets/openslr_yoruba/yof_08421_00431231205.wav b/datasets/openslr_yoruba/yof_08421_00431231205.wav new file mode 100644 index 0000000000000000000000000000000000000000..aebd1f3221841f53009d2a127c48d7991376e62e --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00431231205.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005bcd37907e52dbb5d15740770065a845f8dee8facecd1c2bd787c2d96b4dd2 +size 294956 diff --git a/datasets/openslr_yoruba/yof_08421_00434188710.wav b/datasets/openslr_yoruba/yof_08421_00434188710.wav new file mode 100644 index 0000000000000000000000000000000000000000..969b4096e6d5533a1f6bd9434f1df474590a664d --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00434188710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9a511ae0dd357a5fd2f908d4cafe0554230ce55cab72b0f7dc7d440dde1e0a +size 417836 diff --git a/datasets/openslr_yoruba/yof_08421_00489798113.wav b/datasets/openslr_yoruba/yof_08421_00489798113.wav new file mode 100644 index 0000000000000000000000000000000000000000..4caaf98d5aec4bbe981313cf5367db16cbbbd93b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00489798113.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22d254e4bb426d8081b2e30a6f4198832776e83e305332788ba0d111e46241e +size 114732 diff --git a/datasets/openslr_yoruba/yof_08421_00501390396.wav b/datasets/openslr_yoruba/yof_08421_00501390396.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5aa5d6ca06c8868d26ac88459e29b9d221985ae --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00501390396.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ee3f29ebcb63101c98018157ed1ebabb3a4ac1520412e91ad126041824c095 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08421_00517597514.wav b/datasets/openslr_yoruba/yof_08421_00517597514.wav new file mode 100644 index 0000000000000000000000000000000000000000..c6d244141eb310dc0d3658cbb0b41b5beac976bb --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00517597514.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b5d2f30584b05812be5528b8810e35cd081749a7375a4a3ba9605c056f9ca1 +size 557100 diff --git a/datasets/openslr_yoruba/yof_08421_00519067876.wav b/datasets/openslr_yoruba/yof_08421_00519067876.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e57af1b5573d699341bf3cc06362db03a47e1aa --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00519067876.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c25106661a2a3fc2e9bf35636aada9d2771409702a8e431c20952e8c493077ff +size 458796 diff --git a/datasets/openslr_yoruba/yof_08421_00541566668.wav b/datasets/openslr_yoruba/yof_08421_00541566668.wav new file mode 100644 index 0000000000000000000000000000000000000000..8509b84bbc9c8078fe293144a8e18a5595c1db0a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00541566668.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970ccb123692034c7792d3b47391e76e4e4a2d1ff6d536f4966a38c65dce7868 +size 696364 diff --git a/datasets/openslr_yoruba/yof_08421_00559342942.wav b/datasets/openslr_yoruba/yof_08421_00559342942.wav new file mode 100644 index 0000000000000000000000000000000000000000..b71f83e7fed333e1df4583a5b2a480ebd0f5836b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00559342942.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd5086aa26d9f8de3dd5941e0647628069f509fd840c6f29eae129f8ded17e8e +size 237612 diff --git a/datasets/openslr_yoruba/yof_08421_00566794110.wav b/datasets/openslr_yoruba/yof_08421_00566794110.wav new file mode 100644 index 0000000000000000000000000000000000000000..663cee4f9d7d8aa2a19a9aabefb6a2620c53e540 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00566794110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff68700eba28a0d61a56b0ec5ced847a93154036a8039af270d9ce70cef2beb1 +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_00569449972.wav b/datasets/openslr_yoruba/yof_08421_00569449972.wav new file mode 100644 index 0000000000000000000000000000000000000000..637d63308391c917f4fd300d98db2056c4468be5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00569449972.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b806eb9ef52aaae1b026d25755b94136b3d7d6f32683b0c5964981b8ac5909 +size 434220 diff --git a/datasets/openslr_yoruba/yof_08421_00594106710.wav b/datasets/openslr_yoruba/yof_08421_00594106710.wav new file mode 100644 index 0000000000000000000000000000000000000000..1229b65a7e2d7359aea14080e275ca5716cdcc1f --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00594106710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f278d681764b3484f7c2e66d2276a7688258a74a4beb4dc73bcbcbcbc0f2fa1 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08421_00615577434.wav b/datasets/openslr_yoruba/yof_08421_00615577434.wav new file mode 100644 index 0000000000000000000000000000000000000000..dea58134b27f53da4563f35c431b68cc0d66a503 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00615577434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b93281b6118d934433ff4fb7653c676508e16a317a2e4cf3933b1846e7cdd5f +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_00630972670.wav b/datasets/openslr_yoruba/yof_08421_00630972670.wav new file mode 100644 index 0000000000000000000000000000000000000000..f47d670614776b27641ebe8b2080d15e646ba8fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00630972670.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8426c421635901c5e5557915d97fa62670c0f819fdfe80b9f4c01276f685727 +size 311340 diff --git a/datasets/openslr_yoruba/yof_08421_00650421505.wav b/datasets/openslr_yoruba/yof_08421_00650421505.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8043c353d8160bf5a3ab3b39dd90c8596e00a04 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00650421505.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afd4ce5189bdfc55ad59d91c6e67a7003262a63b53f3af7a6c6ce0c26293fdce +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_00677947027.wav b/datasets/openslr_yoruba/yof_08421_00677947027.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ee42a02b6cf15a0a9a36d6491c634020c0fedce --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00677947027.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3d0875f35d96e08b5201df84d96dfa9aa1393eb433961e64a5fb467f59fa6d8 +size 417836 diff --git a/datasets/openslr_yoruba/yof_08421_00679894713.wav b/datasets/openslr_yoruba/yof_08421_00679894713.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5ae70b2ee9529eec79a5f020570fa22131f102b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00679894713.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3d7ce7b6775c350c1c34c4541e57d7638c3a00608d630e7a6fc29ac40dcae9 +size 213036 diff --git a/datasets/openslr_yoruba/yof_08421_00699507177.wav b/datasets/openslr_yoruba/yof_08421_00699507177.wav new file mode 100644 index 0000000000000000000000000000000000000000..033c93740bd6e297f78f83863318b7de0f802ec3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00699507177.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d4c5c165e091759319d24bdd358c02a6f218d281a7123724f266666552198f +size 311340 diff --git a/datasets/openslr_yoruba/yof_08421_00744771820.wav b/datasets/openslr_yoruba/yof_08421_00744771820.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf1253e8a83350e4ade555b2c3d9f1c0fb9d15f7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00744771820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1950d42bc576d9805fdcc6d4f50821ecd4b0c5941f776ae223b5b573674b32 +size 204844 diff --git a/datasets/openslr_yoruba/yof_08421_00775918477.wav b/datasets/openslr_yoruba/yof_08421_00775918477.wav new file mode 100644 index 0000000000000000000000000000000000000000..93db3ef7d4bf5a012221f903758605ea2897b883 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00775918477.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018d79eb53761394798476be6b25e045131038362ad4ff527adc53c91838b0db +size 245804 diff --git a/datasets/openslr_yoruba/yof_08421_00780594409.wav b/datasets/openslr_yoruba/yof_08421_00780594409.wav new file mode 100644 index 0000000000000000000000000000000000000000..65c3121d0ee1d09ba582da1826eae131420946a9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00780594409.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801cb43f3755cc5a7eea3a0ceb5244b414b00369d82dc1efffc7efead8cf402d +size 475180 diff --git a/datasets/openslr_yoruba/yof_08421_00821394297.wav b/datasets/openslr_yoruba/yof_08421_00821394297.wav new file mode 100644 index 0000000000000000000000000000000000000000..bca91a8a22ec0a48978615c38212522a8cd0a9d8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00821394297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7376fb81e177101526b54b6554a668ef9d7049aafa2f3e9c06feafd6681302d +size 303148 diff --git a/datasets/openslr_yoruba/yof_08421_00892616823.wav b/datasets/openslr_yoruba/yof_08421_00892616823.wav new file mode 100644 index 0000000000000000000000000000000000000000..eceaf796a7dc23573a25a404a6b4f248dadfb1f8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00892616823.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560566e3bd439baf3a59734f10d0f37f6f2530d8b310e3fa982aa17101f26746 +size 294956 diff --git a/datasets/openslr_yoruba/yof_08421_00937158596.wav b/datasets/openslr_yoruba/yof_08421_00937158596.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b5db1d33d8f4b068f6ae54fc6a04631d017a688 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00937158596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfd8e4a4c59884f9522f68a2465f0a9c89452c815a93bb59cde70137059d374 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08421_00944649911.wav b/datasets/openslr_yoruba/yof_08421_00944649911.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf665ca163288ddf19c9b32dbab40484f5d37900 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00944649911.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02181ec48669e6f844a6c8031778e0c0c656d48c04b92cf7f5da14fa396375f +size 229420 diff --git a/datasets/openslr_yoruba/yof_08421_00960110763.wav b/datasets/openslr_yoruba/yof_08421_00960110763.wav new file mode 100644 index 0000000000000000000000000000000000000000..4e3aff78477bef82689bbee163a0bfbee2e58a3a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00960110763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce202ad9f8dbd5bb96e5b2b63051821b1e3ebe0f88c787c75bbe567325001ca +size 245804 diff --git a/datasets/openslr_yoruba/yof_08421_00964263372.wav b/datasets/openslr_yoruba/yof_08421_00964263372.wav new file mode 100644 index 0000000000000000000000000000000000000000..121e421664e8dc97e8b9cb3352810b0988ce1c01 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00964263372.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7cbdf313ff34656767064ed528fd6b418aa190c2145068201191e9ca9dc56d +size 286764 diff --git a/datasets/openslr_yoruba/yof_08421_00969878974.wav b/datasets/openslr_yoruba/yof_08421_00969878974.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9fa8cabec2370ec050fc8a7455e7c47663b7216 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00969878974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef73a24f7a376003d1f6015ddab2ef4c46bafd17467353ee71ff192adfc4b250 +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_00969899408.wav b/datasets/openslr_yoruba/yof_08421_00969899408.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ac612fadf51b009bd1f8512e3df62ddd6a490d1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_00969899408.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb486cb1c78c54d241c525dc66792adde5a2c6ea66d3547fe9c035691b0e907d +size 278572 diff --git a/datasets/openslr_yoruba/yof_08421_01026307869.wav b/datasets/openslr_yoruba/yof_08421_01026307869.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4a169fd92570984f48b78e2f4946f2cf47ccb6f --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01026307869.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa59ea2bce0093e79227e20b02dc512607ddd3ac484c59137bdfb1381e7634b5 +size 745516 diff --git a/datasets/openslr_yoruba/yof_08421_01031155147.wav b/datasets/openslr_yoruba/yof_08421_01031155147.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c0da9831ba7608c99bac601dff4382457f32d58 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01031155147.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f272a116c93e7611a124916fa9c607d9fa56faf90572d21d74b43d116f365575 +size 253996 diff --git a/datasets/openslr_yoruba/yof_08421_01035332534.wav b/datasets/openslr_yoruba/yof_08421_01035332534.wav new file mode 100644 index 0000000000000000000000000000000000000000..badf16b003cbb9d3973d5de9d945cdc302d560b2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01035332534.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bbfa9fa47b59f8cf4c0d662dd9f6ea8e316d44494025b13b6031083cc6ac63 +size 475180 diff --git a/datasets/openslr_yoruba/yof_08421_01043861819.wav b/datasets/openslr_yoruba/yof_08421_01043861819.wav new file mode 100644 index 0000000000000000000000000000000000000000..1448cd1f02f1dc63cc0cb4df5617d719aa99d869 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01043861819.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2926a78fa8bdbbe1760e53f0d3aa03c2ba03e370b8467ff6ee47fbba89d43422 +size 204844 diff --git a/datasets/openslr_yoruba/yof_08421_01045330228.wav b/datasets/openslr_yoruba/yof_08421_01045330228.wav new file mode 100644 index 0000000000000000000000000000000000000000..585620bc5739b4200ea7b3abb945b8a182d440a6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01045330228.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed4db381efd50c2634d4f1bf7a6ab989aaaf545d4fd946a31a07d4943d2a51c +size 532524 diff --git a/datasets/openslr_yoruba/yof_08421_01121475027.wav b/datasets/openslr_yoruba/yof_08421_01121475027.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf46e6e5bef531b923a809e64afad8b82a2f8e32 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01121475027.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea76e2a6a240227bd3aad00ff456e93ceab2f57b23b66a0ba824bb3e82b24616 +size 278572 diff --git a/datasets/openslr_yoruba/yof_08421_01131178845.wav b/datasets/openslr_yoruba/yof_08421_01131178845.wav new file mode 100644 index 0000000000000000000000000000000000000000..e278d013053c2501ee8fb1a070869df5be3bf1c2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01131178845.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9710c00c92c37b13cb4c5a7291ef2d599a32d2f8a043fb0c88298d66e2dcd83c +size 507948 diff --git a/datasets/openslr_yoruba/yof_08421_01160034934.wav b/datasets/openslr_yoruba/yof_08421_01160034934.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e68ec4990803266131d73ea409b46e8294368ad --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01160034934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ba81dd527bbf86e2e6f9178b82fb7e574e3e35825e2edd59d9bcf5da8901122 +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_01188812224.wav b/datasets/openslr_yoruba/yof_08421_01188812224.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc0eac824e997c5f91ae15f2548937f42a9d5692 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01188812224.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b080512b7e28bd353957b721e870181e29af369a13b9c51d2a710ba476ec5dc8 +size 278572 diff --git a/datasets/openslr_yoruba/yof_08421_01198565027.wav b/datasets/openslr_yoruba/yof_08421_01198565027.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb5e6c4ecc597892d015757407709893fabba1fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01198565027.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b79ac3a5fb4a9fd7e76e29adfd00222b74e9fa1efb34eeacc470940b3791ae0d +size 540716 diff --git a/datasets/openslr_yoruba/yof_08421_01243847513.wav b/datasets/openslr_yoruba/yof_08421_01243847513.wav new file mode 100644 index 0000000000000000000000000000000000000000..0622e2bc76255d224d0c65d8f68e5da653667002 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01243847513.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9275ca394c5800673b0c8ea7606fdb84e83dae129b337855d0d75ec6e735a5d5 +size 442412 diff --git a/datasets/openslr_yoruba/yof_08421_01252124057.wav b/datasets/openslr_yoruba/yof_08421_01252124057.wav new file mode 100644 index 0000000000000000000000000000000000000000..c8e6bf2ceca416dfee359e843084b146e50e84bb --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01252124057.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b59f8e14473a337abfd0133ff9569e8cdde81bbaecc55b12c8ec0f981c98ad +size 327724 diff --git a/datasets/openslr_yoruba/yof_08421_01254877202.wav b/datasets/openslr_yoruba/yof_08421_01254877202.wav new file mode 100644 index 0000000000000000000000000000000000000000..38c26ad53670f5881faabf8f98dcabad81e1b967 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01254877202.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b218354e65c032a15030fdac44cef79701b8164e3675c59f7988f3c33a5bd0 +size 417836 diff --git a/datasets/openslr_yoruba/yof_08421_01272422037.wav b/datasets/openslr_yoruba/yof_08421_01272422037.wav new file mode 100644 index 0000000000000000000000000000000000000000..07f20c523febb202f725f0972e194e46d380594e --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01272422037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d692ff831dc582b76681f35e23b87fb222554f302d03e39c8b8e5e3cd4dbd8eb +size 434220 diff --git a/datasets/openslr_yoruba/yof_08421_01273029204.wav b/datasets/openslr_yoruba/yof_08421_01273029204.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf5acfb738c7f56a647c108d67179682964ae4f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01273029204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6eeca8be09c9bfa2dc9bcc6e0dc1c31681e251738286a7ca02c4d1ed7b6ae3 +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_01278137276.wav b/datasets/openslr_yoruba/yof_08421_01278137276.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d9218febd9af6aee7be7ffd8a32a9dc567a8cfb --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01278137276.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ddb9f11039f48ee424308e0dece9ca470dd65dc857f40259d614b134b2779d1 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08421_01304470463.wav b/datasets/openslr_yoruba/yof_08421_01304470463.wav new file mode 100644 index 0000000000000000000000000000000000000000..651ab053a473191d6d062921dfec22237228b24a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01304470463.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d4b5bd397eb526541c754f44b5ddd502b1bc8e69502d8bd413557b2073974b +size 221228 diff --git a/datasets/openslr_yoruba/yof_08421_01315588850.wav b/datasets/openslr_yoruba/yof_08421_01315588850.wav new file mode 100644 index 0000000000000000000000000000000000000000..62608edaff7fd4bdd41391f418d23a83e5f31f57 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01315588850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2f97caa47e7c8e502b958b04348f22a7e370b6929d5b38c968f207fb70d52d +size 516140 diff --git a/datasets/openslr_yoruba/yof_08421_01334384825.wav b/datasets/openslr_yoruba/yof_08421_01334384825.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9680c81130ac38b88b55937b9ce3d9174179574 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01334384825.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b059ac72720a51e0102fb06300059e807644296b451aa836d37136e13939847 +size 344108 diff --git a/datasets/openslr_yoruba/yof_08421_01336941773.wav b/datasets/openslr_yoruba/yof_08421_01336941773.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bb55d9cd17ad5e3420abdc5ac15236475a0fbc7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01336941773.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a8e77000e538b1d5ad6350031472aa5c99bfe9f351299cb3f004833af4caa0 +size 376876 diff --git a/datasets/openslr_yoruba/yof_08421_01351103764.wav b/datasets/openslr_yoruba/yof_08421_01351103764.wav new file mode 100644 index 0000000000000000000000000000000000000000..0114ccb6e4cf4ded4c377ec1519ecd0119023255 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01351103764.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330331908a22078e98ea43c8aea4eeff226e759f636e2ccb0023f67715d0509d +size 352300 diff --git a/datasets/openslr_yoruba/yof_08421_01351600590.wav b/datasets/openslr_yoruba/yof_08421_01351600590.wav new file mode 100644 index 0000000000000000000000000000000000000000..90bf01291844e0d00deec0e6783ccf9c2103c44d --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01351600590.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec1601b82772c2b6e9a17d66ca043f388bbba58bf27c1da7f6771e22a40f5a01 +size 507948 diff --git a/datasets/openslr_yoruba/yof_08421_01357299502.wav b/datasets/openslr_yoruba/yof_08421_01357299502.wav new file mode 100644 index 0000000000000000000000000000000000000000..598afdec3629006718c5aa48b1fdfba90906978a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01357299502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7945985483b981bf78f033afc70fd2cdc4a7cd889ea3aa52fadedb4bc5975f +size 131116 diff --git a/datasets/openslr_yoruba/yof_08421_01377849773.wav b/datasets/openslr_yoruba/yof_08421_01377849773.wav new file mode 100644 index 0000000000000000000000000000000000000000..d61b5527840bc7ba949685521b325b0e00f321fc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01377849773.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c281145992e5bcf7f3ac646ef4045448910f28e52f4b1b744524efa02a203b03 +size 688172 diff --git a/datasets/openslr_yoruba/yof_08421_01399348741.wav b/datasets/openslr_yoruba/yof_08421_01399348741.wav new file mode 100644 index 0000000000000000000000000000000000000000..27dadf1b3186986d5175b30a59a7a8ec18b68c80 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01399348741.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44503b0ec4b66c668c2954d5ddc67ebbf8cd9b8a3d20aecb99e3d586e6c11ad3 +size 368684 diff --git a/datasets/openslr_yoruba/yof_08421_01426955276.wav b/datasets/openslr_yoruba/yof_08421_01426955276.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcc907488bd8df1e3dbe7a4330b64e8cae0bcd63 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01426955276.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac73c9278d9539e5ae9055737843ff37564795fd03fabceadb46a9e04929f0f +size 401452 diff --git a/datasets/openslr_yoruba/yof_08421_01488517830.wav b/datasets/openslr_yoruba/yof_08421_01488517830.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ac3782d7e9a4e715b8e4bcea7f5b6494f92abe3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01488517830.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2ee2076f0be34edfed892720bbe7f9edf33112150965e60c3d7671cb8bf360 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08421_01505339944.wav b/datasets/openslr_yoruba/yof_08421_01505339944.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2428c1706a1104bdbc5372f927796a2a74703ff --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01505339944.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28af35698c291a7da9ee65ed1456609b1eb5418d9718ca5d7231caba8f242956 +size 466988 diff --git a/datasets/openslr_yoruba/yof_08421_01532215540.wav b/datasets/openslr_yoruba/yof_08421_01532215540.wav new file mode 100644 index 0000000000000000000000000000000000000000..579ba1d6fa652b1c4a12209c6ee43389742bb802 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01532215540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e20f187d3ae0207a9dcc79a35387f616088d7bd04508cb3e0e8101561d6c74 +size 286764 diff --git a/datasets/openslr_yoruba/yof_08421_01554358035.wav b/datasets/openslr_yoruba/yof_08421_01554358035.wav new file mode 100644 index 0000000000000000000000000000000000000000..65ebb75e72b675c088a64532012048f07c33b2f1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01554358035.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3511217d5e9787147ea65fcd2c6f9c99310dc94d918458afbdd03a4d838e09 +size 622636 diff --git a/datasets/openslr_yoruba/yof_08421_01573273913.wav b/datasets/openslr_yoruba/yof_08421_01573273913.wav new file mode 100644 index 0000000000000000000000000000000000000000..3dc811633567a332a15ee1cddac6a7837c3dcf9d --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01573273913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb89a877b01f8923605200473b0c11a70d54852d86020a066dd5183ee0e05bac +size 401452 diff --git a/datasets/openslr_yoruba/yof_08421_01582604095.wav b/datasets/openslr_yoruba/yof_08421_01582604095.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f7d040fbcbe9a5029f28e151aec2cd272344b00 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01582604095.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed088ac315311054b6b38e9e320d74556fff667f7c787b47ce8123295fa99632 +size 327724 diff --git a/datasets/openslr_yoruba/yof_08421_01593132978.wav b/datasets/openslr_yoruba/yof_08421_01593132978.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1e0715869bd6d04381d29a96043adb92e1239bc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01593132978.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:390fff58d50f3a1b7c7b61a9201538b6200b7939a39f0e95cb7e5933b93ef3a1 +size 720940 diff --git a/datasets/openslr_yoruba/yof_08421_01597361236.wav b/datasets/openslr_yoruba/yof_08421_01597361236.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9cc589193b3ef6a8729ad65fe6959c1d6e75749 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01597361236.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8198baca0d835fbe7a530c6673a594a5918c52051703d016c23be2649b8f62 +size 671788 diff --git a/datasets/openslr_yoruba/yof_08421_01651152388.wav b/datasets/openslr_yoruba/yof_08421_01651152388.wav new file mode 100644 index 0000000000000000000000000000000000000000..7fdfb7664897bf862f5820456a4088c3f1f6704c --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01651152388.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9255c35786c8165e9c2bd7a83a2d1c48a8fca60d405d3de41a1b928bd3ea4451 +size 311340 diff --git a/datasets/openslr_yoruba/yof_08421_01661644540.wav b/datasets/openslr_yoruba/yof_08421_01661644540.wav new file mode 100644 index 0000000000000000000000000000000000000000..b104a7a0254a6604b1ee957fad93a174abfb57c3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01661644540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f275d5f3bdeba0cf1d11d4130da389815a8884498eaca4fd2e317aa4f93ae04c +size 294956 diff --git a/datasets/openslr_yoruba/yof_08421_01662489750.wav b/datasets/openslr_yoruba/yof_08421_01662489750.wav new file mode 100644 index 0000000000000000000000000000000000000000..f15eaff76da106de59cbddade3d09eb622beb1f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01662489750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf8b4a8f9dd905ba0fd7c58416674e552157f2c6b11158111b73d766b2e554a +size 311340 diff --git a/datasets/openslr_yoruba/yof_08421_01669660582.wav b/datasets/openslr_yoruba/yof_08421_01669660582.wav new file mode 100644 index 0000000000000000000000000000000000000000..feaa27f471231992e7c273bc6830701c461cbd94 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01669660582.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620074d68af3c67defd44980053b9f83092b5df362dbe5454e8c4b504f166a6b +size 573484 diff --git a/datasets/openslr_yoruba/yof_08421_01677949196.wav b/datasets/openslr_yoruba/yof_08421_01677949196.wav new file mode 100644 index 0000000000000000000000000000000000000000..254fd097716e42fda324fe0ad351fa1fc5da82ab --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01677949196.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5baa03414f9656889aa38448b79d7c1111f5e695d3cb27138a938f915690aae0 +size 466988 diff --git a/datasets/openslr_yoruba/yof_08421_01717037074.wav b/datasets/openslr_yoruba/yof_08421_01717037074.wav new file mode 100644 index 0000000000000000000000000000000000000000..9188558ccb78792316178f8495693b05ebbf9b52 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01717037074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a1e28e66794fba9789fe0c198fd82f00186bf3b5412f61e0859133fb93b855 +size 376876 diff --git a/datasets/openslr_yoruba/yof_08421_01762397439.wav b/datasets/openslr_yoruba/yof_08421_01762397439.wav new file mode 100644 index 0000000000000000000000000000000000000000..00c7376465bb6acc65f1ae4202668ba0701f3a65 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01762397439.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d6223865c928c06bb6b55ee74d29884adda6278e6498f1901971125a3dde1c6 +size 426028 diff --git a/datasets/openslr_yoruba/yof_08421_01771922192.wav b/datasets/openslr_yoruba/yof_08421_01771922192.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd12a78dc1387fbc9a3e75a7b958b1c4fd660d0c --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01771922192.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009c8e2465055868762a75a2b1eba2f4c633a6314118090dc2ffe307e4aefd0c +size 647212 diff --git a/datasets/openslr_yoruba/yof_08421_01778612081.wav b/datasets/openslr_yoruba/yof_08421_01778612081.wav new file mode 100644 index 0000000000000000000000000000000000000000..68a355a86515c40be089f0994af655aed24eee42 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01778612081.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d95bc7106a9ba6945f2fc73c7f2123a50d29fc44f5b254ac768ad22e6124ed +size 401452 diff --git a/datasets/openslr_yoruba/yof_08421_01806450345.wav b/datasets/openslr_yoruba/yof_08421_01806450345.wav new file mode 100644 index 0000000000000000000000000000000000000000..21aca00820acca0708c0a5d610083632c9490a28 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01806450345.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89322b3f6ab9b6572c0044687260ef91bee446a9578738eb78a55d86fbad354c +size 491564 diff --git a/datasets/openslr_yoruba/yof_08421_01834404080.wav b/datasets/openslr_yoruba/yof_08421_01834404080.wav new file mode 100644 index 0000000000000000000000000000000000000000..df582083718de9985af2d6a9e2b16034e3fe1834 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01834404080.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5cfee99239ad406ca5150bd3eddd211e2f59ead41a1cd81727c80010edb6a68 +size 434220 diff --git a/datasets/openslr_yoruba/yof_08421_01858024247.wav b/datasets/openslr_yoruba/yof_08421_01858024247.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea95c74045157357cdcc35aa072347524dac88a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01858024247.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8277425373c667a270e781475178b6cf9e88543400d6f8d3727b096aade9bd +size 368684 diff --git a/datasets/openslr_yoruba/yof_08421_01859320941.wav b/datasets/openslr_yoruba/yof_08421_01859320941.wav new file mode 100644 index 0000000000000000000000000000000000000000..061aeb90222eb45dbca66098a3ea4a9b208c9ebe --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01859320941.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9986baf6455a180a8420b99237c3b5546c22bc7b8e84da1cfa4fd18c9cc7553b +size 335916 diff --git a/datasets/openslr_yoruba/yof_08421_01868045959.wav b/datasets/openslr_yoruba/yof_08421_01868045959.wav new file mode 100644 index 0000000000000000000000000000000000000000..7fc309230ffb5e4c58694f5fc0c52ba57aad77bc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01868045959.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771cd936a11af69905cf89f73f955459c5abb9b9c45c1759241bfeee2e7b4a77 +size 491564 diff --git a/datasets/openslr_yoruba/yof_08421_01903647230.wav b/datasets/openslr_yoruba/yof_08421_01903647230.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b5ceb43378716cd928551938d86b07b6d7d19e8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01903647230.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50981a5bd570eb80bf596a8cf851aab0044cbf34c7db416f12bc03a92d75faf1 +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_01963984165.wav b/datasets/openslr_yoruba/yof_08421_01963984165.wav new file mode 100644 index 0000000000000000000000000000000000000000..71b6cbdb997504495a5d15461ad465717b98b1b5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_01963984165.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d4af9fbf02102916896628e7ee207028f6140d17b7870f3921604736dd941a +size 294956 diff --git a/datasets/openslr_yoruba/yof_08421_02003206429.wav b/datasets/openslr_yoruba/yof_08421_02003206429.wav new file mode 100644 index 0000000000000000000000000000000000000000..237f193eb2c67cf1d0aa855bb12b874585f59ae3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_02003206429.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee413929f02a970a7180702faa58c1234ca7548184c939d7d1b0ce705d16069 +size 524332 diff --git a/datasets/openslr_yoruba/yof_08421_02013697467.wav b/datasets/openslr_yoruba/yof_08421_02013697467.wav new file mode 100644 index 0000000000000000000000000000000000000000..c008834e89261b7424c389c2140022ef19419a0f --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_02013697467.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903d15433fb1d0647c45cb3a99e3b54590403c96e8d3ae9977245fdab77e757b +size 253996 diff --git a/datasets/openslr_yoruba/yof_08421_02081959854.wav b/datasets/openslr_yoruba/yof_08421_02081959854.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4c504df453346620079368c24e1d47e11f7ffba --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_02081959854.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0515e9f6ef3911863d16c64cd0e53368d025424776db4e4697326ba643eed49d +size 229420 diff --git a/datasets/openslr_yoruba/yof_08421_02115996752.wav b/datasets/openslr_yoruba/yof_08421_02115996752.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1ad5a70b4c2348b66edbec4600b3c61d768ab4e --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_02115996752.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67e8a3dc496b37253b42b6b4c2b3cce92140280dabe5e604ee70fb27e3360ba +size 221228 diff --git a/datasets/openslr_yoruba/yof_08421_02120390184.wav b/datasets/openslr_yoruba/yof_08421_02120390184.wav new file mode 100644 index 0000000000000000000000000000000000000000..a0ca8c0f6d2056c87dbaede7d0b0e035b40becf6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_02120390184.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5144a4c10b9526e1c17ce6929064c59578798d9f770f2e3c02c885c5101dec98 +size 172076 diff --git a/datasets/openslr_yoruba/yof_08421_02125573322.wav b/datasets/openslr_yoruba/yof_08421_02125573322.wav new file mode 100644 index 0000000000000000000000000000000000000000..682d0713475f57e1aa05dd012ecf940d33e15c0a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_02125573322.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc1b89707e84b553a3c624e16cb4f6efaa31345a7bffbe50f56c347d20a7dcf +size 270380 diff --git a/datasets/openslr_yoruba/yof_08421_02135494867.wav b/datasets/openslr_yoruba/yof_08421_02135494867.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdd83aa09af1f4c4d2a5212b8b60d4874815dbfe --- /dev/null +++ b/datasets/openslr_yoruba/yof_08421_02135494867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc2a101e8678d91ff68a6d5bccdbf256e842bbfd8f95977b024d0300aaf8d29 +size 327724 diff --git a/datasets/openslr_yoruba/yof_08784_00012858083.wav b/datasets/openslr_yoruba/yof_08784_00012858083.wav new file mode 100644 index 0000000000000000000000000000000000000000..5843bf9469697474b0fdaf446b281cab5d8fb425 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00012858083.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898db3c50f76ea8cd58dab714e29056adca8e20e21b1da2f465cb192c70724d4 +size 221228 diff --git a/datasets/openslr_yoruba/yof_08784_00060011757.wav b/datasets/openslr_yoruba/yof_08784_00060011757.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a07d6fb9f95ba00df511fe3c442d4e45cf32c17 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00060011757.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff281f2bbf56c47ec02465f12c471edf57f5ac72ca422afecf39b8689fbf2732 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08784_00071105258.wav b/datasets/openslr_yoruba/yof_08784_00071105258.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7cc8fcaa3f990799e6e5a1ef5b6d6fc64857ec8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00071105258.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc66dd76621e782b70978ed24e3c489ad3e1c4337859f1a59f7b4ec8ff51d490 +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_00124410846.wav b/datasets/openslr_yoruba/yof_08784_00124410846.wav new file mode 100644 index 0000000000000000000000000000000000000000..121c327f89b4549a0d34d79db98eeaef5b450c82 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00124410846.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4078b2be9b85aa3fcc6b386f3087998b9b76277b75e01f46cbc38f656f120ec +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_00130747319.wav b/datasets/openslr_yoruba/yof_08784_00130747319.wav new file mode 100644 index 0000000000000000000000000000000000000000..ebf85ade4561c45f5ec451418729e4bc084a8db5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00130747319.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e7d2eca2d73ef704e2755cbb1a45665bf8aadff2a75ffa11394e465bdea6a8 +size 221228 diff --git a/datasets/openslr_yoruba/yof_08784_00184067496.wav b/datasets/openslr_yoruba/yof_08784_00184067496.wav new file mode 100644 index 0000000000000000000000000000000000000000..3934de484a551ae29939066ffc49dbc38dddc48a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00184067496.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6616e9ac86caa140e5953c6772f50ff82824cddb43dc00fe88b2cce453ca5de4 +size 286764 diff --git a/datasets/openslr_yoruba/yof_08784_00230982891.wav b/datasets/openslr_yoruba/yof_08784_00230982891.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c141d61f919d573a01096ccb3e90ab8b6861da7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00230982891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:957d43b616eebd3f5e093c5e4737b41c3b9a53a3a5d721576bac6d975872882d +size 221228 diff --git a/datasets/openslr_yoruba/yof_08784_00231961070.wav b/datasets/openslr_yoruba/yof_08784_00231961070.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e3eb1f2386ed57855ec1e1d93b2c7959b51abc1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00231961070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:937bd847e4a6bea48aaf0909f478b8b6ba1c9c938bb8563079eee3dc83a8931c +size 327724 diff --git a/datasets/openslr_yoruba/yof_08784_00234951176.wav b/datasets/openslr_yoruba/yof_08784_00234951176.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4752de945dc0a0c1f3966aa53326ae15553f9d5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00234951176.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b619440f8d164575416cb06dc8888a8a5be3906e618fb7ab644a1d97a204669 +size 368684 diff --git a/datasets/openslr_yoruba/yof_08784_00238781117.wav b/datasets/openslr_yoruba/yof_08784_00238781117.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce766079fd5c25244aa87d0d8fa5c23233fb24c5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00238781117.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4546dadc3ba95ce9efa423a03e6f5c7efbbac1a0cdd23703e036d73ade269359 +size 319532 diff --git a/datasets/openslr_yoruba/yof_08784_00244900176.wav b/datasets/openslr_yoruba/yof_08784_00244900176.wav new file mode 100644 index 0000000000000000000000000000000000000000..c05a2e443e2dde40d8acd9daf610c17639c1b31d --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00244900176.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff562b0c3ab8269cc4648f3952d43c326569ce2220190eda1c58a2d3cedcc79 +size 458796 diff --git a/datasets/openslr_yoruba/yof_08784_00256254723.wav b/datasets/openslr_yoruba/yof_08784_00256254723.wav new file mode 100644 index 0000000000000000000000000000000000000000..b20f571277a8e405b1ddc57d3d11fe9ff7d4708a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00256254723.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d28dab8b70d34bc24b51d6771bec5a483d8ab5c210b5d69daae2bc54970eeb +size 270380 diff --git a/datasets/openslr_yoruba/yof_08784_00260884752.wav b/datasets/openslr_yoruba/yof_08784_00260884752.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab768267d735c93cf410323260116ee7e692dd05 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00260884752.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ab443243ba521d0925f295f070a8b3d19dc7bad43752710c44ddd7355d2a0c +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_00262412228.wav b/datasets/openslr_yoruba/yof_08784_00262412228.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5a615bf0665ec7c5cd9a56d14686e72fded9fb2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00262412228.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a3103cdef54dec9221ea83ea08ec75e2e43cba33b86fb7d27582ea3b359c63 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08784_00272071394.wav b/datasets/openslr_yoruba/yof_08784_00272071394.wav new file mode 100644 index 0000000000000000000000000000000000000000..a27abe2e0e4753b2a94c1e622b54b0020aa1fb87 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00272071394.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c8cab87003dc71c2e15b46cc6bbfadd41cef6509b76c57f6cc238ce1a4cbb3 +size 450604 diff --git a/datasets/openslr_yoruba/yof_08784_00276167805.wav b/datasets/openslr_yoruba/yof_08784_00276167805.wav new file mode 100644 index 0000000000000000000000000000000000000000..be604199376565b4f41aca05bb9db7c2442bb2ab --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00276167805.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464411ab6d656c0f3adb5b1b956db4319e07eddb8c310200c7456d99be029d00 +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_00294652516.wav b/datasets/openslr_yoruba/yof_08784_00294652516.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2fa8f0e5e5af1d833e640093650b519e623c2f9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00294652516.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e510b7f2b2af7d45987db3ac92e48ebeca1447e7fdad34a91d298d0dc761709d +size 294956 diff --git a/datasets/openslr_yoruba/yof_08784_00301460241.wav b/datasets/openslr_yoruba/yof_08784_00301460241.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1b33fdb76bcf6db7f9203a4ad871c5ef8fc9daa --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00301460241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e6d6c2b62d8dd9025b0a94360beb369c7994e3f0344dd72bee54125132c791 +size 237612 diff --git a/datasets/openslr_yoruba/yof_08784_00327138730.wav b/datasets/openslr_yoruba/yof_08784_00327138730.wav new file mode 100644 index 0000000000000000000000000000000000000000..95b9fb9f32d3fe53f6eab0380aa56fe665306dab --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00327138730.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b2740605743636348ceed65b3e39e2543c1a16915be730b3027e7351f52635e +size 278572 diff --git a/datasets/openslr_yoruba/yof_08784_00344899205.wav b/datasets/openslr_yoruba/yof_08784_00344899205.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa18b37f13013bc9a039c5295f9e8ea24bbf8773 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00344899205.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5394ae897f308b0ef67bc0dce1937c28ee439a95006dac3e05409e1810028a92 +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_00358161760.wav b/datasets/openslr_yoruba/yof_08784_00358161760.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c4f238e512b0743131461d37978665b505e923c --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00358161760.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebd24bcc72b55f598837d53f8a65ec478584e228f6204f2b3d823910572b1e3 +size 270380 diff --git a/datasets/openslr_yoruba/yof_08784_00395906675.wav b/datasets/openslr_yoruba/yof_08784_00395906675.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba7e89b21ba39f52b9ff35100ed16694073e4b1b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00395906675.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3454b07dc1cac2776ea5a0151b5dfde1b1cc8a729a96c4238e8259b0273297a +size 352300 diff --git a/datasets/openslr_yoruba/yof_08784_00425468933.wav b/datasets/openslr_yoruba/yof_08784_00425468933.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b386ea1fd9269b5cab1449a39f8bb8ac4964d00 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00425468933.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeaea56994454aede1ade24721df7fdf832ad6ea3b4d2463704bfafba55d5d1d +size 221228 diff --git a/datasets/openslr_yoruba/yof_08784_00435719150.wav b/datasets/openslr_yoruba/yof_08784_00435719150.wav new file mode 100644 index 0000000000000000000000000000000000000000..29232dac2487140e867d8111ce0f2ac4efc4356e --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00435719150.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5adb1d0400a9638f2fd36eb2b51f8d2ee0426410d40b6ce3b3f27d3aa1f0b8be +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_00479110965.wav b/datasets/openslr_yoruba/yof_08784_00479110965.wav new file mode 100644 index 0000000000000000000000000000000000000000..83879181b055378fbe5d82e5a7ea5cdc275cc586 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00479110965.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd779b56642505fa1c18a288906af494a16495addd62c457b7573da539e7940 +size 229420 diff --git a/datasets/openslr_yoruba/yof_08784_00484289260.wav b/datasets/openslr_yoruba/yof_08784_00484289260.wav new file mode 100644 index 0000000000000000000000000000000000000000..0bb46d6359b9a11e3fd40a6af1f27968943eb99b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00484289260.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2087de54b190b334346d247ff0519e53d42734cc3b913b1ac46239a01dd025 +size 245804 diff --git a/datasets/openslr_yoruba/yof_08784_00500830446.wav b/datasets/openslr_yoruba/yof_08784_00500830446.wav new file mode 100644 index 0000000000000000000000000000000000000000..d876a0dd97b255495e0f0b93efbfd3b7914d61bd --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00500830446.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbde95e04d6fae9222059ff091f154b130dc0b07bdd7d6f37613e4f2879f08e7 +size 417836 diff --git a/datasets/openslr_yoruba/yof_08784_00516833474.wav b/datasets/openslr_yoruba/yof_08784_00516833474.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b301d0107562dc849764f3e31d1afab88c6617e --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00516833474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf51a941365fe17e06c3fe5f095f7d69a274d9d31bd94e1a6f647ee668b998e +size 311340 diff --git a/datasets/openslr_yoruba/yof_08784_00531215237.wav b/datasets/openslr_yoruba/yof_08784_00531215237.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e6de26c8e8a2f65875b29765b12b6af651916f7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00531215237.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f120405e19eeec713a2dbcf90f2915fd1fa24734add2d5f9b3d547566056387f +size 516140 diff --git a/datasets/openslr_yoruba/yof_08784_00544152911.wav b/datasets/openslr_yoruba/yof_08784_00544152911.wav new file mode 100644 index 0000000000000000000000000000000000000000..6044bc4e21a3d914e4524fb9c6f84048ffd77afc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00544152911.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf3cfa7fe60a82a53b7d389d8dc38a3ef2bac89f544457b4043268251a0cc0e +size 245804 diff --git a/datasets/openslr_yoruba/yof_08784_00555010800.wav b/datasets/openslr_yoruba/yof_08784_00555010800.wav new file mode 100644 index 0000000000000000000000000000000000000000..e544c106f4ce6e312a0d9a3718d18e8f09e4e3fc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00555010800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e892f6c2bd4c78260bc34909933d94c754c2d5339ab7f8f43121ea8663ce492b +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_00589730773.wav b/datasets/openslr_yoruba/yof_08784_00589730773.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3070d1a5598927b09e3f8bd135407c2b1dc4129 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00589730773.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e8621127b6113d2b50989b9224b4abee884d5850a9113db32fe0b22d5f20fc +size 360492 diff --git a/datasets/openslr_yoruba/yof_08784_00606072434.wav b/datasets/openslr_yoruba/yof_08784_00606072434.wav new file mode 100644 index 0000000000000000000000000000000000000000..436a3954161ddfff23f198d59a7a47694cc5f4d1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00606072434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1780c33be91efb952ac4eaf9ba041a23e6f8192f1b988459bc081ceffeebbbe +size 270380 diff --git a/datasets/openslr_yoruba/yof_08784_00636772066.wav b/datasets/openslr_yoruba/yof_08784_00636772066.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bc2fdfe8842ea8b4f11909c0750a220990541b6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00636772066.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581c053a9f7e1cb81e9414d20440661e468a2fac77963eeda64aa704b56653fc +size 196652 diff --git a/datasets/openslr_yoruba/yof_08784_00655012520.wav b/datasets/openslr_yoruba/yof_08784_00655012520.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f12f7526d2913a73a018605fcee1706c662c1ee --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00655012520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1b6ca047192a4ee4e7ee8bdd594c59771cf7f5bfe062c56deaf40be264940f +size 237612 diff --git a/datasets/openslr_yoruba/yof_08784_00690046189.wav b/datasets/openslr_yoruba/yof_08784_00690046189.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea5730df70cf86c2c00dbc52b563304a7ed61f69 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00690046189.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22757e987db0f14814ec5d8c945570e281afcb8ed5647c6574cfb6951e0520f1 +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_00714705932.wav b/datasets/openslr_yoruba/yof_08784_00714705932.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e584dc980b7ecbbade3cc2f8523e5be3ff16b4a --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00714705932.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6127c85440048c5b2ffe68ac8363d3203f21a457f24e6ff08f22271efc8dc426 +size 253996 diff --git a/datasets/openslr_yoruba/yof_08784_00741374779.wav b/datasets/openslr_yoruba/yof_08784_00741374779.wav new file mode 100644 index 0000000000000000000000000000000000000000..7686f4964993fbee7b6cb1136a89e4b62ebbc0e7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00741374779.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f2965c39161cb65f548faf2bffcb986050059435e029b66fca26aa29a18c10 +size 253996 diff --git a/datasets/openslr_yoruba/yof_08784_00742493444.wav b/datasets/openslr_yoruba/yof_08784_00742493444.wav new file mode 100644 index 0000000000000000000000000000000000000000..f2743d08669d583a7c5fdff54718389c57ed64b8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00742493444.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673d952a9708ce537f503216fd8e4efc86653d10dff0b1154b45595ed11eed48 +size 229420 diff --git a/datasets/openslr_yoruba/yof_08784_00749352779.wav b/datasets/openslr_yoruba/yof_08784_00749352779.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e1b40a0e098bf22a75a5fd9bcca9c08f71f9aae --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00749352779.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea8f6cc1c257b328644dea43d7e9636255bc7299d57d76b8ad537493cb00c4e +size 565292 diff --git a/datasets/openslr_yoruba/yof_08784_00754090942.wav b/datasets/openslr_yoruba/yof_08784_00754090942.wav new file mode 100644 index 0000000000000000000000000000000000000000..bba9472f84b59717c9ca3d4d8a8c6d79c1ec62e5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00754090942.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20501b687fcab7ef4bd9313b70def1e9ebb45f68e531767edf1e5b4adda713c +size 426028 diff --git a/datasets/openslr_yoruba/yof_08784_00782542948.wav b/datasets/openslr_yoruba/yof_08784_00782542948.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ba715ecfceda67ba76ae23fce3bd9bad39e3aa5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00782542948.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36559e063c2feb4dc24897e995dd6dcb95ed17e0f4c9071c5bc3ac3ac7c7c64c +size 237612 diff --git a/datasets/openslr_yoruba/yof_08784_00796412443.wav b/datasets/openslr_yoruba/yof_08784_00796412443.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3f3465c24252d71b0fa60beb94cb34195c89fc5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00796412443.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f853ed9c6bdb1a6269979a5a4fb841e841ba578a6b5cf84969ef14b9fba9c00b +size 229420 diff --git a/datasets/openslr_yoruba/yof_08784_00811491742.wav b/datasets/openslr_yoruba/yof_08784_00811491742.wav new file mode 100644 index 0000000000000000000000000000000000000000..4cb5e64a1e95a7d45354c53bc6a448489cf7b108 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00811491742.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22cb8e55d44a037cbff387f59fb2f77faff372593538b43d9ea7699d521731f6 +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_00832364943.wav b/datasets/openslr_yoruba/yof_08784_00832364943.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6d86f745bb1f73c2321754640c760e5a0bc1aef --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00832364943.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11afdb98bad23909a8034114b6597553d9c2588f5ccfa62cf2a095c648d098c +size 327724 diff --git a/datasets/openslr_yoruba/yof_08784_00834464098.wav b/datasets/openslr_yoruba/yof_08784_00834464098.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc3617fb7903534f7260e1574c80528b9ef846c5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00834464098.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c66344a0b9d3b968b9468ef615be007c657d3b6a0f8921e6b15d9598fc25086 +size 360492 diff --git a/datasets/openslr_yoruba/yof_08784_00863177358.wav b/datasets/openslr_yoruba/yof_08784_00863177358.wav new file mode 100644 index 0000000000000000000000000000000000000000..119ab21fa7065cd12b9d06c6ea886adc7478a3a3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00863177358.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc41c946df275d1858c02a4f447ac5086afe15dc676f380fa55a913498d2a69 +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_00895855937.wav b/datasets/openslr_yoruba/yof_08784_00895855937.wav new file mode 100644 index 0000000000000000000000000000000000000000..b547d75b498245836a9312aeb3572c76cb82ee73 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00895855937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52b03e51cfc63fdfaf9093d20526986c491ac025c31195708ab43263682bff7 +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_00954030997.wav b/datasets/openslr_yoruba/yof_08784_00954030997.wav new file mode 100644 index 0000000000000000000000000000000000000000..95db07ef5f07a51c00853a49066790056e5eb444 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00954030997.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b20c6144cc242c6cf05996293d83fe7e27f5d0a436488d1a7e64703859f42fc +size 204844 diff --git a/datasets/openslr_yoruba/yof_08784_00987193471.wav b/datasets/openslr_yoruba/yof_08784_00987193471.wav new file mode 100644 index 0000000000000000000000000000000000000000..9f2ca37635c0719cc386cb6b272c3a02700ef6b4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_00987193471.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bcb44162cb14dee95a0a3a38ed0be4d28bfc7b771272bf2ddefb8f3143f75ed +size 253996 diff --git a/datasets/openslr_yoruba/yof_08784_01011577896.wav b/datasets/openslr_yoruba/yof_08784_01011577896.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf364d4ab77ae15b86b571ed14c0195f1423a3b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01011577896.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8d3f1e6d299883a94926666814166352e2ef997338ea14898e313922296c23 +size 221228 diff --git a/datasets/openslr_yoruba/yof_08784_01030184175.wav b/datasets/openslr_yoruba/yof_08784_01030184175.wav new file mode 100644 index 0000000000000000000000000000000000000000..a43dc08df17c0c418d58586b21535bb6f74e9093 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01030184175.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95361710af59edccc21fdabfbd7a4de8d41d4dee146769aba203a924fa33b0e1 +size 483372 diff --git a/datasets/openslr_yoruba/yof_08784_01032591250.wav b/datasets/openslr_yoruba/yof_08784_01032591250.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8d71c743df72e00b254b6b82c87d7028c4dc2cc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01032591250.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01743caf9bc228b0eaf6041a32fdff2efefe1dabf7c0b80840ebe36323fd61f0 +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_01039051007.wav b/datasets/openslr_yoruba/yof_08784_01039051007.wav new file mode 100644 index 0000000000000000000000000000000000000000..e65c75cafe11d803db611fb96818a149c31216cb --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01039051007.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88b34b64b39d3c918f4ca9153611d5b79c4026edc12b3036678984705bf9f2b +size 253996 diff --git a/datasets/openslr_yoruba/yof_08784_01080364164.wav b/datasets/openslr_yoruba/yof_08784_01080364164.wav new file mode 100644 index 0000000000000000000000000000000000000000..b39ed9198603bd1bd2047722828406b843947ebc --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01080364164.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290bd8f67a4cad08fdbf91716ba98e00b76a79fa60bb087e43d5d3bab477113c +size 253996 diff --git a/datasets/openslr_yoruba/yof_08784_01088575745.wav b/datasets/openslr_yoruba/yof_08784_01088575745.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a46c57bfa24398b1681bd0c8d1c78ff2962b9d5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01088575745.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894a3b6ebb9f797a6c6d0373da604d306eb3da55d352997ca9a9017be4e1f68e +size 270380 diff --git a/datasets/openslr_yoruba/yof_08784_01122423486.wav b/datasets/openslr_yoruba/yof_08784_01122423486.wav new file mode 100644 index 0000000000000000000000000000000000000000..dfee9df163f719e5aab6c6feb920836a55568ada --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01122423486.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad30fd80dd5c4240c4f2726771557872877dec34c4c9f28f05f572f233edc9f8 +size 245804 diff --git a/datasets/openslr_yoruba/yof_08784_01125828407.wav b/datasets/openslr_yoruba/yof_08784_01125828407.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c8cf223e1caff1dc1c573d9201dfd1b90a49c6c --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01125828407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc5c7ec6bf6f14c3f8c02df75b1f95851ee0f0c47be612b2e2e50f0d235c312 +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_01140082003.wav b/datasets/openslr_yoruba/yof_08784_01140082003.wav new file mode 100644 index 0000000000000000000000000000000000000000..84cf0a675088fce36bffbe8b5ef222b8344553ea --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01140082003.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43e4f4ba6c201974f4032d72a1302bcb9519d7f9c15526def46149d2fd4c14c +size 294956 diff --git a/datasets/openslr_yoruba/yof_08784_01158534960.wav b/datasets/openslr_yoruba/yof_08784_01158534960.wav new file mode 100644 index 0000000000000000000000000000000000000000..a330d0bbebfbb0ba3d1f8ea61c36cc0662d12257 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01158534960.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c3d709f16c7072889fd0e4ff51b965f413872d59019af6dfce79312a4f2345 +size 286764 diff --git a/datasets/openslr_yoruba/yof_08784_01161358852.wav b/datasets/openslr_yoruba/yof_08784_01161358852.wav new file mode 100644 index 0000000000000000000000000000000000000000..ebbe1ef049cec66bb7174768d558cec53ede8c7e --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01161358852.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4b4853ceccabea9a81a427696b0e78ca583daacb82bf9e546d26c8e72fe59c +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_01164044378.wav b/datasets/openslr_yoruba/yof_08784_01164044378.wav new file mode 100644 index 0000000000000000000000000000000000000000..9afc3dbd4762f55521a663b1a5d9545886f604fd --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01164044378.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1549c83cd824696388ed922bed9eba47753172ba85a272569c05d7c5a491f29 +size 327724 diff --git a/datasets/openslr_yoruba/yof_08784_01203824640.wav b/datasets/openslr_yoruba/yof_08784_01203824640.wav new file mode 100644 index 0000000000000000000000000000000000000000..c7d22836418c7cc9a5bdb247b4a4a2e1161f5572 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01203824640.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c51c121b0d18fa079ece1a209a2c96244fed806c96e60e7f34b748a54a3716d +size 237612 diff --git a/datasets/openslr_yoruba/yof_08784_01226295413.wav b/datasets/openslr_yoruba/yof_08784_01226295413.wav new file mode 100644 index 0000000000000000000000000000000000000000..16a6afd00d0894e9d07c9d7ce4fd05c1d272c189 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01226295413.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8494af4e24a7e6e1125f224a529a002e0bbb9b2c85a95074fa55996606e4dc +size 344108 diff --git a/datasets/openslr_yoruba/yof_08784_01267253520.wav b/datasets/openslr_yoruba/yof_08784_01267253520.wav new file mode 100644 index 0000000000000000000000000000000000000000..b72c441c93eeea7ebca85e93e798516a73e58a04 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01267253520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fda806d42241438ef433b576114da25d059a7e5d41e293f1518da340a1a6b4fa +size 221228 diff --git a/datasets/openslr_yoruba/yof_08784_01273461739.wav b/datasets/openslr_yoruba/yof_08784_01273461739.wav new file mode 100644 index 0000000000000000000000000000000000000000..761f712d50051ea002e16e556d7805b0bcecfc9b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01273461739.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a812a2866546ba8dc5792d4a88bcacbfa54b42b2348574c100f48f197b0ffb +size 401452 diff --git a/datasets/openslr_yoruba/yof_08784_01283956546.wav b/datasets/openslr_yoruba/yof_08784_01283956546.wav new file mode 100644 index 0000000000000000000000000000000000000000..136bea6c34f9b4e9ef0ae588aa53dd741768e9df --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01283956546.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fc0498c25f382ac3dd7b152a8a237f73d1e28fc99f116d84d6e572d0abc44d +size 278572 diff --git a/datasets/openslr_yoruba/yof_08784_01357406601.wav b/datasets/openslr_yoruba/yof_08784_01357406601.wav new file mode 100644 index 0000000000000000000000000000000000000000..f160e59c58fdd7945f0116f4c220326e0870084d --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01357406601.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c91ef617ed9bacb1585f56f756297ea551a9d8e49a7f3341d672dbf9157a501 +size 294956 diff --git a/datasets/openslr_yoruba/yof_08784_01362090520.wav b/datasets/openslr_yoruba/yof_08784_01362090520.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7f1c084634730ac4b81a28a247bd417f4ab2404 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01362090520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d0d1d6c11ee2c67d46ee9071a5638f17bf44226de998d28b40b6b683270482 +size 270380 diff --git a/datasets/openslr_yoruba/yof_08784_01411182671.wav b/datasets/openslr_yoruba/yof_08784_01411182671.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3614c0cd222e547871a6a4c360640be2cd46bce --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01411182671.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d6239974dd02cc9c12e0d54dab6e3f23f9484efdbf38153b39fb31340ff352 +size 344108 diff --git a/datasets/openslr_yoruba/yof_08784_01452515597.wav b/datasets/openslr_yoruba/yof_08784_01452515597.wav new file mode 100644 index 0000000000000000000000000000000000000000..9469ffc27fc4de1ac58477ff5ce1226f5ceb8f70 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01452515597.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46af78d19e22d18cd111a9f2eb75840eeda120a30a88e11fc47a4a4791c8a79e +size 286764 diff --git a/datasets/openslr_yoruba/yof_08784_01456471099.wav b/datasets/openslr_yoruba/yof_08784_01456471099.wav new file mode 100644 index 0000000000000000000000000000000000000000..3847279bd0916673b9692470163594466caff688 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01456471099.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dfab4e357c7bf3df62aacd335564275706fe687b9a48a6c1cd43f7b29b40986 +size 360492 diff --git a/datasets/openslr_yoruba/yof_08784_01457669375.wav b/datasets/openslr_yoruba/yof_08784_01457669375.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d11bfe5dd0c1ceae2fac8d29f9eafd794091e11 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01457669375.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5dfa134bc3c08476eb48ad6104f05365290ab56043d0a25ea4342995197395 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08784_01467928007.wav b/datasets/openslr_yoruba/yof_08784_01467928007.wav new file mode 100644 index 0000000000000000000000000000000000000000..04629dc6cb5adf3240a8a1d60d46d7d04cf8f65b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01467928007.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e681131808dc454eac29e18e8d992f3c31b095a98889fb6dff3401f9895c7b04 +size 344108 diff --git a/datasets/openslr_yoruba/yof_08784_01482844097.wav b/datasets/openslr_yoruba/yof_08784_01482844097.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f4a85e09beb78aeb4a1232f37e8f825ab3dbeb2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01482844097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7bd69527ade6dc1f211d02071749bb93c3ab2bf53bcf9ffec00a5be52e3c5f +size 286764 diff --git a/datasets/openslr_yoruba/yof_08784_01510588097.wav b/datasets/openslr_yoruba/yof_08784_01510588097.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ec09b45b4041992bfb1d483c861752883316bc3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01510588097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2149a1ba10a50e4373b600907cb9179a834d65e65ee8f40e3f5ab1c18d9d31c +size 278572 diff --git a/datasets/openslr_yoruba/yof_08784_01537408157.wav b/datasets/openslr_yoruba/yof_08784_01537408157.wav new file mode 100644 index 0000000000000000000000000000000000000000..888de653b82ce80308fcbdd4df19e4f55350005b --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01537408157.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81106d066fde875d2e8657788b886c64733e43eb64141d77ce6dca4551b73662 +size 237612 diff --git a/datasets/openslr_yoruba/yof_08784_01549971059.wav b/datasets/openslr_yoruba/yof_08784_01549971059.wav new file mode 100644 index 0000000000000000000000000000000000000000..dfa3942c0564fd7c041fb722fc0251f74109c10e --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01549971059.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad82708043554240e261034ac7a3a15677cb3b35185dbb5cd68917e88b854f4 +size 294956 diff --git a/datasets/openslr_yoruba/yof_08784_01560755333.wav b/datasets/openslr_yoruba/yof_08784_01560755333.wav new file mode 100644 index 0000000000000000000000000000000000000000..3dd279894a5973855a64d7abc5d68405ec901614 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01560755333.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb8b4c9f1198cccf3edb363748303eedae8d4e283000ff6543e891b6975490e7 +size 319532 diff --git a/datasets/openslr_yoruba/yof_08784_01606463174.wav b/datasets/openslr_yoruba/yof_08784_01606463174.wav new file mode 100644 index 0000000000000000000000000000000000000000..52bec401ea295474180581b4b29f51a591cc7635 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01606463174.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b36570d276adb8eb665ad7d30571ede3604957825c9ec009cf4c61ce7ce8d81 +size 524332 diff --git a/datasets/openslr_yoruba/yof_08784_01662518745.wav b/datasets/openslr_yoruba/yof_08784_01662518745.wav new file mode 100644 index 0000000000000000000000000000000000000000..a18f28ed0f4a589746fa63662cd59305ffb1a835 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01662518745.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ae8b61b6c5b0fe4017262a07f55b52113ffcc071da7f02a669b888c55bc3f0 +size 204844 diff --git a/datasets/openslr_yoruba/yof_08784_01742425591.wav b/datasets/openslr_yoruba/yof_08784_01742425591.wav new file mode 100644 index 0000000000000000000000000000000000000000..d17de8384ca1cb3264b69316dea818b7bd8c30c1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01742425591.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4ba775319f606f9d57f0c039c7fd2db723109c8a30697bc599e853094f9d9a +size 368684 diff --git a/datasets/openslr_yoruba/yof_08784_01756966513.wav b/datasets/openslr_yoruba/yof_08784_01756966513.wav new file mode 100644 index 0000000000000000000000000000000000000000..241229020d1a357f79bbf78803bc9117bdbc36fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01756966513.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb325a09caa3645479cbc0a3aacfb3c1fa05e413e853463f2b4e34911338e420 +size 213036 diff --git a/datasets/openslr_yoruba/yof_08784_01766733913.wav b/datasets/openslr_yoruba/yof_08784_01766733913.wav new file mode 100644 index 0000000000000000000000000000000000000000..f1fb591ff4a2369451844c8d0e2b0fee2d946832 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01766733913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3db6acaa5ff170f2187a3d419c40125d38e214921579ee7d44d5ccfd779546 +size 335916 diff --git a/datasets/openslr_yoruba/yof_08784_01776438841.wav b/datasets/openslr_yoruba/yof_08784_01776438841.wav new file mode 100644 index 0000000000000000000000000000000000000000..442bff41ceb2b305d008f623c210c1dd8b78b333 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01776438841.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f882ecabd9c69ee8d6b52f31d8b86c6d6d462bae1aeb4d8e445263ad342dcbd +size 532524 diff --git a/datasets/openslr_yoruba/yof_08784_01803506501.wav b/datasets/openslr_yoruba/yof_08784_01803506501.wav new file mode 100644 index 0000000000000000000000000000000000000000..37e371c83236de57793e46958ddd6d00c6b3e655 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01803506501.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40a7175a04d7d4b7f4a649418763b3df1d612bbc5389e4f399f12dfda68245e +size 303148 diff --git a/datasets/openslr_yoruba/yof_08784_01824543808.wav b/datasets/openslr_yoruba/yof_08784_01824543808.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9e74ac225c38fad4f78c0186a60c1e1d8746198 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01824543808.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c693fa3e340126af44f17b4df9654dc0734d6548585475d4fdd7f9a6f6ce9724 +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_01849074300.wav b/datasets/openslr_yoruba/yof_08784_01849074300.wav new file mode 100644 index 0000000000000000000000000000000000000000..96cca1865c3ccea10c67bb5cb1b83145038c1df5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01849074300.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa2e54acaf23302b44abc438d1a70ca46f91111816b4c8675af03f3357ef64d +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_01850224019.wav b/datasets/openslr_yoruba/yof_08784_01850224019.wav new file mode 100644 index 0000000000000000000000000000000000000000..ff222bbeb1e8d52f73f813aa7425ed66ed1d5fe7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01850224019.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0807a5d60ef020c481c411b998a69699cfa45e28e6fbd1913934699ac03ae10a +size 344108 diff --git a/datasets/openslr_yoruba/yof_08784_01884325288.wav b/datasets/openslr_yoruba/yof_08784_01884325288.wav new file mode 100644 index 0000000000000000000000000000000000000000..c106042ffb26414e711774c57c8d243bfebafee1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01884325288.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c978f87150e4394d92e8d8b7151cb88d3fdaeaddd63d7b21f39da6ac772f35a +size 294956 diff --git a/datasets/openslr_yoruba/yof_08784_01896109786.wav b/datasets/openslr_yoruba/yof_08784_01896109786.wav new file mode 100644 index 0000000000000000000000000000000000000000..8debc63f7d8f0f2295d02136b7c0492b7d086802 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01896109786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2031efc07f6a2dfdd1e06a25e876181dedfa5db9f894dccb9576650c68d0305 +size 213036 diff --git a/datasets/openslr_yoruba/yof_08784_01902466684.wav b/datasets/openslr_yoruba/yof_08784_01902466684.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa02ee23d2e6ef4db496f811fe7b0a1ed8da3ee5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01902466684.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af835197c06f21c1023792c3b5699da94950dd7084235255b9c5ad624f83ddba +size 393260 diff --git a/datasets/openslr_yoruba/yof_08784_01929022269.wav b/datasets/openslr_yoruba/yof_08784_01929022269.wav new file mode 100644 index 0000000000000000000000000000000000000000..8149e9b80cc822012b17cce1029e36f89c939abf --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01929022269.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2b26d921bcf4509bdafdc22f66c14ff86bca59a42c17926237b5f8e2c8cbfd +size 532524 diff --git a/datasets/openslr_yoruba/yof_08784_01951734912.wav b/datasets/openslr_yoruba/yof_08784_01951734912.wav new file mode 100644 index 0000000000000000000000000000000000000000..beec20744d4abd9dc5f7657e286a1dbd4d8f9502 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01951734912.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec56f0385a58ce06d2ebc3d97ca122261ce413d6cbfc2b2682011daf7c169cf +size 294956 diff --git a/datasets/openslr_yoruba/yof_08784_01986960003.wav b/datasets/openslr_yoruba/yof_08784_01986960003.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a36ccc3fe0849850dc1345d2b64c928f16403a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_01986960003.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5223bee59ad6bf1e22fa7293bffe6390bb158210addda9f8c1bfc66cd01530 +size 237612 diff --git a/datasets/openslr_yoruba/yof_08784_02064706564.wav b/datasets/openslr_yoruba/yof_08784_02064706564.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b186715bdbde814082a124913b760775df0c140 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_02064706564.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9d1cd09f4e710336840f06c40085c995e84321dcb41f5d1c6427a5198b7ef9 +size 253996 diff --git a/datasets/openslr_yoruba/yof_08784_02107619366.wav b/datasets/openslr_yoruba/yof_08784_02107619366.wav new file mode 100644 index 0000000000000000000000000000000000000000..5432cc6d04c8a2d5b03acd5f98979b755ce42ef9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_02107619366.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91cd1ca09e9b82496221af55b732f3681c0dda7843b46fcd6a193ac773eedf38 +size 426028 diff --git a/datasets/openslr_yoruba/yof_08784_02114367389.wav b/datasets/openslr_yoruba/yof_08784_02114367389.wav new file mode 100644 index 0000000000000000000000000000000000000000..22b8e4d23ae7d01db46a222d9992fa42e654f491 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_02114367389.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51529786050eeee4498ace86dfa1c3557583b9e9bfa5163548e91fe32308f323 +size 262188 diff --git a/datasets/openslr_yoruba/yof_08784_02123173312.wav b/datasets/openslr_yoruba/yof_08784_02123173312.wav new file mode 100644 index 0000000000000000000000000000000000000000..60e55849c41e60381d4c0305d355bb28283edf40 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_02123173312.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f07e526625ab47645eadf6853f53ab099181ed7be038bf1923c27ee1e7ca23 +size 360492 diff --git a/datasets/openslr_yoruba/yof_08784_02132082918.wav b/datasets/openslr_yoruba/yof_08784_02132082918.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e78abf185c19fdea7316fdcef0f530c8c383242 --- /dev/null +++ b/datasets/openslr_yoruba/yof_08784_02132082918.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f23283e1e8c8f81f7d14aed49d04b10b1f1aaa3d23bf443026c7fe94d9faa58f +size 180268 diff --git a/datasets/openslr_yoruba/yof_09334_00023239105.wav b/datasets/openslr_yoruba/yof_09334_00023239105.wav new file mode 100644 index 0000000000000000000000000000000000000000..8753206d49ae2985f9e37d0fb34f6aa28d5d62dd --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00023239105.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f8ec757ff249187ae74c2c524dd4a38cf080902ff1cb1a0f359cdb1629614a +size 663596 diff --git a/datasets/openslr_yoruba/yof_09334_00036718185.wav b/datasets/openslr_yoruba/yof_09334_00036718185.wav new file mode 100644 index 0000000000000000000000000000000000000000..4eb755ff76b619b1054b812720d90de9ed388c3d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00036718185.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77119ba3224b518909bca0ab6b315bad08041bcb68af84a39f417adb7757c43e +size 450604 diff --git a/datasets/openslr_yoruba/yof_09334_00047190217.wav b/datasets/openslr_yoruba/yof_09334_00047190217.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d7946e35ccfba5e8ff4d615d9f8edffabd56f4e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00047190217.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e66d712f61d77b30a51bd046c679cdcaf15513953d2105ee98cc9f7b7a04f6b5 +size 278572 diff --git a/datasets/openslr_yoruba/yof_09334_00069505935.wav b/datasets/openslr_yoruba/yof_09334_00069505935.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9e6ca2900f3f6d5aaf757ed5dbd45af27803516 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00069505935.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e86b75617084d4843488a10afa18e6ad45a4166873a38537dff35090499a887 +size 294956 diff --git a/datasets/openslr_yoruba/yof_09334_00070222160.wav b/datasets/openslr_yoruba/yof_09334_00070222160.wav new file mode 100644 index 0000000000000000000000000000000000000000..35a4d21738097c77fba0f750167a5d9e5212f2c5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00070222160.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e96ce35cc4fffcd09181346e04e531b15dac97ff74e54713cfd86f0b960734b +size 262188 diff --git a/datasets/openslr_yoruba/yof_09334_00112746173.wav b/datasets/openslr_yoruba/yof_09334_00112746173.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c38ccef90bacaf9529e8c06312806e4732aa2ed --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00112746173.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e77b1ccaf56bfd8c7b665dd91aa7aa7adb2c421f07966a62efb7f94386f8367f +size 630828 diff --git a/datasets/openslr_yoruba/yof_09334_00170259977.wav b/datasets/openslr_yoruba/yof_09334_00170259977.wav new file mode 100644 index 0000000000000000000000000000000000000000..e72c12196c43f9286e0d4a3ef9c2d3574d09c291 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00170259977.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4851913d6c4c5228ec559f19ec68e969e6a358c0ebdf90d45b0170f291b852 +size 679980 diff --git a/datasets/openslr_yoruba/yof_09334_00180022407.wav b/datasets/openslr_yoruba/yof_09334_00180022407.wav new file mode 100644 index 0000000000000000000000000000000000000000..cbcf6c52a4cd37bac1038a34bbf86414e666be84 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00180022407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e5733409fd34d373a827f0124f0d56315c3f620435b148eb246733c8db31a0c +size 270380 diff --git a/datasets/openslr_yoruba/yof_09334_00199388967.wav b/datasets/openslr_yoruba/yof_09334_00199388967.wav new file mode 100644 index 0000000000000000000000000000000000000000..3481a1b0a2c3093ea188a071c58ed6c41d838b28 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00199388967.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c901420a54e5e2fcdf3b32dfae1eee420249c91dc8384104e1b45248182c775 +size 360492 diff --git a/datasets/openslr_yoruba/yof_09334_00336834348.wav b/datasets/openslr_yoruba/yof_09334_00336834348.wav new file mode 100644 index 0000000000000000000000000000000000000000..dbc3e7fc05463712c0383cb604a04a78701aef11 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00336834348.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b3c1c8324cc955a6e6b9858cbfd3499b8a316fc9aacdf9b823a227ca061256 +size 786476 diff --git a/datasets/openslr_yoruba/yof_09334_00374532932.wav b/datasets/openslr_yoruba/yof_09334_00374532932.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a1d3ddad80f65c93334a2777a205f2f42f7ccb3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00374532932.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b892b9776748d9b3356eba4497267eaaf2dd51a122c8afe86fd91eaee6cbd3 +size 466988 diff --git a/datasets/openslr_yoruba/yof_09334_00429130596.wav b/datasets/openslr_yoruba/yof_09334_00429130596.wav new file mode 100644 index 0000000000000000000000000000000000000000..494ed6ef1332d7f69c4df0d78eeb6310cc6bd5f6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00429130596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21c7e7662cf513844c85b870209b9dc81cc6888c03e191fcff684954833ec52 +size 352300 diff --git a/datasets/openslr_yoruba/yof_09334_00442906698.wav b/datasets/openslr_yoruba/yof_09334_00442906698.wav new file mode 100644 index 0000000000000000000000000000000000000000..1171c092d8030d32aae8eb0ad81bb08ccf9cdb45 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00442906698.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb0aff7a65636dd0e119b3d246432d5818e0fc8252b944cf19a6f54f1b4a103 +size 393260 diff --git a/datasets/openslr_yoruba/yof_09334_00453708986.wav b/datasets/openslr_yoruba/yof_09334_00453708986.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9fc4d3623a4832a5e543311216d074b04dccd55 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00453708986.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8a600586c7ccbfbcd6787dad07f3097fbb2861eec8c0cb86cbb6ce5e9c7f70 +size 278572 diff --git a/datasets/openslr_yoruba/yof_09334_00458323142.wav b/datasets/openslr_yoruba/yof_09334_00458323142.wav new file mode 100644 index 0000000000000000000000000000000000000000..8827b69cebd9124eb167a5429fc7e633182e060d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00458323142.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10addf4b0b496d55ab5e6dc8818578f955d8b843e3def9bc03fe014a4a52ed5f +size 614444 diff --git a/datasets/openslr_yoruba/yof_09334_00469431050.wav b/datasets/openslr_yoruba/yof_09334_00469431050.wav new file mode 100644 index 0000000000000000000000000000000000000000..239fa3a49e0cc8cebba6df8253312d3f3627bd58 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00469431050.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3387b3f8d2257b63b5d047453254a661e78bba7986454e5a791b29a061cc2bf6 +size 376876 diff --git a/datasets/openslr_yoruba/yof_09334_00512043849.wav b/datasets/openslr_yoruba/yof_09334_00512043849.wav new file mode 100644 index 0000000000000000000000000000000000000000..58b362015834e17193de53f0f5b1fd74cf258919 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00512043849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15a19ed9d19b4cc9c9c9a1b43bab81953f9a6391aea19e6d5e49287b6a99f71 +size 237612 diff --git a/datasets/openslr_yoruba/yof_09334_00530099092.wav b/datasets/openslr_yoruba/yof_09334_00530099092.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f0a31faaadeccf78b6f52d5edfc67161d568b74 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00530099092.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4dfd87ce14bfd79d6195dc51dbb828dfa0543b65ae2978b9a0cd603900d018 +size 245804 diff --git a/datasets/openslr_yoruba/yof_09334_00548346321.wav b/datasets/openslr_yoruba/yof_09334_00548346321.wav new file mode 100644 index 0000000000000000000000000000000000000000..14e2a888b3265bb3e803a1e88464ebc8213a0e60 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00548346321.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c9f3f827d4c42da095a7d8bf2399ea050ceaf1bbcf2c48b26595e21a39a9f7 +size 532524 diff --git a/datasets/openslr_yoruba/yof_09334_00548752163.wav b/datasets/openslr_yoruba/yof_09334_00548752163.wav new file mode 100644 index 0000000000000000000000000000000000000000..342b66c7557c076e4b5d8314b9afafe1fb0cf1c1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00548752163.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18508fc6cadc1b9a32198e4c5a909ff08772bb525ab649eb1a388eb76a24d39d +size 294956 diff --git a/datasets/openslr_yoruba/yof_09334_00569275927.wav b/datasets/openslr_yoruba/yof_09334_00569275927.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f4c72a70a0896d2fac943fcfd4010546c0bb016 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00569275927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103120b9ff5c091d55d580f79633af9f7cfd5a665ee76ac976405473415ba320 +size 319532 diff --git a/datasets/openslr_yoruba/yof_09334_00663283013.wav b/datasets/openslr_yoruba/yof_09334_00663283013.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf7fb98963c7fe2f0dbb4ae2a21d5ad01a9f1e8d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00663283013.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0c17668320b04857fe1d39d208585dcf901105bb2c6a42bbabd6f4269cc59ce +size 450604 diff --git a/datasets/openslr_yoruba/yof_09334_00667825269.wav b/datasets/openslr_yoruba/yof_09334_00667825269.wav new file mode 100644 index 0000000000000000000000000000000000000000..948a88dd64d4ec53fcabbe580d836ff9882adbd0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00667825269.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49ff94c239f2b54efdffa9463593d79abfa1b1f68039e7608e5f838d6bf6786a +size 835628 diff --git a/datasets/openslr_yoruba/yof_09334_00702481759.wav b/datasets/openslr_yoruba/yof_09334_00702481759.wav new file mode 100644 index 0000000000000000000000000000000000000000..5bf978ae8c41fa9ab5b6fa8c673dfa290ec962b1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00702481759.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe70854d165ddc64f945db3bd58bf8198ee678a76cf6782a690d23f38345082b +size 475180 diff --git a/datasets/openslr_yoruba/yof_09334_00716656866.wav b/datasets/openslr_yoruba/yof_09334_00716656866.wav new file mode 100644 index 0000000000000000000000000000000000000000..5968e3511e4164ac23a1a46e8db5a4fb703ec61e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00716656866.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb10a978c3502820f029b78038f5082a64a1387a37c846c75ab62e5735f370c +size 671788 diff --git a/datasets/openslr_yoruba/yof_09334_00731284092.wav b/datasets/openslr_yoruba/yof_09334_00731284092.wav new file mode 100644 index 0000000000000000000000000000000000000000..d675db148b3ddecc6888a13cc86211f2c28ab57f --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00731284092.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3007b665546e0d3e3cc5c00a795274331bfaaa71c1bd99c30ac9f2cfd265043e +size 360492 diff --git a/datasets/openslr_yoruba/yof_09334_00742087281.wav b/datasets/openslr_yoruba/yof_09334_00742087281.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a5925a10e9f542d420def713bf6851cde900e6d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00742087281.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3220218ace8ef1dde38cfb2794db75b9947b7ee3efa11b10822034fa2c209e3 +size 319532 diff --git a/datasets/openslr_yoruba/yof_09334_00766999305.wav b/datasets/openslr_yoruba/yof_09334_00766999305.wav new file mode 100644 index 0000000000000000000000000000000000000000..d29959029629ba150ba3da3089e53a7f3873d710 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00766999305.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f93e92ef144d7bb0540b9e2f08c3f22ce54bb8542046fb91efafa0094bcc5e +size 352300 diff --git a/datasets/openslr_yoruba/yof_09334_00777001644.wav b/datasets/openslr_yoruba/yof_09334_00777001644.wav new file mode 100644 index 0000000000000000000000000000000000000000..1bf55b66af946ec7364570306a28cdc203172b34 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00777001644.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1558c1c3b8d9fae86980abbcc0a2e68bc0bc3e19645b2e92776efee60edc56f9 +size 401452 diff --git a/datasets/openslr_yoruba/yof_09334_00810260693.wav b/datasets/openslr_yoruba/yof_09334_00810260693.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f0fcc56953cf46dd7e3a704e9e59dc9a8bac6f6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00810260693.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7a34ca60705b696f1dc5ecbb2074dd0d819ce49f90b7162fa73c5138df84fa +size 548908 diff --git a/datasets/openslr_yoruba/yof_09334_00813397137.wav b/datasets/openslr_yoruba/yof_09334_00813397137.wav new file mode 100644 index 0000000000000000000000000000000000000000..70f5e6e0e450a2c38f90054cac6bab1a1c070e21 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00813397137.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a11c608de1aa8c07d0113104d91d66fb376e6ae46df0bf5b39b4b9f3740cd0 +size 245804 diff --git a/datasets/openslr_yoruba/yof_09334_00832212265.wav b/datasets/openslr_yoruba/yof_09334_00832212265.wav new file mode 100644 index 0000000000000000000000000000000000000000..09fcbcd0d01e01bf62cc8c234cd5073ab1c37201 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00832212265.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5d63b53551b5b176321b5ab1950aaab072fd75421bef4006d425af7bea60a0 +size 385068 diff --git a/datasets/openslr_yoruba/yof_09334_00869845028.wav b/datasets/openslr_yoruba/yof_09334_00869845028.wav new file mode 100644 index 0000000000000000000000000000000000000000..0daa4ceafcee55479d59a58537af64f681af2466 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00869845028.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f85dfdab66c1ecac204322ef7ba1f4f29f78a7f1aa3327e243a1584abac01c +size 409644 diff --git a/datasets/openslr_yoruba/yof_09334_00870036483.wav b/datasets/openslr_yoruba/yof_09334_00870036483.wav new file mode 100644 index 0000000000000000000000000000000000000000..6784d1a0c1f50ec1e972f4e1aa5f4f5193090971 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00870036483.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8eaea8cca4e499726637f43114e4fb25b163e6e8300550330fce8f8d4bacbc5 +size 237612 diff --git a/datasets/openslr_yoruba/yof_09334_00872140784.wav b/datasets/openslr_yoruba/yof_09334_00872140784.wav new file mode 100644 index 0000000000000000000000000000000000000000..c001c89bd621e2a10be938a61a16881332e4d9d8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00872140784.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62fc1b622e48da0782abc4d73210d848a621ae44b8442356ae781d29252f91d2 +size 294956 diff --git a/datasets/openslr_yoruba/yof_09334_00876655401.wav b/datasets/openslr_yoruba/yof_09334_00876655401.wav new file mode 100644 index 0000000000000000000000000000000000000000..d4177aa93e84fadd4b16bb854666114f94b87834 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00876655401.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be63afca58a285d06c214ac66cc3ced13cb58dec160d9625d79e0b243ddf734 +size 319532 diff --git a/datasets/openslr_yoruba/yof_09334_00882759651.wav b/datasets/openslr_yoruba/yof_09334_00882759651.wav new file mode 100644 index 0000000000000000000000000000000000000000..da255d307437d0b37b19a13ab7f8e431dd495a38 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00882759651.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb23695d9762b822d04667ee712e2a061fc74e939b7c461457e99ea357d6d9d +size 286764 diff --git a/datasets/openslr_yoruba/yof_09334_00895445083.wav b/datasets/openslr_yoruba/yof_09334_00895445083.wav new file mode 100644 index 0000000000000000000000000000000000000000..6fdeb5eed5c08da5c44e87a1a4b79a108a2cd710 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00895445083.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8e9009b4875684c287c7275190f4e560809bbd78053aa784d53407d678be6f +size 270380 diff --git a/datasets/openslr_yoruba/yof_09334_00945584178.wav b/datasets/openslr_yoruba/yof_09334_00945584178.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1f671ad97f0aa56c45b383df76c4825bc94076e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00945584178.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3fb0370e0c0b479508fd5fd023efbd7fcc8b9e1779784dc92b0b335e5cfff1 +size 679980 diff --git a/datasets/openslr_yoruba/yof_09334_00960461342.wav b/datasets/openslr_yoruba/yof_09334_00960461342.wav new file mode 100644 index 0000000000000000000000000000000000000000..01d89629a1cf3ee39cd7fabce65b69167233a90f --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00960461342.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a356ae8e9978150e88bac22f456f645010a25097712b090ba7f12decb69e327d +size 516140 diff --git a/datasets/openslr_yoruba/yof_09334_00964886249.wav b/datasets/openslr_yoruba/yof_09334_00964886249.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb339d296b008ec74ff22fbb55e97f93c913a888 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00964886249.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899362207287fc9516e69a6fe3aea4e575bab3de439c607a6682d035ce33c9d9 +size 376876 diff --git a/datasets/openslr_yoruba/yof_09334_00970779937.wav b/datasets/openslr_yoruba/yof_09334_00970779937.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a91f01dc64621539c45f7fcd9f55542731d0c6b --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_00970779937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b3c9442ab80cad1b68faa008008779c3a9b44bf4045eaed1deeadc75175332 +size 475180 diff --git a/datasets/openslr_yoruba/yof_09334_01007870404.wav b/datasets/openslr_yoruba/yof_09334_01007870404.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3354737d8e9e37b9bff6798cbd09c45068ea683 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01007870404.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c31ab2a88c43554fa40654a48215dfc305fc65c121f43bac92b2974d00dc6b +size 589868 diff --git a/datasets/openslr_yoruba/yof_09334_01018087996.wav b/datasets/openslr_yoruba/yof_09334_01018087996.wav new file mode 100644 index 0000000000000000000000000000000000000000..f08b5e8ce74d048289bfcd6ed14ae0fbe2578a7c --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01018087996.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdff9220c53bbcbf75dfcbaabc703271036624739df887aaa407a67d704d49b +size 327724 diff --git a/datasets/openslr_yoruba/yof_09334_01027685511.wav b/datasets/openslr_yoruba/yof_09334_01027685511.wav new file mode 100644 index 0000000000000000000000000000000000000000..c696f6a30661bbfb8bc0f3919098a6ed463b78e2 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01027685511.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0819cc5bda38aff5f6eb59b874ee7d13f2075f3ac569e57eafa98273185af0a +size 262188 diff --git a/datasets/openslr_yoruba/yof_09334_01053288194.wav b/datasets/openslr_yoruba/yof_09334_01053288194.wav new file mode 100644 index 0000000000000000000000000000000000000000..6445f3f5e8b55b8d45d20ee1c57b488b37ef4881 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01053288194.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:962e16c4bb324f3b55a4c1637c1af197b84188cfbfd1852263df790f881ec2c7 +size 360492 diff --git a/datasets/openslr_yoruba/yof_09334_01071921055.wav b/datasets/openslr_yoruba/yof_09334_01071921055.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1bf406f81759b4c0b3b17e028a7f9eb1806a9e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01071921055.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92146e40664c8a4f44d983ea2d09a7515f7ab0d494bad79eb87b738b2710ab3 +size 253996 diff --git a/datasets/openslr_yoruba/yof_09334_01080974690.wav b/datasets/openslr_yoruba/yof_09334_01080974690.wav new file mode 100644 index 0000000000000000000000000000000000000000..51e9476eb9e1a7f743589354757db21e8e5bc554 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01080974690.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7242985753870b78051c2c9eb3aa40edf23252778bca4cfac84949688fca4e45 +size 319532 diff --git a/datasets/openslr_yoruba/yof_09334_01107654466.wav b/datasets/openslr_yoruba/yof_09334_01107654466.wav new file mode 100644 index 0000000000000000000000000000000000000000..f12bb317fe1ddb92c15829a65b4395a1664aefec --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01107654466.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d51fbf61830aff8c1a11b2ba2780ddcd4b529b47f9a99344d11ae9a181987dd6 +size 532524 diff --git a/datasets/openslr_yoruba/yof_09334_01138564937.wav b/datasets/openslr_yoruba/yof_09334_01138564937.wav new file mode 100644 index 0000000000000000000000000000000000000000..e65bfdbb321ec4926f5709d8c897c7e320ff8928 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01138564937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24856eacca1e39d89113e64a5ccbe2e0eec09eadeb323c11de250605c68e9f59 +size 368684 diff --git a/datasets/openslr_yoruba/yof_09334_01179626818.wav b/datasets/openslr_yoruba/yof_09334_01179626818.wav new file mode 100644 index 0000000000000000000000000000000000000000..a715ca66c010c764472c84e289791e1f7ddc9862 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01179626818.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dab858a8baf142fc3cdd3d50d098e2cb58f9a042554af33a1ac7068f0659b00 +size 622636 diff --git a/datasets/openslr_yoruba/yof_09334_01185281336.wav b/datasets/openslr_yoruba/yof_09334_01185281336.wav new file mode 100644 index 0000000000000000000000000000000000000000..34a8b028842bc3700be80c237714f44603039f19 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01185281336.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51389c68f7ab96858fac367f20e3d0d66496720cfd8cb8efe6d7cfc41e9955aa +size 409644 diff --git a/datasets/openslr_yoruba/yof_09334_01228340404.wav b/datasets/openslr_yoruba/yof_09334_01228340404.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e18bba4b43f310647c6e72e444448dc1ceada1e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01228340404.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e9b8943562c107e626c19a7809a2d7fd30147678c8065d87e7c3b4ebf43911 +size 335916 diff --git a/datasets/openslr_yoruba/yof_09334_01229972431.wav b/datasets/openslr_yoruba/yof_09334_01229972431.wav new file mode 100644 index 0000000000000000000000000000000000000000..a9f76cce60439156aac96c0687759f2be3d2affe --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01229972431.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b2de1fa42edfc4fd905a57907423de96b64d609e8e5fb86fc22fe924afe967 +size 745516 diff --git a/datasets/openslr_yoruba/yof_09334_01258716402.wav b/datasets/openslr_yoruba/yof_09334_01258716402.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cd1caf6af137d09f99b17ac999b16ff8394e778 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01258716402.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac7a0ceff03f91f6b328f27dc6d48484c6eec4c7b787f0ed0e076324e5b6e13 +size 294956 diff --git a/datasets/openslr_yoruba/yof_09334_01261601766.wav b/datasets/openslr_yoruba/yof_09334_01261601766.wav new file mode 100644 index 0000000000000000000000000000000000000000..510debe9e92589ab5c0783a5aea8e63341df8f25 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01261601766.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0168554e7e236d31385b5f07acefc966274ac2c8034ed3a48187579a32b2750 +size 409644 diff --git a/datasets/openslr_yoruba/yof_09334_01280964020.wav b/datasets/openslr_yoruba/yof_09334_01280964020.wav new file mode 100644 index 0000000000000000000000000000000000000000..b56cf31c2c540e83d77b5de357144254ab0e1f20 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01280964020.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7d50cb6952dae285749d1f19520046d4c944f8c26f40ca84195bdf6bfcfccd +size 270380 diff --git a/datasets/openslr_yoruba/yof_09334_01299705305.wav b/datasets/openslr_yoruba/yof_09334_01299705305.wav new file mode 100644 index 0000000000000000000000000000000000000000..8685e284782515d250f65c25735837978b03a284 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01299705305.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab08f1846558bffe2fce5169396ce237730be8178650f2180cb36f1207a45e5 +size 589868 diff --git a/datasets/openslr_yoruba/yof_09334_01365395955.wav b/datasets/openslr_yoruba/yof_09334_01365395955.wav new file mode 100644 index 0000000000000000000000000000000000000000..c00697699f885201f6adc45bb8ea5e6b3854c8bf --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01365395955.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9dfbfd2f0866e93e147090258b38ca9d8fea47af867795360d42c014bf92437 +size 335916 diff --git a/datasets/openslr_yoruba/yof_09334_01438189706.wav b/datasets/openslr_yoruba/yof_09334_01438189706.wav new file mode 100644 index 0000000000000000000000000000000000000000..998f80f4cfe9aabd4a282a6548a336ffa783ff75 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01438189706.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737fd4b304dba53c073e9c731abdca2ab3e2e2b4c1cb332a971afa2f767148f1 +size 393260 diff --git a/datasets/openslr_yoruba/yof_09334_01469938429.wav b/datasets/openslr_yoruba/yof_09334_01469938429.wav new file mode 100644 index 0000000000000000000000000000000000000000..ff34cbcb83705be5621ca99428182e00d76793e8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01469938429.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1251a36d229e0dd02568403a53ea048810cef06bb75e9526a635e47efd273cd +size 385068 diff --git a/datasets/openslr_yoruba/yof_09334_01470182466.wav b/datasets/openslr_yoruba/yof_09334_01470182466.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e116959d2b47fb261aac093ba677785c5813cfb --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01470182466.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92b892c3be14da10921c8f33c51974d16932ff13cc0e5e4beffad261d61c337a +size 614444 diff --git a/datasets/openslr_yoruba/yof_09334_01502821399.wav b/datasets/openslr_yoruba/yof_09334_01502821399.wav new file mode 100644 index 0000000000000000000000000000000000000000..273c15cf6cf298a7223fce1a6139b9713506ab8f --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01502821399.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a745e61c51297cf9805ac112566395517abbdc9b8a64496aab14cbf3110701b +size 557100 diff --git a/datasets/openslr_yoruba/yof_09334_01528222027.wav b/datasets/openslr_yoruba/yof_09334_01528222027.wav new file mode 100644 index 0000000000000000000000000000000000000000..ebffe502eab9615bac2f1db7862f322546f51836 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01528222027.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607faa39972819b27c72197449ebaae80b5fcf4f12bad319464212e2d453005e +size 237612 diff --git a/datasets/openslr_yoruba/yof_09334_01531532599.wav b/datasets/openslr_yoruba/yof_09334_01531532599.wav new file mode 100644 index 0000000000000000000000000000000000000000..debab37e672534b9d88d3f5d933e08eecac452ae --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01531532599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c615d56249026347574eac2aeb8f34b7ddf5bceb71c7fc7780c40553804e60 +size 360492 diff --git a/datasets/openslr_yoruba/yof_09334_01532459180.wav b/datasets/openslr_yoruba/yof_09334_01532459180.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f8d848deb9ad54e587bf4511462a0f1217b1bd3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01532459180.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bc56a61a596ab6512fb3c5a8ec359e08783a9a7d2c3eb024a73dd3713dadaa +size 294956 diff --git a/datasets/openslr_yoruba/yof_09334_01533109059.wav b/datasets/openslr_yoruba/yof_09334_01533109059.wav new file mode 100644 index 0000000000000000000000000000000000000000..b00dd52df38aa91d19c799ebdc5a4aa7478e1c95 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01533109059.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c5b0f523670d1e38ffa300e0f898d0417a27b857e0f62404eb64cfc3a81f2e +size 213036 diff --git a/datasets/openslr_yoruba/yof_09334_01556622805.wav b/datasets/openslr_yoruba/yof_09334_01556622805.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f68c3ad26e5a6ced8f00f07659ff315961ce692 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01556622805.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d85d9130d3e48f17e3a7d6c1cd5a2dcdd0bfdb6c1ea62b555a06f5ef0c11fe7 +size 540716 diff --git a/datasets/openslr_yoruba/yof_09334_01579397657.wav b/datasets/openslr_yoruba/yof_09334_01579397657.wav new file mode 100644 index 0000000000000000000000000000000000000000..440936463c31ff90e9cac62f94fb63133fdc2b55 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01579397657.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66716951e621ed69323a23c2e78b1ccd031d8c72679743f33bd73ded0042abe +size 319532 diff --git a/datasets/openslr_yoruba/yof_09334_01594138566.wav b/datasets/openslr_yoruba/yof_09334_01594138566.wav new file mode 100644 index 0000000000000000000000000000000000000000..3803891115ae1d1bf18d7c9fcc3a9bd6b8c15864 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01594138566.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01893efb5a71cb34f3f6db2bd623da30dbf6b0c3c374ecbf8ca47b63b48286f4 +size 303148 diff --git a/datasets/openslr_yoruba/yof_09334_01611227710.wav b/datasets/openslr_yoruba/yof_09334_01611227710.wav new file mode 100644 index 0000000000000000000000000000000000000000..52d8cbec1a490f85c78619af3ff512a5b792cba1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01611227710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e301a69a2b4bd503e1f668b9c0c07894136600ff19341147ca2b06a16bc354de +size 319532 diff --git a/datasets/openslr_yoruba/yof_09334_01661946554.wav b/datasets/openslr_yoruba/yof_09334_01661946554.wav new file mode 100644 index 0000000000000000000000000000000000000000..06bc138c50a8ec52d9e3fc3ed490e3d1b2369c36 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01661946554.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669e9335feee3ca2a82fd9c4cf4180a9414fc2c486c3dd903c71ac928a503150 +size 344108 diff --git a/datasets/openslr_yoruba/yof_09334_01682319679.wav b/datasets/openslr_yoruba/yof_09334_01682319679.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdb9e3aab48ca6c455e1fca73f06fc23ed44e71d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01682319679.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b5664ceaa36d7f8e6347ed65bb08ec26b2142224ce1a74ea9144a9393470a2 +size 540716 diff --git a/datasets/openslr_yoruba/yof_09334_01696965458.wav b/datasets/openslr_yoruba/yof_09334_01696965458.wav new file mode 100644 index 0000000000000000000000000000000000000000..3951bc5228cbd4cef96f9b8ff746d6b0b7c7578c --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01696965458.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d8c8777e792a017f5060f563c7f2b9ab909b00aa6fce5cc66082a40d76bd212 +size 417836 diff --git a/datasets/openslr_yoruba/yof_09334_01736005859.wav b/datasets/openslr_yoruba/yof_09334_01736005859.wav new file mode 100644 index 0000000000000000000000000000000000000000..80bd24590a52c493e21980082b4b951f214b4ff0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01736005859.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1563d966a4142b8da772a262f82256b1a8e74c6d8be5801d3ea9c3a973b427f1 +size 311340 diff --git a/datasets/openslr_yoruba/yof_09334_01740680086.wav b/datasets/openslr_yoruba/yof_09334_01740680086.wav new file mode 100644 index 0000000000000000000000000000000000000000..67f4721d9cc9bdff3ae5e1b6daf0afc3b0c5833c --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01740680086.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af144202e6d9104f94223466c108f701dc7db2c2a123a3f860f3cee0259ea592 +size 344108 diff --git a/datasets/openslr_yoruba/yof_09334_01742135320.wav b/datasets/openslr_yoruba/yof_09334_01742135320.wav new file mode 100644 index 0000000000000000000000000000000000000000..ee2b4106d8abc670b55fcb9910d756341ee74861 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01742135320.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d613769412773783dbbfc15d286d81483ef1297d6f6f662df589891695baca6d +size 286764 diff --git a/datasets/openslr_yoruba/yof_09334_01757345148.wav b/datasets/openslr_yoruba/yof_09334_01757345148.wav new file mode 100644 index 0000000000000000000000000000000000000000..0af20621686eb9907044f2639d66b6601d5f4d82 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01757345148.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929efce1d7ca59ce2e586374f56ab2d9583ee5f4ecd0253d513f2c6a0864b1e9 +size 303148 diff --git a/datasets/openslr_yoruba/yof_09334_01767552332.wav b/datasets/openslr_yoruba/yof_09334_01767552332.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab9e2cf678080605b0d9680b9ec33d00e00f05a8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01767552332.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9a767652c7064cca81e8b8e5e2be42e07595106399883328c7e33e89d57ef5 +size 344108 diff --git a/datasets/openslr_yoruba/yof_09334_01784997317.wav b/datasets/openslr_yoruba/yof_09334_01784997317.wav new file mode 100644 index 0000000000000000000000000000000000000000..93c4a1b0dfe80d0f2f5a2fcb5c0a0e9bb58eed91 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01784997317.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5865141452053abfc387aec8231ca0e5e37deacbf344f4ceb388f4c2af91e2 +size 245804 diff --git a/datasets/openslr_yoruba/yof_09334_01795725585.wav b/datasets/openslr_yoruba/yof_09334_01795725585.wav new file mode 100644 index 0000000000000000000000000000000000000000..bba9c44f10c4358bf0b5c3ede59762690b0beda0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01795725585.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd9826c5981d1b44a573a99e70755afb6a5a669f9be899c1fa52ee9f6b57115 +size 245804 diff --git a/datasets/openslr_yoruba/yof_09334_01833970354.wav b/datasets/openslr_yoruba/yof_09334_01833970354.wav new file mode 100644 index 0000000000000000000000000000000000000000..71038c423bb140234053c8716d03132c4b2050ee --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01833970354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3da6bc29ad5d714b25abd91b0d55c6a4555f2b191f9285e5f155717efb1f8a6 +size 253996 diff --git a/datasets/openslr_yoruba/yof_09334_01840359516.wav b/datasets/openslr_yoruba/yof_09334_01840359516.wav new file mode 100644 index 0000000000000000000000000000000000000000..222e30622d689859b97d1e272e5b33b4adf73f91 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01840359516.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d492a80cb0279edd5c4f47c75cd36c09998bbd8a42b763bc135233f0c1b109c1 +size 303148 diff --git a/datasets/openslr_yoruba/yof_09334_01853861579.wav b/datasets/openslr_yoruba/yof_09334_01853861579.wav new file mode 100644 index 0000000000000000000000000000000000000000..77c09650888b8245993a0a573f99fa001ef156f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01853861579.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2250d9a3ae9207c2c617bac372e2643594617c228171b3953015de796eef06fb +size 262188 diff --git a/datasets/openslr_yoruba/yof_09334_01949099296.wav b/datasets/openslr_yoruba/yof_09334_01949099296.wav new file mode 100644 index 0000000000000000000000000000000000000000..155c6af72d0055fcb5327ee4a7c42f474fba9398 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01949099296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1808fb09e978dd21938d5a18e8269e349cd37f1ca7321733c034a3e160e646 +size 352300 diff --git a/datasets/openslr_yoruba/yof_09334_01982394183.wav b/datasets/openslr_yoruba/yof_09334_01982394183.wav new file mode 100644 index 0000000000000000000000000000000000000000..ff41bf4ffbc1bc9163b3dd7bb9a82ed98d3c3e52 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01982394183.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0475cfd694df3dc03a0596b217dc777c273e2434c8b53f704fc6dbdd9391f2 +size 376876 diff --git a/datasets/openslr_yoruba/yof_09334_01991202909.wav b/datasets/openslr_yoruba/yof_09334_01991202909.wav new file mode 100644 index 0000000000000000000000000000000000000000..a6f50857d7713b484daf51348a9dcbd3e68b4bcb --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_01991202909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ebd90f1a90637fe23f883ad6039098521c20465e8e78fd288b0e038f638e86 +size 311340 diff --git a/datasets/openslr_yoruba/yof_09334_02077328449.wav b/datasets/openslr_yoruba/yof_09334_02077328449.wav new file mode 100644 index 0000000000000000000000000000000000000000..10efb3549f70a9e0b631f94885494acb95110c12 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02077328449.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d531902569cbd28d0d5a694c8f605214a269811d09a8ffff78259bdafe445ea2 +size 581676 diff --git a/datasets/openslr_yoruba/yof_09334_02080052422.wav b/datasets/openslr_yoruba/yof_09334_02080052422.wav new file mode 100644 index 0000000000000000000000000000000000000000..85a7d02654223150dec6554c6d9b706c65acc7f0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02080052422.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb83bc0b09ca2650c41817803c8113fd6b6d3575b9ed440252588fa24412c7b +size 278572 diff --git a/datasets/openslr_yoruba/yof_09334_02080600732.wav b/datasets/openslr_yoruba/yof_09334_02080600732.wav new file mode 100644 index 0000000000000000000000000000000000000000..3aa78e3c0429182c9e572ffaada50a707172a317 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02080600732.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b15c5c3ddb205baded9d25eddec81fc8ed110394f343426b68a50876e4eea4 +size 245804 diff --git a/datasets/openslr_yoruba/yof_09334_02087227569.wav b/datasets/openslr_yoruba/yof_09334_02087227569.wav new file mode 100644 index 0000000000000000000000000000000000000000..33e0954c0759d55295a44626b4f328b0a7d5f858 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02087227569.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221ec92d184cb8b174ced8e3fc7de530246f1369904441d2285d5d537f92e2ba +size 311340 diff --git a/datasets/openslr_yoruba/yof_09334_02088800517.wav b/datasets/openslr_yoruba/yof_09334_02088800517.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6180847a2fb6e91c1c085567268a832b9095bcf --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02088800517.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0fb0ced8e216d6048fb91900a9d5303d8f522e3676c562617d758c44a3a798 +size 327724 diff --git a/datasets/openslr_yoruba/yof_09334_02102071074.wav b/datasets/openslr_yoruba/yof_09334_02102071074.wav new file mode 100644 index 0000000000000000000000000000000000000000..b22a6a3804be7d7d1af92f87763c9a14e5c33654 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02102071074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78215edbd2b6ab13caef8720101292d7d5fdcbee6a8d2f0271d54581f38ee31e +size 286764 diff --git a/datasets/openslr_yoruba/yof_09334_02113816538.wav b/datasets/openslr_yoruba/yof_09334_02113816538.wav new file mode 100644 index 0000000000000000000000000000000000000000..4947f50110a02402d2673e96cfe96fb56b9d5095 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02113816538.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0ca182e7ef1b0c5104c27fd8b064ecbf26e0e4790362016eaa2906c371bc69 +size 311340 diff --git a/datasets/openslr_yoruba/yof_09334_02129116641.wav b/datasets/openslr_yoruba/yof_09334_02129116641.wav new file mode 100644 index 0000000000000000000000000000000000000000..687380b28de67108c3ffc5a25028319e8bc80af7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02129116641.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef8e7a456d1aca0e6345f3ca29b16f2205233b2181ed5dbee64b9ab4eb8ae7a +size 524332 diff --git a/datasets/openslr_yoruba/yof_09334_02132717687.wav b/datasets/openslr_yoruba/yof_09334_02132717687.wav new file mode 100644 index 0000000000000000000000000000000000000000..6c452b6381c0d6ad3d0160402dc2a2ac745f4766 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02132717687.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ca0aa1bbd8aceccec567d8a7928747615d6fa991e056ff5e1e0b04a2c202d5 +size 311340 diff --git a/datasets/openslr_yoruba/yof_09334_02133435737.wav b/datasets/openslr_yoruba/yof_09334_02133435737.wav new file mode 100644 index 0000000000000000000000000000000000000000..47b9dc1517e1d963bacae1e9fe6c2754f04afaba --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02133435737.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0cd7602dcc9865a3dddd9e2335a949f74e3bef7f3b7725aa17a94474e990e76 +size 262188 diff --git a/datasets/openslr_yoruba/yof_09334_02135557276.wav b/datasets/openslr_yoruba/yof_09334_02135557276.wav new file mode 100644 index 0000000000000000000000000000000000000000..93de131749e4a9e51d49d989ecf48c36eebd4378 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02135557276.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ce8b3b4afebd1ea6c36e3478acbd447ed71a3071569fa5abbd30e5e72f84fc +size 327724 diff --git a/datasets/openslr_yoruba/yof_09334_02140860801.wav b/datasets/openslr_yoruba/yof_09334_02140860801.wav new file mode 100644 index 0000000000000000000000000000000000000000..43714bc006dcb73ce7c689abaf54fc99db5ff121 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09334_02140860801.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa809b53df4128ef3c3bad5a29e5fd53f8279a77a4da0a1786ee01004475132a +size 294956 diff --git a/datasets/openslr_yoruba/yof_09697_00041565012.wav b/datasets/openslr_yoruba/yof_09697_00041565012.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c035ac2779452a2934c2bd44d34504f62d32dbd --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00041565012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db45aa62ed0b0f010fd843aaa9407d89a4d155c2224bc55708fcafdc0799dcd +size 335916 diff --git a/datasets/openslr_yoruba/yof_09697_00051282220.wav b/datasets/openslr_yoruba/yof_09697_00051282220.wav new file mode 100644 index 0000000000000000000000000000000000000000..1039c8b0f7c28d128e86938b5724b563207f9b96 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00051282220.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81df82abb192d9077784cf3bb9b50e95cad5bfaa43e3231f0366757f6770c191 +size 303148 diff --git a/datasets/openslr_yoruba/yof_09697_00095408131.wav b/datasets/openslr_yoruba/yof_09697_00095408131.wav new file mode 100644 index 0000000000000000000000000000000000000000..b386c3d0dc65a1d1794e9ac6c26415ea22f16543 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00095408131.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec79746d2d17e3077a70a8eff7842acc1542f7d9c5fc838c86e0e80abcd961a +size 376876 diff --git a/datasets/openslr_yoruba/yof_09697_00099367593.wav b/datasets/openslr_yoruba/yof_09697_00099367593.wav new file mode 100644 index 0000000000000000000000000000000000000000..59425d1de87f7dbf15e3fb92a8a6f03e2ee151d3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00099367593.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cddd361acb16c4a6690a3b786d402a9838ca5cb45402f21535f5d8f9664ee087 +size 319532 diff --git a/datasets/openslr_yoruba/yof_09697_00110824256.wav b/datasets/openslr_yoruba/yof_09697_00110824256.wav new file mode 100644 index 0000000000000000000000000000000000000000..73be78fb3a56edbedf70ad82d61f901265f8bdf1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00110824256.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8e98f2d38128ee2e87f8d6edf7a2054a2ce94b91921447a3f00a32337b8690a +size 524332 diff --git a/datasets/openslr_yoruba/yof_09697_00116176110.wav b/datasets/openslr_yoruba/yof_09697_00116176110.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cc11cfe964adf12b32a994d821f1539214fb0b9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00116176110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11294fc3080d8b6fb8d5397d879f0648ec701b4d46fad1d7e80fe5c5961c7bc9 +size 385068 diff --git a/datasets/openslr_yoruba/yof_09697_00132648621.wav b/datasets/openslr_yoruba/yof_09697_00132648621.wav new file mode 100644 index 0000000000000000000000000000000000000000..f693495f1960d73450af379492b3c6c42e21c732 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00132648621.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d087a5470a0ef3ff8f9533ff4416954db8d4b9305dc8b1235dc99f77d3ab4dbd +size 483372 diff --git a/datasets/openslr_yoruba/yof_09697_00167627039.wav b/datasets/openslr_yoruba/yof_09697_00167627039.wav new file mode 100644 index 0000000000000000000000000000000000000000..e28530234d33901f90b3b3c87af58d2c0b02d9e6 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00167627039.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9175fcd9c662548eb0e37142f69a074e971f615d12358dc469cf8ba0b15299a +size 335916 diff --git a/datasets/openslr_yoruba/yof_09697_00233502332.wav b/datasets/openslr_yoruba/yof_09697_00233502332.wav new file mode 100644 index 0000000000000000000000000000000000000000..34ca05485ce92755b6ec0e758d33b38ef6833801 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00233502332.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd41bb3ce44ea41c1d2d781bb52c5b56b1a31a2758848dcd40f94c72b1b931aa +size 327724 diff --git a/datasets/openslr_yoruba/yof_09697_00256783290.wav b/datasets/openslr_yoruba/yof_09697_00256783290.wav new file mode 100644 index 0000000000000000000000000000000000000000..32d5b95d5dcbfb850fda6e28825a02ce6a443ca8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00256783290.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3128a65d7ba7aeb9871dae1a1804d3ca2c9a51943b986c2014ccd02ca9d75353 +size 286764 diff --git a/datasets/openslr_yoruba/yof_09697_00259351097.wav b/datasets/openslr_yoruba/yof_09697_00259351097.wav new file mode 100644 index 0000000000000000000000000000000000000000..1777177927e201f5dac16c1379a12840edda061a --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00259351097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44bfd52eb4491f365971bd1ad761359a12caf848e20601cb7ad518948619dd22 +size 335916 diff --git a/datasets/openslr_yoruba/yof_09697_00262398794.wav b/datasets/openslr_yoruba/yof_09697_00262398794.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef21708ef9ef9bfc2c992268e0c7dc356f7d6359 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00262398794.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e619fe6839dbf854ec8e13115d7913eb3dc4e36ebb6ac33ffb74d02e438ffa +size 426028 diff --git a/datasets/openslr_yoruba/yof_09697_00305319491.wav b/datasets/openslr_yoruba/yof_09697_00305319491.wav new file mode 100644 index 0000000000000000000000000000000000000000..74338715fd335c07e6bc385b4f7d4645dc1e10a5 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00305319491.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1541e9a3a853897cd1857558560b04e3168bb08e7659330d915b6d80d0ab8a04 +size 286764 diff --git a/datasets/openslr_yoruba/yof_09697_00307454277.wav b/datasets/openslr_yoruba/yof_09697_00307454277.wav new file mode 100644 index 0000000000000000000000000000000000000000..2dea9c6edcd83a99f52cca662c8c0e71d8f8481c --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00307454277.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ed94c2f88f74ce479f4fc4cc2f5283876423d39a9bcfe4a9545d5c67a15cd7 +size 286764 diff --git a/datasets/openslr_yoruba/yof_09697_00386236079.wav b/datasets/openslr_yoruba/yof_09697_00386236079.wav new file mode 100644 index 0000000000000000000000000000000000000000..31981f4884e7d4bf7d4397921d435a24e7c0ffb0 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00386236079.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3410e36a465e387b6106017d32339e173d3379b83a9117e2b90e423ec028fd9 +size 278572 diff --git a/datasets/openslr_yoruba/yof_09697_00388958749.wav b/datasets/openslr_yoruba/yof_09697_00388958749.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7aaac49aaa1f17c4d567e63eb6a78b5376c217c --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00388958749.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7d750027559bb8a3a5bbc46917ad20b7b36d98da3bce2c382c60fdec61dd79 +size 344108 diff --git a/datasets/openslr_yoruba/yof_09697_00431930794.wav b/datasets/openslr_yoruba/yof_09697_00431930794.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8c9403b02127d083d772cd087d34783e4b86562 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00431930794.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d538be83be0564d97cf3d0cafc794dbe965c684792fdd652e70d6a939f8191 +size 835628 diff --git a/datasets/openslr_yoruba/yof_09697_00459484733.wav b/datasets/openslr_yoruba/yof_09697_00459484733.wav new file mode 100644 index 0000000000000000000000000000000000000000..f753f1e18d9d676cb6acfa5711e87faca3074b21 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00459484733.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411f5bad8afe1756d0dab7657093b23cf6b47e5f242f32973db86045b8da8d25 +size 262188 diff --git a/datasets/openslr_yoruba/yof_09697_00465758722.wav b/datasets/openslr_yoruba/yof_09697_00465758722.wav new file mode 100644 index 0000000000000000000000000000000000000000..8de31cbb0723225e0a379d9733546ba2fb8fc3e8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00465758722.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c244608abeccb1ed94e670436c71e557e4af9dec11bbaba198cc03a4a198ce +size 360492 diff --git a/datasets/openslr_yoruba/yof_09697_00469094337.wav b/datasets/openslr_yoruba/yof_09697_00469094337.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a55f07b7b8319f31aa6718272fc1a0a02a26afe --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00469094337.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9cd47d76d3dcd69332671e22376b97c938174248438ec0d7eb0e26db8c5191e +size 344108 diff --git a/datasets/openslr_yoruba/yof_09697_00498508152.wav b/datasets/openslr_yoruba/yof_09697_00498508152.wav new file mode 100644 index 0000000000000000000000000000000000000000..93012712bf04a54e1feb1f2461f664bc6d8b5a23 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00498508152.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c25d99793c93db5749c473544f4e4c81ea4c9d744d86894bc8e25e4634a175c +size 344108 diff --git a/datasets/openslr_yoruba/yof_09697_00503862354.wav b/datasets/openslr_yoruba/yof_09697_00503862354.wav new file mode 100644 index 0000000000000000000000000000000000000000..657058801b6ad3d6a7bb45ff7c638b64a092bf34 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00503862354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e7dc5bd46f8112ab458e7810bc717f4c02740bd00659d8e6051121d984ef29 +size 426028 diff --git a/datasets/openslr_yoruba/yof_09697_00509643171.wav b/datasets/openslr_yoruba/yof_09697_00509643171.wav new file mode 100644 index 0000000000000000000000000000000000000000..4dde114051a9d4ee226fba3537c927e44a958327 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00509643171.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93557e3cb64d85fc2b6f6faf7630221d5845e7127cdaae602b652501567cf69a +size 335916 diff --git a/datasets/openslr_yoruba/yof_09697_00527325678.wav b/datasets/openslr_yoruba/yof_09697_00527325678.wav new file mode 100644 index 0000000000000000000000000000000000000000..8894f91dc28dae0545861d6896b6e92a903d8df8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00527325678.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dcc987b2fd17fc5090aab511d82716189dc9e2df7463293bc639e76f5e9ca69 +size 385068 diff --git a/datasets/openslr_yoruba/yof_09697_00541693597.wav b/datasets/openslr_yoruba/yof_09697_00541693597.wav new file mode 100644 index 0000000000000000000000000000000000000000..420064528b7e917554318f23fb469696014a635f --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00541693597.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540e862cc77d4059f71b2726d2e181f12e8f2e4706f45c44478fe5a768a9ead2 +size 253996 diff --git a/datasets/openslr_yoruba/yof_09697_00567611920.wav b/datasets/openslr_yoruba/yof_09697_00567611920.wav new file mode 100644 index 0000000000000000000000000000000000000000..da5e06a11377e8ed7698c8720eff587f48818092 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00567611920.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71cba0370c12cf64dcb2a85b7eeda5d03349235be48602048f2a09991c06a87 +size 581676 diff --git a/datasets/openslr_yoruba/yof_09697_00582600241.wav b/datasets/openslr_yoruba/yof_09697_00582600241.wav new file mode 100644 index 0000000000000000000000000000000000000000..7305d3e5be18fcecd58cef719911306a0585f20b --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00582600241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddc9bfaf87a127ce8441f16bca180af37e5155482103d7e18a392d43e778609 +size 475180 diff --git a/datasets/openslr_yoruba/yof_09697_00595639952.wav b/datasets/openslr_yoruba/yof_09697_00595639952.wav new file mode 100644 index 0000000000000000000000000000000000000000..2efbaea560be56b364f2c0a3350febf9c0294e22 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00595639952.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f9a42a5954464095baa402ae3c1c0e81ac5b7c5eac40c32e8173a8f914e0a9 +size 524332 diff --git a/datasets/openslr_yoruba/yof_09697_00598800757.wav b/datasets/openslr_yoruba/yof_09697_00598800757.wav new file mode 100644 index 0000000000000000000000000000000000000000..79dccd58d27a67dea61b703811fb42e0a92e119e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00598800757.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c500d23662ab1cfe09e1ed04557caf82885f31e70ce69344299a99c2416cc78e +size 311340 diff --git a/datasets/openslr_yoruba/yof_09697_00613262603.wav b/datasets/openslr_yoruba/yof_09697_00613262603.wav new file mode 100644 index 0000000000000000000000000000000000000000..b0d37cf6b9bc414f20370aab7713414b85a6fb14 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00613262603.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e08adb90d3d8887d04bcfd029346f2f1130fef7a735adcc4005fe144943bd9 +size 409644 diff --git a/datasets/openslr_yoruba/yof_09697_00630489963.wav b/datasets/openslr_yoruba/yof_09697_00630489963.wav new file mode 100644 index 0000000000000000000000000000000000000000..53e3ceb31b99d5f70ce9247b1407b6db648601ac --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00630489963.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647ec2deb01b787a4f89cc459d4b66be50e2e3270207b0e4866b0168aa78b091 +size 393260 diff --git a/datasets/openslr_yoruba/yof_09697_00634162719.wav b/datasets/openslr_yoruba/yof_09697_00634162719.wav new file mode 100644 index 0000000000000000000000000000000000000000..7213cd3b2f026c37ff0d2ad3b7745def30181291 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00634162719.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02d63ad328f54458b7be8ab37f4cdfa7114ffa65b7bd6140c3a44399f7f8fba +size 278572 diff --git a/datasets/openslr_yoruba/yof_09697_00648283669.wav b/datasets/openslr_yoruba/yof_09697_00648283669.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e206483aa544e1406b086d7b6400c324df0b023 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00648283669.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d3fd228795179dda57b70e086a8294e2753d90be5d400f017345f3224aa5ee +size 327724 diff --git a/datasets/openslr_yoruba/yof_09697_00660206593.wav b/datasets/openslr_yoruba/yof_09697_00660206593.wav new file mode 100644 index 0000000000000000000000000000000000000000..f21ea8426e54f4aaf5094bfab89261a008e3607d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00660206593.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3572cd9391530e18635da1fe5f81afb8fc232519943e7a1b1c41a70cdc6642c4 +size 409644 diff --git a/datasets/openslr_yoruba/yof_09697_00676928850.wav b/datasets/openslr_yoruba/yof_09697_00676928850.wav new file mode 100644 index 0000000000000000000000000000000000000000..69a838a847bc83403d1fa39b47429e7e42331287 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00676928850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7513dea9ac61f86cc6eff812064f7084b42d13f132595822484304f363d5ad6 +size 442412 diff --git a/datasets/openslr_yoruba/yof_09697_00690653811.wav b/datasets/openslr_yoruba/yof_09697_00690653811.wav new file mode 100644 index 0000000000000000000000000000000000000000..d5b254830487ca0d7ae1822941186059361027c8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00690653811.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f6886c82b16cfd50823e9973f0889dbcd4ff139ab5c1a17568b0256e2c15aa +size 303148 diff --git a/datasets/openslr_yoruba/yof_09697_00726950294.wav b/datasets/openslr_yoruba/yof_09697_00726950294.wav new file mode 100644 index 0000000000000000000000000000000000000000..be84dffeaa8a5cc7fbb540a3921a4cba6ce85844 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00726950294.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369bd3c136672b28e2a0948009fd8fc6d13de0a92604732621393d3662eef817 +size 360492 diff --git a/datasets/openslr_yoruba/yof_09697_00729852212.wav b/datasets/openslr_yoruba/yof_09697_00729852212.wav new file mode 100644 index 0000000000000000000000000000000000000000..ddeb21ffc1c17acbf85fa5ae454b28d48caf38bf --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00729852212.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c168c7bdc591f9679845c19e953a2e6759b15151ed1e83113a4c4ba479a3bb28 +size 213036 diff --git a/datasets/openslr_yoruba/yof_09697_00744436398.wav b/datasets/openslr_yoruba/yof_09697_00744436398.wav new file mode 100644 index 0000000000000000000000000000000000000000..303ce3bae56251b44322453fedfb5fb51f8ad33b --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00744436398.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61b6802fa97a9408519ddaf5cc49d6e18c641940be7bbc5a415b137434d3c37 +size 778284 diff --git a/datasets/openslr_yoruba/yof_09697_00764365820.wav b/datasets/openslr_yoruba/yof_09697_00764365820.wav new file mode 100644 index 0000000000000000000000000000000000000000..3245366a2718597a92847150d651bcb4faf64c05 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00764365820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3430c7fd55995fd62cf4e03209e33c778d3277dd00f79cd61a2aeb2f2518b6f5 +size 303148 diff --git a/datasets/openslr_yoruba/yof_09697_00792170841.wav b/datasets/openslr_yoruba/yof_09697_00792170841.wav new file mode 100644 index 0000000000000000000000000000000000000000..bfa919f68dea0aad1b98541af25f9ae9dc3c9e03 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00792170841.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537780c93e605dfb0dfc93210ff45ce4913ab548c8eab65c252b3805e1091e02 +size 294956 diff --git a/datasets/openslr_yoruba/yof_09697_00825605999.wav b/datasets/openslr_yoruba/yof_09697_00825605999.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b814fb1376d8c2a69f8513bf06cd533abbf4760 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00825605999.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a35bb2182a4ef1469b0e80cbf1b7104d25b80d157dfe6ded9bfa34a0ed27629 +size 450604 diff --git a/datasets/openslr_yoruba/yof_09697_00852675940.wav b/datasets/openslr_yoruba/yof_09697_00852675940.wav new file mode 100644 index 0000000000000000000000000000000000000000..eca7e9a814a8e96fdb3bf6b64fd52edf419dc97a --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00852675940.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87e3b19b8f0b1d84501a79302673c73a23a0889470b574a33a9b5d440a34ee7 +size 663596 diff --git a/datasets/openslr_yoruba/yof_09697_00864832296.wav b/datasets/openslr_yoruba/yof_09697_00864832296.wav new file mode 100644 index 0000000000000000000000000000000000000000..9898017164c36e7b82e9ad8b579db497cc83279e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00864832296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c8cd542f399c01427a034514e6377281c3aa9ad6c4ca810d8b88c15b65687d +size 606252 diff --git a/datasets/openslr_yoruba/yof_09697_00875588820.wav b/datasets/openslr_yoruba/yof_09697_00875588820.wav new file mode 100644 index 0000000000000000000000000000000000000000..510509c787e5bffb49a89c908ac656237a9c4bd4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00875588820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e790e3fef0e670b4467bad3a291059053a54fe8fe416f2005cc8277982d66a +size 516140 diff --git a/datasets/openslr_yoruba/yof_09697_00908382802.wav b/datasets/openslr_yoruba/yof_09697_00908382802.wav new file mode 100644 index 0000000000000000000000000000000000000000..682381801b236ec8065c2f5d986d67eb78c712d9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00908382802.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab9a3ec388e372303156b6a22a410395c467eb70da56c6dd288761b2342d2c2 +size 311340 diff --git a/datasets/openslr_yoruba/yof_09697_00909991436.wav b/datasets/openslr_yoruba/yof_09697_00909991436.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ff26b093f7cc29ed5f707def3d9b733f56d36ef --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00909991436.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:561c9f63d9dfdf01130ea42121b0bb1a4b1d47e81e826e275822fde0306ef466 +size 376876 diff --git a/datasets/openslr_yoruba/yof_09697_00934529619.wav b/datasets/openslr_yoruba/yof_09697_00934529619.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d9639bb82033678d321da08795a242fdce4d2a9 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00934529619.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6b7ee353e2ffefb3ae2321c3e3a52f5a922b8987922bae2d6f5a02d54e87c1d +size 368684 diff --git a/datasets/openslr_yoruba/yof_09697_00946372743.wav b/datasets/openslr_yoruba/yof_09697_00946372743.wav new file mode 100644 index 0000000000000000000000000000000000000000..8140b509013553f4ea0658b3cb393fa927a3bd82 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00946372743.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017a085766f791b25c5ddb64eeab21306e6b22a8e22cc4cadb22e242cbb2657c +size 278572 diff --git a/datasets/openslr_yoruba/yof_09697_00964602293.wav b/datasets/openslr_yoruba/yof_09697_00964602293.wav new file mode 100644 index 0000000000000000000000000000000000000000..3697f239c0e0fdf123261f9b0ad224608f9ea586 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00964602293.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc000cd81d4e92ec21eacae7852aac2ad3a202d6bc0887a71111c354fdd15ce +size 589868 diff --git a/datasets/openslr_yoruba/yof_09697_00979107622.wav b/datasets/openslr_yoruba/yof_09697_00979107622.wav new file mode 100644 index 0000000000000000000000000000000000000000..1cb19ccceecfdfbcbc7072311ef9ee8caa00259a --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00979107622.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9900f19a6dcf24d8bbb0da9e12dc7aa1dec92d63786ed4f79c711e2f0d57f2f +size 442412 diff --git a/datasets/openslr_yoruba/yof_09697_00984469114.wav b/datasets/openslr_yoruba/yof_09697_00984469114.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d658ea2f193f1e59731d79d75db14660545c831 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_00984469114.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83c5eb217c21cd9953c9b3f4a8110ec00252e657b90e50564b0286aed6c1269 +size 327724 diff --git a/datasets/openslr_yoruba/yof_09697_01029057779.wav b/datasets/openslr_yoruba/yof_09697_01029057779.wav new file mode 100644 index 0000000000000000000000000000000000000000..864b3e70bf4c03fe0e10c499a44b2b84bd65dc80 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01029057779.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd46c4566bef48d3a9076cb67291fd5bc7150a0c7ee17bc9e1b5f14a3e65d7e8 +size 294956 diff --git a/datasets/openslr_yoruba/yof_09697_01046463469.wav b/datasets/openslr_yoruba/yof_09697_01046463469.wav new file mode 100644 index 0000000000000000000000000000000000000000..461fbfc130e9ce7898414eb40993e2d50a89127b --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01046463469.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126084b86522a2fa5bd94040d9195360ccb71a9d643696cd15cc365def5d3c5f +size 344108 diff --git a/datasets/openslr_yoruba/yof_09697_01073186386.wav b/datasets/openslr_yoruba/yof_09697_01073186386.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc7bc102b37a5d0f2ad69583cc28066cf75cbe4e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01073186386.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311f6838b20316927e14cc43ba787d5c8e24ec2afeada603847cb96325ceacb3 +size 426028 diff --git a/datasets/openslr_yoruba/yof_09697_01077479271.wav b/datasets/openslr_yoruba/yof_09697_01077479271.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f401937e3ca3ce55129a99e02f10cce05487506 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01077479271.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51aa517db20a67639081f7b364b2a689b3ac3618b9915815335767150e50d666 +size 450604 diff --git a/datasets/openslr_yoruba/yof_09697_01082644369.wav b/datasets/openslr_yoruba/yof_09697_01082644369.wav new file mode 100644 index 0000000000000000000000000000000000000000..44fcafc5214f457298a800ed41b442d6551c6827 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01082644369.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2c8bca6bd44924af6597b954d16784afc9327973361e097afe9c7ae16baa20 +size 368684 diff --git a/datasets/openslr_yoruba/yof_09697_01103354325.wav b/datasets/openslr_yoruba/yof_09697_01103354325.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8e9bed4e407b727234bc1fb9d7f0e409d203d33 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01103354325.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1ecf2019d39770b3240dd81e8ebea138e4af8573075c2464f6f448475fb883 +size 524332 diff --git a/datasets/openslr_yoruba/yof_09697_01133989426.wav b/datasets/openslr_yoruba/yof_09697_01133989426.wav new file mode 100644 index 0000000000000000000000000000000000000000..eb33d60a1fe62099a06386462d4c7cd62bf334e4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01133989426.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b734d82770ccbdcb9fc958f3bfb9dbc80c76cb6a6ae435a4925bb640a64b23e +size 360492 diff --git a/datasets/openslr_yoruba/yof_09697_01145041809.wav b/datasets/openslr_yoruba/yof_09697_01145041809.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe86a5fa9c3932526377469fd92157b0951b125d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01145041809.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df304851ab668aa0424f895962f9ca9269275d6b16aa59e9de506747348e010 +size 286764 diff --git a/datasets/openslr_yoruba/yof_09697_01190846387.wav b/datasets/openslr_yoruba/yof_09697_01190846387.wav new file mode 100644 index 0000000000000000000000000000000000000000..f955a09a5182bc07ae98ed821a7495c091a8ea0d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01190846387.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c867c37562254e4916c6ea213e45a5035dd0880c9682be1cb0af199eb4a7e5 +size 262188 diff --git a/datasets/openslr_yoruba/yof_09697_01211584607.wav b/datasets/openslr_yoruba/yof_09697_01211584607.wav new file mode 100644 index 0000000000000000000000000000000000000000..58ac1503b55bf2413b57ce8da63954fcf527305d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01211584607.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea1ae682f56faeb412d9d198a23c777a8a70bc9968f34e26dd6d1f74c901b6a +size 376876 diff --git a/datasets/openslr_yoruba/yof_09697_01224282079.wav b/datasets/openslr_yoruba/yof_09697_01224282079.wav new file mode 100644 index 0000000000000000000000000000000000000000..59459ad36740f262f8bdb3960470f0cf694dd3dd --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01224282079.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053394acfb7828950ae8c3e5b8e53a4a2194300da3ff2da3d00165f36ab8b0f6 +size 409644 diff --git a/datasets/openslr_yoruba/yof_09697_01250179382.wav b/datasets/openslr_yoruba/yof_09697_01250179382.wav new file mode 100644 index 0000000000000000000000000000000000000000..14eaf23d81333ea2967a68ad8a9f060054d74285 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01250179382.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd7f61a72eb05421e8e8868ec4813730f620876465b02562cf1ed8872048a9ad +size 434220 diff --git a/datasets/openslr_yoruba/yof_09697_01329742974.wav b/datasets/openslr_yoruba/yof_09697_01329742974.wav new file mode 100644 index 0000000000000000000000000000000000000000..d888157fafcc3ce00efdb32742011cf296b0cb22 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01329742974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2829c26a51072ff7789e68cd43c895f355f35e68bbd4b4c07b677f2762ad8ad0 +size 294956 diff --git a/datasets/openslr_yoruba/yof_09697_01341240274.wav b/datasets/openslr_yoruba/yof_09697_01341240274.wav new file mode 100644 index 0000000000000000000000000000000000000000..f01de0f2b6db694ba8b173343547401ceac52d67 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01341240274.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec638395752c6ea393d2b66975ade20245320765c6b81d755c636ea1eaa207c3 +size 213036 diff --git a/datasets/openslr_yoruba/yof_09697_01342949732.wav b/datasets/openslr_yoruba/yof_09697_01342949732.wav new file mode 100644 index 0000000000000000000000000000000000000000..8fc3e89b0445e5a2a023524030f6a7764ddfbe37 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01342949732.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9033d87aa2df3c30f066de6c2592e165fb10d21826ddc8792edfceedaad0a8b5 +size 352300 diff --git a/datasets/openslr_yoruba/yof_09697_01367652327.wav b/datasets/openslr_yoruba/yof_09697_01367652327.wav new file mode 100644 index 0000000000000000000000000000000000000000..994164e74c0477e3e44cabf37a1ce08f92db3486 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01367652327.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7eedeb6cfffb086fd21cb6fb44398a59b9821a93321340d2a73c80db2b127d3 +size 434220 diff --git a/datasets/openslr_yoruba/yof_09697_01447898899.wav b/datasets/openslr_yoruba/yof_09697_01447898899.wav new file mode 100644 index 0000000000000000000000000000000000000000..6528751b48c014fe1deb1d6f1d8e2d65de136b59 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01447898899.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb70757a722bfee1e404a6e018599cef118aa828eaac0c9bdd176c5226baace +size 442412 diff --git a/datasets/openslr_yoruba/yof_09697_01448984055.wav b/datasets/openslr_yoruba/yof_09697_01448984055.wav new file mode 100644 index 0000000000000000000000000000000000000000..3105d49403dcfef10f37711adb76a5c47c60dea4 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01448984055.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3771f0469b08b8ce2640e2704f52816c2886719f876d19c66fb09ce0ceef46 +size 516140 diff --git a/datasets/openslr_yoruba/yof_09697_01488879069.wav b/datasets/openslr_yoruba/yof_09697_01488879069.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d444dca6c9ab199b555b87da2d5719677ad3e4c --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01488879069.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781e802cefe79789e30564d961d61c53df26cd78962e0c0f55d253e9d6d88b2a +size 507948 diff --git a/datasets/openslr_yoruba/yof_09697_01494581564.wav b/datasets/openslr_yoruba/yof_09697_01494581564.wav new file mode 100644 index 0000000000000000000000000000000000000000..79ffc7ee486afc0621e94132f709d528bb710d85 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01494581564.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7801971e117a3a8091824ab7fe45691ffbc0e28366c0b2784f03c5950d3ffafd +size 368684 diff --git a/datasets/openslr_yoruba/yof_09697_01579379365.wav b/datasets/openslr_yoruba/yof_09697_01579379365.wav new file mode 100644 index 0000000000000000000000000000000000000000..d08f5caacd1361a5636bedd11882af8a65db0d53 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01579379365.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbbcea2cb853a3b32e55bc18e30fe526ec42d0e350be6557a120b52b4280550 +size 294956 diff --git a/datasets/openslr_yoruba/yof_09697_01585170417.wav b/datasets/openslr_yoruba/yof_09697_01585170417.wav new file mode 100644 index 0000000000000000000000000000000000000000..49fdca9ce4d83c311d43c42227ebe2d2130803a7 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01585170417.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b041dd11ea208df75932c2c79ddc7f4b2d4519816ac2527029fb72b7d9223f19 +size 507948 diff --git a/datasets/openslr_yoruba/yof_09697_01599872597.wav b/datasets/openslr_yoruba/yof_09697_01599872597.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d599d627561532a05385c1feb71cfa436836658 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01599872597.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2864492940c8a8b7d6d388399351a171ef2a4a66002541a8c8476fca991dc46e +size 409644 diff --git a/datasets/openslr_yoruba/yof_09697_01606259657.wav b/datasets/openslr_yoruba/yof_09697_01606259657.wav new file mode 100644 index 0000000000000000000000000000000000000000..14ca3ad8aaccb5cd5227a1619fd7136b8d85cc67 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01606259657.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7c5555a6afd5f2c6647b9a300901c0dfbb8b064e4ee90d2e659b9122852d1f +size 294956 diff --git a/datasets/openslr_yoruba/yof_09697_01619753437.wav b/datasets/openslr_yoruba/yof_09697_01619753437.wav new file mode 100644 index 0000000000000000000000000000000000000000..abd546786d2c91a5587ddeb618fce0672ddfed5a --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01619753437.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733b8a275fe7623fc8b0d6b9f7315d2ff743cf995114e3c49ea3695159e4291c +size 548908 diff --git a/datasets/openslr_yoruba/yof_09697_01656476329.wav b/datasets/openslr_yoruba/yof_09697_01656476329.wav new file mode 100644 index 0000000000000000000000000000000000000000..430a08485fb60cca5e298e56cbc4350fe0f881d8 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01656476329.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e330ae278d86bbd5bb939b66d65c7cd9c790f33db4609aaf8e00963b4a6e7c5 +size 303148 diff --git a/datasets/openslr_yoruba/yof_09697_01666849818.wav b/datasets/openslr_yoruba/yof_09697_01666849818.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7390451edae226515c6d7bb30960f3abafabee1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01666849818.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881fc9450764cc79194d67204d30cfe2afd2baf66b52b29498e5c10e7d01d3a5 +size 761900 diff --git a/datasets/openslr_yoruba/yof_09697_01676277070.wav b/datasets/openslr_yoruba/yof_09697_01676277070.wav new file mode 100644 index 0000000000000000000000000000000000000000..e245e53c8f0bef48bb8086bb9dc5d9d0a0cee7db --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01676277070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b89475966e5bba814cdf0fd5c7bd25c6d843c366e30a4c5bf4092088314af9 +size 368684 diff --git a/datasets/openslr_yoruba/yof_09697_01718030135.wav b/datasets/openslr_yoruba/yof_09697_01718030135.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7b89373f0e787aa13e3aa4f472ffcfb3691d996 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01718030135.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81a1289a7325f9311c3999b6a8fd827064f523813b4f0cf036f0974ddb3afb4 +size 319532 diff --git a/datasets/openslr_yoruba/yof_09697_01757038540.wav b/datasets/openslr_yoruba/yof_09697_01757038540.wav new file mode 100644 index 0000000000000000000000000000000000000000..155b7b133db4d70c3132bbf6e4dd02807bb1bf1c --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01757038540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df35f9dac2d068f2ca0fef2f961b07ba8d689d0ae73869cc2da3459d0f86f2b +size 278572 diff --git a/datasets/openslr_yoruba/yof_09697_01759056954.wav b/datasets/openslr_yoruba/yof_09697_01759056954.wav new file mode 100644 index 0000000000000000000000000000000000000000..c417febc181b6863dadefe3d829d7125620cfeb1 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01759056954.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51266a7630f334184027a46bd30c24e55ad7f102212f3e905e45284e75dda474 +size 319532 diff --git a/datasets/openslr_yoruba/yof_09697_01761752989.wav b/datasets/openslr_yoruba/yof_09697_01761752989.wav new file mode 100644 index 0000000000000000000000000000000000000000..a0caed014e668e6ba10983d3a596532d546de0ce --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01761752989.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8f98826befd2ec915e7e94bbc464d21f3a3ba8f74d4caabcecc2e2cddafa2a +size 303148 diff --git a/datasets/openslr_yoruba/yof_09697_01779031125.wav b/datasets/openslr_yoruba/yof_09697_01779031125.wav new file mode 100644 index 0000000000000000000000000000000000000000..1fe36cf84f0d3d5186e1027939f24e646f21523f --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01779031125.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58383cfbb97da2a1d83dee17c18d0f06f89a37a03e050f9d137f9f245349e78 +size 466988 diff --git a/datasets/openslr_yoruba/yof_09697_01849583210.wav b/datasets/openslr_yoruba/yof_09697_01849583210.wav new file mode 100644 index 0000000000000000000000000000000000000000..a0c37112de9a9cce6836de6cc96cdc31dc66d5ae --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01849583210.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d19ef244e911a3ee5154d43ac72fc71a5d9e0f4f8eae5800b14208176bd2ab2 +size 434220 diff --git a/datasets/openslr_yoruba/yof_09697_01853091173.wav b/datasets/openslr_yoruba/yof_09697_01853091173.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d570b6a5546442f680555f7934f0dfa785e93ca --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01853091173.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ba5d24a1012f74af4f65c97328918d5e416a6fd3474758cd4d7fd0b1cd2a97 +size 524332 diff --git a/datasets/openslr_yoruba/yof_09697_01859571407.wav b/datasets/openslr_yoruba/yof_09697_01859571407.wav new file mode 100644 index 0000000000000000000000000000000000000000..9dd6fef8b7e3032c3f062d67c4a0cec8d980f368 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01859571407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af71fe3d04f9e1da25fd7232a0acbf1147706f6fa31e33b855f7024d3caee3ee +size 237612 diff --git a/datasets/openslr_yoruba/yof_09697_01879002417.wav b/datasets/openslr_yoruba/yof_09697_01879002417.wav new file mode 100644 index 0000000000000000000000000000000000000000..02f874871d8bd32a147b74575e511c6ce207c724 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01879002417.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbcf2a548c521fa6df1a0134e81ca38a670f50c8269f15238b8c540f1f136fc +size 229420 diff --git a/datasets/openslr_yoruba/yof_09697_01891290845.wav b/datasets/openslr_yoruba/yof_09697_01891290845.wav new file mode 100644 index 0000000000000000000000000000000000000000..9bf8271d765225d1847e928a3fdfe19460ade4ad --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01891290845.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d906137282e4f8b0749dd64aa673436b03411accf1b525c4631518fb5f25e472 +size 303148 diff --git a/datasets/openslr_yoruba/yof_09697_01906894462.wav b/datasets/openslr_yoruba/yof_09697_01906894462.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce2ccac2202dc44c7b521543f42d64b3d52a30fc --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01906894462.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e27b6bd1a47e7ac18ad0a31d6aef0e9d09b28c14ff238eac0cd348c3df92d27 +size 311340 diff --git a/datasets/openslr_yoruba/yof_09697_01955426968.wav b/datasets/openslr_yoruba/yof_09697_01955426968.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d1683a106c0ec4419dce7d512eab50824786962 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01955426968.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd0fdc6f228706c23b4f4c5f8941f0ced5dff2682ef33f9114427ab4693f4c7 +size 344108 diff --git a/datasets/openslr_yoruba/yof_09697_01957963974.wav b/datasets/openslr_yoruba/yof_09697_01957963974.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e91b514779bef19ed585c6bb22e1dcc22fed75e --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01957963974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d77d50dd8b7fcf4bc829f328adbdfc92a981bd212d85b1b7eaa3782d6440e2 +size 761900 diff --git a/datasets/openslr_yoruba/yof_09697_01968734524.wav b/datasets/openslr_yoruba/yof_09697_01968734524.wav new file mode 100644 index 0000000000000000000000000000000000000000..2da1ff65b6598eb9b16e000eadf37ce7070b76b3 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01968734524.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d503524b1920a15e3575e51619cae1c06eb0c64359a3b4109c6128236eaf9b +size 581676 diff --git a/datasets/openslr_yoruba/yof_09697_01976051974.wav b/datasets/openslr_yoruba/yof_09697_01976051974.wav new file mode 100644 index 0000000000000000000000000000000000000000..27013d0a0d07f14cc1ac6f77b467648f68db35fb --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_01976051974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:824322ad6266948fe65675f1d2928f7ba7258649d61c66a622404f2a2adb76d1 +size 344108 diff --git a/datasets/openslr_yoruba/yof_09697_02052857083.wav b/datasets/openslr_yoruba/yof_09697_02052857083.wav new file mode 100644 index 0000000000000000000000000000000000000000..f54710e1921dcdbbb359b673cd91b0b9578b8c82 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_02052857083.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fae2599f438727b54ac8e2fad5b065a1fa11891e35bf9c3b56cc9ee17633465 +size 393260 diff --git a/datasets/openslr_yoruba/yof_09697_02067085904.wav b/datasets/openslr_yoruba/yof_09697_02067085904.wav new file mode 100644 index 0000000000000000000000000000000000000000..d41e7142146dde8af6954743f7fcadb4bb8f9e94 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_02067085904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df43fe6195cf1445e7566229d7dcd5cd42d5f4f8040e178c493931f9495c44d0 +size 417836 diff --git a/datasets/openslr_yoruba/yof_09697_02104807819.wav b/datasets/openslr_yoruba/yof_09697_02104807819.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec7d4b7b045f17d0801549b2a8bc3a1a2edd718d --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_02104807819.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4bed958feb03e92ed648849994b5fe3a3957bade6bf373f89f6db3c4e38670 +size 286764 diff --git a/datasets/openslr_yoruba/yof_09697_02108739293.wav b/datasets/openslr_yoruba/yof_09697_02108739293.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c106a6c1256719f76c06c6b0e7f3b0fbc15859b --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_02108739293.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68229d4f8722712172fec6bdb7e07488be89198b569f173f5e0ffd4c403c27c1 +size 368684 diff --git a/datasets/openslr_yoruba/yof_09697_02140218167.wav b/datasets/openslr_yoruba/yof_09697_02140218167.wav new file mode 100644 index 0000000000000000000000000000000000000000..573253ed63fb65c9808f09153e0445a7a5b5c801 --- /dev/null +++ b/datasets/openslr_yoruba/yof_09697_02140218167.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c6ada39ca95121e55b70520c63cf5c74c4c8e95b0579ff149e5664c87f18f7 +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_00012717311.wav b/datasets/openslr_yoruba/yom_00295_00012717311.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e6105adfd5401d262d374f4bcbd0c9354204ed8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00012717311.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99978b201b163b339ccabb4337e0d082e7d5d0faae0fb501d1456356e942abcd +size 368684 diff --git a/datasets/openslr_yoruba/yom_00295_00031013716.wav b/datasets/openslr_yoruba/yom_00295_00031013716.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca6271f054e55a0c3093e5891e801d262565435f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00031013716.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2483d5c1ad61b09ef5024c3d27d602cc8de955f37e44c04c896d780369617a18 +size 622636 diff --git a/datasets/openslr_yoruba/yom_00295_00034835661.wav b/datasets/openslr_yoruba/yom_00295_00034835661.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9eec01d595a73514f2fa01413bf7d741ccde963 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00034835661.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7276706dfdd5b55fd03415e1da781fb0200a02c01c3caf807335588cb8487ac +size 204844 diff --git a/datasets/openslr_yoruba/yom_00295_00054866397.wav b/datasets/openslr_yoruba/yom_00295_00054866397.wav new file mode 100644 index 0000000000000000000000000000000000000000..c05c1d3a14193de4080cb13ccf3fe3c240fb0768 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00054866397.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff511957eb05bba20b2ad37dd02aeedf7318233ebfc198e1541a22c9e322a1d +size 401452 diff --git a/datasets/openslr_yoruba/yom_00295_00062289378.wav b/datasets/openslr_yoruba/yom_00295_00062289378.wav new file mode 100644 index 0000000000000000000000000000000000000000..88d6ca9602a9684b7a78bbc9ae45425dd39c9a8a --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00062289378.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052f90118fa219442a37ce4f7d78480796ffde7ab158695a790fbd51c209d0d9 +size 327724 diff --git a/datasets/openslr_yoruba/yom_00295_00068075043.wav b/datasets/openslr_yoruba/yom_00295_00068075043.wav new file mode 100644 index 0000000000000000000000000000000000000000..0bdf6001e0fd7b4312802b5648ddba63e1419e81 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00068075043.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282a6e961d12439bb056de2bd1e4a1ddeef2db28c82766fcc796f6deff09f798 +size 581676 diff --git a/datasets/openslr_yoruba/yom_00295_00099754894.wav b/datasets/openslr_yoruba/yom_00295_00099754894.wav new file mode 100644 index 0000000000000000000000000000000000000000..9cdf738665bf5d38000b6f8655849f62d3ed95f4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00099754894.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc30e3850fc86febae9c5f640d66caf2a0d4c2b9de70dfb513d4b29caa1475a7 +size 540716 diff --git a/datasets/openslr_yoruba/yom_00295_00110014835.wav b/datasets/openslr_yoruba/yom_00295_00110014835.wav new file mode 100644 index 0000000000000000000000000000000000000000..18bbedea93d71468cbba646f9d5babf90e147bb7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00110014835.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ff18182c0a856e0d2136bbd7dbc4d68c4fc8204368ef22ad6640afa00f568f +size 262188 diff --git a/datasets/openslr_yoruba/yom_00295_00111480369.wav b/datasets/openslr_yoruba/yom_00295_00111480369.wav new file mode 100644 index 0000000000000000000000000000000000000000..66ea3858bb4ae0bfe09a4d1305f40b0d8190b846 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00111480369.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c85515ff069b9cd361498af05ebd0b71696443363d8e6e076f9abbc5f4014c8 +size 270380 diff --git a/datasets/openslr_yoruba/yom_00295_00169173375.wav b/datasets/openslr_yoruba/yom_00295_00169173375.wav new file mode 100644 index 0000000000000000000000000000000000000000..bfa862f12d18d650df5b49bd1d33190eea77027d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00169173375.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0074c9b9c2a78b1d17453f624a7e03c3eefeee9781bfef4ba76a62b763f2150 +size 622636 diff --git a/datasets/openslr_yoruba/yom_00295_00180834323.wav b/datasets/openslr_yoruba/yom_00295_00180834323.wav new file mode 100644 index 0000000000000000000000000000000000000000..64cc378d3e37f746c89b0b1b14d8eb19c5329693 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00180834323.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea97e2f589df643ee88453c53067fc6b84f4c23b348330e67bdbfe6ab73e2ae1 +size 393260 diff --git a/datasets/openslr_yoruba/yom_00295_00195528151.wav b/datasets/openslr_yoruba/yom_00295_00195528151.wav new file mode 100644 index 0000000000000000000000000000000000000000..60e95a173a76f1ee656f421f04112fed7f409f28 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00195528151.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0025596719a9ac69bfff9263149eb6e4314d63299365e4936c723cc0e121c127 +size 213036 diff --git a/datasets/openslr_yoruba/yom_00295_00211433715.wav b/datasets/openslr_yoruba/yom_00295_00211433715.wav new file mode 100644 index 0000000000000000000000000000000000000000..52cd1048e51dcb66b7e62659774b58127535ce53 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00211433715.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7699f505db19db099c316cbd8654a950bb426846c86b14b3ae2d379f3216293f +size 622636 diff --git a/datasets/openslr_yoruba/yom_00295_00220077901.wav b/datasets/openslr_yoruba/yom_00295_00220077901.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7ccef774ec89819457bf176a957a36f55922bde --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00220077901.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7963e79194719e020c30611dae2ed6ef121f9c8e5bdf59718e8946fd793e428e +size 524332 diff --git a/datasets/openslr_yoruba/yom_00295_00251722977.wav b/datasets/openslr_yoruba/yom_00295_00251722977.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f2f5aab241bb56e2ae2441572fe980f79c87028 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00251722977.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d7e631a349e7fb630d4efef2f267ee1be5ef29d958c2516ec2b518de7f559b +size 360492 diff --git a/datasets/openslr_yoruba/yom_00295_00262443531.wav b/datasets/openslr_yoruba/yom_00295_00262443531.wav new file mode 100644 index 0000000000000000000000000000000000000000..a25fb4dd9bb92b58ab77cbe8c234280b302911b0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00262443531.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2165fef5370e6280b34949c68b9e1177a10e47ee1c99bf93d87b556bac50043d +size 385068 diff --git a/datasets/openslr_yoruba/yom_00295_00263338725.wav b/datasets/openslr_yoruba/yom_00295_00263338725.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5cfe04a5c5c6139e03205872b8d7acff0968fd4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00263338725.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67515802b2da4a8e387771fe02ca4bddefdd2c55b4e3198d83d772f8e0a2ba1c +size 294956 diff --git a/datasets/openslr_yoruba/yom_00295_00275172322.wav b/datasets/openslr_yoruba/yom_00295_00275172322.wav new file mode 100644 index 0000000000000000000000000000000000000000..b7fb8e08acdbeef956e4f4b1258917e80244d2ae --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00275172322.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f8fd291191aba5712ca6e1f5e441848a32170b0d7521ca5e12dd09f0b77045 +size 188460 diff --git a/datasets/openslr_yoruba/yom_00295_00318803215.wav b/datasets/openslr_yoruba/yom_00295_00318803215.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd7c96dca608a11f96c2104566e617afc55e3eb5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00318803215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296b73b6f044c998daf2b5fe8f29c4f2ac2af85a070d801bf76cfcb12fa13e4c +size 352300 diff --git a/datasets/openslr_yoruba/yom_00295_00336522760.wav b/datasets/openslr_yoruba/yom_00295_00336522760.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5ecbad90b70c5f4dc583cd41103b3ef68ccfdc8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00336522760.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bddd8632138d6959b12fa1fbc6dc19dbbe175cecebd2101409dca9970e68652c +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_00358190062.wav b/datasets/openslr_yoruba/yom_00295_00358190062.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a9aff94f82dccfc822380b8464467b5b7d577b0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00358190062.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e3bb5dca6e531b4c7f14afb90e8d6bbcb8f67e6c1816299ddd001fc618ed05 +size 327724 diff --git a/datasets/openslr_yoruba/yom_00295_00377411334.wav b/datasets/openslr_yoruba/yom_00295_00377411334.wav new file mode 100644 index 0000000000000000000000000000000000000000..c41d31cba82cca86c8622b2d474bbce2e307358b --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00377411334.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59ff60730012c665264820a77e0f6e142a63e6948524090da4fa49d1bccfe7c +size 376876 diff --git a/datasets/openslr_yoruba/yom_00295_00399949848.wav b/datasets/openslr_yoruba/yom_00295_00399949848.wav new file mode 100644 index 0000000000000000000000000000000000000000..012382ab1b50a7e2525723d7a314baacd1e46fce --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00399949848.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ed1d16576071e52b8abe4abe588c265442eafc4c9141ae924ee4048e218699 +size 376876 diff --git a/datasets/openslr_yoruba/yom_00295_00428773031.wav b/datasets/openslr_yoruba/yom_00295_00428773031.wav new file mode 100644 index 0000000000000000000000000000000000000000..438231e1c848b74d74c746f346f6f179c0b1d099 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00428773031.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce76c282518385a1d649c3ce68086998dce6869808dbb95221c890f5c62d317 +size 270380 diff --git a/datasets/openslr_yoruba/yom_00295_00439317932.wav b/datasets/openslr_yoruba/yom_00295_00439317932.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a76cf4bcaac40164bed2bae94e2fe1acb08a40c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00439317932.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fc7af6c6869ffd087f22c2afb5c30d926ccf5ddefb7333953f0620a01bbfae +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_00543855072.wav b/datasets/openslr_yoruba/yom_00295_00543855072.wav new file mode 100644 index 0000000000000000000000000000000000000000..79196c38712162be4c7eea319f98432bb1f6d0b4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00543855072.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0086e148475902486d1722f8578ac09fc9913bfd7fd3df437dd5e6f33f4fb665 +size 253996 diff --git a/datasets/openslr_yoruba/yom_00295_00548509757.wav b/datasets/openslr_yoruba/yom_00295_00548509757.wav new file mode 100644 index 0000000000000000000000000000000000000000..08831836700140bd04df38b53323bc7da2010bac --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00548509757.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add6799fc8e896ed68410d80aa44aa6f1a3860c0fa3de3ad1785acb072ca404b +size 507948 diff --git a/datasets/openslr_yoruba/yom_00295_00581377590.wav b/datasets/openslr_yoruba/yom_00295_00581377590.wav new file mode 100644 index 0000000000000000000000000000000000000000..0fe6017ad4e8d4e4625ef2f5727c340bc5499d1d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00581377590.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8b0a2b5d39ed22efb63f79f29a98dc649fb40f9900cea547e697a06fe36022 +size 311340 diff --git a/datasets/openslr_yoruba/yom_00295_00597850178.wav b/datasets/openslr_yoruba/yom_00295_00597850178.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d4574a58ddf73ed6381a9016fb6ccf14f3cb16a --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00597850178.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae91f61e5758a1e00c9ad3e3b8a9b479d149584494f6051bf08c9b49b668a848 +size 753708 diff --git a/datasets/openslr_yoruba/yom_00295_00625392818.wav b/datasets/openslr_yoruba/yom_00295_00625392818.wav new file mode 100644 index 0000000000000000000000000000000000000000..190e879c59c4d18b047eb32036631d66f5240eda --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00625392818.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2009e6f56d7dd92851193efa54a3afb20fe8b8f2c23143cad5b716560cfe3a0b +size 253996 diff --git a/datasets/openslr_yoruba/yom_00295_00666649904.wav b/datasets/openslr_yoruba/yom_00295_00666649904.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b77052aec29bd637132fa8bf25e9918efb97b0d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00666649904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941bfa7137888a7537cdfec654bc7f4b015f656dfb7d7d65354d47157ccf041e +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_00677272420.wav b/datasets/openslr_yoruba/yom_00295_00677272420.wav new file mode 100644 index 0000000000000000000000000000000000000000..327e87c9a2165ca3f40d4100fc9e3463ec24ad7d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00677272420.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51ae2e45c130db51bb9f944b3c3311cde8333e7084c79a8adf18b3bb733d54c +size 786476 diff --git a/datasets/openslr_yoruba/yom_00295_00700005909.wav b/datasets/openslr_yoruba/yom_00295_00700005909.wav new file mode 100644 index 0000000000000000000000000000000000000000..986da381c6dc77d5a6f36b7505fc20768d6b0329 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00700005909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531f8c5f7ed797d1684bf5fcfa993f207e0446b1e767868f581e7bd69e3f28cf +size 745516 diff --git a/datasets/openslr_yoruba/yom_00295_00721744525.wav b/datasets/openslr_yoruba/yom_00295_00721744525.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ab9ec31790f1a0f1473a120504a02479d7c994e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00721744525.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84180c209fd80c8873957d1f46dcc36d2a61e0314a32ae9082642d307c5ccf61 +size 344108 diff --git a/datasets/openslr_yoruba/yom_00295_00724947800.wav b/datasets/openslr_yoruba/yom_00295_00724947800.wav new file mode 100644 index 0000000000000000000000000000000000000000..a08b005ef4221683e234d2bf2898da400af16ebe --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00724947800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f85323261520e9e1a7af8716ec9d7936d46827d6e4156f4e7f015f3f439603 +size 548908 diff --git a/datasets/openslr_yoruba/yom_00295_00725663214.wav b/datasets/openslr_yoruba/yom_00295_00725663214.wav new file mode 100644 index 0000000000000000000000000000000000000000..f90a15fc0cd4c5a548cd34cc8b3fbb973841aec3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00725663214.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299e440d1310aa87346050414b8b0d74c48cbf9015ace983756f0a5ab9024452 +size 426028 diff --git a/datasets/openslr_yoruba/yom_00295_00734378792.wav b/datasets/openslr_yoruba/yom_00295_00734378792.wav new file mode 100644 index 0000000000000000000000000000000000000000..52bfac952a80314b2c0577967eaf9c885d4a1474 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00734378792.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef03e9430888a8149e91eddb8c2a54f0026b9bfee43613863e6f8a30b8e6f7dd +size 286764 diff --git a/datasets/openslr_yoruba/yom_00295_00772891661.wav b/datasets/openslr_yoruba/yom_00295_00772891661.wav new file mode 100644 index 0000000000000000000000000000000000000000..db64c221512c2869082e51e390d8a0a46adc428d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00772891661.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5255e50657cf549ed50894de84991db516b7f26d8932a341b52ed6ee7af5fb26 +size 327724 diff --git a/datasets/openslr_yoruba/yom_00295_00794779003.wav b/datasets/openslr_yoruba/yom_00295_00794779003.wav new file mode 100644 index 0000000000000000000000000000000000000000..2485a0444217c1452f7a004e9c71e8100e88e4e9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00794779003.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:352d630b857d1cf0e22a094122b0472c52dea595f358ae41ef674e7e0df33672 +size 368684 diff --git a/datasets/openslr_yoruba/yom_00295_00803217198.wav b/datasets/openslr_yoruba/yom_00295_00803217198.wav new file mode 100644 index 0000000000000000000000000000000000000000..ddbea8fce1d9023d2d1072d1a7d23c15717e3a29 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00803217198.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b632473bded349fd1d15a5fe4a86a1ad8b732a7d26dbb6c5ceec1dfe941124 +size 860204 diff --git a/datasets/openslr_yoruba/yom_00295_00858153167.wav b/datasets/openslr_yoruba/yom_00295_00858153167.wav new file mode 100644 index 0000000000000000000000000000000000000000..82630f77f894fbef4eb67ecd1068ea6fa92e65f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00858153167.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00365df69bc25e2a4cc19ab656f02155c755ea8268a8a0c735edf363f7daee0d +size 180268 diff --git a/datasets/openslr_yoruba/yom_00295_00862359161.wav b/datasets/openslr_yoruba/yom_00295_00862359161.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1cb6870a7a2c532091d6144d1f676280caf531f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00862359161.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b255c28df4da5fe3bf39fe637e197714fcf4431ddb2c56691ffa2267e336c039 +size 401452 diff --git a/datasets/openslr_yoruba/yom_00295_00868709560.wav b/datasets/openslr_yoruba/yom_00295_00868709560.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca35f9704e3ab966e8b3a48fa7240bd731cf7523 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00868709560.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92fb54413b8a6c6356e17ba082286b9f1be7ebea0a9bfb85f1ef9c26154c5746 +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_00873388232.wav b/datasets/openslr_yoruba/yom_00295_00873388232.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ab543735ca16ea71d4fce4a5b4950eafc8e1c79 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00873388232.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ef0b2a0d1fec699f42faf2e6b62c48f8f0cc2a8645e6fd5a938dd7e7b211abe +size 499756 diff --git a/datasets/openslr_yoruba/yom_00295_00884439196.wav b/datasets/openslr_yoruba/yom_00295_00884439196.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2db85d754a6db7209f718e8e99d9a93b78e9d06 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00884439196.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f201f702c6fed0618d6328feff2fa97e60d6e19412ea24f9b24e00dd18a80fc3 +size 245804 diff --git a/datasets/openslr_yoruba/yom_00295_00896983271.wav b/datasets/openslr_yoruba/yom_00295_00896983271.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3461c308cad40a8c193ba68f618ee12fc084cde --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00896983271.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab80e32f2ca48d42b8e809a9b2eac5d7c0966ad1b171a5a53cfd934b6bb14e9 +size 303148 diff --git a/datasets/openslr_yoruba/yom_00295_00922485420.wav b/datasets/openslr_yoruba/yom_00295_00922485420.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ddb73927efdb1b74cfcdf2dfa40fabc8071ed1e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00922485420.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770f1a5cf8100bc294d9fa9914651955605eb98e6a74e7380baed6f67c402809 +size 262188 diff --git a/datasets/openslr_yoruba/yom_00295_00940187494.wav b/datasets/openslr_yoruba/yom_00295_00940187494.wav new file mode 100644 index 0000000000000000000000000000000000000000..126676563aa27f2a101f27dcd8e44cd0048f4796 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00940187494.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8da7b090aa8456f938d44945e1946beb73e48960ce74dd1be6094db5d300e7c +size 311340 diff --git a/datasets/openslr_yoruba/yom_00295_00943694618.wav b/datasets/openslr_yoruba/yom_00295_00943694618.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cee59e63499ae96fd2e2e260adecc57c8d9738e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00943694618.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017c9168215910c444440c56e1f1b7fa08916e286af6c6441b2d671a47ec999a +size 335916 diff --git a/datasets/openslr_yoruba/yom_00295_00965293189.wav b/datasets/openslr_yoruba/yom_00295_00965293189.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b2e9572bd25521bbba8a6dbe720497b939a74d8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00965293189.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cc464c6156dc395df117261d5783a232984763108a3deae5d1b588fc381fc0 +size 253996 diff --git a/datasets/openslr_yoruba/yom_00295_00973380766.wav b/datasets/openslr_yoruba/yom_00295_00973380766.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f0901898b8cab00aba222e38ed2bbb34050e35b --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00973380766.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b400dcc43e7efd9ec79177c28f778ecfffa4f337d40c1f59c76890611f224f44 +size 327724 diff --git a/datasets/openslr_yoruba/yom_00295_00996793569.wav b/datasets/openslr_yoruba/yom_00295_00996793569.wav new file mode 100644 index 0000000000000000000000000000000000000000..cee8e7c8ff537cbe45d862ca5e0d6b3f7a3c2d28 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00996793569.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29553e9c4d0fad5144d5bdfbab41ba9e32ee227bbda1d515af18312a71b88aa +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_00999748557.wav b/datasets/openslr_yoruba/yom_00295_00999748557.wav new file mode 100644 index 0000000000000000000000000000000000000000..c8e8bec3ab90ed9a8b828f7e10d8842a937b9179 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_00999748557.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68e54052d52268e051e695d0df1b2808542c1e02ace09b7a67fb4a798a0c690 +size 368684 diff --git a/datasets/openslr_yoruba/yom_00295_01009533577.wav b/datasets/openslr_yoruba/yom_00295_01009533577.wav new file mode 100644 index 0000000000000000000000000000000000000000..79fc798e5becf354e20651cb4078ec85f0035e1c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01009533577.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287baa4361415ed3fa48f7f35355cf5b141aa654998a0e737cc07decfd88bd05 +size 647212 diff --git a/datasets/openslr_yoruba/yom_00295_01030152059.wav b/datasets/openslr_yoruba/yom_00295_01030152059.wav new file mode 100644 index 0000000000000000000000000000000000000000..f45de7b76d6fb4c711a41341721cdca6b9695620 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01030152059.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79974015134fe9977d51150e3b1f7a88e0c44f7aeea10b7358b66006c0cda32 +size 712748 diff --git a/datasets/openslr_yoruba/yom_00295_01052693823.wav b/datasets/openslr_yoruba/yom_00295_01052693823.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec7e266b34274c93ab97e4d431a52a01ab13912a --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01052693823.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18c81e883f7c0f82471cc077e8cb9c516bcad3aa16aa4982327928d3c4bb3bd1 +size 458796 diff --git a/datasets/openslr_yoruba/yom_00295_01090465200.wav b/datasets/openslr_yoruba/yom_00295_01090465200.wav new file mode 100644 index 0000000000000000000000000000000000000000..3436fccb88c21059483d1e1ee0b0e103f092a43b --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01090465200.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c286296964e8ff32afbddfcf1d1ba58790b046ca5ffcf8b7d533ef5271f8ce0 +size 426028 diff --git a/datasets/openslr_yoruba/yom_00295_01100371474.wav b/datasets/openslr_yoruba/yom_00295_01100371474.wav new file mode 100644 index 0000000000000000000000000000000000000000..dda8909e0e9a7dd053187e2825473820d8a216ff --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01100371474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3eb70ecdf5e093346bc840cf4f9568e5c9efa827c99ca58e4c45d3c904e1c09 +size 483372 diff --git a/datasets/openslr_yoruba/yom_00295_01125120471.wav b/datasets/openslr_yoruba/yom_00295_01125120471.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bf94d0c4d7b2566d2027d1fcda392f745ffa7c6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01125120471.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0cc4bde611de6dbe3e055c2eeb3dbdd0a64b6db68b94c3b4b118dd17276f429 +size 598060 diff --git a/datasets/openslr_yoruba/yom_00295_01149569587.wav b/datasets/openslr_yoruba/yom_00295_01149569587.wav new file mode 100644 index 0000000000000000000000000000000000000000..79c2948781804715c7081f2e86e63259ba246857 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01149569587.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de4d53351aec89802108afa1cc8e8bded16e955cad0aae5a8cd072dce0491f5 +size 516140 diff --git a/datasets/openslr_yoruba/yom_00295_01230133341.wav b/datasets/openslr_yoruba/yom_00295_01230133341.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c65d7ec61f9626631db060f73bf69f5d6139fea --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01230133341.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f4656cdfce1c43034873fd2be52ac391b74a0d4fbe203961f44fc815c2dded +size 811052 diff --git a/datasets/openslr_yoruba/yom_00295_01260038205.wav b/datasets/openslr_yoruba/yom_00295_01260038205.wav new file mode 100644 index 0000000000000000000000000000000000000000..8022a589d985073a713f58e4247e7b34ae949591 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01260038205.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974ac2c0ee8c06476c3690e41f61287422fb142fa60dc17e960cf8f555782d41 +size 278572 diff --git a/datasets/openslr_yoruba/yom_00295_01260639509.wav b/datasets/openslr_yoruba/yom_00295_01260639509.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf4459d214f26dc71e90059b91e456a9871d228b --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01260639509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1e93307e09a1e797428157a9538a73ce8503f06e84c15c0fbb1a5851ff27d6 +size 245804 diff --git a/datasets/openslr_yoruba/yom_00295_01295474307.wav b/datasets/openslr_yoruba/yom_00295_01295474307.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c4a8afbec9ae9972fed9d0ba32e47a477ea455e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01295474307.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4ca865ec37f5aa887f5e99ceab8fda0e0f71f0226943bff32e452d9449c165 +size 253996 diff --git a/datasets/openslr_yoruba/yom_00295_01307538904.wav b/datasets/openslr_yoruba/yom_00295_01307538904.wav new file mode 100644 index 0000000000000000000000000000000000000000..079e1114c24b2c3f86289173e19a334459225453 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01307538904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbafb6f24b7f9a84e5540a1b88b2976bb08b1913fc49a89d141adb6f2c5cd144 +size 286764 diff --git a/datasets/openslr_yoruba/yom_00295_01309711201.wav b/datasets/openslr_yoruba/yom_00295_01309711201.wav new file mode 100644 index 0000000000000000000000000000000000000000..396cc16b7c8c5eeae62f5145da6a4cbc206238ed --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01309711201.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de18384acf5f1f05ba52832fe74493f4859343e1e8748ea1dd5ef7afb2cc172 +size 417836 diff --git a/datasets/openslr_yoruba/yom_00295_01312022545.wav b/datasets/openslr_yoruba/yom_00295_01312022545.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd7c98d325f6f7d79307bb1160489dc953e369a1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01312022545.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d1621290e199df34af0e6479e70d7cea54003b39d62b2105a480a16fbeb44b +size 270380 diff --git a/datasets/openslr_yoruba/yom_00295_01402978861.wav b/datasets/openslr_yoruba/yom_00295_01402978861.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b0d72e51a08173f50c181deec6359b40eeb2bbe --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01402978861.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7cf6723dc4bfdeda5ca2ad2adc92214b7bc90302f96d7a79e9d2408924a26d +size 335916 diff --git a/datasets/openslr_yoruba/yom_00295_01437278801.wav b/datasets/openslr_yoruba/yom_00295_01437278801.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5e54a10bab91347617fe5f8685e28328abdfdc5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01437278801.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd7a5c02eabe80828911907e76f9143ff030f690eb9878fb64a663fc85ecd71 +size 516140 diff --git a/datasets/openslr_yoruba/yom_00295_01444086181.wav b/datasets/openslr_yoruba/yom_00295_01444086181.wav new file mode 100644 index 0000000000000000000000000000000000000000..a228027b82ac4475fe3ecb3a3c6312a269abf080 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01444086181.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:192b7ebdc459c2e7246f03261575caadbf1e456aef7def9a5dbc8b2f2dab2d30 +size 417836 diff --git a/datasets/openslr_yoruba/yom_00295_01472739218.wav b/datasets/openslr_yoruba/yom_00295_01472739218.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ac13a234537525bea1e9f35b7678af4cc93935b --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01472739218.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f479239a05a8cd484f1964da7342410fd86571ab822f05e81a92da4a18c968 +size 270380 diff --git a/datasets/openslr_yoruba/yom_00295_01486802285.wav b/datasets/openslr_yoruba/yom_00295_01486802285.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec176ea7a87c6c58015b3e04edacbab7dc3d446b --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01486802285.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7c49fbfbdb206cc538330ae7bb48fe77cfdcca513313e60f4dbcf90597f0fa +size 409644 diff --git a/datasets/openslr_yoruba/yom_00295_01495670377.wav b/datasets/openslr_yoruba/yom_00295_01495670377.wav new file mode 100644 index 0000000000000000000000000000000000000000..6256e216c3989e155200929829afb18c3c69904d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01495670377.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fdeb72ed42e6cdd24768fdbf39414742a916628bbf5513f2e1acbb9b2255cc6 +size 385068 diff --git a/datasets/openslr_yoruba/yom_00295_01516697189.wav b/datasets/openslr_yoruba/yom_00295_01516697189.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9f134144c00ee7955fd29bdf36f51c565ae1d7d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01516697189.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8fafa2760e412b56c0b530e61476b90218bd6163a935e9f259fc17343315801 +size 245804 diff --git a/datasets/openslr_yoruba/yom_00295_01566713030.wav b/datasets/openslr_yoruba/yom_00295_01566713030.wav new file mode 100644 index 0000000000000000000000000000000000000000..827f8f6a2976489bc2e100727137ba7d706bc9ea --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01566713030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa92c441821080d81813c05b43fbbb2e049d0fd657b68f40d88e4c1c5e336f9 +size 286764 diff --git a/datasets/openslr_yoruba/yom_00295_01603249535.wav b/datasets/openslr_yoruba/yom_00295_01603249535.wav new file mode 100644 index 0000000000000000000000000000000000000000..1015563c2621baf943b89c1eb8b2cadedccab6f0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01603249535.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b26a8f1bd1529a4b3dfe33220681f35e6a35b08aa6c301a8d32fbcf6d80fa04 +size 294956 diff --git a/datasets/openslr_yoruba/yom_00295_01606240263.wav b/datasets/openslr_yoruba/yom_00295_01606240263.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6437c5d58345c9a9fbc7f8ba25fc275d58c84ad --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01606240263.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8052e23b37b044d4475f231500f636dbd504707e75bd707a956896efdd4175ff +size 532524 diff --git a/datasets/openslr_yoruba/yom_00295_01634346315.wav b/datasets/openslr_yoruba/yom_00295_01634346315.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e335f8a2568f0d6d0c3c8ac5fd20c43ae9ea8bc --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01634346315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e71e081f799916b86776c11527ac113daa371ad56b8e403e7c774fe0712605a +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_01636505434.wav b/datasets/openslr_yoruba/yom_00295_01636505434.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc8509f93454b448353d6c0bf1c0ffc0c23fd654 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01636505434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2512613073da2a846b9153a06ed0d18b99bea2fc869ac89d96b6891dd660394d +size 417836 diff --git a/datasets/openslr_yoruba/yom_00295_01662511646.wav b/datasets/openslr_yoruba/yom_00295_01662511646.wav new file mode 100644 index 0000000000000000000000000000000000000000..6de80554fda6e7a07ff7da30a3554a1f9054730a --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01662511646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5899b08982540ffc56bde81e79a86b2266d43ce769efbcadda9e9cea7f302233 +size 262188 diff --git a/datasets/openslr_yoruba/yom_00295_01721288413.wav b/datasets/openslr_yoruba/yom_00295_01721288413.wav new file mode 100644 index 0000000000000000000000000000000000000000..095b5ebca1b8307dd8cfded294fc3752b560041f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01721288413.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56d8bb6720ab11162e2ebaa095f4c85509dd6d6babac771327e1e36c149f2d6 +size 385068 diff --git a/datasets/openslr_yoruba/yom_00295_01759262518.wav b/datasets/openslr_yoruba/yom_00295_01759262518.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac01d49b42061e6f4199cd7ba839bf8d1e0d3a10 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01759262518.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1336440f349cdcf5ad580dbf53cfb29073f65ad43bf2aede7e6c31be640b4e40 +size 376876 diff --git a/datasets/openslr_yoruba/yom_00295_01761232169.wav b/datasets/openslr_yoruba/yom_00295_01761232169.wav new file mode 100644 index 0000000000000000000000000000000000000000..3563a75767e652453f09fe33a6c4f3920df219b5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01761232169.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10d47fde322bdf822c30ea149e320714b7533cd95893f320a08361f1e4372ce +size 221228 diff --git a/datasets/openslr_yoruba/yom_00295_01762325604.wav b/datasets/openslr_yoruba/yom_00295_01762325604.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd28c3daebc03e46c918220230075e8b85937b20 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01762325604.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5665f0a66cec8fe29dc9566ecf0c45427072b6180c71ff13b3d09bae429a81e +size 499756 diff --git a/datasets/openslr_yoruba/yom_00295_01762428209.wav b/datasets/openslr_yoruba/yom_00295_01762428209.wav new file mode 100644 index 0000000000000000000000000000000000000000..b57d4ff26c605d3fd090184ce74d5991bd035f42 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01762428209.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afe586c4f6665455c969aa904e5e37ceb72b311a984fc6860865d0bc4204965 +size 221228 diff --git a/datasets/openslr_yoruba/yom_00295_01769793281.wav b/datasets/openslr_yoruba/yom_00295_01769793281.wav new file mode 100644 index 0000000000000000000000000000000000000000..073c77a92237dc03e8b4f27facc98e3fd39a94d9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01769793281.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa4d063ab2d370a44dc9877fc471a10e6cadd1136caf9ff207a9ddd4c7e4e27 +size 319532 diff --git a/datasets/openslr_yoruba/yom_00295_01797274674.wav b/datasets/openslr_yoruba/yom_00295_01797274674.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d1572f06cf8b766a32912b11edf2cc8b2bce14f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01797274674.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c2213bba9d68049460f9352fa154396bcf281794be71525ae37580edf7780f +size 483372 diff --git a/datasets/openslr_yoruba/yom_00295_01804506403.wav b/datasets/openslr_yoruba/yom_00295_01804506403.wav new file mode 100644 index 0000000000000000000000000000000000000000..377ba9f881c612ca75d1d30cf86be01f12551449 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01804506403.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4df22135b4c2c91d5c8443a76df48a3d832323ef7be722de1073a94729a6125 +size 311340 diff --git a/datasets/openslr_yoruba/yom_00295_01808625699.wav b/datasets/openslr_yoruba/yom_00295_01808625699.wav new file mode 100644 index 0000000000000000000000000000000000000000..6378ebeac33e32e1eb113b3f7cbd563e87977271 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01808625699.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca945c279cdb6599bfb7d2d76046f4162ac393858823dfeb13dbc355a07762c2 +size 376876 diff --git a/datasets/openslr_yoruba/yom_00295_01846007335.wav b/datasets/openslr_yoruba/yom_00295_01846007335.wav new file mode 100644 index 0000000000000000000000000000000000000000..0996da01a660693d1bc30d11f48f2242906bf553 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01846007335.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:980593d3b2c1a31558ab0092809d3b896e80a06123a756156bf957ac264ca59d +size 286764 diff --git a/datasets/openslr_yoruba/yom_00295_01863644465.wav b/datasets/openslr_yoruba/yom_00295_01863644465.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ae815b4aece7121b1fe543d643d0f75cb61b83c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01863644465.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886a3c1af4778ed71256c78b5db5824776c4850420f9dd71c88d48326f87ee18 +size 327724 diff --git a/datasets/openslr_yoruba/yom_00295_01894974080.wav b/datasets/openslr_yoruba/yom_00295_01894974080.wav new file mode 100644 index 0000000000000000000000000000000000000000..049bceb8f3ac78b6686b95faf0b87b7e11fff672 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01894974080.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f9d787e16ac87f83a89f57bfa6319d7f1f552358353e7e5964b40b05760d0c +size 294956 diff --git a/datasets/openslr_yoruba/yom_00295_01975678703.wav b/datasets/openslr_yoruba/yom_00295_01975678703.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c8c6483f27a825831fbda0c2ae56b97e6fcc0b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_01975678703.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3bb0fa61e4b251c2b39c66d73b949a389462d1761350806cfdb28fedd75834 +size 245804 diff --git a/datasets/openslr_yoruba/yom_00295_02005063581.wav b/datasets/openslr_yoruba/yom_00295_02005063581.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e8af3ba72b302a204067ae3911e4d08fdb5c7ca --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_02005063581.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72b9dd2d54a968d7ddc494be05f548b9a398a3377636609a4e69d7757c0ba97 +size 671788 diff --git a/datasets/openslr_yoruba/yom_00295_02006503027.wav b/datasets/openslr_yoruba/yom_00295_02006503027.wav new file mode 100644 index 0000000000000000000000000000000000000000..7325899d15fb1d64a144163a80e0f7f5e61c7ac3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_02006503027.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c59faef074d26a3af6844c547b34cc43db98f0f54f110ccc0c1c47cf2080a7 +size 262188 diff --git a/datasets/openslr_yoruba/yom_00295_02013147966.wav b/datasets/openslr_yoruba/yom_00295_02013147966.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b6cb590665a753ad229a9022de532e58131bd2c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_02013147966.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb85c2a421da22ad1d3ba533ea6c7c025a7b29f421b7be8b6e4c85e30e9238c +size 450604 diff --git a/datasets/openslr_yoruba/yom_00295_02040290647.wav b/datasets/openslr_yoruba/yom_00295_02040290647.wav new file mode 100644 index 0000000000000000000000000000000000000000..d39d330262b80d48a5af9782a7eb5cd44e32e798 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_02040290647.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfed67f724a32589d3e9a50245bb11523b472e6face874e2d733d4c9b79f35db +size 253996 diff --git a/datasets/openslr_yoruba/yom_00295_02056888342.wav b/datasets/openslr_yoruba/yom_00295_02056888342.wav new file mode 100644 index 0000000000000000000000000000000000000000..beb07e69807d183cb0b9eba18901eedfa7605cdd --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_02056888342.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7087bfa2c86cbb71616c6e2420da5c2db69c24829a93b58b3dcfa17fb2793232 +size 524332 diff --git a/datasets/openslr_yoruba/yom_00295_02069760396.wav b/datasets/openslr_yoruba/yom_00295_02069760396.wav new file mode 100644 index 0000000000000000000000000000000000000000..3890e6a387ee02bcbc864de108690773769bdda3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_02069760396.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fabde32053fc1cafe8755a4952076ce7c24a11ac6ba930fd3e2dc7977d1ce23 +size 286764 diff --git a/datasets/openslr_yoruba/yom_00295_02097610485.wav b/datasets/openslr_yoruba/yom_00295_02097610485.wav new file mode 100644 index 0000000000000000000000000000000000000000..5201e75cd9bdc7c2ae27ccbce669ea0950cf7dd9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00295_02097610485.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cee40794365774700254828836292b44781c9ed00a2bcb668c52b0b020a97c9 +size 319532 diff --git a/datasets/openslr_yoruba/yom_00610_00005485361.wav b/datasets/openslr_yoruba/yom_00610_00005485361.wav new file mode 100644 index 0000000000000000000000000000000000000000..74d5b91cd82c8f58d7f4be341beace347d64ead2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00005485361.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ccf0453756b5ce48d2331a4b5e8cee832c4eaa6971a11b3c68fec0d821a8b36 +size 294956 diff --git a/datasets/openslr_yoruba/yom_00610_00025765484.wav b/datasets/openslr_yoruba/yom_00610_00025765484.wav new file mode 100644 index 0000000000000000000000000000000000000000..55846e2d072277d9ea47c0e6eca58889c0847561 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00025765484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b3f8562549d2be773efd72efbe564c703e5d4b2e73876b6f341e467cb2ecde +size 327724 diff --git a/datasets/openslr_yoruba/yom_00610_00048492133.wav b/datasets/openslr_yoruba/yom_00610_00048492133.wav new file mode 100644 index 0000000000000000000000000000000000000000..d139a2ad131fe1ee57c6a07c882f3af523188edb --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00048492133.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1f97b6f252f6b2373029bf1a335462156da8093584597a802c9d31955f09aa +size 655404 diff --git a/datasets/openslr_yoruba/yom_00610_00064644867.wav b/datasets/openslr_yoruba/yom_00610_00064644867.wav new file mode 100644 index 0000000000000000000000000000000000000000..c53ef4a3fce0a9b476fdc32b5e69bd364ed376d3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00064644867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b39d461d2525da3d8ef11f5ef885f9548a831b47471710baf1dbde81d22bb98 +size 688172 diff --git a/datasets/openslr_yoruba/yom_00610_00202952083.wav b/datasets/openslr_yoruba/yom_00610_00202952083.wav new file mode 100644 index 0000000000000000000000000000000000000000..90632ffb7c423ad2a228343dfd1b7f6b53facfb4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00202952083.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32b501a275de1e5c2213701c0d9ca9caeab2b6e9cfb567c735020b5e84b4855 +size 622636 diff --git a/datasets/openslr_yoruba/yom_00610_00207358726.wav b/datasets/openslr_yoruba/yom_00610_00207358726.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c6a9771e32d446b04da0253e9e23a484ff2ac03 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00207358726.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4df116193ed86455dde56916850bfba851bd0391a2f51e15dc8b5c0ca9fabc +size 385068 diff --git a/datasets/openslr_yoruba/yom_00610_00217179663.wav b/datasets/openslr_yoruba/yom_00610_00217179663.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3bf6fa6c987cbd98b59db865960238fff66c95e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00217179663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c25fbc42b5bc93357ab2e6e908cb5ad8b5d77bf96df030823207d0ad1787dda +size 319532 diff --git a/datasets/openslr_yoruba/yom_00610_00259482647.wav b/datasets/openslr_yoruba/yom_00610_00259482647.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab841798bcfbc97f8220e80703890803ade11d7c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00259482647.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8029f914062dd8d7ada5ffd06526c9521a79a24794e4972e215f9107ecc54c8f +size 589868 diff --git a/datasets/openslr_yoruba/yom_00610_00268612766.wav b/datasets/openslr_yoruba/yom_00610_00268612766.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0da5edb53f9363048b4c74a2ee5d0e961e2e58e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00268612766.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f00a1ec0e4657c3e89fcc6afb42afe697da6c44b6e24e1d608a51fe2bf9d859 +size 360492 diff --git a/datasets/openslr_yoruba/yom_00610_00272412504.wav b/datasets/openslr_yoruba/yom_00610_00272412504.wav new file mode 100644 index 0000000000000000000000000000000000000000..be52246ff5af84e61548bcf4bbab9fff970dc76a --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00272412504.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b02dbc47eae89a1523e57b2c6843fd92f7b605ba79a71e6d5014584983c3f4d +size 491564 diff --git a/datasets/openslr_yoruba/yom_00610_00278336235.wav b/datasets/openslr_yoruba/yom_00610_00278336235.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed80f81185283f0718dbca92c1a0a03890ad449c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00278336235.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7f6090f23b58c3023154e5db1a7ab2e88ec2b59ba67ac5f49a1c1e467d017a +size 639020 diff --git a/datasets/openslr_yoruba/yom_00610_00293625811.wav b/datasets/openslr_yoruba/yom_00610_00293625811.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4f8cb702746d97fe9725208db649a7d6c86c4fd --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00293625811.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896aa167ae66c19897038dc1e7e63f510b42a82fa13e05cb0fb10dcff7f06eed +size 303148 diff --git a/datasets/openslr_yoruba/yom_00610_00294361933.wav b/datasets/openslr_yoruba/yom_00610_00294361933.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f8244703b18d7beacbdf110c2e01be1cdce83af --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00294361933.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ecfea4f5d8e3c28c78b61c93038793d8b431a054562fde42ce6a9bb4c9eef1 +size 565292 diff --git a/datasets/openslr_yoruba/yom_00610_00324773543.wav b/datasets/openslr_yoruba/yom_00610_00324773543.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe01d2b0e62508d5b3a9f4638c14ebd95338e485 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00324773543.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0cbb7dceb972510e445b47d73b57bb171e79420df49a9886e54bd490a1e356 +size 450604 diff --git a/datasets/openslr_yoruba/yom_00610_00339543300.wav b/datasets/openslr_yoruba/yom_00610_00339543300.wav new file mode 100644 index 0000000000000000000000000000000000000000..28e20ba0a10b5230a1060827032d8d790eeb515e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00339543300.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a455d1820a81eac2d69d061fbe15fb9ab8b956574cb57f2b7f9ded1683d8ab3 +size 368684 diff --git a/datasets/openslr_yoruba/yom_00610_00347886994.wav b/datasets/openslr_yoruba/yom_00610_00347886994.wav new file mode 100644 index 0000000000000000000000000000000000000000..884cd535875a13fe717b26fa5de3589216ab4711 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00347886994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f5a298894abd448215bf5b85be1da7c2b809c887ea29449b95b9e028cc9fb0 +size 909356 diff --git a/datasets/openslr_yoruba/yom_00610_00350946758.wav b/datasets/openslr_yoruba/yom_00610_00350946758.wav new file mode 100644 index 0000000000000000000000000000000000000000..689abf9644344f310d0dc3e8ed50bf851ea770de --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00350946758.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93df380f5c6dc967e770b72510efc259ad2062619273ca3c8a062d1f7b57155d +size 352300 diff --git a/datasets/openslr_yoruba/yom_00610_00390435055.wav b/datasets/openslr_yoruba/yom_00610_00390435055.wav new file mode 100644 index 0000000000000000000000000000000000000000..81178faea2a2435639d5fd214c4ff244d3bd8f3e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00390435055.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd2c9c3f2fc148c2e8164d0b83df6737e35e32c516ebae76af2a7f9c20b4222 +size 442412 diff --git a/datasets/openslr_yoruba/yom_00610_00453295415.wav b/datasets/openslr_yoruba/yom_00610_00453295415.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6c65b561bef14a3cecce38cb9e8584c8c570ec0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00453295415.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a93915d5d02be658cc5d78817156ac31717f8ca44a7274a4f76830194838b88 +size 360492 diff --git a/datasets/openslr_yoruba/yom_00610_00455386315.wav b/datasets/openslr_yoruba/yom_00610_00455386315.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f42a7de6fc39dacd42f64587141333ea859a279 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00455386315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d104a625ed1cca43f7a1fc8542cc9f4b03ecaacf6025fa084b7aeb324d61484c +size 401452 diff --git a/datasets/openslr_yoruba/yom_00610_00455420976.wav b/datasets/openslr_yoruba/yom_00610_00455420976.wav new file mode 100644 index 0000000000000000000000000000000000000000..e37edeb78b593ea5f064da775ea29c7a0332580e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00455420976.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b318e919c83f00f5400118481a044fee43177435f69ff7a022d8b84584d2aa +size 286764 diff --git a/datasets/openslr_yoruba/yom_00610_00512922597.wav b/datasets/openslr_yoruba/yom_00610_00512922597.wav new file mode 100644 index 0000000000000000000000000000000000000000..6257fef9b7ad21f6ef8a56b1b2a8b51e0db8636f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00512922597.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5031d7f8418a8a4a57851ae8d84b76fe95c0fe0cd1968808d6154e776559d36 +size 294956 diff --git a/datasets/openslr_yoruba/yom_00610_00515852810.wav b/datasets/openslr_yoruba/yom_00610_00515852810.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1766d88170625f8752e47f2e2069c5e0eb11618 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00515852810.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a386267841f3b914ab5fb729196e3d230dd9c81991ced9b6afafc7e6ecfa9971 +size 385068 diff --git a/datasets/openslr_yoruba/yom_00610_00581746407.wav b/datasets/openslr_yoruba/yom_00610_00581746407.wav new file mode 100644 index 0000000000000000000000000000000000000000..21f03319c888958f0276345ab15fe5826476ae74 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00581746407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe81d716e0deeafc36106b6b653ddd5ad0f594efcd1f809b217e28b417ad4aa +size 294956 diff --git a/datasets/openslr_yoruba/yom_00610_00581757758.wav b/datasets/openslr_yoruba/yom_00610_00581757758.wav new file mode 100644 index 0000000000000000000000000000000000000000..263d6ea4da20bf627c692e9d87d656e33794aa07 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00581757758.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81fa4f7a10053af9fb7d2a71dad1898793b31059f007a8f0cddef7923efc3c50 +size 884780 diff --git a/datasets/openslr_yoruba/yom_00610_00594754355.wav b/datasets/openslr_yoruba/yom_00610_00594754355.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9d2a5fe996fdd6241ed06b347ac61c11eda81a2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00594754355.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a091cf06d96d63b8237b66aeeef82bbb0c9ebc8e78bf0fd445d6ceb1035976 +size 852012 diff --git a/datasets/openslr_yoruba/yom_00610_00704781149.wav b/datasets/openslr_yoruba/yom_00610_00704781149.wav new file mode 100644 index 0000000000000000000000000000000000000000..426f03c0f67eff0c2a2857f93b7f1afec76275d8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00704781149.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a866d702b74954abc1a9f2f9ce9f1d6ace9b6dcad2c12bc101239b903df078c1 +size 311340 diff --git a/datasets/openslr_yoruba/yom_00610_00726808973.wav b/datasets/openslr_yoruba/yom_00610_00726808973.wav new file mode 100644 index 0000000000000000000000000000000000000000..42e92cc71076b1b0b4c60f5a5c95051492ef303f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00726808973.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8fef6f5582fe4908c600c9cc395bd0bff81d6c566dfd584ce0d46d7b7ca6ecb +size 532524 diff --git a/datasets/openslr_yoruba/yom_00610_00737387534.wav b/datasets/openslr_yoruba/yom_00610_00737387534.wav new file mode 100644 index 0000000000000000000000000000000000000000..d45ccb12c121616b9d56cbb0382a87e7ecc78d7f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00737387534.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e772fcc2c547a181b71075d8ea9191c0d0551ec029dd56b06df7a8462464c5 +size 360492 diff --git a/datasets/openslr_yoruba/yom_00610_00750798937.wav b/datasets/openslr_yoruba/yom_00610_00750798937.wav new file mode 100644 index 0000000000000000000000000000000000000000..245a8e4c715f4ef5b6e4e5d15762aa214c6207c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00750798937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c9d336567b23a28a8891cbb6f1d473b5b247c8b27049353295ed34db5fc959 +size 352300 diff --git a/datasets/openslr_yoruba/yom_00610_00832012711.wav b/datasets/openslr_yoruba/yom_00610_00832012711.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f422288505b8d5f8ff4d65465e18db4d386a562 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00832012711.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32eab966a1d19f44ecfb5c6acbd1b218394fa4c4b867e11d0c7c1bb47af775a5 +size 417836 diff --git a/datasets/openslr_yoruba/yom_00610_00853828643.wav b/datasets/openslr_yoruba/yom_00610_00853828643.wav new file mode 100644 index 0000000000000000000000000000000000000000..df533a17808507393846a5bbd8fa6ad4a5552a66 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00853828643.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2700044e6812b1af830d10d9021487806bf6a8fac83266ec580a92b5c273843d +size 344108 diff --git a/datasets/openslr_yoruba/yom_00610_00861023794.wav b/datasets/openslr_yoruba/yom_00610_00861023794.wav new file mode 100644 index 0000000000000000000000000000000000000000..ccfe7d27393a9b37ba0fe5c789c750ddab705eb9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00861023794.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2eb5c6085ebcb899bd525c4a372c88188da9b315787aae9bd23f7af989ef943 +size 704556 diff --git a/datasets/openslr_yoruba/yom_00610_00868771372.wav b/datasets/openslr_yoruba/yom_00610_00868771372.wav new file mode 100644 index 0000000000000000000000000000000000000000..68a13fcd20284d423b2f93b1d180894ca5f3944a --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00868771372.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e072c2dabaa9add19ae3a2d10ed40f817fa797bf5006431b9553a91730b8ab +size 311340 diff --git a/datasets/openslr_yoruba/yom_00610_00887863353.wav b/datasets/openslr_yoruba/yom_00610_00887863353.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd69f4615d995f84b75e46e8ea50bef5059722e8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_00887863353.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c673d730f1bf77eaa1dde6f53e1abd787123caa54a7465041dc1997c8359940a +size 630828 diff --git a/datasets/openslr_yoruba/yom_00610_01008803339.wav b/datasets/openslr_yoruba/yom_00610_01008803339.wav new file mode 100644 index 0000000000000000000000000000000000000000..9fe3ff64f1ebff006e5fbba5fbb7e6cc96e9d41b --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01008803339.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:694e670efd5640bfc6e2d68cb5730c1470b355d5c8fae38336540bef6aecce78 +size 253996 diff --git a/datasets/openslr_yoruba/yom_00610_01011419110.wav b/datasets/openslr_yoruba/yom_00610_01011419110.wav new file mode 100644 index 0000000000000000000000000000000000000000..102ce7c45dcb4ff82bd6cfb0f4c2e451474c0b1d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01011419110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20e159b3e2963ea207dd89d0105ff988b09d0a688b1bf23397f0686cbbf4223 +size 311340 diff --git a/datasets/openslr_yoruba/yom_00610_01025339121.wav b/datasets/openslr_yoruba/yom_00610_01025339121.wav new file mode 100644 index 0000000000000000000000000000000000000000..ecfcd62f74b2f1bec0eede59b1a3ba271d647673 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01025339121.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510d3de68350054b3013fe3eb0f4c25325da39ce6e8eeb728bf8cd30c74cd4a3 +size 352300 diff --git a/datasets/openslr_yoruba/yom_00610_01058564775.wav b/datasets/openslr_yoruba/yom_00610_01058564775.wav new file mode 100644 index 0000000000000000000000000000000000000000..4415b0845a776339ca50c6bcee2d09fa6134ad4e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01058564775.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e60682c11850ec7a32e6d6d29f388ec0120faee2e90b4fba3f902e746f7dd21 +size 253996 diff --git a/datasets/openslr_yoruba/yom_00610_01058800129.wav b/datasets/openslr_yoruba/yom_00610_01058800129.wav new file mode 100644 index 0000000000000000000000000000000000000000..901673c022901956ea1df581b29bf34018e2aabf --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01058800129.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00a2ac71d713d61282d2da694f8584d44f2579283a79e2b86e4f61f996c2fd71 +size 557100 diff --git a/datasets/openslr_yoruba/yom_00610_01079386645.wav b/datasets/openslr_yoruba/yom_00610_01079386645.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc7f72d88d1396910f05963264508352bf9a41f8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01079386645.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b46dd49e4982df12e640419e2f7a8cd7a14d8d4c8653bca284cc15dd1421a5 +size 270380 diff --git a/datasets/openslr_yoruba/yom_00610_01105196618.wav b/datasets/openslr_yoruba/yom_00610_01105196618.wav new file mode 100644 index 0000000000000000000000000000000000000000..c704a22a3bac6aee64f17872450a2ba896809dd0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01105196618.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cde7a74dcff9339a8f395685976206df71e1a6b58f5129349dff3530d5fb29f +size 581676 diff --git a/datasets/openslr_yoruba/yom_00610_01109755410.wav b/datasets/openslr_yoruba/yom_00610_01109755410.wav new file mode 100644 index 0000000000000000000000000000000000000000..32fce20755fc01813483d9f87e159e311a138c55 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01109755410.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:024ba6d5075b321489b6688ed12b1ff002d80b5e49d49efa82136fbb6f989112 +size 319532 diff --git a/datasets/openslr_yoruba/yom_00610_01122977341.wav b/datasets/openslr_yoruba/yom_00610_01122977341.wav new file mode 100644 index 0000000000000000000000000000000000000000..c01066b21c2be466f261cd45adcca20ffdae86ed --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01122977341.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18575ec6ba297b8431f560999e398ec3342140fed1e2d7970c58b63f03c00977 +size 376876 diff --git a/datasets/openslr_yoruba/yom_00610_01125538231.wav b/datasets/openslr_yoruba/yom_00610_01125538231.wav new file mode 100644 index 0000000000000000000000000000000000000000..f8587aebccccd79e64b008a7d90cef00de78c274 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01125538231.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2ed61268ddd0179f9db4ac28d6cead88bbf139d39c201cbabb0b8c0c3de176 +size 434220 diff --git a/datasets/openslr_yoruba/yom_00610_01132427614.wav b/datasets/openslr_yoruba/yom_00610_01132427614.wav new file mode 100644 index 0000000000000000000000000000000000000000..9929b93f8d2066e37d71eb254b8faea5665ee769 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01132427614.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b30f5a919a8163c023bfb93ab7f0b7a3482b35079e04058ab0a3c18720e8c1 +size 360492 diff --git a/datasets/openslr_yoruba/yom_00610_01147702795.wav b/datasets/openslr_yoruba/yom_00610_01147702795.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ecf685db76449322f6105b7647cb2de44d84e8f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01147702795.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169a432ce1d04b8251ce41ade501ffdfedea9f9b2297b1a370509f582239c359 +size 286764 diff --git a/datasets/openslr_yoruba/yom_00610_01205115570.wav b/datasets/openslr_yoruba/yom_00610_01205115570.wav new file mode 100644 index 0000000000000000000000000000000000000000..51f84c7a7243f6dc496ec2ed6455049ef48183f0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01205115570.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7fa1ae8891047bfa9501fcb0629f3c7edbb16eb5ad3e0f8aeaf1ad20f3fa41 +size 229420 diff --git a/datasets/openslr_yoruba/yom_00610_01210690763.wav b/datasets/openslr_yoruba/yom_00610_01210690763.wav new file mode 100644 index 0000000000000000000000000000000000000000..640aa44b925dbedb0b8e0b9482f2105b7ceed989 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01210690763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e48f796426b2007759417f141e2f1c89b2d1a22c968af4b3f8dcfce0134ce04f +size 278572 diff --git a/datasets/openslr_yoruba/yom_00610_01212953550.wav b/datasets/openslr_yoruba/yom_00610_01212953550.wav new file mode 100644 index 0000000000000000000000000000000000000000..b80d4f4f69b4bc756e99a7984559f35894f1e696 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01212953550.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6932148e36aa62e736a43b69f689b3ac9508220c8cb8b0dcac62895447a3923f +size 245804 diff --git a/datasets/openslr_yoruba/yom_00610_01215408282.wav b/datasets/openslr_yoruba/yom_00610_01215408282.wav new file mode 100644 index 0000000000000000000000000000000000000000..dccee5b98ca19fcdea83ca7032b33ac025200327 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01215408282.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45166485e41e465a36d89b4159b33dc12dd0902e99cc07e8d2f6238f6da637d +size 434220 diff --git a/datasets/openslr_yoruba/yom_00610_01237322476.wav b/datasets/openslr_yoruba/yom_00610_01237322476.wav new file mode 100644 index 0000000000000000000000000000000000000000..107d0e3dd35981a65b5b0bcb3ca3740bcfd7beec --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01237322476.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c82829912b62e5f46dc152b34914541fd172f785940c5f6b43449bbab76fcdc +size 409644 diff --git a/datasets/openslr_yoruba/yom_00610_01280935006.wav b/datasets/openslr_yoruba/yom_00610_01280935006.wav new file mode 100644 index 0000000000000000000000000000000000000000..24e69dbbad8fb3afa55539c4bb7a40c36d151c27 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01280935006.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6ca75c0f5097c646b50f00555a2d3702e22e45af8644c7799ccf5a19c28602 +size 540716 diff --git a/datasets/openslr_yoruba/yom_00610_01343629839.wav b/datasets/openslr_yoruba/yom_00610_01343629839.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4d3a7499c7608d0470f6cf6828f326d9b13ed34 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01343629839.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fe7229cf1ef0c2d33da006972884fc09d855ba54ea86b173c3326f60dd1064 +size 344108 diff --git a/datasets/openslr_yoruba/yom_00610_01350548292.wav b/datasets/openslr_yoruba/yom_00610_01350548292.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc61dedae6a5bbcdfba4d740d61b54874f96a658 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01350548292.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72a95ca500f674d4e558a7e2a8a7b85f506d0866541d8c97e5d82d1c94425ac +size 540716 diff --git a/datasets/openslr_yoruba/yom_00610_01356498746.wav b/datasets/openslr_yoruba/yom_00610_01356498746.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d443e02d919c4ad9f0a770047cf933628c9477d --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01356498746.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1db6e9f4e6d01cc0e02839b79accad49d6fb14257497fa5a1e77dcf4ff34861 +size 516140 diff --git a/datasets/openslr_yoruba/yom_00610_01369429256.wav b/datasets/openslr_yoruba/yom_00610_01369429256.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd5a4108cfe50f47f9fe7c3a3b72925194faf1f7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01369429256.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab7abd1f90e552f9d709d548779a50e9b9f5b3a4595fc29b0685a041edb79f2 +size 401452 diff --git a/datasets/openslr_yoruba/yom_00610_01374871372.wav b/datasets/openslr_yoruba/yom_00610_01374871372.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ccc7d8059fdecfff1da4782e31838976ada43ba --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01374871372.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5334485a6e772bd0e6b9a3f5c96e42d17aeb4df25fbecaa11c65ca769323a1c2 +size 270380 diff --git a/datasets/openslr_yoruba/yom_00610_01434916828.wav b/datasets/openslr_yoruba/yom_00610_01434916828.wav new file mode 100644 index 0000000000000000000000000000000000000000..b7757780f559ae569ece5ffb820e5a9e19d61192 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01434916828.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0067790a218a6c7def67194e731a8073cdf5924613ad29d2d2a73886632c0c22 +size 311340 diff --git a/datasets/openslr_yoruba/yom_00610_01442561638.wav b/datasets/openslr_yoruba/yom_00610_01442561638.wav new file mode 100644 index 0000000000000000000000000000000000000000..f02688b8a8bc7b78cb6746e37571e977df999fe0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01442561638.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da11dc22952dd8de4080dc3c868afa3db3f648e42f61f4c27f82424e84faf846 +size 401452 diff --git a/datasets/openslr_yoruba/yom_00610_01444639037.wav b/datasets/openslr_yoruba/yom_00610_01444639037.wav new file mode 100644 index 0000000000000000000000000000000000000000..287bf10fad5f9172bb3ebbe99e97ed3551d4a065 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01444639037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbdb3fc05a37509f7f84296e936dcec3dbfae182b6edd3a7a50840ba56c0aa66 +size 442412 diff --git a/datasets/openslr_yoruba/yom_00610_01446001123.wav b/datasets/openslr_yoruba/yom_00610_01446001123.wav new file mode 100644 index 0000000000000000000000000000000000000000..3960d13837902df43a40605e55407ae175c7de0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01446001123.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf88b3ad51ebdd88b6114a9c5f3f3cb10e4a6fce2733fdcd9ad30bb4100262f +size 581676 diff --git a/datasets/openslr_yoruba/yom_00610_01451481032.wav b/datasets/openslr_yoruba/yom_00610_01451481032.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e3b34c12ad1d9b0eababa6d87f288bc199293cf --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01451481032.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303010158e5ee808f89c53c6cff05f8d7badf095fc27b20c8d0cec159c0821f5 +size 442412 diff --git a/datasets/openslr_yoruba/yom_00610_01503680423.wav b/datasets/openslr_yoruba/yom_00610_01503680423.wav new file mode 100644 index 0000000000000000000000000000000000000000..14cb523d63ff6aeaf59bc4d955d03020ba4a6df3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01503680423.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c10cd6a233cc32580eac0c5318fe9a420110d1153df55a3bdd8932585e643f4 +size 434220 diff --git a/datasets/openslr_yoruba/yom_00610_01525645610.wav b/datasets/openslr_yoruba/yom_00610_01525645610.wav new file mode 100644 index 0000000000000000000000000000000000000000..172a45b27607b8b91751ba5c27de8e8543ac742c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01525645610.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee81c8a20d0a1b687efb126abc54a20ce533736b7d6f4ddb8588593b19bdd93 +size 335916 diff --git a/datasets/openslr_yoruba/yom_00610_01553745417.wav b/datasets/openslr_yoruba/yom_00610_01553745417.wav new file mode 100644 index 0000000000000000000000000000000000000000..46816917c9436177f0ec27f113970bbfaea29a9e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01553745417.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd99bbf7c8ac9a0c0849074c946729d3f685c981bb5c0e1a74156203b3ba8835 +size 352300 diff --git a/datasets/openslr_yoruba/yom_00610_01571797236.wav b/datasets/openslr_yoruba/yom_00610_01571797236.wav new file mode 100644 index 0000000000000000000000000000000000000000..c093eb316bdd89b32f965826571be75a8b591914 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01571797236.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75bc542064a68b024f5db835a86f4b71d52491404b27d9155dba688624e23cd +size 581676 diff --git a/datasets/openslr_yoruba/yom_00610_01572593808.wav b/datasets/openslr_yoruba/yom_00610_01572593808.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6e257d65ccd3e11c497bf0424b8e8c598dbce90 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01572593808.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a5cc3b7dc2a27d9bd1258fabf2154b1abf53b96adb9bb3370717df75967393 +size 450604 diff --git a/datasets/openslr_yoruba/yom_00610_01623386266.wav b/datasets/openslr_yoruba/yom_00610_01623386266.wav new file mode 100644 index 0000000000000000000000000000000000000000..51905b37524bd3fad3768324aa44e44bb1247d70 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01623386266.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f61b824739baa9eaa56429e07b023362df6dafb85b3eb12d20f89e0c5a01a35a +size 319532 diff --git a/datasets/openslr_yoruba/yom_00610_01639484202.wav b/datasets/openslr_yoruba/yom_00610_01639484202.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e9231c951990289d50ba803e9a906bf43c3a16e --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01639484202.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da31cbe8cfe2e8bc8ed92953b2ed01a843a009329ae4babcb4561f005b481ecc +size 426028 diff --git a/datasets/openslr_yoruba/yom_00610_01663746697.wav b/datasets/openslr_yoruba/yom_00610_01663746697.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1c9048a18cded42acc9bd1d64f93cca9e759c62 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01663746697.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2955854ef2c9a80076807013db4129a44365e3c2726f7032ad0c1778096caf79 +size 376876 diff --git a/datasets/openslr_yoruba/yom_00610_01670116872.wav b/datasets/openslr_yoruba/yom_00610_01670116872.wav new file mode 100644 index 0000000000000000000000000000000000000000..6782873484085cf216c1c96868b0b16e9fa75d04 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01670116872.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f373a8b2521993986d7023d3dd4fd3d2d08ccbeab6fd1e49c2fb7a77ab2ccac1 +size 344108 diff --git a/datasets/openslr_yoruba/yom_00610_01680364787.wav b/datasets/openslr_yoruba/yom_00610_01680364787.wav new file mode 100644 index 0000000000000000000000000000000000000000..36bb8f4c0aee175410af6850d6f093bfd5ba10f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01680364787.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f58931fb0c13716f5ab691bf2b03bf1131b349156f2a5bcf491853675988019 +size 286764 diff --git a/datasets/openslr_yoruba/yom_00610_01688342948.wav b/datasets/openslr_yoruba/yom_00610_01688342948.wav new file mode 100644 index 0000000000000000000000000000000000000000..390859864b4c2930727b819913604fbb864eeeba --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01688342948.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44486714da370fa64c6371e688c661a0def951d2e228bd6a9a5dabf96ad84321 +size 483372 diff --git a/datasets/openslr_yoruba/yom_00610_01699666508.wav b/datasets/openslr_yoruba/yom_00610_01699666508.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0fdbce873db82cbbd53db2877c259df58c16bc6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01699666508.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec950918cbc1b6728ecf6da730a60d77d8f667c99f8383077476b461b95e3ece +size 294956 diff --git a/datasets/openslr_yoruba/yom_00610_01705448296.wav b/datasets/openslr_yoruba/yom_00610_01705448296.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8395b06a6a716fafd07ee72ee72c60107ffca20 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01705448296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686543b68c8a9c9e15a4966126971fcb95a5afe396baba36ee88601e8b1ed2f4 +size 352300 diff --git a/datasets/openslr_yoruba/yom_00610_01714835290.wav b/datasets/openslr_yoruba/yom_00610_01714835290.wav new file mode 100644 index 0000000000000000000000000000000000000000..0cf228d08a2885a32d3ec9d497aac3b0d37eb1c8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01714835290.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071a1850dd0c3827f90d18404185dd82b7e7d2ab7c0ea8bcc5bb7b60faee7b7a +size 606252 diff --git a/datasets/openslr_yoruba/yom_00610_01784848179.wav b/datasets/openslr_yoruba/yom_00610_01784848179.wav new file mode 100644 index 0000000000000000000000000000000000000000..d84f74cd3b186f7e4fd57b18c55251212d1a8f96 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01784848179.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:159444394101254ae684c22aff3e0d9072cf1a6b53948833e8fbe7583d5fe086 +size 229420 diff --git a/datasets/openslr_yoruba/yom_00610_01785578568.wav b/datasets/openslr_yoruba/yom_00610_01785578568.wav new file mode 100644 index 0000000000000000000000000000000000000000..2755c8477119025f24e848dd2b50a004318a3119 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01785578568.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a10762cb7e01dcc3b9135823ab75b16b187c556a4e47041577e243ccc69e40 +size 491564 diff --git a/datasets/openslr_yoruba/yom_00610_01801059315.wav b/datasets/openslr_yoruba/yom_00610_01801059315.wav new file mode 100644 index 0000000000000000000000000000000000000000..c333498a602cd3f4673ae5d347a4f22c3d9dc722 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01801059315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba02461aad5efbdfef087a875f88cf4f5319266a4865a85970dba62ed3c10713 +size 344108 diff --git a/datasets/openslr_yoruba/yom_00610_01804423807.wav b/datasets/openslr_yoruba/yom_00610_01804423807.wav new file mode 100644 index 0000000000000000000000000000000000000000..c2b3be2cf8bcb4fcb624446dd17d0153bd3f94b4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01804423807.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d87152a14f2311f7398c32f00747654bf6ac0fd45023398b558cf19d871004a +size 401452 diff --git a/datasets/openslr_yoruba/yom_00610_01810315913.wav b/datasets/openslr_yoruba/yom_00610_01810315913.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5b244852166b44c73f53d9895dad9575612fc4c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01810315913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12aef2627f84901ef759ab96e2ded60c69de809ef6675e0cd78cc5f53b9e59e2 +size 385068 diff --git a/datasets/openslr_yoruba/yom_00610_01843860486.wav b/datasets/openslr_yoruba/yom_00610_01843860486.wav new file mode 100644 index 0000000000000000000000000000000000000000..271d6c670861dd1b5a43ff69d7724f8f5e88aefc --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01843860486.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:007aaaa1914baedef5a20ed6fd57c93c57322b5773db8d6fc5b343a67afa8cd7 +size 303148 diff --git a/datasets/openslr_yoruba/yom_00610_01855639877.wav b/datasets/openslr_yoruba/yom_00610_01855639877.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a54760c3b4e3071f58be1041a3509b7d1df0d33 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01855639877.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5f571294b9d0e26d87b6e098d967772fb3c4410a8b01b87bd4cd6dcf9e19f6 +size 327724 diff --git a/datasets/openslr_yoruba/yom_00610_01866214145.wav b/datasets/openslr_yoruba/yom_00610_01866214145.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c3ee8d5e6bac6132e77b1feddb913b2c0f8ca45 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01866214145.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e708b0a3fe07bdd55925fdd1eb86d52391b5505f4c08c0715cd104fbc2e37ec7 +size 622636 diff --git a/datasets/openslr_yoruba/yom_00610_01911961373.wav b/datasets/openslr_yoruba/yom_00610_01911961373.wav new file mode 100644 index 0000000000000000000000000000000000000000..2ad1f4c67fe905b8f4ef0aa0ee2a4f1cf9378722 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01911961373.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4065919a2d2fccf7745b4e0ca86f78c1854cbad639f159b45d028b5683c5def3 +size 352300 diff --git a/datasets/openslr_yoruba/yom_00610_01941449940.wav b/datasets/openslr_yoruba/yom_00610_01941449940.wav new file mode 100644 index 0000000000000000000000000000000000000000..37e1bd0d620d25ae29dadb52eac017398bb82581 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01941449940.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03bf060656adb3fefdad0b217dd38b7fd879b1b37b465ff7ec8c818421742711 +size 409644 diff --git a/datasets/openslr_yoruba/yom_00610_01950705791.wav b/datasets/openslr_yoruba/yom_00610_01950705791.wav new file mode 100644 index 0000000000000000000000000000000000000000..f87e82a7da0b52e965e6f3e1593e4ae5bc630b76 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01950705791.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2466435afcd8678d708c8010d800d7b226eb491534d7287c65e069a2d84a837c +size 286764 diff --git a/datasets/openslr_yoruba/yom_00610_01955642474.wav b/datasets/openslr_yoruba/yom_00610_01955642474.wav new file mode 100644 index 0000000000000000000000000000000000000000..65ed13112042569ad4be7d143ec9fbc6aa7bfe67 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01955642474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad0035f3bf2c7220eee30ccbc838adc7b70300a981e88bdf9142933ea517997 +size 385068 diff --git a/datasets/openslr_yoruba/yom_00610_01969882534.wav b/datasets/openslr_yoruba/yom_00610_01969882534.wav new file mode 100644 index 0000000000000000000000000000000000000000..81eac7a7b9eab767aec0b387638e779e51dedba2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01969882534.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc212d853dfa5273cbc73a7f622a0ab8564c7e28c97b4b3c2912c29a393eb2e +size 475180 diff --git a/datasets/openslr_yoruba/yom_00610_01971869248.wav b/datasets/openslr_yoruba/yom_00610_01971869248.wav new file mode 100644 index 0000000000000000000000000000000000000000..ccebe97e6b8f6875faedbee3a4d733171ca06a7c --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01971869248.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73aaf0d04251757f56b5237668be6a5bcaabc5fcd522aba5c5a9ebec09c4a1d +size 311340 diff --git a/datasets/openslr_yoruba/yom_00610_01976240685.wav b/datasets/openslr_yoruba/yom_00610_01976240685.wav new file mode 100644 index 0000000000000000000000000000000000000000..a045e9171f3fb775a1fa3980ec40ad0d7d123983 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01976240685.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc55cc0efe952b745b64fcace9e1f5b7650be6969edb07138c57b62819e97317 +size 409644 diff --git a/datasets/openslr_yoruba/yom_00610_01983991795.wav b/datasets/openslr_yoruba/yom_00610_01983991795.wav new file mode 100644 index 0000000000000000000000000000000000000000..834e473195363f700af3ee87ffba29e02c376f38 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_01983991795.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aaf179236f4f90c791169551a65a76dd73e6ea6128ef224ef6ce278073e8f87 +size 385068 diff --git a/datasets/openslr_yoruba/yom_00610_02007363442.wav b/datasets/openslr_yoruba/yom_00610_02007363442.wav new file mode 100644 index 0000000000000000000000000000000000000000..e18d945fadd6152f084395edf3ba59e29a842a93 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_02007363442.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11bb65e1e814c1b461a5ea314cb621208be3f4be38f502bbec027f2d9f6dc7d7 +size 245804 diff --git a/datasets/openslr_yoruba/yom_00610_02027817433.wav b/datasets/openslr_yoruba/yom_00610_02027817433.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b8c657c8bdf4a9cd7cce07c8e45a2e65387c73f --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_02027817433.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a986f1f06ae12da5fe15ef63b9a1d2bbd10f469e9f719c53567ec5836c571daa +size 286764 diff --git a/datasets/openslr_yoruba/yom_00610_02053275484.wav b/datasets/openslr_yoruba/yom_00610_02053275484.wav new file mode 100644 index 0000000000000000000000000000000000000000..24d2932bf43919f639ebf5e1bf7f89aad27c98fe --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_02053275484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1ab62a27a804be6a5b19b377bb33762c537d23365aa761acb07b334d1a2b76 +size 352300 diff --git a/datasets/openslr_yoruba/yom_00610_02084800822.wav b/datasets/openslr_yoruba/yom_00610_02084800822.wav new file mode 100644 index 0000000000000000000000000000000000000000..4335ec450b649d4e03c0155781a808c6e584b457 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_02084800822.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b421bb9beb7c64ada63b6a61bdd572c1dc0406162c1659249f5b57bfb4585a7 +size 598060 diff --git a/datasets/openslr_yoruba/yom_00610_02123143856.wav b/datasets/openslr_yoruba/yom_00610_02123143856.wav new file mode 100644 index 0000000000000000000000000000000000000000..85304072d48d01382c522611cd29536080d64110 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_02123143856.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350c14093670781b2872a4813c0c00adf0d49579a35da2aea7458c6e38c7e60b +size 376876 diff --git a/datasets/openslr_yoruba/yom_00610_02143975402.wav b/datasets/openslr_yoruba/yom_00610_02143975402.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a066f4e2e4e327b1dbef0648168a2233d9a6232 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_02143975402.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b7ed0149ebdebcdbfcf8c51602e1ea2125221c9130964e05348245c07819910 +size 614444 diff --git a/datasets/openslr_yoruba/yom_00610_02145323610.wav b/datasets/openslr_yoruba/yom_00610_02145323610.wav new file mode 100644 index 0000000000000000000000000000000000000000..c83fac36632a8410e2a1ce9befc3d9c3287c5cb2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_00610_02145323610.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ef0d342146d918099ae0abdfe2df79a37fb24da2b4453eb4d66af3cc864e6d +size 655404 diff --git a/datasets/openslr_yoruba/yom_01208_00003694961.wav b/datasets/openslr_yoruba/yom_01208_00003694961.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a5b7aab4169f4b2aa8e3d4c4c134ba2e3e3b7a4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00003694961.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db6cc7a1b7acd45d9fe9d103b46e35ddcedeee13234250c638b395b7fa648bec +size 262188 diff --git a/datasets/openslr_yoruba/yom_01208_00005375433.wav b/datasets/openslr_yoruba/yom_01208_00005375433.wav new file mode 100644 index 0000000000000000000000000000000000000000..3becfc21b861d9ea030937419549a5566b9f804d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00005375433.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07ee1470e95b53371e4fdad70ef537fd2a911bd1a11c9ef0e21a19d99ef5416 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01208_00010936322.wav b/datasets/openslr_yoruba/yom_01208_00010936322.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d72ab69f1449e13525cc971dbdfc8ad7d5375fc --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00010936322.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07fb9a61f71a907ac413de6fb44bc4d7d2150fd97c34ec5f1ccec4df83d81c4a +size 327724 diff --git a/datasets/openslr_yoruba/yom_01208_00033598683.wav b/datasets/openslr_yoruba/yom_01208_00033598683.wav new file mode 100644 index 0000000000000000000000000000000000000000..beb34d46d69ba4ff55f46e5d2600407c44730f5c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00033598683.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55974775d4de9912d80fe9d5fe87622044e0e659d638c363f9edfb7c24d5574c +size 262188 diff --git a/datasets/openslr_yoruba/yom_01208_00100923599.wav b/datasets/openslr_yoruba/yom_01208_00100923599.wav new file mode 100644 index 0000000000000000000000000000000000000000..a442b420f791ebb256eef2ad0f1abf2851ceb557 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00100923599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bd536715e5ceac8c00813473d641db60826461680c6b9a30567e3f51e33a271 +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_00101690108.wav b/datasets/openslr_yoruba/yom_01208_00101690108.wav new file mode 100644 index 0000000000000000000000000000000000000000..a70c72556c7ebb918f3056138a5197743a49c866 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00101690108.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e03b3ea17b444a79801efe6a7d8d6de9bd8e044c9a7fa52b4ecbd5da331af66 +size 417836 diff --git a/datasets/openslr_yoruba/yom_01208_00109215192.wav b/datasets/openslr_yoruba/yom_01208_00109215192.wav new file mode 100644 index 0000000000000000000000000000000000000000..61be61c22f1d4c322bdcd3601b4726d6056acf83 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00109215192.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7eb68de8179bb9c791f15be07025fe83280f00312a8ef60aab715a65c5e582 +size 294956 diff --git a/datasets/openslr_yoruba/yom_01208_00136240102.wav b/datasets/openslr_yoruba/yom_01208_00136240102.wav new file mode 100644 index 0000000000000000000000000000000000000000..807bc34b684199a700a8307c23b95b4948b23306 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00136240102.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e943ce4851eab5f47156412c436aadb5774aa320fc33a0bbbe73350fa56323bc +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_00174769871.wav b/datasets/openslr_yoruba/yom_01208_00174769871.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3280a5c83a29f46a1bb96588d09e08c9f475a63 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00174769871.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e1139d636a1948b11cd2487ac4a1f562925cb9e6a9facfb601e0a8fac1d8f2 +size 286764 diff --git a/datasets/openslr_yoruba/yom_01208_00236356618.wav b/datasets/openslr_yoruba/yom_01208_00236356618.wav new file mode 100644 index 0000000000000000000000000000000000000000..01fd9b1f32a087903c13121b6374f66bb31903f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00236356618.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a014ca3ea8af6c5b01c7cc3a021764d8d57efbf25667be78bb231bdf8a164aba +size 557100 diff --git a/datasets/openslr_yoruba/yom_01208_00268887688.wav b/datasets/openslr_yoruba/yom_01208_00268887688.wav new file mode 100644 index 0000000000000000000000000000000000000000..12e34787e24964ca0410295cf8a5e6d8af269b4f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00268887688.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b43a2fabeddb96d0427de7bea9dae25d4eeb4ed5e4b8b90f152e795f8ea6c69 +size 827436 diff --git a/datasets/openslr_yoruba/yom_01208_00285346229.wav b/datasets/openslr_yoruba/yom_01208_00285346229.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d800587f355c0bff11d2d4e8ca425e82816c6fa --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00285346229.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f925953ac0308ae933788470e47f107144fd06a6b36cfd839899a5762d5986 +size 245804 diff --git a/datasets/openslr_yoruba/yom_01208_00347783993.wav b/datasets/openslr_yoruba/yom_01208_00347783993.wav new file mode 100644 index 0000000000000000000000000000000000000000..f022c258e407e55d5fdbf7b68f64be1a2a6736d6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00347783993.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:951b8293b4fc2261a7719b8dd4c1036c296b97c773973a44e93d832670a32436 +size 409644 diff --git a/datasets/openslr_yoruba/yom_01208_00354564693.wav b/datasets/openslr_yoruba/yom_01208_00354564693.wav new file mode 100644 index 0000000000000000000000000000000000000000..3018db7d64f8e671683c25268322b43da273c57b --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00354564693.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94c8b76326c233346d4607d994ccc4d6ada03646bb553b5e69c795aed4816f7 +size 319532 diff --git a/datasets/openslr_yoruba/yom_01208_00411920037.wav b/datasets/openslr_yoruba/yom_01208_00411920037.wav new file mode 100644 index 0000000000000000000000000000000000000000..ecba32240028275577654a7818fbed9f386e0bbf --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00411920037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6970c0dee427e8f64e959781a7b07ce68e1fe3c8a07ba184453df352522b9db +size 229420 diff --git a/datasets/openslr_yoruba/yom_01208_00435070465.wav b/datasets/openslr_yoruba/yom_01208_00435070465.wav new file mode 100644 index 0000000000000000000000000000000000000000..2983cd8da2181a38308ca99dc0cb016c5a6603c4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00435070465.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54ad1556d525d402ff3f0795370d453988c5f2cd4c7897fb69547ccb96d289f +size 319532 diff --git a/datasets/openslr_yoruba/yom_01208_00447792945.wav b/datasets/openslr_yoruba/yom_01208_00447792945.wav new file mode 100644 index 0000000000000000000000000000000000000000..379f11d651c31ece8ae53cce405bc082eeb1688a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00447792945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a835cb912a6588a23379c04cd9db0951861de8636f51ba1678f136531e67bb65 +size 237612 diff --git a/datasets/openslr_yoruba/yom_01208_00463155729.wav b/datasets/openslr_yoruba/yom_01208_00463155729.wav new file mode 100644 index 0000000000000000000000000000000000000000..8aa83ce1cfecd7c4e3d7d76ad2744e20674497a8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00463155729.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e417420cb6ae7122dc26193d097713c8d3695e8b9c7efd60c98672e16903f95d +size 327724 diff --git a/datasets/openslr_yoruba/yom_01208_00474791844.wav b/datasets/openslr_yoruba/yom_01208_00474791844.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a2a58d19f71a024af55fa62c4689f32d7ea4381 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00474791844.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b4d348e92b6b86728e8a574e8e77c32d73f0725c7308eb861c89aceefa86ca +size 532524 diff --git a/datasets/openslr_yoruba/yom_01208_00480893374.wav b/datasets/openslr_yoruba/yom_01208_00480893374.wav new file mode 100644 index 0000000000000000000000000000000000000000..e30e7e5caf236a97c574bdeee57d543ca44cd6fa --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00480893374.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f73d0bf11154a991a799c2a20640717302843961ab17b65a20b0c544fb99cf +size 417836 diff --git a/datasets/openslr_yoruba/yom_01208_00518855357.wav b/datasets/openslr_yoruba/yom_01208_00518855357.wav new file mode 100644 index 0000000000000000000000000000000000000000..f27e7114892699630fe3c2cdcb25500cd2ed3034 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00518855357.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf20fdcc53b0e0e3e8ce1d4131530afd35338a53c53e5ae5f6b8951a490ce8db +size 442412 diff --git a/datasets/openslr_yoruba/yom_01208_00519809786.wav b/datasets/openslr_yoruba/yom_01208_00519809786.wav new file mode 100644 index 0000000000000000000000000000000000000000..333a2f0880bb6232b717d1545c71313e4dd862ac --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00519809786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ebd8220a7d18250c1ae71a982e920a1d70a235b0b6abca07a28952b17ecd0a +size 344108 diff --git a/datasets/openslr_yoruba/yom_01208_00531224427.wav b/datasets/openslr_yoruba/yom_01208_00531224427.wav new file mode 100644 index 0000000000000000000000000000000000000000..96360c2f6dfda527737a54511bd039024ef1a985 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00531224427.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a3c99fa90ce9b39ac7db2e47dc6c7badfa683c54a983e1e625fc01915e284f +size 270380 diff --git a/datasets/openslr_yoruba/yom_01208_00537794162.wav b/datasets/openslr_yoruba/yom_01208_00537794162.wav new file mode 100644 index 0000000000000000000000000000000000000000..bad40b66a9ff2b703afc5ede487337bbe8545d24 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00537794162.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8f09a75a69df594312cd9fd88d73b71dbcd4216d0c7c1fa5f80fa6a8b8c542 +size 491564 diff --git a/datasets/openslr_yoruba/yom_01208_00550202474.wav b/datasets/openslr_yoruba/yom_01208_00550202474.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0ec3d31775d3b85ec56b49e849ea50b86dbf01c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00550202474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0898683f154523672f293e42f07efc7fbdc4c82fb11f43419ac297b4ca65dad6 +size 499756 diff --git a/datasets/openslr_yoruba/yom_01208_00578093947.wav b/datasets/openslr_yoruba/yom_01208_00578093947.wav new file mode 100644 index 0000000000000000000000000000000000000000..5fa7c728ff73a8e87f10b68270e62a013ecb3788 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00578093947.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597361a508d0348907ede5af2443277194e6ba76edd1552f624ca2f2b35dc723 +size 491564 diff --git a/datasets/openslr_yoruba/yom_01208_00586805366.wav b/datasets/openslr_yoruba/yom_01208_00586805366.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed3279e4d227d0092210aa2a85941c3766c19047 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00586805366.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61fcfcc672c99355344c31da98070050e0257720056f6bdec4e97512ee0cc57 +size 286764 diff --git a/datasets/openslr_yoruba/yom_01208_00587267142.wav b/datasets/openslr_yoruba/yom_01208_00587267142.wav new file mode 100644 index 0000000000000000000000000000000000000000..99dd33c89980488b51990ed5b1aec374f998215d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00587267142.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e382870146e2d35b698a7a559c5dfe70b39b5b0455fa8b6346e54bb95d3e39 +size 335916 diff --git a/datasets/openslr_yoruba/yom_01208_00592577753.wav b/datasets/openslr_yoruba/yom_01208_00592577753.wav new file mode 100644 index 0000000000000000000000000000000000000000..2d423eda2c461a702908989ed93be36b4b0aa517 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00592577753.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08cad7d52320f1c7b2fa15d65badef006084abe14affe48738e8f184323a270 +size 393260 diff --git a/datasets/openslr_yoruba/yom_01208_00599789243.wav b/datasets/openslr_yoruba/yom_01208_00599789243.wav new file mode 100644 index 0000000000000000000000000000000000000000..034367cc2b293e925a2cacff9e54ac2229dd947b --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00599789243.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85582f8d532630cac1afe519aa135156262001d793f0b1ed59f71a5b57de9153 +size 393260 diff --git a/datasets/openslr_yoruba/yom_01208_00610197141.wav b/datasets/openslr_yoruba/yom_01208_00610197141.wav new file mode 100644 index 0000000000000000000000000000000000000000..daf0b6935ef17afd3f440238ef9d99f0e9f16f7d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00610197141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f03910fb3406598ce846c9ecde5580d20f5ecad1a3f65a37a45a522b3df78b +size 335916 diff --git a/datasets/openslr_yoruba/yom_01208_00663157705.wav b/datasets/openslr_yoruba/yom_01208_00663157705.wav new file mode 100644 index 0000000000000000000000000000000000000000..d95b2c2afb70d714bb06faf4fd5d00e8f568ecb9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00663157705.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab4cace42df062559687a08027a47c889e5725402aa4f964a35c397be9be23e +size 303148 diff --git a/datasets/openslr_yoruba/yom_01208_00714708877.wav b/datasets/openslr_yoruba/yom_01208_00714708877.wav new file mode 100644 index 0000000000000000000000000000000000000000..911c9191d1238e44942397e172c6f8d54aebd55e --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00714708877.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5ca4935372d2a3a0bc5988a4678b5a57c905415bed99504bf6662f39335ed9 +size 278572 diff --git a/datasets/openslr_yoruba/yom_01208_00717404914.wav b/datasets/openslr_yoruba/yom_01208_00717404914.wav new file mode 100644 index 0000000000000000000000000000000000000000..08ca7ee4f22982b0d291f02b3190ad84393cef87 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00717404914.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c95e2dd526ea3111a763f0306e8c03f0275d3e63355fdf4206b04e4730177da +size 450604 diff --git a/datasets/openslr_yoruba/yom_01208_00740667051.wav b/datasets/openslr_yoruba/yom_01208_00740667051.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e3d468986862048a55da209dc318e223f286157 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00740667051.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb68b2f983faaeafea51a033daabeef214a84c28c2536dff1adb23e1e04b1727 +size 434220 diff --git a/datasets/openslr_yoruba/yom_01208_00743266915.wav b/datasets/openslr_yoruba/yom_01208_00743266915.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b864780604840d48e6662b20a1d0c3cf4448614 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00743266915.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64357bfea880304a41fce459d107c643feccdd9925c21c98e9bed7bc25e4cf03 +size 278572 diff --git a/datasets/openslr_yoruba/yom_01208_00748619928.wav b/datasets/openslr_yoruba/yom_01208_00748619928.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a067b02b53237be837f8ab95a81ab8573495604 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00748619928.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19efa2bb8af3bf877dd2806ea07b96dd7c4810d250ba964145639adcd2745783 +size 344108 diff --git a/datasets/openslr_yoruba/yom_01208_00753509488.wav b/datasets/openslr_yoruba/yom_01208_00753509488.wav new file mode 100644 index 0000000000000000000000000000000000000000..d45913f7081abbf18c0efd5ab818b1ae82eb4701 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00753509488.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f49d1f8207f763a3a1eb3f4c9c6ee6869615f22fc613a9a13b8d2f1f51c8d72 +size 409644 diff --git a/datasets/openslr_yoruba/yom_01208_00784200761.wav b/datasets/openslr_yoruba/yom_01208_00784200761.wav new file mode 100644 index 0000000000000000000000000000000000000000..11a488786422fc4e15b87257963630b656678b5e --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00784200761.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580fc5ed39c1877849765353803495ee2fbbc47666c4ee6ef63d957334af50bb +size 262188 diff --git a/datasets/openslr_yoruba/yom_01208_00802242885.wav b/datasets/openslr_yoruba/yom_01208_00802242885.wav new file mode 100644 index 0000000000000000000000000000000000000000..04299be84f3a787ee62a1730c3df9d06a7973a2a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00802242885.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7394398e77a31bdb029fcf070a428c705b9110d855f7bdc07beaefec241914 +size 344108 diff --git a/datasets/openslr_yoruba/yom_01208_00808346730.wav b/datasets/openslr_yoruba/yom_01208_00808346730.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b7cc25aa299d1f5f399e02c05164d37c8414e01 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00808346730.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99cc0e88e042e5712bce2eae5276a4fd369011058f42074936a1509fc862f43 +size 270380 diff --git a/datasets/openslr_yoruba/yom_01208_00842353243.wav b/datasets/openslr_yoruba/yom_01208_00842353243.wav new file mode 100644 index 0000000000000000000000000000000000000000..12c223a1de1ba5ef20d99bfc576c184e744932e5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00842353243.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328ac3f2539a414661cc4c7e36afd1576eb0614b53a58d3dd903f8b9b16ad143 +size 319532 diff --git a/datasets/openslr_yoruba/yom_01208_00869633746.wav b/datasets/openslr_yoruba/yom_01208_00869633746.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b24b77645860a74fae47b7284141671dc5653db --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00869633746.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841c460ee41767ab2faa620cab89ccfca76f31acd28a17e6026454e473e9d85f +size 286764 diff --git a/datasets/openslr_yoruba/yom_01208_00877350591.wav b/datasets/openslr_yoruba/yom_01208_00877350591.wav new file mode 100644 index 0000000000000000000000000000000000000000..5cfdf199f89bfd11663d7f20aa728a72e942d6a8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00877350591.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b2c259bc86383fbb2ce764ae8423f648f54bec1298cc97a9c28c97e0e0a93f +size 319532 diff --git a/datasets/openslr_yoruba/yom_01208_00896307834.wav b/datasets/openslr_yoruba/yom_01208_00896307834.wav new file mode 100644 index 0000000000000000000000000000000000000000..460a94ca913ec60cb46905f73911c251da6b2adc --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00896307834.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c175b173f5fa736b324d87e5e5273043decb2047ae72f61afe388ce86c9aa25 +size 262188 diff --git a/datasets/openslr_yoruba/yom_01208_00915651858.wav b/datasets/openslr_yoruba/yom_01208_00915651858.wav new file mode 100644 index 0000000000000000000000000000000000000000..d455b410fcec5c3d774187c381450ab47e880cb9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00915651858.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e1a1c28b159c7101e7788c9efd8595ba15056013c78b9ae33653e1447af749 +size 270380 diff --git a/datasets/openslr_yoruba/yom_01208_00938323361.wav b/datasets/openslr_yoruba/yom_01208_00938323361.wav new file mode 100644 index 0000000000000000000000000000000000000000..4446c58efdd704eab635c8cfdcb6cfbb5f8649cf --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00938323361.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447106681d6dcd4f3fe18421c7118bd6e8eb1c12c49eb66fa80079c5c2a7ce67 +size 409644 diff --git a/datasets/openslr_yoruba/yom_01208_00965521122.wav b/datasets/openslr_yoruba/yom_01208_00965521122.wav new file mode 100644 index 0000000000000000000000000000000000000000..32851d84411359e8bc4bb2a1081ef58be7605e0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00965521122.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee4c677bad9ddc99d2fc8c149a2a85982b12b479b690498ddb2b9da2e345ce3 +size 368684 diff --git a/datasets/openslr_yoruba/yom_01208_00969842204.wav b/datasets/openslr_yoruba/yom_01208_00969842204.wav new file mode 100644 index 0000000000000000000000000000000000000000..4520fe23b7d2bc2aa1dee13ec47a769fdee92217 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_00969842204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2123c5252a727605781561baffb36dd3a67db66f83906b053cb336392ddf71d +size 303148 diff --git a/datasets/openslr_yoruba/yom_01208_01054098295.wav b/datasets/openslr_yoruba/yom_01208_01054098295.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a2a12bd182abd769f339edafc904822a5f5b18d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01054098295.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ae82aa01d08844414df61735544eb6540d6298e5588de35ed572a4da277961 +size 262188 diff --git a/datasets/openslr_yoruba/yom_01208_01081503596.wav b/datasets/openslr_yoruba/yom_01208_01081503596.wav new file mode 100644 index 0000000000000000000000000000000000000000..266f29faf4a9c405157de9978bcd53869b837bf5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01081503596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204cb47f0bf36a81fa3c78340bb6c94ff34a947eb4d72c203cf3b50596f4ba09 +size 483372 diff --git a/datasets/openslr_yoruba/yom_01208_01086402910.wav b/datasets/openslr_yoruba/yom_01208_01086402910.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3a81aeb79b5035176e7ff7956fdda482dfc4299 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01086402910.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34df6e55a4244bb72cc2cda57f703a825a3f5bd9d6e71ed4c688b8a694f8da63 +size 344108 diff --git a/datasets/openslr_yoruba/yom_01208_01099480720.wav b/datasets/openslr_yoruba/yom_01208_01099480720.wav new file mode 100644 index 0000000000000000000000000000000000000000..b576b86950531c9ca8de38f85d6f8e6d259e0ebf --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01099480720.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3530a40b59cfb3cb8988aeb22d753e27d9d0e3c3203f02f765953df27535df90 +size 245804 diff --git a/datasets/openslr_yoruba/yom_01208_01130805551.wav b/datasets/openslr_yoruba/yom_01208_01130805551.wav new file mode 100644 index 0000000000000000000000000000000000000000..d4c04d7fc0482d6c198a1ae348540a6a7d5d2c94 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01130805551.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776a4aa6bf6dd3f232535418e8778430bc9795ffb8028004b9a58661be840c89 +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_01142657335.wav b/datasets/openslr_yoruba/yom_01208_01142657335.wav new file mode 100644 index 0000000000000000000000000000000000000000..126a4d58b0ce36217096bdce9121c9c2dc0c9200 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01142657335.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16a5cbc86adb5aa58ada2dcf378be9ade5946592be6c74500345c2216a8f573 +size 327724 diff --git a/datasets/openslr_yoruba/yom_01208_01175241306.wav b/datasets/openslr_yoruba/yom_01208_01175241306.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ff0b9f809dd0b21d01a8d2a19bf939090fa55fd --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01175241306.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ef80eea936799005ed0ce0811a9e890df43614a94e3eeb94599a59af9b886e1 +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_01193308750.wav b/datasets/openslr_yoruba/yom_01208_01193308750.wav new file mode 100644 index 0000000000000000000000000000000000000000..62dbfe670a7a515c703d13440d676493334203e6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01193308750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48366eb18ad3a8435deb65e605a8cbaa91f5293e41c8024823f993b07c180ef +size 376876 diff --git a/datasets/openslr_yoruba/yom_01208_01227004455.wav b/datasets/openslr_yoruba/yom_01208_01227004455.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3f4651c2a3d2b1d7fe76e83071504cf25bc82c6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01227004455.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521dbcff3a2d21f27eed14cab5885df955d37c00d3be0a9bdf7b6855c408e931 +size 221228 diff --git a/datasets/openslr_yoruba/yom_01208_01235079614.wav b/datasets/openslr_yoruba/yom_01208_01235079614.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d383909e15e21734ddc736cecc2aedd4d9e2ff9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01235079614.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ceb84c2201a256c29830759f3090ccabefff4d54fc53a6504a57777ea44f4d +size 327724 diff --git a/datasets/openslr_yoruba/yom_01208_01239505436.wav b/datasets/openslr_yoruba/yom_01208_01239505436.wav new file mode 100644 index 0000000000000000000000000000000000000000..ecef57f7dc265defbc15e06e932c1fe110a1e796 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01239505436.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92300d8a6d9bc3e0ccaeecfcc2bf2c4562738dbc81799d27aead6395799a7c7c +size 540716 diff --git a/datasets/openslr_yoruba/yom_01208_01278650394.wav b/datasets/openslr_yoruba/yom_01208_01278650394.wav new file mode 100644 index 0000000000000000000000000000000000000000..72a81ab5019dd80eed9745c3c1123887e0122ed4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01278650394.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d5b0d13c7ad9cc0e54274affe896a41f28756ffd0c0c929ea22173389ea006 +size 253996 diff --git a/datasets/openslr_yoruba/yom_01208_01349848651.wav b/datasets/openslr_yoruba/yom_01208_01349848651.wav new file mode 100644 index 0000000000000000000000000000000000000000..be9faaa29520dbe9a0c1aea8181b478eca6982df --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01349848651.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bc3c9c87e4b9e54ea1d933ccd587794933b6168c83d11a917a279243feb4715 +size 352300 diff --git a/datasets/openslr_yoruba/yom_01208_01368057340.wav b/datasets/openslr_yoruba/yom_01208_01368057340.wav new file mode 100644 index 0000000000000000000000000000000000000000..669c5e190d2494143a93f763fa80c3951435c717 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01368057340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f14852797a16fa69737cd04069f9bbd3080b3eddf3d34521f028507d6158809 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01208_01378886596.wav b/datasets/openslr_yoruba/yom_01208_01378886596.wav new file mode 100644 index 0000000000000000000000000000000000000000..3dd7738685f0ec8772afee3fcf822d17d570da6a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01378886596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d5ae77e6f2ec9f4d5884a2108d5dd8a338227aca2c226a95e134a8ad208cca +size 319532 diff --git a/datasets/openslr_yoruba/yom_01208_01390796101.wav b/datasets/openslr_yoruba/yom_01208_01390796101.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a72cecf6fa6a989b5eccb047bf593df3778f5e7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01390796101.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1296a66ac56061c7346b5ad312729b6b0c2ed879243a1ee92e85d8a050eb775 +size 262188 diff --git a/datasets/openslr_yoruba/yom_01208_01398361088.wav b/datasets/openslr_yoruba/yom_01208_01398361088.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3afc95463e66c9fdec76896f9d27a81d5ec9694 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01398361088.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b8b1855e76394bbbd2125c43da2de8ff28a50081dc56761f9ebbca97ebc71d +size 278572 diff --git a/datasets/openslr_yoruba/yom_01208_01404835296.wav b/datasets/openslr_yoruba/yom_01208_01404835296.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9fdc0452903e5a9cbcb0678c02ea5b3f2587df7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01404835296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abf53b825e8e777c751ad1b6bcd1e2c496545c59ce43fe4e664013c8fcbf501 +size 319532 diff --git a/datasets/openslr_yoruba/yom_01208_01405522201.wav b/datasets/openslr_yoruba/yom_01208_01405522201.wav new file mode 100644 index 0000000000000000000000000000000000000000..d58859514f525fa6355ab2ebbaaf4526e1a54147 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01405522201.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed444839fc1a0effae2fdf5687204a232fd87737eaf38554bdbb31fb17191cde +size 327724 diff --git a/datasets/openslr_yoruba/yom_01208_01408955045.wav b/datasets/openslr_yoruba/yom_01208_01408955045.wav new file mode 100644 index 0000000000000000000000000000000000000000..1496b9d96e4b783b0c66288e0de4283bdf30e802 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01408955045.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5245a0436fc1aad61fe10cfd16a373fd9442f0b424806749e2ec3e9fa53251d8 +size 262188 diff --git a/datasets/openslr_yoruba/yom_01208_01417905598.wav b/datasets/openslr_yoruba/yom_01208_01417905598.wav new file mode 100644 index 0000000000000000000000000000000000000000..6fa7774036ce6517b9fb0ebd36f7688915ae77aa --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01417905598.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7322e953c88821ae78dc34b36899737d257f3a37b138a681622f00a4429e86 +size 352300 diff --git a/datasets/openslr_yoruba/yom_01208_01466942069.wav b/datasets/openslr_yoruba/yom_01208_01466942069.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9d7f803c7c0c9594517cf7d9d85aa450f350e1d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01466942069.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e733806e9a6d7fb0be4ada108186e21908dbeac2a44cb25439cc499e86f8261 +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_01480310098.wav b/datasets/openslr_yoruba/yom_01208_01480310098.wav new file mode 100644 index 0000000000000000000000000000000000000000..814a8d53c293aa3c90e0d901f7aa9a9c837a84f9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01480310098.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e722d4bced24f2d32fd7f25af4367dd1f6f646f20d98844653e28bdb59ccec42 +size 270380 diff --git a/datasets/openslr_yoruba/yom_01208_01499827517.wav b/datasets/openslr_yoruba/yom_01208_01499827517.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b4658009e4cb78d027e337740dcaec7f26b3b82 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01499827517.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a956d65298353e1888862d7949e44d29d879756332800f78a2dc2d32c82efb +size 278572 diff --git a/datasets/openslr_yoruba/yom_01208_01504531078.wav b/datasets/openslr_yoruba/yom_01208_01504531078.wav new file mode 100644 index 0000000000000000000000000000000000000000..d5a2a46c452d11ff1b741bc6f9be889524b02f28 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01504531078.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c3784def654c2aa781e04142df3d298b083bbdee4815aee2ce6c539f93fc9e +size 270380 diff --git a/datasets/openslr_yoruba/yom_01208_01530861092.wav b/datasets/openslr_yoruba/yom_01208_01530861092.wav new file mode 100644 index 0000000000000000000000000000000000000000..3c672975efd1e44ef7e268fd4d1a093cea84c1d9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01530861092.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3325d6919f8034c013f776d75a192fc61f8df540a861a6f10f56ee7cf1f0c24 +size 335916 diff --git a/datasets/openslr_yoruba/yom_01208_01534119960.wav b/datasets/openslr_yoruba/yom_01208_01534119960.wav new file mode 100644 index 0000000000000000000000000000000000000000..42aa5a5bf249fe3e28cf0572319e5507e9671d04 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01534119960.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b553dfaead6e32268aa34c9b15067469eb4fe199b9f78e4c163b59e239350d6 +size 491564 diff --git a/datasets/openslr_yoruba/yom_01208_01569138650.wav b/datasets/openslr_yoruba/yom_01208_01569138650.wav new file mode 100644 index 0000000000000000000000000000000000000000..075b015b047e886529e5e1dd286101e68c4e5eda --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01569138650.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2484df4403bf7ff54cf43aa7405ab79888f3209c789fb1e88b7fe8115b7926f8 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01208_01598155255.wav b/datasets/openslr_yoruba/yom_01208_01598155255.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ba390d9f615c8dc653e190820936bda3b4f36a5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01598155255.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164a87aefba7f39872fa7282bb90764f97267e95840734843a1d5de774518049 +size 352300 diff --git a/datasets/openslr_yoruba/yom_01208_01650468848.wav b/datasets/openslr_yoruba/yom_01208_01650468848.wav new file mode 100644 index 0000000000000000000000000000000000000000..137ae2ff5f2776c4e3feb85254864c00a0227744 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01650468848.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e79d0fa59510db58719eb82f7b720dd059f2012bf6e73ae5ac9a2647f97b7e5 +size 213036 diff --git a/datasets/openslr_yoruba/yom_01208_01655016650.wav b/datasets/openslr_yoruba/yom_01208_01655016650.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ef047c2d3dc214143622bfd018eb7a4bac83f61 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01655016650.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c4587f174598bf531408fe378fb31e2c7e43a0da5d4a08489c188cf867390b +size 745516 diff --git a/datasets/openslr_yoruba/yom_01208_01663739947.wav b/datasets/openslr_yoruba/yom_01208_01663739947.wav new file mode 100644 index 0000000000000000000000000000000000000000..79a4bc0f78abe83e8942b6041dc3f8b340a786cd --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01663739947.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e92f82462f72022a4c4f40fa97a2f76c9ffffa35c266f7444c7cdada01b6569 +size 434220 diff --git a/datasets/openslr_yoruba/yom_01208_01689805111.wav b/datasets/openslr_yoruba/yom_01208_01689805111.wav new file mode 100644 index 0000000000000000000000000000000000000000..f97ee3ffcd607240f034fd09ca2bad101b93b4d4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01689805111.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3931930b2d32d5512cab754835f5e8e0f6d1246b96a0712033b4f92a3e93e6 +size 491564 diff --git a/datasets/openslr_yoruba/yom_01208_01702841608.wav b/datasets/openslr_yoruba/yom_01208_01702841608.wav new file mode 100644 index 0000000000000000000000000000000000000000..22e51fd4293c300538b63e20dd7c0fea0b1bf682 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01702841608.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c33ae0e4986215625a42cf6747d63aa7a1e664ab0b5f164fa0596500fb2b1cc +size 237612 diff --git a/datasets/openslr_yoruba/yom_01208_01750388120.wav b/datasets/openslr_yoruba/yom_01208_01750388120.wav new file mode 100644 index 0000000000000000000000000000000000000000..f770b2bf4569c133f451504a8f27784da3257799 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01750388120.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f505ced34286fdf99a12363f48e79d75b5a8ee3db41e91c70666a0e95c39b05e +size 720940 diff --git a/datasets/openslr_yoruba/yom_01208_01779153644.wav b/datasets/openslr_yoruba/yom_01208_01779153644.wav new file mode 100644 index 0000000000000000000000000000000000000000..fbcc0600d0fb297b3e70b9bdc6a3b2c95a0af75a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01779153644.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734f83f689b4782cf2908765c4a544823e7ba637e796bfecdcccacae94f0c075 +size 229420 diff --git a/datasets/openslr_yoruba/yom_01208_01795496177.wav b/datasets/openslr_yoruba/yom_01208_01795496177.wav new file mode 100644 index 0000000000000000000000000000000000000000..b81f7f89c9e4ebc552e4e48df390512c93010612 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01795496177.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09551d005607c805229452c3e78cb64389eff6e59780f35e7188bae2ec5b4662 +size 270380 diff --git a/datasets/openslr_yoruba/yom_01208_01854833424.wav b/datasets/openslr_yoruba/yom_01208_01854833424.wav new file mode 100644 index 0000000000000000000000000000000000000000..a5ea5213b4abd0e113df063d3ce89703b3f2c47d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01854833424.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69fe4db3398b1820d0a216bb68c65558b37d84e283238b0ba9d125ac039c8e63 +size 327724 diff --git a/datasets/openslr_yoruba/yom_01208_01865287844.wav b/datasets/openslr_yoruba/yom_01208_01865287844.wav new file mode 100644 index 0000000000000000000000000000000000000000..eb14e4e48d83d76ef515721818e62ff2d4cc0439 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01865287844.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c8aeaba9955fad99d0ba59fc98b2d0738fc1eee91e35f7abe43cdb99f82c6b +size 368684 diff --git a/datasets/openslr_yoruba/yom_01208_01867186819.wav b/datasets/openslr_yoruba/yom_01208_01867186819.wav new file mode 100644 index 0000000000000000000000000000000000000000..f19cafc6762a8a81fa2873529cdc9699403c224c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01867186819.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c890868bc11fe313c7bacac494404f4a807ae51eab5feaab72acd9735de9b7f9 +size 442412 diff --git a/datasets/openslr_yoruba/yom_01208_01871340549.wav b/datasets/openslr_yoruba/yom_01208_01871340549.wav new file mode 100644 index 0000000000000000000000000000000000000000..88874fc76f611402664d4dc1fd7d1dafa501c34c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01871340549.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a9ac6d9456d8e39c4a8354ded7ee8cdbeb3d74151c3eac75e77b36aab5185d +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_01871593788.wav b/datasets/openslr_yoruba/yom_01208_01871593788.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0d88a43316669b93f024de78464c1236322dda0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01871593788.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e16c7b210214145827ab6e22a29fd6cb8a987fde5ae592db4e7f4015e697ea +size 286764 diff --git a/datasets/openslr_yoruba/yom_01208_01893355283.wav b/datasets/openslr_yoruba/yom_01208_01893355283.wav new file mode 100644 index 0000000000000000000000000000000000000000..10989ed20dc2d5babb523bc77078d7177f9b20de --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01893355283.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dbc8501fd41a1b34b550bb67cb1dd24f4ca800644a8d2e3ae8820f69b9ae02c +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_01895390007.wav b/datasets/openslr_yoruba/yom_01208_01895390007.wav new file mode 100644 index 0000000000000000000000000000000000000000..77e7271bd6abb2104c72b7d7c079852639c5fb7e --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01895390007.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9334d9edd8c7b6c23790bdc542e50c5df893cee501e80f874cb82011894eb7b3 +size 278572 diff --git a/datasets/openslr_yoruba/yom_01208_01899731466.wav b/datasets/openslr_yoruba/yom_01208_01899731466.wav new file mode 100644 index 0000000000000000000000000000000000000000..2178ea1e9ef5b938ca3a4c8273bd45e2b13eb2cc --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01899731466.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab6ec9689e200717a2ed9b05b8e74f4491b9b352d1ed32ec37400b09477bd20 +size 319532 diff --git a/datasets/openslr_yoruba/yom_01208_01968509398.wav b/datasets/openslr_yoruba/yom_01208_01968509398.wav new file mode 100644 index 0000000000000000000000000000000000000000..d8b671d8feba32ebe101648ba676581d92755625 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01968509398.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b5bac46962f951a1d1fb67d0328d2fcaf36fc3648eb61025bdd7ebf3553c05 +size 630828 diff --git a/datasets/openslr_yoruba/yom_01208_01999303623.wav b/datasets/openslr_yoruba/yom_01208_01999303623.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a5f7ec7e8b428f39877c7b1b826b996663492d1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_01999303623.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6fcc3e9a1bd95f02e02d43fd4c77e0f16090e1606a97458bd33fb982143037 +size 417836 diff --git a/datasets/openslr_yoruba/yom_01208_02001837444.wav b/datasets/openslr_yoruba/yom_01208_02001837444.wav new file mode 100644 index 0000000000000000000000000000000000000000..17c9def14027e2ff37a04c428a851cce85b5185c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_02001837444.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f29d9de9c37b8360c45afe808fd1b1289c0c4e0b49b2935737178af72dae500 +size 311340 diff --git a/datasets/openslr_yoruba/yom_01208_02048199037.wav b/datasets/openslr_yoruba/yom_01208_02048199037.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7cab6796161f4f791d5c0814bfa831e5db513ba --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_02048199037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc649c09d5e3458fb8e1d4cff4ba2886800e9e14e550c1713ef76006212717ac +size 344108 diff --git a/datasets/openslr_yoruba/yom_01208_02075575553.wav b/datasets/openslr_yoruba/yom_01208_02075575553.wav new file mode 100644 index 0000000000000000000000000000000000000000..02dc15c83af21e4131a7a811dd2bbba6595b56b4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_02075575553.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1c9c1c8c8c541871d39c4171b2e09f22bd8ab4269ebe3b11097bc8edfcac8a +size 401452 diff --git a/datasets/openslr_yoruba/yom_01208_02125664889.wav b/datasets/openslr_yoruba/yom_01208_02125664889.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d96194eb3727147143f3606c4b564cb28ac3386 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01208_02125664889.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c90f34e11337ea76fe0758c84c66b4d15b480544d12d49345cdd714241d5da +size 270380 diff --git a/datasets/openslr_yoruba/yom_01523_00008321762.wav b/datasets/openslr_yoruba/yom_01523_00008321762.wav new file mode 100644 index 0000000000000000000000000000000000000000..053a5ef61595a204e36763cf046cb88a5e0358e0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00008321762.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050a5d3fe8fdbb08f8c911b145aede71847d0358a7ee25b76541cf06b6ad3725 +size 344108 diff --git a/datasets/openslr_yoruba/yom_01523_00045183386.wav b/datasets/openslr_yoruba/yom_01523_00045183386.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4f49009b7b1dda829f34564aa4003befbcb019f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00045183386.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be1f635b09d47c73323712b262f7e870df6663e4c106d2ccbf47448be69550d2 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01523_00103497208.wav b/datasets/openslr_yoruba/yom_01523_00103497208.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cd7a8203962935cb72de080fd9f53fe3f3c3f6d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00103497208.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9060e5e51404504db83f001f4cbbe8e8f8790bde1567118a0d5523685e02ad1b +size 532524 diff --git a/datasets/openslr_yoruba/yom_01523_00113246113.wav b/datasets/openslr_yoruba/yom_01523_00113246113.wav new file mode 100644 index 0000000000000000000000000000000000000000..cbaad2b54542f9c556ca0a1baa2ec699b39ec4e7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00113246113.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b2c43bafc5ed1aa2a1ad0405250f7c781bae421db07067306b7dcbb13968345 +size 376876 diff --git a/datasets/openslr_yoruba/yom_01523_00116259153.wav b/datasets/openslr_yoruba/yom_01523_00116259153.wav new file mode 100644 index 0000000000000000000000000000000000000000..39a664b23ebfc33f1c62c031b6e6997101e47bd6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00116259153.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c0bcd14fc78b9faeb46a05e29d2c0f0efc8027fda10b8ab1a3c17b430ccc95 +size 262188 diff --git a/datasets/openslr_yoruba/yom_01523_00136367294.wav b/datasets/openslr_yoruba/yom_01523_00136367294.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4fdc12be8d87eef9abeb16ead7f7f0606fb5393 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00136367294.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906651dc50e09e1aa144c7411c6c40bd5139ba874968a6cc4d8aa995906bbf5e +size 376876 diff --git a/datasets/openslr_yoruba/yom_01523_00174158141.wav b/datasets/openslr_yoruba/yom_01523_00174158141.wav new file mode 100644 index 0000000000000000000000000000000000000000..3264ab05fcbb15abfcdd6f1dca9a094b48d5b1ce --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00174158141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e76f07c9c94df39faaa70321e7b60071b29d45c4a9913ff9c4f3cade9eea67 +size 344108 diff --git a/datasets/openslr_yoruba/yom_01523_00285220760.wav b/datasets/openslr_yoruba/yom_01523_00285220760.wav new file mode 100644 index 0000000000000000000000000000000000000000..378cdf0bf823fac343573a48a49e2f41f146116e --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00285220760.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bab6c56acd773ed92e0e141fdb4d7ae2ab69342da643938cfad6eac238bc579 +size 540716 diff --git a/datasets/openslr_yoruba/yom_01523_00291489596.wav b/datasets/openslr_yoruba/yom_01523_00291489596.wav new file mode 100644 index 0000000000000000000000000000000000000000..29a29e5cd6c8a2b9f9047b82703ef4f997d4dee8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00291489596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d9477010553f2902920bac986bf7085c6ba1493f5565295d10ec7bc252e5d4 +size 352300 diff --git a/datasets/openslr_yoruba/yom_01523_00312896002.wav b/datasets/openslr_yoruba/yom_01523_00312896002.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e07a59d9436103f9bf9d52682fd32019d730e2f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00312896002.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64bb1ff1f537ee26fa7bacf32f4804058fbc5ebc7db2db9566a8cd6a015ace23 +size 385068 diff --git a/datasets/openslr_yoruba/yom_01523_00313184870.wav b/datasets/openslr_yoruba/yom_01523_00313184870.wav new file mode 100644 index 0000000000000000000000000000000000000000..067181f168e4bf1f5421756a76b50598db307088 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00313184870.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9240760d0708c170d821f5bcee9d2d48b63d5a0fde222156019d47c0a7c712bd +size 385068 diff --git a/datasets/openslr_yoruba/yom_01523_00363686407.wav b/datasets/openslr_yoruba/yom_01523_00363686407.wav new file mode 100644 index 0000000000000000000000000000000000000000..37e98032b082babd648c01a6cfe6aa7c8751a469 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00363686407.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206000695c056f79e14c8032f48caf83fbbfe7f54d43b64ffc986069f409d0f1 +size 286764 diff --git a/datasets/openslr_yoruba/yom_01523_00373940695.wav b/datasets/openslr_yoruba/yom_01523_00373940695.wav new file mode 100644 index 0000000000000000000000000000000000000000..1853ee67395e434587533be85c33b7e0cfea1f07 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00373940695.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e90be27caf102c0102044ba832371c55d1153d90e60de70b0a1bf361906e9b7 +size 311340 diff --git a/datasets/openslr_yoruba/yom_01523_00380071467.wav b/datasets/openslr_yoruba/yom_01523_00380071467.wav new file mode 100644 index 0000000000000000000000000000000000000000..ae0dcb2d5f569dd97b05139f0b461832e4cbd5ba --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00380071467.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcff7eca1dc2e6248521284c07212ae3d6cb049191fdab4701c11663d99abae +size 663596 diff --git a/datasets/openslr_yoruba/yom_01523_00383617355.wav b/datasets/openslr_yoruba/yom_01523_00383617355.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bf862750553da62f134d38a56ac1795c8a60b8c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00383617355.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be5fd18c27ee69241887326c2b2d39e3514974ff84a3f2e84ea2d0e5a06ae9d +size 368684 diff --git a/datasets/openslr_yoruba/yom_01523_00387763688.wav b/datasets/openslr_yoruba/yom_01523_00387763688.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4c8fbcda9a42bd72fb230822fae2dd629764ccc --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00387763688.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05eedeb1f1523b7c49a726b88093dacf37960c5e49f6d0c57f03d1e0e2257759 +size 729132 diff --git a/datasets/openslr_yoruba/yom_01523_00426748645.wav b/datasets/openslr_yoruba/yom_01523_00426748645.wav new file mode 100644 index 0000000000000000000000000000000000000000..93918bb5568c2ad771f503397422e643aa3036aa --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00426748645.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1044856f035612b15c8bcf61b37da2b85414dac6b916748e679e8306e279b06 +size 385068 diff --git a/datasets/openslr_yoruba/yom_01523_00433843222.wav b/datasets/openslr_yoruba/yom_01523_00433843222.wav new file mode 100644 index 0000000000000000000000000000000000000000..859de75a76472cb329df1aa974b279fa3c33b95c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00433843222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e23934c86bfa72f6ae310176b86c7ac8d65e276c8d84e2b42f3e85ca0d2d5d +size 385068 diff --git a/datasets/openslr_yoruba/yom_01523_00435681775.wav b/datasets/openslr_yoruba/yom_01523_00435681775.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b391f7337a45352b589451a560af41df4a9e012 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00435681775.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d9e53b75e9d82d1ad5e25783266477338ad382ff2a4c901a4f25494f84a4f6 +size 352300 diff --git a/datasets/openslr_yoruba/yom_01523_00447820718.wav b/datasets/openslr_yoruba/yom_01523_00447820718.wav new file mode 100644 index 0000000000000000000000000000000000000000..cfa86560e96eb1361c9906dd2a2f23145c4e35be --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00447820718.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73cf5f4e4a061cc2a85ebb190537d9d19919234ac3c90c34d96db00156ebb508 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01523_00492431435.wav b/datasets/openslr_yoruba/yom_01523_00492431435.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4ba2cc7c1b208814328a978541bf6244a2d0339 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00492431435.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2713de1ecd174d27cea0a793d93d17c49eadf1b16679ce0a65e30aa628a49d9 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01523_00492956627.wav b/datasets/openslr_yoruba/yom_01523_00492956627.wav new file mode 100644 index 0000000000000000000000000000000000000000..293990481c834e46504cc10219264a07c3eda599 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00492956627.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7e19af4e8d5e35596e448973ef2faed46dc46fe15550dd4bc96b62b66f3593 +size 524332 diff --git a/datasets/openslr_yoruba/yom_01523_00496456020.wav b/datasets/openslr_yoruba/yom_01523_00496456020.wav new file mode 100644 index 0000000000000000000000000000000000000000..2808b5e73e7428ca33f2f093d0a39dc3cfdc9246 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00496456020.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba6f33acda1a13f3411f0c59df311348c51a60e5b0afbf5d7a1e8a6656eb021 +size 598060 diff --git a/datasets/openslr_yoruba/yom_01523_00553132018.wav b/datasets/openslr_yoruba/yom_01523_00553132018.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d7ff9d9da1709b3422da77146d3a3404b00ad4a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00553132018.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2d8c8550ca6eee006170405f7f13c19c70bbd9a321aa66b3b497ea283f945e +size 466988 diff --git a/datasets/openslr_yoruba/yom_01523_00555988505.wav b/datasets/openslr_yoruba/yom_01523_00555988505.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a909c7f73a884fe68e6a6281f65ef7b58bcb38f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00555988505.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4730ab1e82f952e0c94b58d4ed0af96a41abff35100ee560911b939c42a5f5bb +size 286764 diff --git a/datasets/openslr_yoruba/yom_01523_00556139804.wav b/datasets/openslr_yoruba/yom_01523_00556139804.wav new file mode 100644 index 0000000000000000000000000000000000000000..02e1cc2d6371924c838f7be29d88e98e260a56fc --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00556139804.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3973c7f50e77877f079c2b1f3cf6727ff134dad29d9919790a594fede2135e +size 622636 diff --git a/datasets/openslr_yoruba/yom_01523_00612617448.wav b/datasets/openslr_yoruba/yom_01523_00612617448.wav new file mode 100644 index 0000000000000000000000000000000000000000..09682040691acd9745b3cf56e36ac34501ba4984 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00612617448.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc9a2cd3fd040fb6110c023b161adaae4260f781695db4f50186cf2627ef5b4 +size 368684 diff --git a/datasets/openslr_yoruba/yom_01523_00617327305.wav b/datasets/openslr_yoruba/yom_01523_00617327305.wav new file mode 100644 index 0000000000000000000000000000000000000000..99848872344b5eeba56f2f3eb5e8979210229787 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00617327305.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fcbd8addd6f4bb43c8b3a253a9de48a397bea36c46d8db153d7ffa48b1cd5a0 +size 303148 diff --git a/datasets/openslr_yoruba/yom_01523_00630204368.wav b/datasets/openslr_yoruba/yom_01523_00630204368.wav new file mode 100644 index 0000000000000000000000000000000000000000..c67a7deb82da0255d725342e205ceb5d379c06a4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00630204368.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2998e37ef383d555c3eece8ad81bb2ba23b281eaf465c587736a78648a9db322 +size 606252 diff --git a/datasets/openslr_yoruba/yom_01523_00640950974.wav b/datasets/openslr_yoruba/yom_01523_00640950974.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e35945613e746830ab2ab760eefba9b27395506 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00640950974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd5bfd1ca87053f9d867350b5b66286aa65d7a82770e27ce30cb404ebf7a48b +size 679980 diff --git a/datasets/openslr_yoruba/yom_01523_00641611182.wav b/datasets/openslr_yoruba/yom_01523_00641611182.wav new file mode 100644 index 0000000000000000000000000000000000000000..7c79c02746e6bda7c122cdc8d8f23324ad805091 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00641611182.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe26c119705938f7eb6348f2cd6ac744ad1f5b948681ffbf57741e8ba5b5f9c +size 409644 diff --git a/datasets/openslr_yoruba/yom_01523_00649698362.wav b/datasets/openslr_yoruba/yom_01523_00649698362.wav new file mode 100644 index 0000000000000000000000000000000000000000..f39081a2d675bbf731a72308ca984a206458cb81 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00649698362.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2062dde12e5e9984ee1a31bf8493afc655e41243ab00f01c4858e35782569b7 +size 368684 diff --git a/datasets/openslr_yoruba/yom_01523_00683960062.wav b/datasets/openslr_yoruba/yom_01523_00683960062.wav new file mode 100644 index 0000000000000000000000000000000000000000..5d904bf1c2adf154f9bce3ecc559055870b7474d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00683960062.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202e3e398372ca28be7866e8c3abed749922c8c876d10aadb357342a5eedebe3 +size 466988 diff --git a/datasets/openslr_yoruba/yom_01523_00690218507.wav b/datasets/openslr_yoruba/yom_01523_00690218507.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa4ea2a377cfdd8242683d9e0c817c7a7f0477d5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00690218507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21af42fbca63c4eed502f6974f16b2ba3d48a0ce896b53db619f5dd85b727b5f +size 622636 diff --git a/datasets/openslr_yoruba/yom_01523_00698237397.wav b/datasets/openslr_yoruba/yom_01523_00698237397.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f54953bb686fae496423b6994eaeeda296d867d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00698237397.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c08cfe91c885793efe189dcf6017478678824589928094e256514838aa7d92 +size 393260 diff --git a/datasets/openslr_yoruba/yom_01523_00756340215.wav b/datasets/openslr_yoruba/yom_01523_00756340215.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc2864ef72049209330b7de1156501ba390e52ec --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00756340215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9e4a2fd90954661842cae79d5116a809e8d917d0557aa46adeebf628047892 +size 335916 diff --git a/datasets/openslr_yoruba/yom_01523_00762007073.wav b/datasets/openslr_yoruba/yom_01523_00762007073.wav new file mode 100644 index 0000000000000000000000000000000000000000..86f4f3cccc95e3844521feac57ede97885a140f8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00762007073.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb43ef05f7b0f1982eba3669e575a658665fc03b085db12288c278b593afcb10 +size 688172 diff --git a/datasets/openslr_yoruba/yom_01523_00779544353.wav b/datasets/openslr_yoruba/yom_01523_00779544353.wav new file mode 100644 index 0000000000000000000000000000000000000000..00f28d9d30150a542d0271eddddf20bbce91cb64 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00779544353.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bca3b678b9842ac8101255dcb6a7abae8239ef154ba0ca27ae1d3309435bef8 +size 491564 diff --git a/datasets/openslr_yoruba/yom_01523_00783775740.wav b/datasets/openslr_yoruba/yom_01523_00783775740.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5e17af4183e4f2a9aba6a449588d9fc1b9cea4c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00783775740.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2b5e6b2c2e46ca518579dcdf4290cd872e05d237c8061376e90c5efa13aeae +size 352300 diff --git a/datasets/openslr_yoruba/yom_01523_00823489175.wav b/datasets/openslr_yoruba/yom_01523_00823489175.wav new file mode 100644 index 0000000000000000000000000000000000000000..20c6da14fa1a654c307efdfa4531514ec5e02f60 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00823489175.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821067a5a9730074f3514c8308969edc06cc3323341d158fb98ee2a899f081bb +size 344108 diff --git a/datasets/openslr_yoruba/yom_01523_00858808849.wav b/datasets/openslr_yoruba/yom_01523_00858808849.wav new file mode 100644 index 0000000000000000000000000000000000000000..b97b9078a6472bb1fe533a2be87cf3d31b4a7cc2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00858808849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9936227a57b5954c17feec555907546e7a348cae85c3681159fc5a59d846dac +size 311340 diff --git a/datasets/openslr_yoruba/yom_01523_00906421838.wav b/datasets/openslr_yoruba/yom_01523_00906421838.wav new file mode 100644 index 0000000000000000000000000000000000000000..e09ce6474ef469f65f17f051d2b45e0194409360 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00906421838.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab7217888e130cf5441b3d0677daf168b9f158a09dbe66aa56ccf99cc8f916d +size 442412 diff --git a/datasets/openslr_yoruba/yom_01523_00908761472.wav b/datasets/openslr_yoruba/yom_01523_00908761472.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f3bd86e95f823da6782e8633e2adfdf6e34824a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00908761472.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c81f29808fe357eed0faa83c6acd666fd4878f3f353f182300446643d1878c8 +size 401452 diff --git a/datasets/openslr_yoruba/yom_01523_00922422428.wav b/datasets/openslr_yoruba/yom_01523_00922422428.wav new file mode 100644 index 0000000000000000000000000000000000000000..676450651b8959b8f7bf0a60a9c2f99a4b2157a5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00922422428.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2010c3b199b4a535afef0fb3bcc0a91c2c478ef232d2aa474819da5cba6aae +size 679980 diff --git a/datasets/openslr_yoruba/yom_01523_00927691986.wav b/datasets/openslr_yoruba/yom_01523_00927691986.wav new file mode 100644 index 0000000000000000000000000000000000000000..831cd7db8545dc3a6669c92a54c74e35d928589c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00927691986.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d2e6cbed5a3de3602690eeea6ed1d35068e7cdf9b3660d967fb51b19bad300 +size 409644 diff --git a/datasets/openslr_yoruba/yom_01523_00944464995.wav b/datasets/openslr_yoruba/yom_01523_00944464995.wav new file mode 100644 index 0000000000000000000000000000000000000000..df233c2f03cf13c2d6199ac5ad07fc33bc18a34f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00944464995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:babf1ebe22be4c61cbc43c8a23c1de2f33d38490c2c4eaa1e11de6ca88a830cc +size 360492 diff --git a/datasets/openslr_yoruba/yom_01523_00947972943.wav b/datasets/openslr_yoruba/yom_01523_00947972943.wav new file mode 100644 index 0000000000000000000000000000000000000000..da98a196a0aae0940747129995e8df7f44990aaf --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_00947972943.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe924987c4da0a849fbbe8708645b0e389ce31f525c33e13e2ee622ba94420d +size 557100 diff --git a/datasets/openslr_yoruba/yom_01523_01027459857.wav b/datasets/openslr_yoruba/yom_01523_01027459857.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f98589c3fbaebb3df537dec0eb14e40858bac1d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01027459857.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce4071d7af0f204d5c56e016c9f4ff3904d7ed917445fc6b301105e23bf4336 +size 368684 diff --git a/datasets/openslr_yoruba/yom_01523_01067899408.wav b/datasets/openslr_yoruba/yom_01523_01067899408.wav new file mode 100644 index 0000000000000000000000000000000000000000..a27ce65bc4d9745d5bd9db698b1a98cb00be226a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01067899408.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27060092be0291b566cb340b7e9261768c22ee566e2dcd291d10c04ab99aea22 +size 516140 diff --git a/datasets/openslr_yoruba/yom_01523_01100692952.wav b/datasets/openslr_yoruba/yom_01523_01100692952.wav new file mode 100644 index 0000000000000000000000000000000000000000..da9cdbb54e4b45c8377e00a1ec3180f1cc1f9bfb --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01100692952.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb9b55a7a06732a597d71134c25bc15eb926ca0e04ef3a27327976c08a61907 +size 393260 diff --git a/datasets/openslr_yoruba/yom_01523_01150558994.wav b/datasets/openslr_yoruba/yom_01523_01150558994.wav new file mode 100644 index 0000000000000000000000000000000000000000..77bc7a79bbb422a63118f36cbc1175ec4273d352 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01150558994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2143f1ca91e6be03422369f1602fb81320caa6882c459bb6c56d90346654b0d5 +size 344108 diff --git a/datasets/openslr_yoruba/yom_01523_01171270749.wav b/datasets/openslr_yoruba/yom_01523_01171270749.wav new file mode 100644 index 0000000000000000000000000000000000000000..56d88deee417f9f29ba059394a9c3df1a596f561 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01171270749.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3193ebd3cdaaca4b8aaa59a1fe7ba62db776c3eb4e66524ab39e4ad45b0eafed +size 319532 diff --git a/datasets/openslr_yoruba/yom_01523_01202984853.wav b/datasets/openslr_yoruba/yom_01523_01202984853.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab1717f19c95468dfc22492449d1558faed92711 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01202984853.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c566e62e14e59d1020d55754d8d2cfa99f06bfa171d925707a211ff80b5e1bfa +size 352300 diff --git a/datasets/openslr_yoruba/yom_01523_01240809446.wav b/datasets/openslr_yoruba/yom_01523_01240809446.wav new file mode 100644 index 0000000000000000000000000000000000000000..48a8cbd92f56172a4e9f39ce567b6ac7a34e0f97 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01240809446.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1945377d52b67c585f21c070f1d6438b1b8024a8388a0ff2de3ca486546d87e6 +size 426028 diff --git a/datasets/openslr_yoruba/yom_01523_01284150094.wav b/datasets/openslr_yoruba/yom_01523_01284150094.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d012d6a6bf808767ad206d6ee6759fb8a632e9e --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01284150094.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724e9865726a4988ee6ffb03a0dd9c22899b0f7e1497a35f04c4d2c481774445 +size 303148 diff --git a/datasets/openslr_yoruba/yom_01523_01286078923.wav b/datasets/openslr_yoruba/yom_01523_01286078923.wav new file mode 100644 index 0000000000000000000000000000000000000000..617cefd72177b7d81cb432284c4fc7b12e6f3907 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01286078923.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be8ef8af82961e25a033390fed9f7562bd4aa92cf4076f8be81a7705830864d +size 507948 diff --git a/datasets/openslr_yoruba/yom_01523_01316050929.wav b/datasets/openslr_yoruba/yom_01523_01316050929.wav new file mode 100644 index 0000000000000000000000000000000000000000..7057b38e94824f4c1f65af09b9edc1cb46643e3d --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01316050929.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b04c83b9bec24fc543c30bf3b91033db1de134849461c65567285355fe2f2fa +size 278572 diff --git a/datasets/openslr_yoruba/yom_01523_01316314279.wav b/datasets/openslr_yoruba/yom_01523_01316314279.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ce5b77021c951c2d8a133a2d955ee1f720106ee --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01316314279.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d068e6117b627c4e7d0a58d88367618836655009a2d2fdd3d0da37fbb9d5896 +size 294956 diff --git a/datasets/openslr_yoruba/yom_01523_01346428924.wav b/datasets/openslr_yoruba/yom_01523_01346428924.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d0e0bde97909cf583a9922780abc269550560e5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01346428924.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cecb7035e0d949eaa6b9ab447a027075acc2b5d275d1dd84dabf1575c510e19 +size 409644 diff --git a/datasets/openslr_yoruba/yom_01523_01360676927.wav b/datasets/openslr_yoruba/yom_01523_01360676927.wav new file mode 100644 index 0000000000000000000000000000000000000000..ee504a4ebbbe68234586545c2f25bcd97bf59218 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01360676927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af84f91e7b8ffc9cf1fe138639108c9ead02de81ed341166f5826587f75f81f3 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01523_01377168875.wav b/datasets/openslr_yoruba/yom_01523_01377168875.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d04f5026969f1b22bc636419a670a611067881f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01377168875.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128017cf04a46da4bb3c379d418b9e2699ff1689003afd627576257b8a3cc31f +size 393260 diff --git a/datasets/openslr_yoruba/yom_01523_01379832398.wav b/datasets/openslr_yoruba/yom_01523_01379832398.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6e8bc432621a5f2af3a6b6d653cd04cb1d3dcd0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01379832398.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df331f58e6371ed0d9fc5a12f69f44a035753dcc09a162d901c52bf7cee7a55 +size 385068 diff --git a/datasets/openslr_yoruba/yom_01523_01416005370.wav b/datasets/openslr_yoruba/yom_01523_01416005370.wav new file mode 100644 index 0000000000000000000000000000000000000000..4efe85635f539d2b7b9d5c02ed8754063d737e18 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01416005370.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92edfc72bbf8762b2e1c742e1672ec9f4ecdcb2709febc3428405f1f58136f8d +size 270380 diff --git a/datasets/openslr_yoruba/yom_01523_01457996845.wav b/datasets/openslr_yoruba/yom_01523_01457996845.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ebd0c362be061711612e74760f82112590b1ca1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01457996845.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9849a814ed7d4d99bfb9eb3fdc4d9b2d1c5f017b11d5c56a2b7ed7f11bff97b3 +size 426028 diff --git a/datasets/openslr_yoruba/yom_01523_01458350798.wav b/datasets/openslr_yoruba/yom_01523_01458350798.wav new file mode 100644 index 0000000000000000000000000000000000000000..5507449791853d8fdc7887638e91437424c56339 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01458350798.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0487fc449e3f560e85d86741c5fc0f57133bb736ef78a3d377dfc2861d37d082 +size 450604 diff --git a/datasets/openslr_yoruba/yom_01523_01498522701.wav b/datasets/openslr_yoruba/yom_01523_01498522701.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9d83033e7e861bf2014e68049833e6ee74c0733 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01498522701.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1048aaa958d01e57665711cc3da159c72e67d17fc51484b34cbb041edc68ab8f +size 442412 diff --git a/datasets/openslr_yoruba/yom_01523_01541734074.wav b/datasets/openslr_yoruba/yom_01523_01541734074.wav new file mode 100644 index 0000000000000000000000000000000000000000..cee19a68d85511381c1774e5f6299f94a5283ceb --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01541734074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe878bd609d513e8a75795249c5d2d685b9bd85fd3e5aa6d2657a5fc63e7a98 +size 499756 diff --git a/datasets/openslr_yoruba/yom_01523_01562317434.wav b/datasets/openslr_yoruba/yom_01523_01562317434.wav new file mode 100644 index 0000000000000000000000000000000000000000..22a2c893d8b6720a6b4933cd464698ea511b9ac5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01562317434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a999619e99d45d8687f62987804d883b46d2b4b1d7e41cc69c3ae0456a71cc +size 385068 diff --git a/datasets/openslr_yoruba/yom_01523_01576014547.wav b/datasets/openslr_yoruba/yom_01523_01576014547.wav new file mode 100644 index 0000000000000000000000000000000000000000..83d1016c78732cb2f0f121020970871a00b02ad2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01576014547.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d3d6c6f8ac8b7d2075ea7d7e8f3cbe4267d8837f4a08e8114a4e83db343360 +size 311340 diff --git a/datasets/openslr_yoruba/yom_01523_01585700502.wav b/datasets/openslr_yoruba/yom_01523_01585700502.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cfe7877d8709f35882fb146c911f287a5b34328 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01585700502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18e70a6d638d4081e9c108c1df96687b2901417c52c31e0cc26295c704f87b9 +size 434220 diff --git a/datasets/openslr_yoruba/yom_01523_01608900385.wav b/datasets/openslr_yoruba/yom_01523_01608900385.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea115ec5490ef95ed7e250b7afe3e73b1176ffcd --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01608900385.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd1f89792fba7f61313cb05d65680e489bf97158bddc4e6233365f738c105ed +size 262188 diff --git a/datasets/openslr_yoruba/yom_01523_01656064431.wav b/datasets/openslr_yoruba/yom_01523_01656064431.wav new file mode 100644 index 0000000000000000000000000000000000000000..e86cd46f8a1853510ab10ee08b9c023054fa7493 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01656064431.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359573ab04eb63271b1c2a0fd1a1cacc27a0930b494685594364dc75e2826f8a +size 491564 diff --git a/datasets/openslr_yoruba/yom_01523_01660300224.wav b/datasets/openslr_yoruba/yom_01523_01660300224.wav new file mode 100644 index 0000000000000000000000000000000000000000..87fe37b4f0776be4d0fc3600f1cdbd1a17b83678 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01660300224.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06f178018d6d358e9bff3f28447cb0aba7dcd0e32ac03dd7637c86a2fb2c112 +size 466988 diff --git a/datasets/openslr_yoruba/yom_01523_01685339721.wav b/datasets/openslr_yoruba/yom_01523_01685339721.wav new file mode 100644 index 0000000000000000000000000000000000000000..7165b3bf1c0456abd8198a25d711247c09c0b439 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01685339721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50337a539d8b54a50b938875e674b3645e2292c6ed0bb67a411b65e16861d268 +size 352300 diff --git a/datasets/openslr_yoruba/yom_01523_01689055566.wav b/datasets/openslr_yoruba/yom_01523_01689055566.wav new file mode 100644 index 0000000000000000000000000000000000000000..49a0b8471110f66c5537baae1f18b1408047a71c --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01689055566.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6c870b7880c9757d46b237c85cf13c73891ccaf91f5f6b37b7766a192c9aae +size 622636 diff --git a/datasets/openslr_yoruba/yom_01523_01708456640.wav b/datasets/openslr_yoruba/yom_01523_01708456640.wav new file mode 100644 index 0000000000000000000000000000000000000000..b2f92cbc4719eee09f0791398a6a64c86324dbaa --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01708456640.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4760c7a3eb09a5bc8aa365dc5934551ca07b7a3333864bb37fb03608d3708378 +size 393260 diff --git a/datasets/openslr_yoruba/yom_01523_01715875934.wav b/datasets/openslr_yoruba/yom_01523_01715875934.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0c8bf19d1ba1512a11f5e785718f187d9d95f9b --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01715875934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca840584d9ca49590190ada080c911c2f41404a7c7da489f5b5ec5d26e36cbd +size 368684 diff --git a/datasets/openslr_yoruba/yom_01523_01747338017.wav b/datasets/openslr_yoruba/yom_01523_01747338017.wav new file mode 100644 index 0000000000000000000000000000000000000000..fad08f3c75d42dfb8dcfe76bebbbe97e2e757538 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01747338017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23f024b4300c6d6e4dd68be6aad9011ae6bb4a39b3ad4229430157f4fc18158 +size 262188 diff --git a/datasets/openslr_yoruba/yom_01523_01749196738.wav b/datasets/openslr_yoruba/yom_01523_01749196738.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed75361d454fc69ae746c2e308b5c443d56d3af6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01749196738.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19fef69c4ec10e583342e95a5d455f7a43697ef0c2881d7208412c8c2255a16 +size 327724 diff --git a/datasets/openslr_yoruba/yom_01523_01769113672.wav b/datasets/openslr_yoruba/yom_01523_01769113672.wav new file mode 100644 index 0000000000000000000000000000000000000000..85b4226fbe265ee572e7cba3b192cf692d1bc496 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01769113672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cef89aa388dfaaa9e5fa36a5b75f86c24cd51b9b40f1f2c461fa3e42c9f4c39 +size 458796 diff --git a/datasets/openslr_yoruba/yom_01523_01798327026.wav b/datasets/openslr_yoruba/yom_01523_01798327026.wav new file mode 100644 index 0000000000000000000000000000000000000000..695167721102ad68ff411607a112a5a453ba932a --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01798327026.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7320dc69b324bd5a7a05489b6a31776d41e9fa624d8c3e5b26a2dd247ab0608a +size 598060 diff --git a/datasets/openslr_yoruba/yom_01523_01824503554.wav b/datasets/openslr_yoruba/yom_01523_01824503554.wav new file mode 100644 index 0000000000000000000000000000000000000000..290e8f8f0a66f21e5a991c81b5530f51069de876 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01824503554.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0d91e055b9c6df0ca04355c3935df450212a9ca37bf7624d680e2a15c1273f +size 335916 diff --git a/datasets/openslr_yoruba/yom_01523_01849720673.wav b/datasets/openslr_yoruba/yom_01523_01849720673.wav new file mode 100644 index 0000000000000000000000000000000000000000..08663a6ce842c3a3d24dd88a3d981e0785e29311 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01849720673.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d95db73cb0d4f0170d5dd85d27d1c966821a2fe0272afbc1819a36d56c1992b +size 458796 diff --git a/datasets/openslr_yoruba/yom_01523_01853382303.wav b/datasets/openslr_yoruba/yom_01523_01853382303.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4e483d1251cf6ad81b0955b8c40b9b38beff528 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01853382303.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7584b642bb9648868fdf4ad44e370787464e716d0e361cdbbc7b138f33c1fa +size 401452 diff --git a/datasets/openslr_yoruba/yom_01523_01875565026.wav b/datasets/openslr_yoruba/yom_01523_01875565026.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c3995453d435c3b66a7d12952064ff7c56aa622 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01875565026.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa976d7ccd3565d2a00057c4d77cad3d2eede1de391ae871e60bf75993784d53 +size 303148 diff --git a/datasets/openslr_yoruba/yom_01523_01904723431.wav b/datasets/openslr_yoruba/yom_01523_01904723431.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a5747f9ed6b7f2c33d298bd59a4148626747cca --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01904723431.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ab2ceb517a4cb683850858d30ca7ddec9ed28b7603cc1624213d4a518286e9 +size 360492 diff --git a/datasets/openslr_yoruba/yom_01523_01933994146.wav b/datasets/openslr_yoruba/yom_01523_01933994146.wav new file mode 100644 index 0000000000000000000000000000000000000000..f03312a7a5c90cc5b2d014c1a3e797268b76f23f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01933994146.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7e4c32c1009173b3cf744843e42f6517c5acdbc2839cc36f00d3ce5cecddce3 +size 327724 diff --git a/datasets/openslr_yoruba/yom_01523_01955334894.wav b/datasets/openslr_yoruba/yom_01523_01955334894.wav new file mode 100644 index 0000000000000000000000000000000000000000..33f5b3ad444931d0b86eb2ac6b72394e478d70d9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01955334894.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a01010f618e6168ad61cd3afa9fcce862f3b5c2a1ba3f207797568bb27ce752 +size 401452 diff --git a/datasets/openslr_yoruba/yom_01523_01979038882.wav b/datasets/openslr_yoruba/yom_01523_01979038882.wav new file mode 100644 index 0000000000000000000000000000000000000000..2ba814569dad1ceee2f0d16409db36788dc7e6d7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01979038882.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49518fde7e6797c6cb1dc6ceae02e9705d6f39c0eb3517ef782278b8068960a +size 409644 diff --git a/datasets/openslr_yoruba/yom_01523_01987127766.wav b/datasets/openslr_yoruba/yom_01523_01987127766.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e776828f258d72aa84b7cb96ed840504161f805 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01987127766.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9523d11513b8e30be3a1a8b90147781289df50de246c9ba7fed42d1b5742580 +size 335916 diff --git a/datasets/openslr_yoruba/yom_01523_01990719203.wav b/datasets/openslr_yoruba/yom_01523_01990719203.wav new file mode 100644 index 0000000000000000000000000000000000000000..986be2eb646651ae1279da0c17f344e93f11f9a1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01990719203.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8171516941f184cfa6ccbb23c9fe1ddb30da10705b9c60fa64af4dbe4ab31bf +size 376876 diff --git a/datasets/openslr_yoruba/yom_01523_01995936510.wav b/datasets/openslr_yoruba/yom_01523_01995936510.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ab1d1385d6e3661d55e7b033a835c3d4f1855f0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_01995936510.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8009d77e9b1df2bb2b3f601d4ac9cacdaab887325345ac07fa09ba5e47f5ead +size 262188 diff --git a/datasets/openslr_yoruba/yom_01523_02042697707.wav b/datasets/openslr_yoruba/yom_01523_02042697707.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea6ba67f01b1494e0c40416f485b2c23b53f408f --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02042697707.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4009b4a8710a1aeb2682dc9cfcf471582db9e221ce27ddb78a861aa4df0964c3 +size 499756 diff --git a/datasets/openslr_yoruba/yom_01523_02052744662.wav b/datasets/openslr_yoruba/yom_01523_02052744662.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd6cba0297d5a8cf9d0a6126097db7e1cad8defc --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02052744662.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3513065df10d99c8778f512f7768910efd0fd18587d2d22ee6899745d60cd26 +size 335916 diff --git a/datasets/openslr_yoruba/yom_01523_02088776890.wav b/datasets/openslr_yoruba/yom_01523_02088776890.wav new file mode 100644 index 0000000000000000000000000000000000000000..02991060148e52f3303393a3e47113d5907b77c2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02088776890.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8652db1aca9eb88cc679ca83d9f14239957dbfd106ab64e3817021cf2167e7 +size 319532 diff --git a/datasets/openslr_yoruba/yom_01523_02091535034.wav b/datasets/openslr_yoruba/yom_01523_02091535034.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e039f7a69a48f3d3d847a2b8a51964c820a4102 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02091535034.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554df8eb2e8a672bd3318ed19be2df2004fcfd17aba2c1d03f4bcdf9ea3d7993 +size 688172 diff --git a/datasets/openslr_yoruba/yom_01523_02104085397.wav b/datasets/openslr_yoruba/yom_01523_02104085397.wav new file mode 100644 index 0000000000000000000000000000000000000000..3bb2debb1d2cdaf79c3389e71c65fbd90d3d006b --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02104085397.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9058b2c05479da637a416e5ff919d601b7bf58b2ddd3556b09026d32d603d5 +size 786476 diff --git a/datasets/openslr_yoruba/yom_01523_02104291580.wav b/datasets/openslr_yoruba/yom_01523_02104291580.wav new file mode 100644 index 0000000000000000000000000000000000000000..3db00f9403bb4dc20cfd0923a2ef09fda3cec036 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02104291580.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e70084524e633b01f36b79927a132a3ca5c1f530a9b952dbba313d0e7e2528f +size 426028 diff --git a/datasets/openslr_yoruba/yom_01523_02109066820.wav b/datasets/openslr_yoruba/yom_01523_02109066820.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e805cfc9ac291990f060f533a5fbbf3a028c1fa --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02109066820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506a973149ecfbe2d574f0dab389078f1c1ce08ab77b3afdb180163a12ad2c18 +size 540716 diff --git a/datasets/openslr_yoruba/yom_01523_02109343690.wav b/datasets/openslr_yoruba/yom_01523_02109343690.wav new file mode 100644 index 0000000000000000000000000000000000000000..c6c09dd82675751bbd47c8c04679e94acb05d2d0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_01523_02109343690.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fda34ac1528a701a71cf5f46ce081766163375bb80783c58eacf0014ad4c1f +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_00000125239.wav b/datasets/openslr_yoruba/yom_02121_00000125239.wav new file mode 100644 index 0000000000000000000000000000000000000000..f08be5926c63cde6ff1222fc01b74e88ef75f8f7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00000125239.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c0438e4c3a32a9f4ec01f7c730aaa257833b20dbb5f69a174d96a1f74de91d +size 245804 diff --git a/datasets/openslr_yoruba/yom_02121_00010444101.wav b/datasets/openslr_yoruba/yom_02121_00010444101.wav new file mode 100644 index 0000000000000000000000000000000000000000..98c74ea7e126274b6e1f7187049e6198e57f1f31 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00010444101.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f08280c97150818a62ae26400b724ef7f7eff8c12f62ca02e228ea0c6760d2 +size 286764 diff --git a/datasets/openslr_yoruba/yom_02121_00019762439.wav b/datasets/openslr_yoruba/yom_02121_00019762439.wav new file mode 100644 index 0000000000000000000000000000000000000000..c87eb52928a0d316a7ece7ab764741ad00c74290 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00019762439.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ed8e4c87be07ca3de2dc71a316e293cf901db49444c1d18c65a54f9d0dd970 +size 278572 diff --git a/datasets/openslr_yoruba/yom_02121_00028996665.wav b/datasets/openslr_yoruba/yom_02121_00028996665.wav new file mode 100644 index 0000000000000000000000000000000000000000..b0c85e36356ff0c6d14e09f9401a050d44078bf4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00028996665.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7a205b56c202f653a6bb870583f50edb299c22d42968c3b3ec09b3b58a8613 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_00059074559.wav b/datasets/openslr_yoruba/yom_02121_00059074559.wav new file mode 100644 index 0000000000000000000000000000000000000000..4dc5064e80046df639f1c27198fdd484be3c031e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00059074559.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2f555e3a27b9b2f8425bf8350e8785500efd3657b392cc453be18ae045fba1 +size 360492 diff --git a/datasets/openslr_yoruba/yom_02121_00080327297.wav b/datasets/openslr_yoruba/yom_02121_00080327297.wav new file mode 100644 index 0000000000000000000000000000000000000000..ebf19bc4c9e91fc387145a2aad9bab709a4bedf6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00080327297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d20d9e058ef56e5ca98f8b11651e408e8acbb818f34c7ff0d5b2023a8090aca +size 221228 diff --git a/datasets/openslr_yoruba/yom_02121_00083063400.wav b/datasets/openslr_yoruba/yom_02121_00083063400.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b68f97f418afa756fd6e47b809a60d5e603ae94 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00083063400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d38ce7fa377c61c44466d189a8485c78b960f5a3bd47fa54e7f43e05bc24b3ab +size 360492 diff --git a/datasets/openslr_yoruba/yom_02121_00094790439.wav b/datasets/openslr_yoruba/yom_02121_00094790439.wav new file mode 100644 index 0000000000000000000000000000000000000000..1f10eb3ef94555301bb8fd9bc4a31caf25eff6fa --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00094790439.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f515af678f42927d3186ecd3a2f96c67894e812e0de0abc93f011d8f1754836f +size 344108 diff --git a/datasets/openslr_yoruba/yom_02121_00123236106.wav b/datasets/openslr_yoruba/yom_02121_00123236106.wav new file mode 100644 index 0000000000000000000000000000000000000000..d47d857caa48d6605253e2b443bce9605178d4e5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00123236106.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566e0f63bb2453d05efafb1f4a0de79ec8b67f2f27c27e98576ff99d9a031e1e +size 319532 diff --git a/datasets/openslr_yoruba/yom_02121_00124746688.wav b/datasets/openslr_yoruba/yom_02121_00124746688.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4e74f8d8ff3589cfe25872790474f3220500118 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00124746688.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a79b88ed627cb0a3d88197225cea9171e67364044916f655ef2ec2a0e20ead8 +size 426028 diff --git a/datasets/openslr_yoruba/yom_02121_00137890896.wav b/datasets/openslr_yoruba/yom_02121_00137890896.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7be5f60dc47802a736397ebf2fabeb112f9b59b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00137890896.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29513869e5247001f301d5f4b57fdb0502862e4e94a627b8f3e4e92d0ff1197f +size 409644 diff --git a/datasets/openslr_yoruba/yom_02121_00143985059.wav b/datasets/openslr_yoruba/yom_02121_00143985059.wav new file mode 100644 index 0000000000000000000000000000000000000000..40400c0fcf476d307ba573027cf11a9d4d0c2bc2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00143985059.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19abdb8b627f60d10698a770980877bf165ad2be16f4fd297f2337ea59a9e686 +size 483372 diff --git a/datasets/openslr_yoruba/yom_02121_00173407981.wav b/datasets/openslr_yoruba/yom_02121_00173407981.wav new file mode 100644 index 0000000000000000000000000000000000000000..c707daa81db44f542df7be292d4cb56d61cbfffa --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00173407981.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1841b48d013fc03215bcca54a9804e47acab806235651e4ffc2e3b9de57ee0dd +size 344108 diff --git a/datasets/openslr_yoruba/yom_02121_00206639101.wav b/datasets/openslr_yoruba/yom_02121_00206639101.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0beeac1be7d3a92c53d437e8900ab9b0ceb46c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00206639101.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377d83563fa66ccd4343441d81515c348431ae8aabbbe80f14fe71cba2999f06 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02121_00210178810.wav b/datasets/openslr_yoruba/yom_02121_00210178810.wav new file mode 100644 index 0000000000000000000000000000000000000000..41520e635ffb481ecf14e5eecd654e01cc6c7138 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00210178810.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa05c297cf1c14814256f67d125891002a6293645c2984ca46adc0b463b57ab +size 557100 diff --git a/datasets/openslr_yoruba/yom_02121_00211120486.wav b/datasets/openslr_yoruba/yom_02121_00211120486.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e057ed9a4d8a471e292b8d7674d2858fc0d7b07 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00211120486.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657be4199c8f52c410cc48c10b392a4f0684fc7debcd471780c39cb7733e49a1 +size 262188 diff --git a/datasets/openslr_yoruba/yom_02121_00216027048.wav b/datasets/openslr_yoruba/yom_02121_00216027048.wav new file mode 100644 index 0000000000000000000000000000000000000000..9381b0a2ad352aea1143bf1cfba1471ecdb30d73 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00216027048.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd7a129bb53758b5f0d745dbde5d08329791d505333fb2e3d83e68c59dacf0e +size 426028 diff --git a/datasets/openslr_yoruba/yom_02121_00285279058.wav b/datasets/openslr_yoruba/yom_02121_00285279058.wav new file mode 100644 index 0000000000000000000000000000000000000000..512d41ec0a93905e7ab2ea27ea605de0d1ece1a2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00285279058.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4995ccdeef6088665a00cd4358a7c55dc10c50121f565c4baa048f603bc54d80 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_00290465209.wav b/datasets/openslr_yoruba/yom_02121_00290465209.wav new file mode 100644 index 0000000000000000000000000000000000000000..6396f9031d65902c2794f90d0b88e79d521357c2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00290465209.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3eb3b0ce0122b38000658059f8293355789b121958dacd605c9256612f31d76 +size 237612 diff --git a/datasets/openslr_yoruba/yom_02121_00306721033.wav b/datasets/openslr_yoruba/yom_02121_00306721033.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4809bd58a5e1959d7970714b6d3260cb61f3290 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00306721033.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96b253963009a1b13404244c375a45e12f000da84ea88fdd5b4065ec6792cf1a +size 253996 diff --git a/datasets/openslr_yoruba/yom_02121_00316330604.wav b/datasets/openslr_yoruba/yom_02121_00316330604.wav new file mode 100644 index 0000000000000000000000000000000000000000..1be49fb356e69f89b1865432a76f7e0bf5f2fcfa --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00316330604.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e33cd6296155fee63368c1ff6654629816fabbd0379d5daddd6c88aca406f3d8 +size 475180 diff --git a/datasets/openslr_yoruba/yom_02121_00318427891.wav b/datasets/openslr_yoruba/yom_02121_00318427891.wav new file mode 100644 index 0000000000000000000000000000000000000000..d92643a9077872213ad7d442dd0d2d37b9d2c5ce --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00318427891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa40c127792b080ec11d471bf6fa60fedae0301ca428a7de85890ddd80e7075 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02121_00319176995.wav b/datasets/openslr_yoruba/yom_02121_00319176995.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ca8f953fcd48f1ccf33e8363b06074d38829c75 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00319176995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9810c2cecac23c2f84289e30a3207daeb83b838108d7937dc7d7c580ed31e6 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_00327354025.wav b/datasets/openslr_yoruba/yom_02121_00327354025.wav new file mode 100644 index 0000000000000000000000000000000000000000..2934d620aa54e625991a0e08a0ee3f16000b50ef --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00327354025.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781535784e72adc4fca58ddc6762827f6fb2509b245c06fb5c79701b9ec282af +size 360492 diff --git a/datasets/openslr_yoruba/yom_02121_00333509503.wav b/datasets/openslr_yoruba/yom_02121_00333509503.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b9c010c8612423f4447163a3dc83ee0a8f27598 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00333509503.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0da171e95ea4e8bdf8d0335cc8fc98c5108e6e242021ea5ccf705e547d21699 +size 204844 diff --git a/datasets/openslr_yoruba/yom_02121_00356564615.wav b/datasets/openslr_yoruba/yom_02121_00356564615.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4fb224d294e92f0ec930dd99d497c36b184dbee --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00356564615.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994917f080c0b1f4a446cd9210a2b9a4df6b591de00155136411d947654b095d +size 253996 diff --git a/datasets/openslr_yoruba/yom_02121_00419187291.wav b/datasets/openslr_yoruba/yom_02121_00419187291.wav new file mode 100644 index 0000000000000000000000000000000000000000..addd286921811304063d6e3be40f69f63b208dd8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00419187291.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d1b1c245dcc64fa9fa60712a7755e00134079469ad37c93a469cd7afd5ed0c +size 434220 diff --git a/datasets/openslr_yoruba/yom_02121_00424840599.wav b/datasets/openslr_yoruba/yom_02121_00424840599.wav new file mode 100644 index 0000000000000000000000000000000000000000..40b4966accfc642b6abdeb7524eb81de1cdf9c9b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00424840599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adba60fe6ce66c1fe88c608596a8f6b47f42cf0174d31f87921b08e6bbd7b83a +size 581676 diff --git a/datasets/openslr_yoruba/yom_02121_00429881221.wav b/datasets/openslr_yoruba/yom_02121_00429881221.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa8abdbfb3838c7782a3ce775d283a31c70e245f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00429881221.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f1c58da99201e58e0fb0fdabe57d3db05f1e92edcf13c59e7ce20861c40f69b +size 196652 diff --git a/datasets/openslr_yoruba/yom_02121_00437973576.wav b/datasets/openslr_yoruba/yom_02121_00437973576.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bbdc70308aaba9e1bf38f8bad134eab758c7928 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00437973576.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61466c66cd0380e5683bc3397f5274f55ce4838f240a7ac309309413813d463f +size 270380 diff --git a/datasets/openslr_yoruba/yom_02121_00510983065.wav b/datasets/openslr_yoruba/yom_02121_00510983065.wav new file mode 100644 index 0000000000000000000000000000000000000000..66e9427ca7f83a44f667d273658cffc86e73b16f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00510983065.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db91a9cb0ef5f1969699c6488b1156c0071443b826b75ff0414e269d71ef253 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_00511825314.wav b/datasets/openslr_yoruba/yom_02121_00511825314.wav new file mode 100644 index 0000000000000000000000000000000000000000..c7927e2f736acf92972a250cedded747d091bb69 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00511825314.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:addf6cdcefbbc482b25821e29f946996c4c48541b148455baff8b9982b4e99a7 +size 401452 diff --git a/datasets/openslr_yoruba/yom_02121_00519630873.wav b/datasets/openslr_yoruba/yom_02121_00519630873.wav new file mode 100644 index 0000000000000000000000000000000000000000..a772d4a3011540e195793eb4639d95c30fadade7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00519630873.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec671b97a2eb934eefd415d414c88445e1222c0318d13cf9898ddaee096f56ab +size 475180 diff --git a/datasets/openslr_yoruba/yom_02121_00540274684.wav b/datasets/openslr_yoruba/yom_02121_00540274684.wav new file mode 100644 index 0000000000000000000000000000000000000000..6cf08c827972615fdf58f9c2bfb2bfd6ae7b674a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00540274684.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c66110d1442f9f3f4abfccaedcf48079eec19654e722f20252e07c076b7fd15b +size 286764 diff --git a/datasets/openslr_yoruba/yom_02121_00563827200.wav b/datasets/openslr_yoruba/yom_02121_00563827200.wav new file mode 100644 index 0000000000000000000000000000000000000000..af48d334f46f823f83a6b7e54b7029eecfc10864 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00563827200.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e06974ca2bb261b8c016dc5c2a014f827937176d48c0080e16f74ca3c999743 +size 286764 diff --git a/datasets/openslr_yoruba/yom_02121_00595505462.wav b/datasets/openslr_yoruba/yom_02121_00595505462.wav new file mode 100644 index 0000000000000000000000000000000000000000..1b6ca4a6c8f659ae4e6f109ede5838ca85fabf15 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00595505462.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad27945a4cc315b7d7312f63b982f0baa8da04fe68a680f869799ddd7786a89 +size 237612 diff --git a/datasets/openslr_yoruba/yom_02121_00636745987.wav b/datasets/openslr_yoruba/yom_02121_00636745987.wav new file mode 100644 index 0000000000000000000000000000000000000000..40b685cc35d190b3c55ae29f8baf543db9fdeadc --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00636745987.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:918adfdd79caa9a329b5c96d804f556e314e319d287b8eacfa67592d63e96490 +size 491564 diff --git a/datasets/openslr_yoruba/yom_02121_00642777643.wav b/datasets/openslr_yoruba/yom_02121_00642777643.wav new file mode 100644 index 0000000000000000000000000000000000000000..63739c81e8ad914cb9918bc0ee674fef499f6583 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00642777643.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6838b489bf21734aa5f113df80c84d8ab0fe9406c0a6ea7026ffa59e594b011b +size 229420 diff --git a/datasets/openslr_yoruba/yom_02121_00652214627.wav b/datasets/openslr_yoruba/yom_02121_00652214627.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed28da14b2e77b8f82cf4ee472977baa987fb621 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00652214627.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f25dab68bd3e61e1d08e1c8ee2a06c8d0eb86dfbb13f9f3982440046e9459c +size 327724 diff --git a/datasets/openslr_yoruba/yom_02121_00660612475.wav b/datasets/openslr_yoruba/yom_02121_00660612475.wav new file mode 100644 index 0000000000000000000000000000000000000000..7645cb1dbf0c4c52696431b095cb8e542191bd47 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00660612475.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147ea1c0b63ffd161fd3a3d5b3a17db04c527fe32cddb5e1dcb5947ae599d300 +size 376876 diff --git a/datasets/openslr_yoruba/yom_02121_00674722638.wav b/datasets/openslr_yoruba/yom_02121_00674722638.wav new file mode 100644 index 0000000000000000000000000000000000000000..808bc3e096a070a889b9d1ee1dc0f33c0004099b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00674722638.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5becfa9762fa40bbb345240ffd85db88a76d4e99ccc55cb3efb4720ff322ed71 +size 393260 diff --git a/datasets/openslr_yoruba/yom_02121_00686650169.wav b/datasets/openslr_yoruba/yom_02121_00686650169.wav new file mode 100644 index 0000000000000000000000000000000000000000..4af1313d7061ae4379552b7d3567e40d82601cec --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00686650169.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c96bdb44801137f7c41cb9d70a0a9866c60e1b4c397b0d04955a0a0f27964a +size 262188 diff --git a/datasets/openslr_yoruba/yom_02121_00689998337.wav b/datasets/openslr_yoruba/yom_02121_00689998337.wav new file mode 100644 index 0000000000000000000000000000000000000000..b898b023e6677d37f1d3a75ffa0b528d7ca6ac73 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00689998337.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e28003a800947f5b15d95672d7812e64ba7df2818c5dda3fb3765af485a91e +size 327724 diff --git a/datasets/openslr_yoruba/yom_02121_00708252982.wav b/datasets/openslr_yoruba/yom_02121_00708252982.wav new file mode 100644 index 0000000000000000000000000000000000000000..fff9d127d2f7eaee118cf2a80593c819b7239e7c --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00708252982.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98766adba2ebefd707d2151d55a1ac8a5fbc02e1502c06bdde1a10a8b29f6adc +size 221228 diff --git a/datasets/openslr_yoruba/yom_02121_00752498240.wav b/datasets/openslr_yoruba/yom_02121_00752498240.wav new file mode 100644 index 0000000000000000000000000000000000000000..c74aa9df12c83a05967adb7d025f0a33935a1c24 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00752498240.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9153f99750dc69097ee2cde4ecc45a401aac2ddb7be5cfebf70d14308d7056eb +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_00766885645.wav b/datasets/openslr_yoruba/yom_02121_00766885645.wav new file mode 100644 index 0000000000000000000000000000000000000000..c642c7cde38920bd763d204756dd11dc5163d7d4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00766885645.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30bb13d4118b49f9a36dca5d2bc3d6a537ac8e72adeca9ec3c2809a2cd752b1e +size 393260 diff --git a/datasets/openslr_yoruba/yom_02121_00772251437.wav b/datasets/openslr_yoruba/yom_02121_00772251437.wav new file mode 100644 index 0000000000000000000000000000000000000000..a00dd00720cfd4eff64851eb08c13bf112ad3a4d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00772251437.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d755e71d2136b5344669dccc45c3a292a589035f6bcf7b479b15859600c6857 +size 376876 diff --git a/datasets/openslr_yoruba/yom_02121_00777936106.wav b/datasets/openslr_yoruba/yom_02121_00777936106.wav new file mode 100644 index 0000000000000000000000000000000000000000..29aa8441fa444bfcaf7db7e67d896ad8554ff8fb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00777936106.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e4c64bb700e699061090f6c42269030fcd4afa624ab188ffd9171d182f5854 +size 409644 diff --git a/datasets/openslr_yoruba/yom_02121_00782760176.wav b/datasets/openslr_yoruba/yom_02121_00782760176.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bd31fa75ba4435af9243eadf38a4a47f63e6e6b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00782760176.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:769c361533d74957fe40754795e5e2911d17d5a70ef5025b6eedae20d9eb1007 +size 548908 diff --git a/datasets/openslr_yoruba/yom_02121_00859460733.wav b/datasets/openslr_yoruba/yom_02121_00859460733.wav new file mode 100644 index 0000000000000000000000000000000000000000..2d3e5ff7d157651e1501d560efca6c1e1c7cd1e8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00859460733.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449f5c9466d5b1e4a2c4f68bb458e8f4616ba8f30dc4e27500300f5d576576b2 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02121_00891361339.wav b/datasets/openslr_yoruba/yom_02121_00891361339.wav new file mode 100644 index 0000000000000000000000000000000000000000..36e48d23825dd76c9cc944dc044bf7f6233bfacd --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00891361339.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d5e18e472fc57f84ab4f3f63e21f6d4a1bd48321f0ceb141f022549f9bc5ef +size 557100 diff --git a/datasets/openslr_yoruba/yom_02121_00899698592.wav b/datasets/openslr_yoruba/yom_02121_00899698592.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5d43f91394ff0b8619e1ff27a70d84a95c519df --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00899698592.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b4f5d234eac76aa22569d0345d2920b78450634031effd2ce7850abbfabce1 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_00900745843.wav b/datasets/openslr_yoruba/yom_02121_00900745843.wav new file mode 100644 index 0000000000000000000000000000000000000000..8cecca67fa60277cc5b919bfc4f63acfe79c7bd8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00900745843.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53c5c6747904f22df9ed18b4e850bee71430a8fd11680fe780e1f2a2f68cdd4 +size 319532 diff --git a/datasets/openslr_yoruba/yom_02121_00919171997.wav b/datasets/openslr_yoruba/yom_02121_00919171997.wav new file mode 100644 index 0000000000000000000000000000000000000000..7b30f03a62f68327d04ee03b23df0a7d83ad72c9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00919171997.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b2786c40a8f77b405c7ec1f1361f369df460cd75abadecd3320ec4fe02ab3d +size 466988 diff --git a/datasets/openslr_yoruba/yom_02121_00968107226.wav b/datasets/openslr_yoruba/yom_02121_00968107226.wav new file mode 100644 index 0000000000000000000000000000000000000000..a5160c71ee68b81c06e8969f3a6927ff96889216 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00968107226.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb876affe4783cf24e6507788f3145dc403a2fac9eb85f6701514db2ea1c63d +size 385068 diff --git a/datasets/openslr_yoruba/yom_02121_00985154016.wav b/datasets/openslr_yoruba/yom_02121_00985154016.wav new file mode 100644 index 0000000000000000000000000000000000000000..54ae51f5cebefe43e6c22e19f40de6ba44063a0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00985154016.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d48c37676c30e51f217e19520455ca63bdbbe3ad75bc4623ff5bcd5e731b7f4 +size 262188 diff --git a/datasets/openslr_yoruba/yom_02121_00987072196.wav b/datasets/openslr_yoruba/yom_02121_00987072196.wav new file mode 100644 index 0000000000000000000000000000000000000000..faaa645ec2fd61289f717e93ff5038907ffd692f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_00987072196.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f28dc9b511ce90d5e2ce48e029686f08d99d0d58512786d510267eb5abbc405 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_01099526752.wav b/datasets/openslr_yoruba/yom_02121_01099526752.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f7b3111e602d56901e4dd5ef1f935e5dc061250 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01099526752.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82ad802b941d170fc0d1a83180fa416098d910c3d77378887c463ce35e412a7 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02121_01114822567.wav b/datasets/openslr_yoruba/yom_02121_01114822567.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7e8bba974653508864ec81f36ce3ca8801c53ac --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01114822567.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf6d0d8a26b44095023a7be800d6d640fb41f348adf7a17432ddfa4c622398e +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_01228047902.wav b/datasets/openslr_yoruba/yom_02121_01228047902.wav new file mode 100644 index 0000000000000000000000000000000000000000..059ea01e6cf30586b3df38804996c1bcea0ab01d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01228047902.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328d9418caa68baa954b2ae26666e9ebf4d754a9017d740198f557e0ba3934d1 +size 655404 diff --git a/datasets/openslr_yoruba/yom_02121_01252162815.wav b/datasets/openslr_yoruba/yom_02121_01252162815.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3c594f93b1ba9ea54b3bbd4fa99598ef39d84c5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01252162815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9f2465d14249313f7cac14dc748a4ff213eafd288105659213c535f59f16df +size 507948 diff --git a/datasets/openslr_yoruba/yom_02121_01262071535.wav b/datasets/openslr_yoruba/yom_02121_01262071535.wav new file mode 100644 index 0000000000000000000000000000000000000000..fdb8acd5c61463eedc33cf505a625f967803bc72 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01262071535.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f670b14cc733748298ada6fd96f89946f9319b637799548f5def848d8c5ce4 +size 253996 diff --git a/datasets/openslr_yoruba/yom_02121_01262704472.wav b/datasets/openslr_yoruba/yom_02121_01262704472.wav new file mode 100644 index 0000000000000000000000000000000000000000..a50598cae56575cc5c74e7784eb2df9b09cfbff0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01262704472.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a9028f91a13e395ab322a25c2c5c83afb27ba56bcd9a6066308cbbfc2e6da6 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02121_01266388114.wav b/datasets/openslr_yoruba/yom_02121_01266388114.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ce1d4dc1b11c76f12143280e086408e640e07a6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01266388114.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28fb8db0f684d53039481417332bd9439c26438c8f5e3a4a677e84e8fe2ef114 +size 213036 diff --git a/datasets/openslr_yoruba/yom_02121_01297858066.wav b/datasets/openslr_yoruba/yom_02121_01297858066.wav new file mode 100644 index 0000000000000000000000000000000000000000..3401cf299fd70d3d157f6ef86a2892ce7f21dafd --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01297858066.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2760ec5d15ae761e51f39fc5a2ff004ed74aad8eaff08f9db43eb66528ad428 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02121_01331414256.wav b/datasets/openslr_yoruba/yom_02121_01331414256.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9a8f6dbbce2e0c2974e6bfad953de546c5391fe --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01331414256.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5575e9b3296d6867a4629ef4e1608bb46a260f8a6d9836d4de03d3fb5ace9f2c +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_01352279665.wav b/datasets/openslr_yoruba/yom_02121_01352279665.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9f2e1f3ce776a3ed91571dfda48d8c1c4238773 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01352279665.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941dd210ef333a5c14736aeb6feafb57c5aa18cf844d60f78bd2cf091c59a036 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_01420882609.wav b/datasets/openslr_yoruba/yom_02121_01420882609.wav new file mode 100644 index 0000000000000000000000000000000000000000..73a68733d8f951900cc6f263efbed32418fa0ec0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01420882609.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5b9028e317f519b38c388b162664881a3f3fb6cbe58f58f386d567c1b20932 +size 221228 diff --git a/datasets/openslr_yoruba/yom_02121_01438483831.wav b/datasets/openslr_yoruba/yom_02121_01438483831.wav new file mode 100644 index 0000000000000000000000000000000000000000..fdd6b9e9b4a1def8307404fe0ac86e50b8d8720e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01438483831.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086617ad55f8892890169b36164c38e04969e2b6580a8ce62daea394dd434b87 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02121_01459930082.wav b/datasets/openslr_yoruba/yom_02121_01459930082.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6d8c72fa7828f4cf5716c1350c20f0bbeae0186 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01459930082.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7cbd8b4c462895f32b32d495a18dd59f384d710dc06fa424931cc637d8f336d +size 409644 diff --git a/datasets/openslr_yoruba/yom_02121_01463000436.wav b/datasets/openslr_yoruba/yom_02121_01463000436.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c4edce07edbcadabb9bb2fa5922e41cfde57810 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01463000436.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17fc023aeae46d839255c1e605012ca2125061d026447919f68f1858bd4def74 +size 376876 diff --git a/datasets/openslr_yoruba/yom_02121_01464131542.wav b/datasets/openslr_yoruba/yom_02121_01464131542.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a41c56a4dd4b22707004096e82c998229506c82 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01464131542.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c4152d3bac96794ee5063c8831b10ebfe0a811a0a1fa9573c1d1ae88ebcbc12 +size 188460 diff --git a/datasets/openslr_yoruba/yom_02121_01506029086.wav b/datasets/openslr_yoruba/yom_02121_01506029086.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9202d43e8984af8cd87beeae5eec8f2bb8790ed --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01506029086.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e9287338aea6406d7244b0bcab70c6d353e757e206f802361b11a401a2d61d +size 450604 diff --git a/datasets/openslr_yoruba/yom_02121_01545187415.wav b/datasets/openslr_yoruba/yom_02121_01545187415.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6fab8371e287e534c49d14ad27f0152bb67614e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01545187415.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843d7087bb65722400ac30632330f18109f248b991b9494d655e008f4a26210a +size 458796 diff --git a/datasets/openslr_yoruba/yom_02121_01563504575.wav b/datasets/openslr_yoruba/yom_02121_01563504575.wav new file mode 100644 index 0000000000000000000000000000000000000000..504174b82abe89c7301f413ee8853ebc6c341215 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01563504575.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d19b28429f514a4d230f210e22d6b441e4c9de338bce5d3f36643ed9b88765 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_01606560487.wav b/datasets/openslr_yoruba/yom_02121_01606560487.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7428adf18ed5cf3a5baa125510d3c8305f19fa5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01606560487.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b61457de650523c66745b130c5def1b1e5a05ad272ef9edafea480f8528ec48 +size 385068 diff --git a/datasets/openslr_yoruba/yom_02121_01642377449.wav b/datasets/openslr_yoruba/yom_02121_01642377449.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb47f6fe71bca447167cb925f7091e8e780adeff --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01642377449.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff5cd5cbf791b3aeb9cb8e8bfa9ac2d6accab55490db5f04bf59d71a777bc6c +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_01646619163.wav b/datasets/openslr_yoruba/yom_02121_01646619163.wav new file mode 100644 index 0000000000000000000000000000000000000000..559a96afe94cebb27cb668894009ad44f03f3fe4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01646619163.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97be539b51fb1daba320e3e503f1349c30d847e6f74323a10c69e12e40ae38d6 +size 450604 diff --git a/datasets/openslr_yoruba/yom_02121_01663709904.wav b/datasets/openslr_yoruba/yom_02121_01663709904.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c82bd290423574757ab0e2ae8e24015d20d64d0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01663709904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76918da550933e73811312d31bc6a61d6d3b96bd6de507b1e1f76fb4301601ac +size 213036 diff --git a/datasets/openslr_yoruba/yom_02121_01685777743.wav b/datasets/openslr_yoruba/yom_02121_01685777743.wav new file mode 100644 index 0000000000000000000000000000000000000000..764421253126f6b760f3a0a0824a195cdd2bf27f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01685777743.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97dd4ab2b51188df2ea0f16d16a55d8387b742bf5079f0f03e8c865dbb637925 +size 417836 diff --git a/datasets/openslr_yoruba/yom_02121_01692346848.wav b/datasets/openslr_yoruba/yom_02121_01692346848.wav new file mode 100644 index 0000000000000000000000000000000000000000..eae590fb669f1a9264c9624ed186746d71f7a047 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01692346848.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46631c36ff905a3a87b4adc9340ddbb3438760d2d1527e23b08d18353b28b1e0 +size 401452 diff --git a/datasets/openslr_yoruba/yom_02121_01706494052.wav b/datasets/openslr_yoruba/yom_02121_01706494052.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6b8f9f00bd6a9b8e43d00a6e7fac7db476bdbf9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01706494052.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee44e56bb7709192f920db5a5a74efe90d44eb68e9f29ae010bfa51d14b384e +size 253996 diff --git a/datasets/openslr_yoruba/yom_02121_01719185423.wav b/datasets/openslr_yoruba/yom_02121_01719185423.wav new file mode 100644 index 0000000000000000000000000000000000000000..9818b7ca6e8cffe9d80a12f492b84ecfa1fe61b3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01719185423.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638522bcca2d564a7de573c38330e7ae83f53356945a3bea66be296628709741 +size 286764 diff --git a/datasets/openslr_yoruba/yom_02121_01719214746.wav b/datasets/openslr_yoruba/yom_02121_01719214746.wav new file mode 100644 index 0000000000000000000000000000000000000000..f080020d285886daced5a11c4208da48bdba3bd9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01719214746.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403f617543141651f8d29da77e2a6f30aee5698f9661cbe0d5db6d6acb33d7f3 +size 319532 diff --git a/datasets/openslr_yoruba/yom_02121_01720574192.wav b/datasets/openslr_yoruba/yom_02121_01720574192.wav new file mode 100644 index 0000000000000000000000000000000000000000..a622642f1b2a5881da71883f2983211bf2c60877 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01720574192.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63de2d15f65b3e5c2f3b36330be30951f8ea9cba984dfdeaf7a92b4b9a6eedeb +size 319532 diff --git a/datasets/openslr_yoruba/yom_02121_01728330279.wav b/datasets/openslr_yoruba/yom_02121_01728330279.wav new file mode 100644 index 0000000000000000000000000000000000000000..d0296f8a448eb4dcd4a698920603e37073268a7b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01728330279.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acec3afba331a8f3753a2d5d6e67ccb833bdfd66b8c07be0b5046bc209675a0c +size 319532 diff --git a/datasets/openslr_yoruba/yom_02121_01777314155.wav b/datasets/openslr_yoruba/yom_02121_01777314155.wav new file mode 100644 index 0000000000000000000000000000000000000000..05a1690e1c381a2d4e7b8f1c6587a95707f3c2ea --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01777314155.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb34b60f564a9d58003c892c579fe6af1e890316136e72b72cc13a7365cea4bc +size 671788 diff --git a/datasets/openslr_yoruba/yom_02121_01783333043.wav b/datasets/openslr_yoruba/yom_02121_01783333043.wav new file mode 100644 index 0000000000000000000000000000000000000000..eeab5860df8d20e85c0e019cc438c3a36e0120be --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01783333043.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4523fd7755ccbeb6022de6649fc50279e51df1ec7b7c0c9ab8f4c7c8a3ab27bd +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_01804362596.wav b/datasets/openslr_yoruba/yom_02121_01804362596.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1590a1e68c8c87db7b921c88ee8adc839e7302f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01804362596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e838128b48dfd8ea11f71d1ff56d65ff75cd30120a11efdd3ef84e4f2892e0 +size 286764 diff --git a/datasets/openslr_yoruba/yom_02121_01814534607.wav b/datasets/openslr_yoruba/yom_02121_01814534607.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc7b3e275adc7b41146b51e58a7550b72da9953a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01814534607.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d44bc8f90647b99a266a2c4736e46638fa0bb95e06021b0cb271369a33def2f +size 196652 diff --git a/datasets/openslr_yoruba/yom_02121_01831412677.wav b/datasets/openslr_yoruba/yom_02121_01831412677.wav new file mode 100644 index 0000000000000000000000000000000000000000..f32260a83c11d4d104c64fc503dcb1d80561abad --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01831412677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279642109ea703a92bfc2ae281907fd389f3be068a1e2c717c319261673e11ed +size 311340 diff --git a/datasets/openslr_yoruba/yom_02121_01845269710.wav b/datasets/openslr_yoruba/yom_02121_01845269710.wav new file mode 100644 index 0000000000000000000000000000000000000000..1677d6ff3d8c3b5dcef2cec47e5f04112fda07bd --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01845269710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30a8624f831632f542f841b1de913cd6d745abbef3a6bec27e32187837ca2f9 +size 237612 diff --git a/datasets/openslr_yoruba/yom_02121_01893640880.wav b/datasets/openslr_yoruba/yom_02121_01893640880.wav new file mode 100644 index 0000000000000000000000000000000000000000..6335fdf172351b5d5d1c3743059200804ba2b0d8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01893640880.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d8e600310e216b13d9e2ab43df6a8ab07e0ea35f2f082512eecd9bce2d8a6dc +size 335916 diff --git a/datasets/openslr_yoruba/yom_02121_01902805525.wav b/datasets/openslr_yoruba/yom_02121_01902805525.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a524139ffa89206a401b0d57d48fbe5a45ee446 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01902805525.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae3544d3a271004a7a57f2e2e1d3069762899004c5e488bc9f137d8a397aff0 +size 344108 diff --git a/datasets/openslr_yoruba/yom_02121_01938602530.wav b/datasets/openslr_yoruba/yom_02121_01938602530.wav new file mode 100644 index 0000000000000000000000000000000000000000..89aee573bb83315c44cb4c2931d48212e7a4f12c --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01938602530.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ceb22cea31e823d7f77cb4f6a323e1590d8122369ff090163eb27f5c3fc0f85 +size 491564 diff --git a/datasets/openslr_yoruba/yom_02121_01963752838.wav b/datasets/openslr_yoruba/yom_02121_01963752838.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d42eedcf670d6779f68c52fa9953b4cd13265d5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_01963752838.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963d77c4ed844e62d2b448eca18a81c6a2e1fc3f7213a534f65559ec6f731bfd +size 647212 diff --git a/datasets/openslr_yoruba/yom_02121_02034423957.wav b/datasets/openslr_yoruba/yom_02121_02034423957.wav new file mode 100644 index 0000000000000000000000000000000000000000..e536aa8bd4526c803eb619568ae9b49395e5c77a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_02034423957.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea14252129a1ba8b1b18c527647465641d9bd275142223e8de5ef0e48b2421aa +size 352300 diff --git a/datasets/openslr_yoruba/yom_02121_02049095677.wav b/datasets/openslr_yoruba/yom_02121_02049095677.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b9bd26bcf6f2b710dba3c7729d6fc8566654fd3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_02049095677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8f243133f3b07a6ebdf7e019948f6eed6fa8efd5aaa6a0aab7117cce3070ca +size 262188 diff --git a/datasets/openslr_yoruba/yom_02121_02055597144.wav b/datasets/openslr_yoruba/yom_02121_02055597144.wav new file mode 100644 index 0000000000000000000000000000000000000000..76d1ab2bcc6432fb22019fb9cc6c39a3307e80d5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_02055597144.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccfdf566931b3f353c27e295bc89ad13d6cddc3d105f608a6128ffbd31dc23a6 +size 466988 diff --git a/datasets/openslr_yoruba/yom_02121_02084135875.wav b/datasets/openslr_yoruba/yom_02121_02084135875.wav new file mode 100644 index 0000000000000000000000000000000000000000..47185562ccc38197e29514d040735e1a237f91ee --- /dev/null +++ b/datasets/openslr_yoruba/yom_02121_02084135875.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b525623de2a2433a5863ba2306702c6c6d5f83e9807e71e138ef74d5432a67 +size 516140 diff --git a/datasets/openslr_yoruba/yom_02436_00041044282.wav b/datasets/openslr_yoruba/yom_02436_00041044282.wav new file mode 100644 index 0000000000000000000000000000000000000000..eb8bc9fb3002fd775cbc36137364ce366fbb9432 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00041044282.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380549786b0d059d640eb158f9df7c1d22e0a0da3ed297cd68664369835fbd7c +size 327724 diff --git a/datasets/openslr_yoruba/yom_02436_00064032752.wav b/datasets/openslr_yoruba/yom_02436_00064032752.wav new file mode 100644 index 0000000000000000000000000000000000000000..9cad301b91b9b672d8affac574345f8543f1e9dc --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00064032752.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2b1bc30d2fb0579486d0be7e83c7d24c25efbacfccf81540e437445675dcd2 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02436_00106979017.wav b/datasets/openslr_yoruba/yom_02436_00106979017.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d9e8bf8a1e546f3f04402f98457d5239671eef3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00106979017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b58701d688aca1bc8405c8043134bdc2b9d6baf82a77bad2fd62122e5fdab7 +size 630828 diff --git a/datasets/openslr_yoruba/yom_02436_00153654326.wav b/datasets/openslr_yoruba/yom_02436_00153654326.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4dfbdd5c1826278ebdcb9610b7cb04b47ccc1b9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00153654326.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f4c3b2c7ebd1a689f66d58dac76a32b9055650af5dc182d842c175503dae2ec +size 565292 diff --git a/datasets/openslr_yoruba/yom_02436_00208158235.wav b/datasets/openslr_yoruba/yom_02436_00208158235.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bd9cdaa2d14fec3ae2d2a40dc22eb63b82c5b0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00208158235.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc4cf8a251abbf3258eb177c69d73f9aef61f326b818533190ae460eb3632eab +size 516140 diff --git a/datasets/openslr_yoruba/yom_02436_00261727794.wav b/datasets/openslr_yoruba/yom_02436_00261727794.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c796e5051316d46158e76aef011d950caee55a0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00261727794.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba27e5a53f35515f048aa1044e9913e2c147a3509536c3642bb83e89d8ea8b7 +size 483372 diff --git a/datasets/openslr_yoruba/yom_02436_00301172841.wav b/datasets/openslr_yoruba/yom_02436_00301172841.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f2070a49755a4425a678612d710ede3955bc1f4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00301172841.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:550984c3a7349d632b65f585030e1401d2f1cafc2dc75b187d1bc9c0ba0836aa +size 426028 diff --git a/datasets/openslr_yoruba/yom_02436_00308431132.wav b/datasets/openslr_yoruba/yom_02436_00308431132.wav new file mode 100644 index 0000000000000000000000000000000000000000..58a26164c15c5e7e867ee7d1b58f7fab75c3e32b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00308431132.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f32e58e98023e36a8000339a45c752c3c9c0bb66a3b9fd6750b04e0e4dd17b4 +size 606252 diff --git a/datasets/openslr_yoruba/yom_02436_00352999611.wav b/datasets/openslr_yoruba/yom_02436_00352999611.wav new file mode 100644 index 0000000000000000000000000000000000000000..5eb813c7fc05e3008d2da6f78c1da2576e223aaf --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00352999611.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d294e45c7055e116bf8bc2ab235033bf66aa871974c4e728e089fb33c44408 +size 573484 diff --git a/datasets/openslr_yoruba/yom_02436_00378049870.wav b/datasets/openslr_yoruba/yom_02436_00378049870.wav new file mode 100644 index 0000000000000000000000000000000000000000..164eb9ec0059c9d86eabc84f55ce09b452b85e14 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00378049870.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ac406488e00eb5511b47931b9265e51fc52b93541077704d1f267e7a194056 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02436_00384928509.wav b/datasets/openslr_yoruba/yom_02436_00384928509.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc2289a6f2fe8aa59df98b6ca4d5d86761caea61 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00384928509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c989260941cfeddc7069d77af55605d8e68d86b57decf95d33d7c6b6b6a978f9 +size 327724 diff --git a/datasets/openslr_yoruba/yom_02436_00428024882.wav b/datasets/openslr_yoruba/yom_02436_00428024882.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b0a12a7eefefb210558ce01c49262059fe9e17f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00428024882.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca465f414dc7f127920a18a9b0439c7bc284bdcdfeb757c1d1a1275767bc42a5 +size 770092 diff --git a/datasets/openslr_yoruba/yom_02436_00430291818.wav b/datasets/openslr_yoruba/yom_02436_00430291818.wav new file mode 100644 index 0000000000000000000000000000000000000000..f16759433d7d9f2332b4222471f738febf789160 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00430291818.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d12457a410e4e1c5a08cc51237d817b542fce8dec2400c9db56eae5cacc96c +size 475180 diff --git a/datasets/openslr_yoruba/yom_02436_00454047651.wav b/datasets/openslr_yoruba/yom_02436_00454047651.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca1f562bf58b1fb686870e4299b021c84c393ef0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00454047651.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3de72b2f71860f4c1eb03773f38a6c1c706eae2105ea4510e28b3045b8e4ec +size 262188 diff --git a/datasets/openslr_yoruba/yom_02436_00469642151.wav b/datasets/openslr_yoruba/yom_02436_00469642151.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c68dffa5f81450c37f8a0d261a2d779dc1241b1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00469642151.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c42fa1315fcc5428970e2e9bf346b1ed51f7069ed8a7aa24a2102afb6b0984 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02436_00487673064.wav b/datasets/openslr_yoruba/yom_02436_00487673064.wav new file mode 100644 index 0000000000000000000000000000000000000000..43b84ff0515d49f72c42cc027eada9009818a23a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00487673064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daab44b73b2e8d0fc3d35235720adc029f39fa4c328a0ff24ab0ff62d2282ed9 +size 344108 diff --git a/datasets/openslr_yoruba/yom_02436_00502570507.wav b/datasets/openslr_yoruba/yom_02436_00502570507.wav new file mode 100644 index 0000000000000000000000000000000000000000..97d798a7e8325e17ef86435abcff285c18ea8cf1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00502570507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7075b332dc0280d3a70b2f2e1c3d347620b5b934b9681853c37927e005a21a +size 352300 diff --git a/datasets/openslr_yoruba/yom_02436_00573336572.wav b/datasets/openslr_yoruba/yom_02436_00573336572.wav new file mode 100644 index 0000000000000000000000000000000000000000..d236eaaf50663a8004171b8fa2792ee6440dc023 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00573336572.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1204cec352c90a9f03bb92aa6ad8749d29935d6e8d0b74aa1f7696ee15c8300a +size 483372 diff --git a/datasets/openslr_yoruba/yom_02436_00682828921.wav b/datasets/openslr_yoruba/yom_02436_00682828921.wav new file mode 100644 index 0000000000000000000000000000000000000000..31e3f7f0d14c069b321e7bb53d68d4e6bc031505 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00682828921.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4987bd116c4bb8ae5bcbbfe06c110f519083e34d7ec828ae25690f63c71cfbba +size 491564 diff --git a/datasets/openslr_yoruba/yom_02436_00701300944.wav b/datasets/openslr_yoruba/yom_02436_00701300944.wav new file mode 100644 index 0000000000000000000000000000000000000000..27519d742f4cec3c8374f9ec85bc771942daadb8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00701300944.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c861ed486e22aa9be974c51296458e507efe437dab24c6fcac93f6394ab7d87b +size 376876 diff --git a/datasets/openslr_yoruba/yom_02436_00703168072.wav b/datasets/openslr_yoruba/yom_02436_00703168072.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed282cec37513a1e13f45b0e2cedbda9b2452def --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00703168072.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c91541a84f268e1720be0fe8be2256060e9bff3f6a336b10080c9cda4500655 +size 589868 diff --git a/datasets/openslr_yoruba/yom_02436_00715757019.wav b/datasets/openslr_yoruba/yom_02436_00715757019.wav new file mode 100644 index 0000000000000000000000000000000000000000..bdb2c2966c0cd1c98a29e680d655fb7fdb7aea19 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00715757019.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158bc8c45661ddbc4ab2d21ad34e2514171d82ddbf9288b44ad7f65c3a270507 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02436_00735769236.wav b/datasets/openslr_yoruba/yom_02436_00735769236.wav new file mode 100644 index 0000000000000000000000000000000000000000..7062d2bc3a2c1c10749d70ed9c90ac6d33a99e1c --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00735769236.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e73bf31088601f3b80da3b03bd44b186e4eaefe551014ebe22d7dcfe78e3141 +size 417836 diff --git a/datasets/openslr_yoruba/yom_02436_00735834672.wav b/datasets/openslr_yoruba/yom_02436_00735834672.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c8346855eecdc798489f21eb66fc09acc1b7325 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00735834672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c47800292600b269b5871f0f476c3733e0b34ae836e4d0f3d79be129f785011 +size 860204 diff --git a/datasets/openslr_yoruba/yom_02436_00760032605.wav b/datasets/openslr_yoruba/yom_02436_00760032605.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad500a0360f788899ef668fdc6caf4145a92a239 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00760032605.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7adad6324a34de28ef3abf3ff53c86c3b042aa6429bb205d9691c2effe38664 +size 1163308 diff --git a/datasets/openslr_yoruba/yom_02436_00768720921.wav b/datasets/openslr_yoruba/yom_02436_00768720921.wav new file mode 100644 index 0000000000000000000000000000000000000000..df1943521a9c04e3de8633043e5a375965e2bdbb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00768720921.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59738fb095209d870e56d06a146887ac01fd6db4d91225d3488dadb5b12d535 +size 294956 diff --git a/datasets/openslr_yoruba/yom_02436_00818203334.wav b/datasets/openslr_yoruba/yom_02436_00818203334.wav new file mode 100644 index 0000000000000000000000000000000000000000..ca1b093b5484183352f26d7f8817a843f733bd2b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00818203334.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c024e9febad212c614d62a3d6c139e47d3cb758ca8b45dd31ad41e3e2a4904b1 +size 540716 diff --git a/datasets/openslr_yoruba/yom_02436_00839891534.wav b/datasets/openslr_yoruba/yom_02436_00839891534.wav new file mode 100644 index 0000000000000000000000000000000000000000..48676e65e9be13d5dff5fda1511f5b42c07427f7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00839891534.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acff8ebd81602a88dba4c96be9203650d8d43cd35c9f06538fecfdf6f3e0e679 +size 409644 diff --git a/datasets/openslr_yoruba/yom_02436_00889863484.wav b/datasets/openslr_yoruba/yom_02436_00889863484.wav new file mode 100644 index 0000000000000000000000000000000000000000..97b939d8921c4f6f277ed8df59048b7323a517ab --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00889863484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326253acb5aab773da4d3415fc5bcc0df0cff0aeae20b7106349cdd6486c73cd +size 491564 diff --git a/datasets/openslr_yoruba/yom_02436_00892169512.wav b/datasets/openslr_yoruba/yom_02436_00892169512.wav new file mode 100644 index 0000000000000000000000000000000000000000..63776ff4c35f2b621f4aaf76448166e97c41ed29 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00892169512.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105844c929daeb1697f5ce6d397446238685e9aebfc5808e8b1f50209fd86942 +size 507948 diff --git a/datasets/openslr_yoruba/yom_02436_00905089491.wav b/datasets/openslr_yoruba/yom_02436_00905089491.wav new file mode 100644 index 0000000000000000000000000000000000000000..025d132bf4e671e62eb86e2edc698211850fdf55 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00905089491.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4205c36cb8d73f60ee2c449db8a29fc716b832e0d20f2a2277f213e9c79f2a +size 352300 diff --git a/datasets/openslr_yoruba/yom_02436_00928708939.wav b/datasets/openslr_yoruba/yom_02436_00928708939.wav new file mode 100644 index 0000000000000000000000000000000000000000..334651094e289da1a1c2a3061ca0d35c011b34ea --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00928708939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b812a9c5b4038e77c0289c702930eec036fd18ba3a129e1fb2d097738cb63c0 +size 278572 diff --git a/datasets/openslr_yoruba/yom_02436_00930978382.wav b/datasets/openslr_yoruba/yom_02436_00930978382.wav new file mode 100644 index 0000000000000000000000000000000000000000..33c55f0b5338fc13ad6e2b72dffe1724b6ae5302 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_00930978382.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ce3a3d3714dfff3da14ae9027c4fc16a2c2114c702237fc93d8d34f24c54a1 +size 663596 diff --git a/datasets/openslr_yoruba/yom_02436_01020115343.wav b/datasets/openslr_yoruba/yom_02436_01020115343.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e450aa72ef27edd20f2816dd52638a1fea679e9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01020115343.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:655389c8bb9fc2602382021760a834afb6b8ae81ef3ef0d71b9e22859abb46e0 +size 426028 diff --git a/datasets/openslr_yoruba/yom_02436_01036315115.wav b/datasets/openslr_yoruba/yom_02436_01036315115.wav new file mode 100644 index 0000000000000000000000000000000000000000..3939152f643368b735d9354b77608559c23485ab --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01036315115.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9160fad4917fd74cf3f878790ce3156f18a3a90b04a21572743a8590399dc2e +size 294956 diff --git a/datasets/openslr_yoruba/yom_02436_01051296181.wav b/datasets/openslr_yoruba/yom_02436_01051296181.wav new file mode 100644 index 0000000000000000000000000000000000000000..efaba3714964db928f61521d435c36dfa542e51f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01051296181.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a224741ecfe5c1d8b88d1d6ab63a48d67823ef984c8fdb61b35fd5bcbe45fa9 +size 524332 diff --git a/datasets/openslr_yoruba/yom_02436_01059066012.wav b/datasets/openslr_yoruba/yom_02436_01059066012.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2f15ceb3b551d368bf9a6277fec146ce12febfb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01059066012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137ef47c57698c60c3a32179f0e69e0ca9c66c7d3fa9ee188307477f08e0a126 +size 557100 diff --git a/datasets/openslr_yoruba/yom_02436_01062104356.wav b/datasets/openslr_yoruba/yom_02436_01062104356.wav new file mode 100644 index 0000000000000000000000000000000000000000..039ffdb2776b43d26f7ea4fff24c4b28927833cd --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01062104356.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:928cea4ec3b8fd5f3132d27519a1bd129234f57ff29a6564aeb59b5c04e79e89 +size 262188 diff --git a/datasets/openslr_yoruba/yom_02436_01062352977.wav b/datasets/openslr_yoruba/yom_02436_01062352977.wav new file mode 100644 index 0000000000000000000000000000000000000000..7c371370fd28c28e6f183baaeec7ad153e691556 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01062352977.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c48f343e166bc7ac3d2dd1a9519bac4ea6d510928247d48a6735bed57d108b9 +size 557100 diff --git a/datasets/openslr_yoruba/yom_02436_01069058378.wav b/datasets/openslr_yoruba/yom_02436_01069058378.wav new file mode 100644 index 0000000000000000000000000000000000000000..a746f3cb589dc2eebe8cc3a6390a1105e1955175 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01069058378.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9dd5db813f330d44edb279fd1bd4dfe793939e8b2fc4286fafeb9e8e9179b8 +size 466988 diff --git a/datasets/openslr_yoruba/yom_02436_01072540162.wav b/datasets/openslr_yoruba/yom_02436_01072540162.wav new file mode 100644 index 0000000000000000000000000000000000000000..31700c6626f9ecb8103c704cc338fa7b989c73b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01072540162.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40638fca2a2419b39626722b1fe917a1527ce3a3b44def29df7274e032d46212 +size 434220 diff --git a/datasets/openslr_yoruba/yom_02436_01077511316.wav b/datasets/openslr_yoruba/yom_02436_01077511316.wav new file mode 100644 index 0000000000000000000000000000000000000000..5254436f4eb9eff9dbb67becf7f19235b883163f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01077511316.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e7d1cf2d5d4faf63fc7ec34c17c077a74f74d8694d8cfb42f9ac838146569b +size 360492 diff --git a/datasets/openslr_yoruba/yom_02436_01080639434.wav b/datasets/openslr_yoruba/yom_02436_01080639434.wav new file mode 100644 index 0000000000000000000000000000000000000000..363a27b518dbb8827ff3c355fbd7795f9e923c66 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01080639434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965eb9f6c55d62b892d7c214c7afea38ffcc4bee3b4e370ebdbff3fe392ec4ae +size 327724 diff --git a/datasets/openslr_yoruba/yom_02436_01094241710.wav b/datasets/openslr_yoruba/yom_02436_01094241710.wav new file mode 100644 index 0000000000000000000000000000000000000000..007994916a33d0e9ccbb286c15d827e38f39f912 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01094241710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab1ce10a5dad24f5849c71b932b7122cec664432076a0e45d9915afd02c6739 +size 327724 diff --git a/datasets/openslr_yoruba/yom_02436_01098056185.wav b/datasets/openslr_yoruba/yom_02436_01098056185.wav new file mode 100644 index 0000000000000000000000000000000000000000..73cbf27691c58b6e411f724df0809e9eeee56719 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01098056185.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a0b98ee883d659d0035dd8fda51ef1f15ea78d842366c235ec1d93127c5d86 +size 458796 diff --git a/datasets/openslr_yoruba/yom_02436_01110654433.wav b/datasets/openslr_yoruba/yom_02436_01110654433.wav new file mode 100644 index 0000000000000000000000000000000000000000..744ce32035b107ed53cfa0f09bec9b7a44513bc4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01110654433.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2901b824bf7123e36fd14b3a344fb6d627a86039a584f71a11da90200e1f3b3 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02436_01143945455.wav b/datasets/openslr_yoruba/yom_02436_01143945455.wav new file mode 100644 index 0000000000000000000000000000000000000000..79fc1b544f641269c0d2829e773d7f7284eebefe --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01143945455.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de55ed9e5c3e5a7f5fb1b2ab08662ae79c66eebcb4e9bfce152b89844230ccd +size 475180 diff --git a/datasets/openslr_yoruba/yom_02436_01154895931.wav b/datasets/openslr_yoruba/yom_02436_01154895931.wav new file mode 100644 index 0000000000000000000000000000000000000000..a9fb641f3c5ea3c5f830058bdc7bd79fe2921f59 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01154895931.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79449b93e80b97de086585a993eb9ee14360670f6cca00aa2798b62d7c45d391 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02436_01168501945.wav b/datasets/openslr_yoruba/yom_02436_01168501945.wav new file mode 100644 index 0000000000000000000000000000000000000000..3222e332d2b070ec49930beeb0b99d5e0f881496 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01168501945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915320f85acb42f627b392bc1678caf7721dab282cddbc89261e4bf48a0485c5 +size 344108 diff --git a/datasets/openslr_yoruba/yom_02436_01183044336.wav b/datasets/openslr_yoruba/yom_02436_01183044336.wav new file mode 100644 index 0000000000000000000000000000000000000000..80af9039637d77cdc157048dee705aea311101f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01183044336.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d6b2a89e237c770234133364ec3942e2f7fec46603ee138a62e11f0b15dd0d +size 639020 diff --git a/datasets/openslr_yoruba/yom_02436_01183866596.wav b/datasets/openslr_yoruba/yom_02436_01183866596.wav new file mode 100644 index 0000000000000000000000000000000000000000..04e70b3f0def539fd37fcb9dcc294398da1e3cd1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01183866596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ae0842df7c8272dff28e5b5b779637db6d77e94a767b10bd121a63e07ea8b8 +size 630828 diff --git a/datasets/openslr_yoruba/yom_02436_01193063263.wav b/datasets/openslr_yoruba/yom_02436_01193063263.wav new file mode 100644 index 0000000000000000000000000000000000000000..31f20f26c7525b976af42a12c14c58b0bf4900f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01193063263.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3353d1ba3ff00c4b91d5b977372d631dd6267507d06a8f2a7e170549907f2c52 +size 385068 diff --git a/datasets/openslr_yoruba/yom_02436_01194726021.wav b/datasets/openslr_yoruba/yom_02436_01194726021.wav new file mode 100644 index 0000000000000000000000000000000000000000..8844f52d70a435c9417e1a277d88b69f26978ef6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01194726021.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d323bccb5c2589bf6cbf3535f2144be59265f998e884f8f5ce8044d524518a7b +size 278572 diff --git a/datasets/openslr_yoruba/yom_02436_01198761674.wav b/datasets/openslr_yoruba/yom_02436_01198761674.wav new file mode 100644 index 0000000000000000000000000000000000000000..45e0d2a1c7842ac722d4e6c526c95affd32cc70b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01198761674.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3064a97f3d3fdc80f2b93bc85a594498e5ce3c45f0f8fbd06e8875aeb766c0 +size 548908 diff --git a/datasets/openslr_yoruba/yom_02436_01205162726.wav b/datasets/openslr_yoruba/yom_02436_01205162726.wav new file mode 100644 index 0000000000000000000000000000000000000000..6e0219a65d5cf0159cd276c200ae1ab0e8b5e3fa --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01205162726.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c095bde3529cfcbd3a3714f1756d92338251a6cb70fdcd9cbd9bd33bf454befa +size 286764 diff --git a/datasets/openslr_yoruba/yom_02436_01219135889.wav b/datasets/openslr_yoruba/yom_02436_01219135889.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d77804b80a5ecb1c8e0882b0f0d8bf034c95ce2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01219135889.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4e2231e32911d0523e8b6812f49334d76fec450e4f2b5308b49b7f924aa8b5 +size 450604 diff --git a/datasets/openslr_yoruba/yom_02436_01256159647.wav b/datasets/openslr_yoruba/yom_02436_01256159647.wav new file mode 100644 index 0000000000000000000000000000000000000000..2881696c80fb0a0af5f05b4615cadb61eacf1828 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01256159647.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c65a18e2422630fa62357149eaabfe89113a1570d87009efad78974d48f4a0 +size 409644 diff --git a/datasets/openslr_yoruba/yom_02436_01287097361.wav b/datasets/openslr_yoruba/yom_02436_01287097361.wav new file mode 100644 index 0000000000000000000000000000000000000000..38d67f206053596d5406d56d3efd4fc9b19088b6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01287097361.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227be9f657db0db41c996a6729a050fa08c4abcb53264066ee787e6fc000e79f +size 761900 diff --git a/datasets/openslr_yoruba/yom_02436_01292201432.wav b/datasets/openslr_yoruba/yom_02436_01292201432.wav new file mode 100644 index 0000000000000000000000000000000000000000..469cef8658ba2bcd121f1bb37643fd5e8467179b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01292201432.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca75c12e2a9bd320c1f74014d246029fc729669878e8805afab629918e8ed13 +size 294956 diff --git a/datasets/openslr_yoruba/yom_02436_01353362184.wav b/datasets/openslr_yoruba/yom_02436_01353362184.wav new file mode 100644 index 0000000000000000000000000000000000000000..5aeaca99215b668069c5989e8ba5eb02aaed80f1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01353362184.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6965ca3df3c071ec64f6ca733c3a5fd30c404d08e4afa3a14f4d0870918968b +size 303148 diff --git a/datasets/openslr_yoruba/yom_02436_01363970755.wav b/datasets/openslr_yoruba/yom_02436_01363970755.wav new file mode 100644 index 0000000000000000000000000000000000000000..2122658d87f52bede57b83a58b17f13dd5d04167 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01363970755.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65da41b27245125b28ece1bde81c0077b2ff172703d2c9dc8eaf02f7f82dc65 +size 442412 diff --git a/datasets/openslr_yoruba/yom_02436_01369779581.wav b/datasets/openslr_yoruba/yom_02436_01369779581.wav new file mode 100644 index 0000000000000000000000000000000000000000..23e64064b62a7ec91325a1031e74157c4650067b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01369779581.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a192fb0eff8b3d2e0f793e133278dea0a027a28fafb442b7549480de0791bcc3 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02436_01373670277.wav b/datasets/openslr_yoruba/yom_02436_01373670277.wav new file mode 100644 index 0000000000000000000000000000000000000000..3fa43b176a39a6f42166d8bf36f44780ffaa317d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01373670277.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e58e2a6e12a5ab28449be1a75dff057eca6217259d4f87f7f5aa742adaa08f1 +size 909356 diff --git a/datasets/openslr_yoruba/yom_02436_01393638712.wav b/datasets/openslr_yoruba/yom_02436_01393638712.wav new file mode 100644 index 0000000000000000000000000000000000000000..b94fa950a9753336d58045dc3aeeeaf06eac4a99 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01393638712.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78177c1d68441da86e9f0c49570bf6e8346fef60d837de60b7bffa29d9169394 +size 393260 diff --git a/datasets/openslr_yoruba/yom_02436_01396806081.wav b/datasets/openslr_yoruba/yom_02436_01396806081.wav new file mode 100644 index 0000000000000000000000000000000000000000..d64e9a2fa400d7f809024925044ba957b588b696 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01396806081.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8421d8f236ad56eac283fc900ae107b772faf92286624bc9098e0fd9f9b1c7fc +size 311340 diff --git a/datasets/openslr_yoruba/yom_02436_01399583303.wav b/datasets/openslr_yoruba/yom_02436_01399583303.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7e54790ad954e1e4d4933ff9580d684d75fa1da --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01399583303.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac629acb7800d333eee1273f2d3a664da38ab790ae36121bdb6f95649268b521 +size 319532 diff --git a/datasets/openslr_yoruba/yom_02436_01439348281.wav b/datasets/openslr_yoruba/yom_02436_01439348281.wav new file mode 100644 index 0000000000000000000000000000000000000000..9344b2bb0ff3657eea1344427e620324cad7a4b8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01439348281.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a02009edb558fcd49c7965e745b3cd7e5f0bc6092348eb95463763fc7c3d4c +size 278572 diff --git a/datasets/openslr_yoruba/yom_02436_01444941079.wav b/datasets/openslr_yoruba/yom_02436_01444941079.wav new file mode 100644 index 0000000000000000000000000000000000000000..1be5f6cb2c078fc73ad6585fa8de2875dfd67ef9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01444941079.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c7624cb3da27f9e92fed600abbb0e153de054a1af35657e7d89a1c13436dba +size 368684 diff --git a/datasets/openslr_yoruba/yom_02436_01484341679.wav b/datasets/openslr_yoruba/yom_02436_01484341679.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1fc6256bea54a605bc43b5aa347433f30904ae5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01484341679.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368bb1ab8ebc8c9dbfabe7d1575cadbefcb22ff7614e61dc6535f48b981e1ad1 +size 622636 diff --git a/datasets/openslr_yoruba/yom_02436_01534267201.wav b/datasets/openslr_yoruba/yom_02436_01534267201.wav new file mode 100644 index 0000000000000000000000000000000000000000..132a19e41b7f3bbc1cbfaeb955cfedd8649cdc9e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01534267201.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199cf85372801a26987a7770131f3f85d118c2330eb7483fa14ffca79fabd636 +size 409644 diff --git a/datasets/openslr_yoruba/yom_02436_01538779565.wav b/datasets/openslr_yoruba/yom_02436_01538779565.wav new file mode 100644 index 0000000000000000000000000000000000000000..36200d739a1f324faf65925c29ff05c34a8cf0d5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01538779565.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc409e230d45eb3c0b7fcece46db980ad81715974c2e604aca4cb373cdeea193 +size 409644 diff --git a/datasets/openslr_yoruba/yom_02436_01543144546.wav b/datasets/openslr_yoruba/yom_02436_01543144546.wav new file mode 100644 index 0000000000000000000000000000000000000000..9f5150b0c0ac8fe229eb09823427177d5da322a3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01543144546.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceada546046befd31d2569a0ff95562bad1276c5977d8748d26c51e76fedc867 +size 253996 diff --git a/datasets/openslr_yoruba/yom_02436_01550551307.wav b/datasets/openslr_yoruba/yom_02436_01550551307.wav new file mode 100644 index 0000000000000000000000000000000000000000..43e5f93404b55de605ef6ea0c713a740853644b5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01550551307.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbff61e39f52182462d7b3d43e936106baa2df18fb009491fe31cf1509276500 +size 376876 diff --git a/datasets/openslr_yoruba/yom_02436_01577997914.wav b/datasets/openslr_yoruba/yom_02436_01577997914.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e5171ed5c33e7f94b01193fdba1a87d83fbf3be --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01577997914.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78dfdbf4cdf6af26d92b7a4be62435c19d2b6fe85d6003b548dd3656ed2bbfe +size 565292 diff --git a/datasets/openslr_yoruba/yom_02436_01585584486.wav b/datasets/openslr_yoruba/yom_02436_01585584486.wav new file mode 100644 index 0000000000000000000000000000000000000000..5894c9fb4a9e50e2bd04d1d2ceca6761a9ec9057 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01585584486.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17452f58190a198b24069608a1bf93723853f5d9bed41f49e6377961a1f229ff +size 393260 diff --git a/datasets/openslr_yoruba/yom_02436_01589893130.wav b/datasets/openslr_yoruba/yom_02436_01589893130.wav new file mode 100644 index 0000000000000000000000000000000000000000..64d11d5ba113328ddcb09fd82913aab74d8d24f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01589893130.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0190f6b438a7bd14d6bbedaf970ffd149102f58bed5474bacb8f0f0fa2c233c2 +size 507948 diff --git a/datasets/openslr_yoruba/yom_02436_01592863715.wav b/datasets/openslr_yoruba/yom_02436_01592863715.wav new file mode 100644 index 0000000000000000000000000000000000000000..1851adca2487a20adb09775d5cb16ecdd681daeb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01592863715.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6720e52f5f128d523e770c412f1c8becddb8d5b949b841db260ce376aff2279 +size 483372 diff --git a/datasets/openslr_yoruba/yom_02436_01609851330.wav b/datasets/openslr_yoruba/yom_02436_01609851330.wav new file mode 100644 index 0000000000000000000000000000000000000000..10b16fd00717df700699c81138501a633487ddeb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01609851330.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17760dffa24638503bfde71691d21918f4d0cb30d92b8cde0129df02c45f8b2c +size 393260 diff --git a/datasets/openslr_yoruba/yom_02436_01642623780.wav b/datasets/openslr_yoruba/yom_02436_01642623780.wav new file mode 100644 index 0000000000000000000000000000000000000000..af62ec68a8da6fe3915c9530555399f989dacff4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01642623780.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d2764b89ecbfccb12eddc7ccab8bd08f91bc46f5a20a67ba1dcba8e95d3b00e +size 532524 diff --git a/datasets/openslr_yoruba/yom_02436_01655777112.wav b/datasets/openslr_yoruba/yom_02436_01655777112.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c135ab552965eca1ec4eb6eefaa3e308f34aa6c --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01655777112.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:302a1bb3b5518a51296db3a194d4fb8c65f07cec0bf127580d8e1cd919b095cd +size 319532 diff --git a/datasets/openslr_yoruba/yom_02436_01678221006.wav b/datasets/openslr_yoruba/yom_02436_01678221006.wav new file mode 100644 index 0000000000000000000000000000000000000000..8a61b34c82accff10bece745dfdaae6170e0c8d9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01678221006.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79ed304222f0a25aeb8d989c587f0fede5819c73e32a2e7cf77af500fb86efc +size 598060 diff --git a/datasets/openslr_yoruba/yom_02436_01761870840.wav b/datasets/openslr_yoruba/yom_02436_01761870840.wav new file mode 100644 index 0000000000000000000000000000000000000000..1cc65831dfe5695e80e8d7eb2de67521edcdb535 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01761870840.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d5826c193a43c19821690960ec5d5f673f5e217febc877d7f9d8ebbfb86f0a +size 401452 diff --git a/datasets/openslr_yoruba/yom_02436_01766436833.wav b/datasets/openslr_yoruba/yom_02436_01766436833.wav new file mode 100644 index 0000000000000000000000000000000000000000..912d937738dabc411c1f06d99539481cc22c6753 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01766436833.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3c27a7121d23473a3bb95c2def004008ff5860c6632746c35e5d222ea07cce +size 368684 diff --git a/datasets/openslr_yoruba/yom_02436_01777757244.wav b/datasets/openslr_yoruba/yom_02436_01777757244.wav new file mode 100644 index 0000000000000000000000000000000000000000..b59b537c571eb98f4baa3688b04d79ce162a1449 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01777757244.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339aca244e436ece68ac7bebafec40dff1ffc1bb06288b8d9c420d4fc6d44f7d +size 294956 diff --git a/datasets/openslr_yoruba/yom_02436_01798286718.wav b/datasets/openslr_yoruba/yom_02436_01798286718.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6628a35929decbd4b2b95bbf7aa97a843bbb1c2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01798286718.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7482d83d7767f9e5e38487111029cabbf138fac4a68d3d25a83e96816c504d0e +size 335916 diff --git a/datasets/openslr_yoruba/yom_02436_01821957426.wav b/datasets/openslr_yoruba/yom_02436_01821957426.wav new file mode 100644 index 0000000000000000000000000000000000000000..f05803ce6ff14bdf37c7a30642a2b0ec1929e9a6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01821957426.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cded2fc98d3c2a501bb3c5e8989a27202ea2560fe778b0e4e819015ca64944 +size 376876 diff --git a/datasets/openslr_yoruba/yom_02436_01876894428.wav b/datasets/openslr_yoruba/yom_02436_01876894428.wav new file mode 100644 index 0000000000000000000000000000000000000000..f250d8335aaf29d8f8ab8967371e8b4c86ed86bf --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01876894428.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7032b20c5ccd0c497df9d4cbf34c225d0fe978cf3b2489e1ad5c69ead2222244 +size 401452 diff --git a/datasets/openslr_yoruba/yom_02436_01878910410.wav b/datasets/openslr_yoruba/yom_02436_01878910410.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc646c08439fd5637ad32fc274516ec29352e6eb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01878910410.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f84a9dec70c97b1db96b8214b6e3eff637a86afb506c5e434ae97d1ae0ffdc +size 679980 diff --git a/datasets/openslr_yoruba/yom_02436_01900185584.wav b/datasets/openslr_yoruba/yom_02436_01900185584.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1b3b1c00ee09762dd9a5899916cca83df47ffd1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01900185584.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323b88522f9e611763af7b05750ef81d5f7b26f4d9b712e767fe86aaa2649627 +size 499756 diff --git a/datasets/openslr_yoruba/yom_02436_01940295652.wav b/datasets/openslr_yoruba/yom_02436_01940295652.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a8db543bb22b83105fada6c414aeb91cd0385db --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01940295652.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80d941e0f03f9c8ba6ff477e6f369fe2240128854864276afe72cb2dbeffa4c +size 393260 diff --git a/datasets/openslr_yoruba/yom_02436_01951602507.wav b/datasets/openslr_yoruba/yom_02436_01951602507.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b926ad275f367a1326b514943788fe3f1b32476 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01951602507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835365f5329d2bac955d59505a3f1de57070638d3c8da7cae92a67b3c4656d22 +size 368684 diff --git a/datasets/openslr_yoruba/yom_02436_01956909162.wav b/datasets/openslr_yoruba/yom_02436_01956909162.wav new file mode 100644 index 0000000000000000000000000000000000000000..b189a326e7f88e22b8106e3f5348be1b7cf77715 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01956909162.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb12b1523dc6329f567496be904154a8e242b064111c1114efe42ae9390f943 +size 630828 diff --git a/datasets/openslr_yoruba/yom_02436_01988144562.wav b/datasets/openslr_yoruba/yom_02436_01988144562.wav new file mode 100644 index 0000000000000000000000000000000000000000..98a68ed75c1f335f3bdf782741a60d4ddeac137e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_01988144562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4413bebd8a95197a3313981cddd268865d77cf7f619c3eea0b719e4c3f18f09c +size 385068 diff --git a/datasets/openslr_yoruba/yom_02436_02014915639.wav b/datasets/openslr_yoruba/yom_02436_02014915639.wav new file mode 100644 index 0000000000000000000000000000000000000000..d8a88a1f63059da980fe402c1ee401e9c1cc84e4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_02014915639.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c336b424df3ead737aa4db5847bd4fdf6cace7f21af3d77da4edca87b5064f +size 696364 diff --git a/datasets/openslr_yoruba/yom_02436_02017462417.wav b/datasets/openslr_yoruba/yom_02436_02017462417.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9dbf7fbc975c16bc0fa096f0b15ec886d4697ef --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_02017462417.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff9410e591019b970f10b77c4946e732c063d3c442c52df29891a015ce9b8d2 +size 278572 diff --git a/datasets/openslr_yoruba/yom_02436_02039529359.wav b/datasets/openslr_yoruba/yom_02436_02039529359.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0048d8355a485586235ed3968dff41c0d358c9a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_02039529359.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf9b28983e16be65c8528007c20642012faab4659b1336103851916a7b2882d +size 622636 diff --git a/datasets/openslr_yoruba/yom_02436_02078539238.wav b/datasets/openslr_yoruba/yom_02436_02078539238.wav new file mode 100644 index 0000000000000000000000000000000000000000..5310a8e0a25f6161472b093a71c37cf4ae8c3155 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_02078539238.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966f7f90f50ff7e5f07222aa44051d92c14fc15c8471a6396fc71d10b4d57824 +size 942124 diff --git a/datasets/openslr_yoruba/yom_02436_02078723804.wav b/datasets/openslr_yoruba/yom_02436_02078723804.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b5cb6a286b55649ae371bee6c6d0f89c49be71e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_02078723804.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0010955faa4bc450f2dcc5ad51f085090643e3ed2f68b1d815bb7a40ffd5a0 +size 458796 diff --git a/datasets/openslr_yoruba/yom_02436_02129872860.wav b/datasets/openslr_yoruba/yom_02436_02129872860.wav new file mode 100644 index 0000000000000000000000000000000000000000..24ce2d5b91343b8f7dc59efbde55b5871a5219ca --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_02129872860.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eef031c96863e8b3f994fe76cf94394bcaf7925e274ec41940c9a155a3d6651a +size 548908 diff --git a/datasets/openslr_yoruba/yom_02436_02140173580.wav b/datasets/openslr_yoruba/yom_02436_02140173580.wav new file mode 100644 index 0000000000000000000000000000000000000000..83d30c8c3025332fe0da9c139208ec950387e168 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02436_02140173580.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76559bb1c0c1383a0e6717a001a0b55d1ba536377214779825d40242ddfe230 +size 368684 diff --git a/datasets/openslr_yoruba/yom_02484_00034624627.wav b/datasets/openslr_yoruba/yom_02484_00034624627.wav new file mode 100644 index 0000000000000000000000000000000000000000..1578f06ea35318896c90dfaeace1a3801adf7f3e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00034624627.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17153eb0ce0fb00bab7036b02ecaefbc66ac4e80c08a31d672021c3f1d7a9278 +size 589868 diff --git a/datasets/openslr_yoruba/yom_02484_00035892457.wav b/datasets/openslr_yoruba/yom_02484_00035892457.wav new file mode 100644 index 0000000000000000000000000000000000000000..43124d074ac79e6e6076a49439d7781626a17bfe --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00035892457.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1debf7eab0ce421de7b7987a5038e0441b7594ab9b2420acde18fcaaadbb4d67 +size 278572 diff --git a/datasets/openslr_yoruba/yom_02484_00039799196.wav b/datasets/openslr_yoruba/yom_02484_00039799196.wav new file mode 100644 index 0000000000000000000000000000000000000000..86d99d34c837341177436ad3dd1f42a822ed5a10 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00039799196.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6bca6ef443d9291b5310c5aa721e41c07983a02d759449a677f636514799c6 +size 417836 diff --git a/datasets/openslr_yoruba/yom_02484_00041341513.wav b/datasets/openslr_yoruba/yom_02484_00041341513.wav new file mode 100644 index 0000000000000000000000000000000000000000..9f5adff3d7de13ac792d2a6098cfac5bff45ea4a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00041341513.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a018f192af41a337966963cfb20ba43a514b60e296c12191e7a7ad42830052c2 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02484_00042594609.wav b/datasets/openslr_yoruba/yom_02484_00042594609.wav new file mode 100644 index 0000000000000000000000000000000000000000..376eab18500d11c3eed61a0a8dedd31207b0927c --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00042594609.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443dd491dba6215e3afce582f3224db26babfc097b981adb355f027624407fcd +size 335916 diff --git a/datasets/openslr_yoruba/yom_02484_00044246585.wav b/datasets/openslr_yoruba/yom_02484_00044246585.wav new file mode 100644 index 0000000000000000000000000000000000000000..81742256356b23c5e6f6ca6814d09fbcdbae87b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00044246585.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be47593248bcce8f5e067a2e41a8b67449cf2ddf8a4fc5d9b36d713c85b2435 +size 401452 diff --git a/datasets/openslr_yoruba/yom_02484_00126078684.wav b/datasets/openslr_yoruba/yom_02484_00126078684.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6b6911b8c5e7297d472e095dc6b77c8893df096 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00126078684.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6c00d7fac6144804a5a10edd641e3380029f58ca541d7ff50c11db1cd4cdcd +size 442412 diff --git a/datasets/openslr_yoruba/yom_02484_00173311565.wav b/datasets/openslr_yoruba/yom_02484_00173311565.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f5cd031d472777435efe3f4bfa2953818f3ce27 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00173311565.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0955bc1c1b69a0afac38b07762519413ed2f3f9b9b18e02123dfb603005e04 +size 294956 diff --git a/datasets/openslr_yoruba/yom_02484_00207524819.wav b/datasets/openslr_yoruba/yom_02484_00207524819.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4a2a261bac70ababdc9ca83c4111ba070e1cfca --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00207524819.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d246dd5baa3388eda04e9fa180a63ce18833af4a73adaf0107246be0d66692bb +size 286764 diff --git a/datasets/openslr_yoruba/yom_02484_00213408661.wav b/datasets/openslr_yoruba/yom_02484_00213408661.wav new file mode 100644 index 0000000000000000000000000000000000000000..2679ebba204b231700e5c9f21945aed3959a6f14 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00213408661.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94aff6319d06ea8c8f7682ad099025e3576b54aa6b9e6593221ef5314fa31af0 +size 344108 diff --git a/datasets/openslr_yoruba/yom_02484_00224743060.wav b/datasets/openslr_yoruba/yom_02484_00224743060.wav new file mode 100644 index 0000000000000000000000000000000000000000..72a42de86670ec67684563bec76e19d049e37a40 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00224743060.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2febdaa7481fbe9c28547dab99588cfd678e54b9992e9aaf03636d6540639b +size 434220 diff --git a/datasets/openslr_yoruba/yom_02484_00239445724.wav b/datasets/openslr_yoruba/yom_02484_00239445724.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ade4388693f9ce742dadd13fd20c924ddcb3e9a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00239445724.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf569ceba2fcefc2b6788d3491fe207d34ab301e80c50840770f62384292092 +size 573484 diff --git a/datasets/openslr_yoruba/yom_02484_00263547793.wav b/datasets/openslr_yoruba/yom_02484_00263547793.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6ad2ace3b11dd9999ca6d9141f74a3c5e1ae805 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00263547793.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c506c4fa322ce9f78d23bdcfd6150ffd92571c75b3c1660d4b1abcf1fa0d9587 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02484_00266879461.wav b/datasets/openslr_yoruba/yom_02484_00266879461.wav new file mode 100644 index 0000000000000000000000000000000000000000..f2a5430e2e37765c0f5d46a043ab48d72b0b4a2d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00266879461.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683b362c005e1c4fb0dbc370f917de110da83116cb0119ae8f249a0bfd0a6d6a +size 417836 diff --git a/datasets/openslr_yoruba/yom_02484_00315615013.wav b/datasets/openslr_yoruba/yom_02484_00315615013.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4b079ac3a715b2de214fa8e5885bf55396e7e53 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00315615013.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a353e5ad34f5c0f3a27d70c3f9703c962f8465cf040cca99d1984e65435a37a +size 303148 diff --git a/datasets/openslr_yoruba/yom_02484_00342983781.wav b/datasets/openslr_yoruba/yom_02484_00342983781.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e912e490d46ea298a159b0e28dc6a0ffae54787 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00342983781.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab2e68d0d95964e7a9ed996b77b1701291c6611fe99de3ae7b1011549682aa0 +size 294956 diff --git a/datasets/openslr_yoruba/yom_02484_00393542891.wav b/datasets/openslr_yoruba/yom_02484_00393542891.wav new file mode 100644 index 0000000000000000000000000000000000000000..099df3c683bb3532d8545b4d863040018ba8e0a7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00393542891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8febf2d3e007d0307bfb04b70c18bd45b7c123246defae710578638844269f9 +size 270380 diff --git a/datasets/openslr_yoruba/yom_02484_00394689344.wav b/datasets/openslr_yoruba/yom_02484_00394689344.wav new file mode 100644 index 0000000000000000000000000000000000000000..607ed113e0b02e92698006a6464af832e7c76001 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00394689344.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bad17130271e2581fdc2aad4f682e6d800f58ae28472ff05eed23373b19073 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02484_00402715192.wav b/datasets/openslr_yoruba/yom_02484_00402715192.wav new file mode 100644 index 0000000000000000000000000000000000000000..d9a035cce5794b3e23a2f55c68b524efb9e2bb4a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00402715192.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70ef20c32ba18c02ba3ae17297dd25783da8f5d45303c6cdd649ecdfa01f712 +size 385068 diff --git a/datasets/openslr_yoruba/yom_02484_00419337325.wav b/datasets/openslr_yoruba/yom_02484_00419337325.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2bf2942036a9b8248916f06dec802697d559168 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00419337325.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcce747b7f5eb3c0178d5ddf0d96bc9b776075e42fc4886dbe914ffd044c31f +size 327724 diff --git a/datasets/openslr_yoruba/yom_02484_00432712261.wav b/datasets/openslr_yoruba/yom_02484_00432712261.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a3ab095ae73c07f7809ef798b0fe549c010f108 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00432712261.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d9ef70825781d522b1d323a5db4959fef43f8a8f723f0f41db01d5bce8b82c0 +size 401452 diff --git a/datasets/openslr_yoruba/yom_02484_00434404389.wav b/datasets/openslr_yoruba/yom_02484_00434404389.wav new file mode 100644 index 0000000000000000000000000000000000000000..e872fdba8acc5b6bc5f97390125e3f4bc4e268af --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00434404389.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b88f2f6f635e4b7056cbc226df49e6ebc91c6b3d312317452cb0d40bfb5bb1 +size 368684 diff --git a/datasets/openslr_yoruba/yom_02484_00441035951.wav b/datasets/openslr_yoruba/yom_02484_00441035951.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e292d9cbe0c363b086b4100623e3230b58404c3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00441035951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c7fa7fd28cc476472e9247a09014f9bc900bf1fd49741b0df48dd30cfe26db +size 278572 diff --git a/datasets/openslr_yoruba/yom_02484_00448533237.wav b/datasets/openslr_yoruba/yom_02484_00448533237.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a945f657cda4fb3ec594f2f7e087088f3c1f9da --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00448533237.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e80efe30eb4f7ef3bc6cc58683b8b149146cbe92bb43180b879fa9c5baf1ebf +size 376876 diff --git a/datasets/openslr_yoruba/yom_02484_00456320159.wav b/datasets/openslr_yoruba/yom_02484_00456320159.wav new file mode 100644 index 0000000000000000000000000000000000000000..edba27e5156db16517a30ee4637b82ab94e1b925 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00456320159.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8964c5b60acbedf1541f76d0a546f32c0f90f495bc85e7f8ea92b75f0a4a0be +size 253996 diff --git a/datasets/openslr_yoruba/yom_02484_00480100440.wav b/datasets/openslr_yoruba/yom_02484_00480100440.wav new file mode 100644 index 0000000000000000000000000000000000000000..225be7cb11809fd8721761c469b6cb0a297cedd6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00480100440.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3f13a01af8c032475c56300280526260ebf2a5e48188e26a05d47085e4e462 +size 499756 diff --git a/datasets/openslr_yoruba/yom_02484_00504699215.wav b/datasets/openslr_yoruba/yom_02484_00504699215.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7237cdc524aae6ab2e60213d08dcbb54066177e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00504699215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3ee397c7f41458612b3647511283e60d44c1c6eb892b7a05e17032f1fb15e7 +size 385068 diff --git a/datasets/openslr_yoruba/yom_02484_00536474671.wav b/datasets/openslr_yoruba/yom_02484_00536474671.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d6c8cd37767459b74baee879ffdee3bbd88f71b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00536474671.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57fd74ef5229c0d18a9a31fb8b96c877d202185f2e6876b3bbc74cb53baff0a3 +size 589868 diff --git a/datasets/openslr_yoruba/yom_02484_00566263510.wav b/datasets/openslr_yoruba/yom_02484_00566263510.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b404bfa2ddf21037c75aef148eff17b81fd5e14 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00566263510.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131951f57cb7128a1921a8a71f3706ab18a7142f8b49ad6caaf3431bc3deaa48 +size 327724 diff --git a/datasets/openslr_yoruba/yom_02484_00575387344.wav b/datasets/openslr_yoruba/yom_02484_00575387344.wav new file mode 100644 index 0000000000000000000000000000000000000000..7485f8d6129a73dd0c0fcddc1aa02fb489283774 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00575387344.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0397a26423af4ccfd34a3366e04af4246d34721f564014ab4eed94e57a97e4c +size 368684 diff --git a/datasets/openslr_yoruba/yom_02484_00593913844.wav b/datasets/openslr_yoruba/yom_02484_00593913844.wav new file mode 100644 index 0000000000000000000000000000000000000000..ace72213213027675087d5de4f0278e67611c253 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00593913844.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e10e490796c9d953e2298ffa851a03ed9754cd215375573bd69e76612303f0 +size 393260 diff --git a/datasets/openslr_yoruba/yom_02484_00634026122.wav b/datasets/openslr_yoruba/yom_02484_00634026122.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdc8d72dbc6b323a7cf09c067aa6aa928c7b93c3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00634026122.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5d51199d6d2a62051bb5ec77fdaccbc02571351e6106c7b316f8c6f10bb28f +size 581676 diff --git a/datasets/openslr_yoruba/yom_02484_00688622874.wav b/datasets/openslr_yoruba/yom_02484_00688622874.wav new file mode 100644 index 0000000000000000000000000000000000000000..be3d99893e96b1dbad0df37789e8c08b73417709 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00688622874.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a0d4e13295b70ea41e283954203f5d184514a3a7b812680c6130c371e02c06 +size 376876 diff --git a/datasets/openslr_yoruba/yom_02484_00745643273.wav b/datasets/openslr_yoruba/yom_02484_00745643273.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e8b791ddbd801be660a4f0dc8659af3cd61be88 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00745643273.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde329146cec0d8e02bfe355f031cb3b9d5a4840f9c346afff87e711db074daa +size 335916 diff --git a/datasets/openslr_yoruba/yom_02484_00757715666.wav b/datasets/openslr_yoruba/yom_02484_00757715666.wav new file mode 100644 index 0000000000000000000000000000000000000000..dfbb42277be2dd6308c12fc3d72e026983ac3d77 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00757715666.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7af9c3a938f889dcfb19a448119eee007f6a7bf1dc48f7af7f9dcfd87893a5 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02484_00760491974.wav b/datasets/openslr_yoruba/yom_02484_00760491974.wav new file mode 100644 index 0000000000000000000000000000000000000000..10cd8fdf4f1fbf876cf74c243bc349e8da7a1d59 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00760491974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd391f3801dca52f062baa8b99d1288a46e84267b35228b6e71f150b9475195 +size 319532 diff --git a/datasets/openslr_yoruba/yom_02484_00762506968.wav b/datasets/openslr_yoruba/yom_02484_00762506968.wav new file mode 100644 index 0000000000000000000000000000000000000000..f877e1d720e847312c60a22844c3aecc5bd40eec --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00762506968.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df71f69a898cb061f0475b0126e9d167d7b40a0eebc20616524df6c11155ed18 +size 573484 diff --git a/datasets/openslr_yoruba/yom_02484_00770349984.wav b/datasets/openslr_yoruba/yom_02484_00770349984.wav new file mode 100644 index 0000000000000000000000000000000000000000..702fa567a7adb82ed748ee3fbec412c641d19bcf --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00770349984.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4550c7e4f4f6da9ee7ada9c502b823bb8966ceeea67def103d585377f51ab7 +size 327724 diff --git a/datasets/openslr_yoruba/yom_02484_00772195576.wav b/datasets/openslr_yoruba/yom_02484_00772195576.wav new file mode 100644 index 0000000000000000000000000000000000000000..41afd71330ef4395ec4cb21af90aa6b1705ff478 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00772195576.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90dffc0ccf080a7b630e6dd620346783e5d4b3569d82d012cae94f53566ceb4a +size 327724 diff --git a/datasets/openslr_yoruba/yom_02484_00779312525.wav b/datasets/openslr_yoruba/yom_02484_00779312525.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ebc30f5f1902d112a9d447914ffa31e1cceeefc --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00779312525.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64f86b9fc89162d6f95e0b5d2c54ada1bde9939ffd34bc09abf38f8f833625a6 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02484_00803394816.wav b/datasets/openslr_yoruba/yom_02484_00803394816.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b222e516c45eca2b88140bcf425848ccfff75a2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00803394816.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2416be9eef68c48ccddbc7b4ee7be9b2aaf56ad61f7fc169a26e727c73493f85 +size 614444 diff --git a/datasets/openslr_yoruba/yom_02484_00822244846.wav b/datasets/openslr_yoruba/yom_02484_00822244846.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc423696ca108ecce623c9bae55b2a742ffa6a0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00822244846.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7904876f7503fd5f1b02961cb36c060fb85c778a8ea5b8e1428b396db07b04 +size 385068 diff --git a/datasets/openslr_yoruba/yom_02484_00833597350.wav b/datasets/openslr_yoruba/yom_02484_00833597350.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0827afa6b03226627ac18ef783c1ca1c31f5d5b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00833597350.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0da9ca69d2a7aaa007bd2f5160b06dc8a35756c0bdb0dd17ec0e91b03cb175 +size 614444 diff --git a/datasets/openslr_yoruba/yom_02484_00841559974.wav b/datasets/openslr_yoruba/yom_02484_00841559974.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c66de6562a1fdc9a5540010e4cf4ed08f22798f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00841559974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14cc5f679680ae2233d6daffc52ad0bd88f9eca9a1391b1ed38ab4c5a1c6a8d +size 344108 diff --git a/datasets/openslr_yoruba/yom_02484_00848771759.wav b/datasets/openslr_yoruba/yom_02484_00848771759.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3fa697a75c33c3e3f3d4994c13134b9a9365d42 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00848771759.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b44c248b1ccca841ee9ab09c2e2cf55d1d57182154e5f0d8005c290dc1265f +size 237612 diff --git a/datasets/openslr_yoruba/yom_02484_00870733190.wav b/datasets/openslr_yoruba/yom_02484_00870733190.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ea68c8e7b48045a2e040f891b85c8f84d8acf13 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00870733190.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d09f0535d8c84295ac9690abbb471ba199514c0b303c560346e02d9785b841 +size 401452 diff --git a/datasets/openslr_yoruba/yom_02484_00977886050.wav b/datasets/openslr_yoruba/yom_02484_00977886050.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5e6c6f6efc9d2603b568de8692b9c221277d12e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00977886050.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdc9452224a4e6866165b10bc2bef07a7fc04e54e8153be31b07fea36122eec +size 466988 diff --git a/datasets/openslr_yoruba/yom_02484_00993896185.wav b/datasets/openslr_yoruba/yom_02484_00993896185.wav new file mode 100644 index 0000000000000000000000000000000000000000..b58cd13110c444638e996ee28120f23eeeb31aeb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00993896185.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2bb284a282174eaddf0e06810459a6bfbb63a88b69e2a5773702937be60d55 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02484_00995434762.wav b/datasets/openslr_yoruba/yom_02484_00995434762.wav new file mode 100644 index 0000000000000000000000000000000000000000..c27db36e25a5b8edb4faaa6744d06e4cfb526641 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_00995434762.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe04c7e1b4d819ab6ac4b50bc999513aaec0d0a0eba52e33ffc6864a9575f8f5 +size 303148 diff --git a/datasets/openslr_yoruba/yom_02484_01050275125.wav b/datasets/openslr_yoruba/yom_02484_01050275125.wav new file mode 100644 index 0000000000000000000000000000000000000000..4051c8c46dddd5b06a537a9fbdbb6ef611e03c1b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01050275125.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14321c057c1ed585324f3f660c75759819cd1f6dadbf91d6a0bacf721060f894 +size 344108 diff --git a/datasets/openslr_yoruba/yom_02484_01070683287.wav b/datasets/openslr_yoruba/yom_02484_01070683287.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e41b2c6cde1015010c76beb5b190d82e1643855 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01070683287.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e516a9a92541b59b1eb4b18d25946dabd0db4a2673a7fdbe3a7cf0ed2681ca +size 532524 diff --git a/datasets/openslr_yoruba/yom_02484_01109636234.wav b/datasets/openslr_yoruba/yom_02484_01109636234.wav new file mode 100644 index 0000000000000000000000000000000000000000..f204205c61bc874c88d7cf75b3e5814138fb20f4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01109636234.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5008021805d990e67d3d33d4bdd1756536329bd51521263b5d8f4f255d6777a +size 409644 diff --git a/datasets/openslr_yoruba/yom_02484_01213496884.wav b/datasets/openslr_yoruba/yom_02484_01213496884.wav new file mode 100644 index 0000000000000000000000000000000000000000..d02c6b323c7510b2facf9bfda08367d424657026 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01213496884.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc11d4a96a4683ee474b56026eedcb878dd3472896790c73c797444d3b4b9ec +size 229420 diff --git a/datasets/openslr_yoruba/yom_02484_01225861895.wav b/datasets/openslr_yoruba/yom_02484_01225861895.wav new file mode 100644 index 0000000000000000000000000000000000000000..8919a1ff336d6ed6ab1c42c0c351627729ee44c7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01225861895.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aff62d0e481ba96ff2d6bbe732d071a472e78954e0554fe3a1533c690e9e80d +size 598060 diff --git a/datasets/openslr_yoruba/yom_02484_01233106851.wav b/datasets/openslr_yoruba/yom_02484_01233106851.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd4eed9ff5cf5bd371b54cbdadf1274ba67c576f --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01233106851.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4a9a428edb7eafc5d1d4636b9c226300b410482a1d5ca43080c8263004392a +size 278572 diff --git a/datasets/openslr_yoruba/yom_02484_01241521546.wav b/datasets/openslr_yoruba/yom_02484_01241521546.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e1992b4ef78594ba39c525ce09e492f4f8a8e45 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01241521546.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b672e4b9617a01c0323f0bfb83cf6ca09e24d1a3ac70d2a1efb6603b2454af +size 262188 diff --git a/datasets/openslr_yoruba/yom_02484_01248213963.wav b/datasets/openslr_yoruba/yom_02484_01248213963.wav new file mode 100644 index 0000000000000000000000000000000000000000..925a6ac22b952de316c0e2b7ab0bd0a1b090ccff --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01248213963.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec62c380d77377001fb2c8d9f72b21abc7393210d5e1d1f195864a31f4f7cac +size 393260 diff --git a/datasets/openslr_yoruba/yom_02484_01286683001.wav b/datasets/openslr_yoruba/yom_02484_01286683001.wav new file mode 100644 index 0000000000000000000000000000000000000000..29f0b6de604ed66379532d4085e73d5b62f0f3f6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01286683001.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb66f96d9119beb21c625e5da868c8fe2bd0e63c17df15f158d5b6f01791775 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02484_01334574030.wav b/datasets/openslr_yoruba/yom_02484_01334574030.wav new file mode 100644 index 0000000000000000000000000000000000000000..c483c9254ce14832d3c20e9ae270019d755bf3a1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01334574030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10cbf1f95c4667513ccd24fc1757899cd772e4a7697c8f9daa02a514c2351017 +size 581676 diff --git a/datasets/openslr_yoruba/yom_02484_01347205651.wav b/datasets/openslr_yoruba/yom_02484_01347205651.wav new file mode 100644 index 0000000000000000000000000000000000000000..6aa43382885d8dc8406630e421eb8568a6475c94 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01347205651.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f05bece9a9215b83d5aaa7cb89a6eb259947dcedccb2905cc8193180684563 +size 450604 diff --git a/datasets/openslr_yoruba/yom_02484_01400837035.wav b/datasets/openslr_yoruba/yom_02484_01400837035.wav new file mode 100644 index 0000000000000000000000000000000000000000..38e8d7c1b5bc4f24df3f36fc9dc2ab52e0b4a540 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01400837035.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99cc35261281ded0cde29a40f8e965cf8676809fc206b07c99d352f0a7a214e +size 303148 diff --git a/datasets/openslr_yoruba/yom_02484_01407899030.wav b/datasets/openslr_yoruba/yom_02484_01407899030.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d3759a5ccc04550a4db1807306ab32dbc445696 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01407899030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c9c62cc98f2202173aa16977d346ef934efec130cc282ecbf57e4d7cd407501 +size 335916 diff --git a/datasets/openslr_yoruba/yom_02484_01414325790.wav b/datasets/openslr_yoruba/yom_02484_01414325790.wav new file mode 100644 index 0000000000000000000000000000000000000000..2e03a2c0aa2610f273b462d63dddc48c53ea5a55 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01414325790.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef34fa1005702acbcd690a162b165dea9c39026afd2a7dff0dc43feb43a6e60 +size 442412 diff --git a/datasets/openslr_yoruba/yom_02484_01417319851.wav b/datasets/openslr_yoruba/yom_02484_01417319851.wav new file mode 100644 index 0000000000000000000000000000000000000000..747777e9532cdb2af0d1634fa8093003455d56b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01417319851.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470be6d347839c2387a9f723c40781349cb7779a04b005d87784e9a248a35707 +size 278572 diff --git a/datasets/openslr_yoruba/yom_02484_01433035770.wav b/datasets/openslr_yoruba/yom_02484_01433035770.wav new file mode 100644 index 0000000000000000000000000000000000000000..d76e13abb3eca0f0bcbeba0478590b8a5ff9023a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01433035770.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4dc9a18fa4b331b54f1d2facea088f360ee8d0d683660db0419304866e07f3 +size 319532 diff --git a/datasets/openslr_yoruba/yom_02484_01480541024.wav b/datasets/openslr_yoruba/yom_02484_01480541024.wav new file mode 100644 index 0000000000000000000000000000000000000000..69f9d981938e9006b10077e10adc9e05d6ecc686 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01480541024.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab16caa8ed368873b5a4777bf9627fc9da4cb5e6bd7feab56cda3db234bdb86 +size 516140 diff --git a/datasets/openslr_yoruba/yom_02484_01517239911.wav b/datasets/openslr_yoruba/yom_02484_01517239911.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7888cb93c098bf90a5151661d2d4be3372a9e01 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01517239911.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c7041cad8d1851a0354ed86fae6745761bfaef778fc472878dba8bd63115c2 +size 524332 diff --git a/datasets/openslr_yoruba/yom_02484_01538339078.wav b/datasets/openslr_yoruba/yom_02484_01538339078.wav new file mode 100644 index 0000000000000000000000000000000000000000..6526f3fa242fecd112b1bc5404a7334f5fef2194 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01538339078.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:318190119491d8dcdc92f806ac010596431c2487b98607c74755edbcac61afba +size 434220 diff --git a/datasets/openslr_yoruba/yom_02484_01550343499.wav b/datasets/openslr_yoruba/yom_02484_01550343499.wav new file mode 100644 index 0000000000000000000000000000000000000000..e29fbef847f9307479f6edca36ae2a547e561efb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01550343499.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668de69d317c1d8ef47ff8d7d5ceec6efd93c7d9b3798d0a0a7f17ce0c5623ad +size 696364 diff --git a/datasets/openslr_yoruba/yom_02484_01558489131.wav b/datasets/openslr_yoruba/yom_02484_01558489131.wav new file mode 100644 index 0000000000000000000000000000000000000000..c886572f11a96822aff0cb7054ecf88a6c305843 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01558489131.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb3f975db27662db441fda3e2c4345972bdbc4427f0ed7d0dd532c88ea461a9 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02484_01565204340.wav b/datasets/openslr_yoruba/yom_02484_01565204340.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad64a0fe4857c2ed99a1c354a8e5468675679858 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01565204340.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bdc901e848c7612b7490286335252d32ab4dff06d08e1865ddf1d05ef659fc +size 663596 diff --git a/datasets/openslr_yoruba/yom_02484_01591805308.wav b/datasets/openslr_yoruba/yom_02484_01591805308.wav new file mode 100644 index 0000000000000000000000000000000000000000..2920faf19427be7991698ace04d7718d3606995d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01591805308.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39151fc0a7e4ce2e2b4387440a9bfce3a28a897479c0a924a56926f491c160e8 +size 344108 diff --git a/datasets/openslr_yoruba/yom_02484_01597914663.wav b/datasets/openslr_yoruba/yom_02484_01597914663.wav new file mode 100644 index 0000000000000000000000000000000000000000..73c062286ddc4ca682a4a48a39a47e35fe59362d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01597914663.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45dc1cbff8718325cd48a4f7d2837fdd1b434fda266ed739ccfd93a3f376fb6 +size 245804 diff --git a/datasets/openslr_yoruba/yom_02484_01608540149.wav b/datasets/openslr_yoruba/yom_02484_01608540149.wav new file mode 100644 index 0000000000000000000000000000000000000000..95611c176450a639dcf84ab7937cbb3be902ed0c --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01608540149.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c13770dd0787c17fbe7b8c991b7a99ef9c03c3ad65c43a7e8ff886203eec3a2c +size 327724 diff --git a/datasets/openslr_yoruba/yom_02484_01632098502.wav b/datasets/openslr_yoruba/yom_02484_01632098502.wav new file mode 100644 index 0000000000000000000000000000000000000000..5868963b8ce120c3b2ee0cd22d1b231461743e4b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01632098502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0afd9d11926b55ac065c7eca46b30dbada33b0e02e340167ae9ee4472dc2ce9a +size 483372 diff --git a/datasets/openslr_yoruba/yom_02484_01645587418.wav b/datasets/openslr_yoruba/yom_02484_01645587418.wav new file mode 100644 index 0000000000000000000000000000000000000000..2fdcc11124644a8d1991d962fdf3275723fbbb90 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01645587418.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6e1e9ea58e4bb6abfa74bdd58c50881ad9f093ae874c05c2800d8ad72fae81 +size 368684 diff --git a/datasets/openslr_yoruba/yom_02484_01654690373.wav b/datasets/openslr_yoruba/yom_02484_01654690373.wav new file mode 100644 index 0000000000000000000000000000000000000000..7cdbaa6963a269695481a26a2a0c6a115524c22a --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01654690373.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cd16b62af0bc47127d8eccc2a6a6a93f278765e657293a62799bae695eea0c +size 368684 diff --git a/datasets/openslr_yoruba/yom_02484_01663235147.wav b/datasets/openslr_yoruba/yom_02484_01663235147.wav new file mode 100644 index 0000000000000000000000000000000000000000..fec1a6f47081a98c2f59889ab8028e5ef9b5eeae --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01663235147.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75b32fc8047de9635394ea4455cda4831987b6c06d5035caddf33131f8b315f +size 368684 diff --git a/datasets/openslr_yoruba/yom_02484_01673041038.wav b/datasets/openslr_yoruba/yom_02484_01673041038.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd59ad9171a378cf9f39689d91f7632d76af4b7d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01673041038.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e8fd83d594a2e9c744a1b1130d54865f79171deadc9ccbdea925b967f5f962 +size 442412 diff --git a/datasets/openslr_yoruba/yom_02484_01687850033.wav b/datasets/openslr_yoruba/yom_02484_01687850033.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec8dd91804eeb7ab4ad0e732588c6e6b76fb3a3d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01687850033.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b677d1e4b9bb636bc9618110801d9cd0ca5b98f4a4de655994755f573f97ddf +size 311340 diff --git a/datasets/openslr_yoruba/yom_02484_01731488785.wav b/datasets/openslr_yoruba/yom_02484_01731488785.wav new file mode 100644 index 0000000000000000000000000000000000000000..cccb3c56718f9a7afc99a3d0ac144dda4495983d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01731488785.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f8d01e10d7708f67a2bae005d5e40d1cc72157854957ab74306da85f871d57 +size 360492 diff --git a/datasets/openslr_yoruba/yom_02484_01744777048.wav b/datasets/openslr_yoruba/yom_02484_01744777048.wav new file mode 100644 index 0000000000000000000000000000000000000000..356988c69a5236c1fd4f408543cd96e35b5194ea --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01744777048.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0633fc59c71067fd9959cc19ae26511d757a46e8b09dd7431bf330c413feac30 +size 368684 diff --git a/datasets/openslr_yoruba/yom_02484_01745173141.wav b/datasets/openslr_yoruba/yom_02484_01745173141.wav new file mode 100644 index 0000000000000000000000000000000000000000..2e7ca856786bd13b6fcb83e8391b086f005fe791 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01745173141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2766405ca8287e0a58c5d9d8a26246fceb7058f9d286cdab4410a16df2833eb5 +size 352300 diff --git a/datasets/openslr_yoruba/yom_02484_01749446654.wav b/datasets/openslr_yoruba/yom_02484_01749446654.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5d7ad67e38b66ef3303155520ec7ec3722ee48b --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01749446654.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5385aa3ab6cde9d882d89618fa65d4b099ed115620467a78a2d9e1451a2861 +size 426028 diff --git a/datasets/openslr_yoruba/yom_02484_01756094488.wav b/datasets/openslr_yoruba/yom_02484_01756094488.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ed355f44b926a6ed9be881a1f81a60a3af14794 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01756094488.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2079d87ebf2129c2f6d634ef7fb5a4291c685acf482f415335887637179846 +size 647212 diff --git a/datasets/openslr_yoruba/yom_02484_01784056295.wav b/datasets/openslr_yoruba/yom_02484_01784056295.wav new file mode 100644 index 0000000000000000000000000000000000000000..390fa4c3bfbbead0118e3769c8b230133907e24e --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01784056295.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860220c109b4dfc79387733e16fc7e9316b156c7f4e57a49250d7c26a05cb1a5 +size 426028 diff --git a/datasets/openslr_yoruba/yom_02484_01820271617.wav b/datasets/openslr_yoruba/yom_02484_01820271617.wav new file mode 100644 index 0000000000000000000000000000000000000000..36fad3015c984c570ab26f23f5ace717a54eeb47 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01820271617.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8f1491faa235cb492da7dbf7fa15d654f586ab9b5b2d1b99af0d8699ad0ac5 +size 458796 diff --git a/datasets/openslr_yoruba/yom_02484_01825904800.wav b/datasets/openslr_yoruba/yom_02484_01825904800.wav new file mode 100644 index 0000000000000000000000000000000000000000..f85339cf81c3fa8eb3ebca6e9c5ab13eec94cd40 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01825904800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4737dcfbf7257591687c661ad506914389c2f2be67c4af7a282d190d9d32da +size 376876 diff --git a/datasets/openslr_yoruba/yom_02484_01866419909.wav b/datasets/openslr_yoruba/yom_02484_01866419909.wav new file mode 100644 index 0000000000000000000000000000000000000000..4f76567a7abe600c112e65336a3d66f5b2c7b119 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01866419909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:306ac1ef22e30c65a7d8b775773014ea9c1152240bfa1553f018fdb7968b2c8b +size 311340 diff --git a/datasets/openslr_yoruba/yom_02484_01876048184.wav b/datasets/openslr_yoruba/yom_02484_01876048184.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ce0380f0a8ecffeae4cd371ae7dc936039f4170 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01876048184.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121049bc3ef218035f8254ca97446a2f4f42ed1cd649e089a45e30c84bf1b123 +size 327724 diff --git a/datasets/openslr_yoruba/yom_02484_01907761520.wav b/datasets/openslr_yoruba/yom_02484_01907761520.wav new file mode 100644 index 0000000000000000000000000000000000000000..35a823632509d7fcbd6b35005885ef0030e2d838 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01907761520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55dc594db724ad5abeca5818ef9fa5678581a0b18ec490fe02c389d3af319b03 +size 360492 diff --git a/datasets/openslr_yoruba/yom_02484_01938363849.wav b/datasets/openslr_yoruba/yom_02484_01938363849.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2d3c9ae978d741b225ed4e314a616e95a6b2708 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01938363849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e5057bb8b7478320cfb2734dbbc20edae5b4efa0a0c4686f8cb1245b683cfd +size 499756 diff --git a/datasets/openslr_yoruba/yom_02484_01954084679.wav b/datasets/openslr_yoruba/yom_02484_01954084679.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb3d60c5e6b83cd2aeffa548d24ddba659bb0358 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01954084679.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637859c19e41670115cb91a8859278a872166f306959a6a8f2ec96b0b60a0d44 +size 401452 diff --git a/datasets/openslr_yoruba/yom_02484_01960744204.wav b/datasets/openslr_yoruba/yom_02484_01960744204.wav new file mode 100644 index 0000000000000000000000000000000000000000..61434eaaf7fe40c006895b64d00f2f0ffc5ffc31 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_01960744204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87751f1a8f1e11bce09de7e4a8da29debce925c3d0b6e6901f40ca8b8f33ee80 +size 311340 diff --git a/datasets/openslr_yoruba/yom_02484_02035775934.wav b/datasets/openslr_yoruba/yom_02484_02035775934.wav new file mode 100644 index 0000000000000000000000000000000000000000..537034d4c95cfbb531f9dd4d42615cbfd990398d --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_02035775934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a64b6a9d32f5efa10a06a687456da2e64db3508967d31dbedcfe8d3ebb1b78 +size 319532 diff --git a/datasets/openslr_yoruba/yom_02484_02069861304.wav b/datasets/openslr_yoruba/yom_02484_02069861304.wav new file mode 100644 index 0000000000000000000000000000000000000000..e72f1b76eb1ecf357e9b68b67a487ba01965df41 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_02069861304.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9766b40a973acd8c5b23d9d6ed81a1a19d83d365bda43aad5c7f5d17576ef56e +size 434220 diff --git a/datasets/openslr_yoruba/yom_02484_02071999374.wav b/datasets/openslr_yoruba/yom_02484_02071999374.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d78f377ceb7198101b94cc89ae271b43f5dccfb --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_02071999374.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebddb570b620f52b0d18415cf43f7c4de96b4c3a907b5bc201df187f81be2120 +size 360492 diff --git a/datasets/openslr_yoruba/yom_02484_02124275391.wav b/datasets/openslr_yoruba/yom_02484_02124275391.wav new file mode 100644 index 0000000000000000000000000000000000000000..a84c76be1f61be2a9d440cc564d7110e20eaa747 --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_02124275391.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1162f8487b33f4e3d9ef21056e4d688cfe648a551e8f900fe5675bc87c6ef6d +size 303148 diff --git a/datasets/openslr_yoruba/yom_02484_02129685643.wav b/datasets/openslr_yoruba/yom_02484_02129685643.wav new file mode 100644 index 0000000000000000000000000000000000000000..0784db34d8437c817ef33bc86ae9532b867771af --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_02129685643.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f0452252bc36aac43756595f79675af04d381ac48ca6c7f82d6cfb6afcd267 +size 499756 diff --git a/datasets/openslr_yoruba/yom_02484_02142632962.wav b/datasets/openslr_yoruba/yom_02484_02142632962.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d86948260bd34ebf8d8b1daef34093f56db49fe --- /dev/null +++ b/datasets/openslr_yoruba/yom_02484_02142632962.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7032eb080eecf0611850bef8487dea1d73a7987c2dcf4c9d549e4a0b1ae093e5 +size 647212 diff --git a/datasets/openslr_yoruba/yom_03034_00010441476.wav b/datasets/openslr_yoruba/yom_03034_00010441476.wav new file mode 100644 index 0000000000000000000000000000000000000000..09c25625b2cb95e2cc5146157859bf33f7f2cd4b --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00010441476.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89af34a33347cfcc380186810674ab69caca6ca8c074de17e24f7a633f924f19 +size 221228 diff --git a/datasets/openslr_yoruba/yom_03034_00024854036.wav b/datasets/openslr_yoruba/yom_03034_00024854036.wav new file mode 100644 index 0000000000000000000000000000000000000000..c8f30faf63e04c7b2c68c39c93dc59976dedc21a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00024854036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5174157fc7ede87a0778cf4abe79beb9bf54a308ceb80ddb075eb78639f2937 +size 688172 diff --git a/datasets/openslr_yoruba/yom_03034_00045415866.wav b/datasets/openslr_yoruba/yom_03034_00045415866.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f41b13d479435ac2711baf7ac7a0c719efec780 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00045415866.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be092e6a8d0bc34cf4bbcaa2c92fef38944423d0e93898048a8fc53342ef450b +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_00096760735.wav b/datasets/openslr_yoruba/yom_03034_00096760735.wav new file mode 100644 index 0000000000000000000000000000000000000000..2dc979ddbe24b626ee49e31e10d872b6a2c03476 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00096760735.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f11565cf46aee356dafdd1588c4abcebdba988daea84011b48192ac60cceb1c +size 286764 diff --git a/datasets/openslr_yoruba/yom_03034_00105438646.wav b/datasets/openslr_yoruba/yom_03034_00105438646.wav new file mode 100644 index 0000000000000000000000000000000000000000..f47407ff160ff0fc07b683819e9dd0232846a89b --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00105438646.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:460e0e10da9a873f3536ba27015507f067f7947a4b94d723efdaacff0279a864 +size 327724 diff --git a/datasets/openslr_yoruba/yom_03034_00113683944.wav b/datasets/openslr_yoruba/yom_03034_00113683944.wav new file mode 100644 index 0000000000000000000000000000000000000000..b77a1b64f075e1ca8672013432d8db0a24f00b27 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00113683944.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fecec667c92e4dfcdd03239f7e24b751e28be041db9a4874ec7f96b6ada706b +size 376876 diff --git a/datasets/openslr_yoruba/yom_03034_00123246306.wav b/datasets/openslr_yoruba/yom_03034_00123246306.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf42f4d8194f7adbcca9348c01e7c57bb0c91a8d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00123246306.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd82fba66bad3984ddda7094d62805a00e0e0dc13a90992553c5226e590aa7a +size 229420 diff --git a/datasets/openslr_yoruba/yom_03034_00161043567.wav b/datasets/openslr_yoruba/yom_03034_00161043567.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3aa48e0f871f1d6c7298eace2fa0ab5f2a92c49 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00161043567.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48805d4263d42ed5ab0cef6c3d2ba24e0a2403932c5468780d8b71872ed5ce5 +size 565292 diff --git a/datasets/openslr_yoruba/yom_03034_00165712426.wav b/datasets/openslr_yoruba/yom_03034_00165712426.wav new file mode 100644 index 0000000000000000000000000000000000000000..d397c965c04f5a2d78c3704b7372b9e8bf42454e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00165712426.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39cb544757b94d3befa5c1f9bd0f19115af18e182cdea8a119931bd92295ff61 +size 196652 diff --git a/datasets/openslr_yoruba/yom_03034_00206346331.wav b/datasets/openslr_yoruba/yom_03034_00206346331.wav new file mode 100644 index 0000000000000000000000000000000000000000..79645aa34ae37bee698f249695496ef5f1daa375 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00206346331.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3921a90983dd5d5e66cb6b81c651387c6985ab351310c75853b7d44778013222 +size 213036 diff --git a/datasets/openslr_yoruba/yom_03034_00211138659.wav b/datasets/openslr_yoruba/yom_03034_00211138659.wav new file mode 100644 index 0000000000000000000000000000000000000000..874f36cb432b1c746a3408bff81de02768b891b9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00211138659.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5372da2d18a85008de167099ed88ae53ba5211b5eb44202c6de347b3e55d1b3f +size 229420 diff --git a/datasets/openslr_yoruba/yom_03034_00216218638.wav b/datasets/openslr_yoruba/yom_03034_00216218638.wav new file mode 100644 index 0000000000000000000000000000000000000000..f43ef0b31f9ff2606efca5da7cb4e52aa2a0c4a3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00216218638.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f20e70291a577545ba2fb3120a7aff64fc2c469920ad907071f8dfba92718ff +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_00225406939.wav b/datasets/openslr_yoruba/yom_03034_00225406939.wav new file mode 100644 index 0000000000000000000000000000000000000000..85a9272c928ca7096b180ac93e0c0932ca92d368 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00225406939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8feb14434bd21f860810d71a6ef88133e4615174dbe217caea4d8e9e48488a8 +size 270380 diff --git a/datasets/openslr_yoruba/yom_03034_00228069615.wav b/datasets/openslr_yoruba/yom_03034_00228069615.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd3070d9365163c8ccacf9d19061fa2edfb0d485 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00228069615.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01ff67f2d4a4ed830932f0404537ef5536bc99938f3e9494642972d58f4a7da +size 196652 diff --git a/datasets/openslr_yoruba/yom_03034_00251066903.wav b/datasets/openslr_yoruba/yom_03034_00251066903.wav new file mode 100644 index 0000000000000000000000000000000000000000..87a3ac1abab7afb90c05a20051e62cd0d66664e1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00251066903.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12380e41f47e5a0d46e3ddcb586d3eb9c97ec6461f78f50ffb3548bf6fa39fa5 +size 229420 diff --git a/datasets/openslr_yoruba/yom_03034_00275928826.wav b/datasets/openslr_yoruba/yom_03034_00275928826.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a6f596228d45fadf1b55a556e645c47c70d07d1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00275928826.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f54e0a02605ac8f6cb1be659e18a346ff50a11a1cd7dedc3709814efe37c378 +size 466988 diff --git a/datasets/openslr_yoruba/yom_03034_00338793085.wav b/datasets/openslr_yoruba/yom_03034_00338793085.wav new file mode 100644 index 0000000000000000000000000000000000000000..33d3da57c640fd0229d66190b86fa08f8ce1d19d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00338793085.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f4af761c6af134de468bde83ac41b65bff9ab09c41fe3c6759d49c083f1911 +size 213036 diff --git a/datasets/openslr_yoruba/yom_03034_00343189987.wav b/datasets/openslr_yoruba/yom_03034_00343189987.wav new file mode 100644 index 0000000000000000000000000000000000000000..74d965ac3ae7c6c3d3dd9e16073d7647c56428f8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00343189987.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901a1c166a2ea04ede39e5f91f4ec7747da10250bebe03ba43bb43b466f73ecd +size 352300 diff --git a/datasets/openslr_yoruba/yom_03034_00374297711.wav b/datasets/openslr_yoruba/yom_03034_00374297711.wav new file mode 100644 index 0000000000000000000000000000000000000000..128b31feb252573f693e34fa242bf60dd71774ef --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00374297711.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee368ab036c19875d1d0493d8a5c410d51ecc87e5c456e0aacf2276d764b73bd +size 213036 diff --git a/datasets/openslr_yoruba/yom_03034_00389072605.wav b/datasets/openslr_yoruba/yom_03034_00389072605.wav new file mode 100644 index 0000000000000000000000000000000000000000..a10353feb4635426140faf7ab2196b927f591f08 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00389072605.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d4d1f16ee3c441874a2dd4f8043033d97a4aafb3075e7bbd0730d95ec6f521 +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_00395831951.wav b/datasets/openslr_yoruba/yom_03034_00395831951.wav new file mode 100644 index 0000000000000000000000000000000000000000..01a220be09bccbfad78d2517ec746466c493b5f9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00395831951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e091398d909ab9f7d7da7db564cec5c9ef9a22a052fd39d820b989f3245e20b8 +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_00404748370.wav b/datasets/openslr_yoruba/yom_03034_00404748370.wav new file mode 100644 index 0000000000000000000000000000000000000000..7bbbd9b50d43b6a2253331f60cf36ab5f0d55b01 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00404748370.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939d4673aab9e51dbdbe9c6b1e994a27a414a2b1ec4f88d077650a815c0d3277 +size 188460 diff --git a/datasets/openslr_yoruba/yom_03034_00406378535.wav b/datasets/openslr_yoruba/yom_03034_00406378535.wav new file mode 100644 index 0000000000000000000000000000000000000000..58f2644c1c7a5c7032c95123e9a80b0c01e6d596 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00406378535.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f983df32374f7fffba09b8e3f5066edb00e24ec128d8d6ec4745c37978a6c85 +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_00427324499.wav b/datasets/openslr_yoruba/yom_03034_00427324499.wav new file mode 100644 index 0000000000000000000000000000000000000000..4742a3d89258df89cd9670d5ac098d8be05b47b9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00427324499.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b83d4dcdc28f421a7e70d85b483d2d427f119360d93abe4da860a7a3f264ec2 +size 352300 diff --git a/datasets/openslr_yoruba/yom_03034_00463295136.wav b/datasets/openslr_yoruba/yom_03034_00463295136.wav new file mode 100644 index 0000000000000000000000000000000000000000..af0625c043688f095245898936caac70af6973a9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00463295136.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb0984321b5e01cd97032c337692e456cd5977e1b61257a29b2bcc94b47f66a +size 442412 diff --git a/datasets/openslr_yoruba/yom_03034_00470022244.wav b/datasets/openslr_yoruba/yom_03034_00470022244.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6bece0cbff17492d7e81150b0bb228b39b04c5b --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00470022244.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10dc62efce4927740f660d995c7e3c0589bfa21393e38199ec9510b0317cad5 +size 327724 diff --git a/datasets/openslr_yoruba/yom_03034_00497993947.wav b/datasets/openslr_yoruba/yom_03034_00497993947.wav new file mode 100644 index 0000000000000000000000000000000000000000..5af06810d85cffe3dddc8b90cd9f9c70915bfa85 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00497993947.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7982e5af28c00f26c8c14866ddeb745adf10f41f92232860183e5970bc4fd6fb +size 327724 diff --git a/datasets/openslr_yoruba/yom_03034_00513461231.wav b/datasets/openslr_yoruba/yom_03034_00513461231.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d7edc01a14d1c579b524a7903d94fc80b679ddb --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00513461231.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7a63b810bc4237e6eb7101a94156f4082d1aab9353732028fdc2a7e5a31774 +size 311340 diff --git a/datasets/openslr_yoruba/yom_03034_00554207733.wav b/datasets/openslr_yoruba/yom_03034_00554207733.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d9ee6121e4accbfbccc4027a341a724aa549fdb --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00554207733.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead72767f6588ed24b7551019292d3bc61f6ef57503612546d8bb7e61f13413c +size 229420 diff --git a/datasets/openslr_yoruba/yom_03034_00583522172.wav b/datasets/openslr_yoruba/yom_03034_00583522172.wav new file mode 100644 index 0000000000000000000000000000000000000000..97fc48dd9a0a519a6ad4bc93d555faee5ca3afc8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00583522172.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966c5783d20e42c87f0f7c84863035cb4deac6d928e085b812071ab0e585c092 +size 557100 diff --git a/datasets/openslr_yoruba/yom_03034_00629276215.wav b/datasets/openslr_yoruba/yom_03034_00629276215.wav new file mode 100644 index 0000000000000000000000000000000000000000..e187c8c26bbfeac0f4d3e8ef0c609724a24c89d6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00629276215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef645681d813e12e029d7db3b4173742a56ca222133d50cb386cc22c242e84e7 +size 385068 diff --git a/datasets/openslr_yoruba/yom_03034_00631718384.wav b/datasets/openslr_yoruba/yom_03034_00631718384.wav new file mode 100644 index 0000000000000000000000000000000000000000..13ad57fc88ff32c703aedc35c63f585a90a14395 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00631718384.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b60b245cbfe4e696b74518b3997f4cfcf88f6b697c8c24bc4c4e035882f1b73a +size 221228 diff --git a/datasets/openslr_yoruba/yom_03034_00658154501.wav b/datasets/openslr_yoruba/yom_03034_00658154501.wav new file mode 100644 index 0000000000000000000000000000000000000000..89399af84e8c064a7aa55be30d8e4b2fc90af0a6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00658154501.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f04d147ddc34a264addcb991b2337827bc894aeaa8d26fe71f5c19c81850137 +size 294956 diff --git a/datasets/openslr_yoruba/yom_03034_00663144384.wav b/datasets/openslr_yoruba/yom_03034_00663144384.wav new file mode 100644 index 0000000000000000000000000000000000000000..7a92c177d5721012c1fc656e920091b666e8762d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00663144384.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65358e48c31c18efe9367b72b64576456f257e1cf37bad18cd93a2b0291db95a +size 294956 diff --git a/datasets/openslr_yoruba/yom_03034_00681924550.wav b/datasets/openslr_yoruba/yom_03034_00681924550.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa994746bcf6e656f0c18093289cbc3116e4c46f --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00681924550.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e3f23cd6100ed9294797d53fe514c2f8f420a32fe4785caf08ff887b3cc263 +size 466988 diff --git a/datasets/openslr_yoruba/yom_03034_00763007047.wav b/datasets/openslr_yoruba/yom_03034_00763007047.wav new file mode 100644 index 0000000000000000000000000000000000000000..eda1d147b06b7ec62aa3da1a122d87ea2a3049dd --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00763007047.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dba87e22f71cff3dfcf3746a05a76523510399c6d4746a313fcdb7342de741e +size 270380 diff --git a/datasets/openslr_yoruba/yom_03034_00778554989.wav b/datasets/openslr_yoruba/yom_03034_00778554989.wav new file mode 100644 index 0000000000000000000000000000000000000000..08f850f20474f1b89ec7ffb744e815f203e80f31 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00778554989.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f9840217c18c9155c99dad142874eb33e2ad93a655e5c9d435e3f2189b944a +size 286764 diff --git a/datasets/openslr_yoruba/yom_03034_00779424400.wav b/datasets/openslr_yoruba/yom_03034_00779424400.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c0a9c0a1f96151de9b523f6e0fcb61d2cd7d60a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00779424400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8078c81b6cd22d6dced83ea7bae7d6625bba30eed33c06c6dbf06b64e5b4ccd +size 221228 diff --git a/datasets/openslr_yoruba/yom_03034_00791101288.wav b/datasets/openslr_yoruba/yom_03034_00791101288.wav new file mode 100644 index 0000000000000000000000000000000000000000..83b9f31133ebc74aca311919f38aafb08bf61125 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00791101288.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6746b5f13c3cea66382c2d2e859b192bc0aacf8fb79741e87e1a42cf0dacf982 +size 253996 diff --git a/datasets/openslr_yoruba/yom_03034_00808117227.wav b/datasets/openslr_yoruba/yom_03034_00808117227.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e688822b71c0529d61b5385bf988ec4a09b7278 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00808117227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf9d37788571a19567024fa167e84b8717ce4bca35059ec870da97db33b9dfb +size 352300 diff --git a/datasets/openslr_yoruba/yom_03034_00866573487.wav b/datasets/openslr_yoruba/yom_03034_00866573487.wav new file mode 100644 index 0000000000000000000000000000000000000000..811ca0ea48f31a2492f17da9c06714b6425b9ff8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00866573487.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d909256c8371838d9b6c45a09e4d2a583b84ec01a68326df85512cd10c15f01d +size 180268 diff --git a/datasets/openslr_yoruba/yom_03034_00898647102.wav b/datasets/openslr_yoruba/yom_03034_00898647102.wav new file mode 100644 index 0000000000000000000000000000000000000000..dfa282f6b64d563fca16a14aee03f2cf970c301a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00898647102.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45bf8d1226f39ecc4035396e7c8956fa616f339248fe329f0d3539046ec05f11 +size 180268 diff --git a/datasets/openslr_yoruba/yom_03034_00920838859.wav b/datasets/openslr_yoruba/yom_03034_00920838859.wav new file mode 100644 index 0000000000000000000000000000000000000000..994323752a65caf2d35e2609fa356c79f24014c4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00920838859.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c711d4e81235cffe6d61675ea2b8c2b2550bbbe75267fe430108bc0e0ab7d7bf +size 417836 diff --git a/datasets/openslr_yoruba/yom_03034_00921743636.wav b/datasets/openslr_yoruba/yom_03034_00921743636.wav new file mode 100644 index 0000000000000000000000000000000000000000..e3c119da72d761949071b89fc3ea92481acf544c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00921743636.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d348fae79f4d21ddc5405f8256bb2d85df67a69e494491d9bb7b65403d37d956 +size 491564 diff --git a/datasets/openslr_yoruba/yom_03034_00931282056.wav b/datasets/openslr_yoruba/yom_03034_00931282056.wav new file mode 100644 index 0000000000000000000000000000000000000000..898ead25f15e89aac46942113ee55ced3b264082 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00931282056.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08c8f322e6e8793cebaafc1530c86078a5051f4c6b7310165b143296f79a8df +size 507948 diff --git a/datasets/openslr_yoruba/yom_03034_00959264315.wav b/datasets/openslr_yoruba/yom_03034_00959264315.wav new file mode 100644 index 0000000000000000000000000000000000000000..9338e4bda9c4fbe8702ff5101756ceebb08d5a0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_00959264315.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59ab54c63335671b71b0646c28f05b294757d2336aaec90e8256f542214d14d +size 188460 diff --git a/datasets/openslr_yoruba/yom_03034_01010138513.wav b/datasets/openslr_yoruba/yom_03034_01010138513.wav new file mode 100644 index 0000000000000000000000000000000000000000..a6ea34bdc4eb26bd4e363d526c4584011cfe2bc2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01010138513.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d782780a35fe761c8bdb18d4af9abdc55bca531c0276b43cc20f17f8a53bf29 +size 262188 diff --git a/datasets/openslr_yoruba/yom_03034_01080986113.wav b/datasets/openslr_yoruba/yom_03034_01080986113.wav new file mode 100644 index 0000000000000000000000000000000000000000..dda287d7f6e6c35ce9c34cd4624e9448e14928f2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01080986113.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a808b30bbf0cdb43b271f778bfa7ff792f5a91d4fa919843348f5948a0120b18 +size 196652 diff --git a/datasets/openslr_yoruba/yom_03034_01108250737.wav b/datasets/openslr_yoruba/yom_03034_01108250737.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ca3ab2c72079c8b81d4675f0d388f1f8926c9cf --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01108250737.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:181b5badb1fb942723e5046ce27d7a423e912e33d0db0c7f1436f161fad5b2f3 +size 499756 diff --git a/datasets/openslr_yoruba/yom_03034_01111242845.wav b/datasets/openslr_yoruba/yom_03034_01111242845.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6d8c485b5ca81b20a12661b67f4988ddb19d572 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01111242845.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8eebb8a5b0943910b4b4759c20c661c8b5fb895a174f94788f4bd215e6e5a0 +size 385068 diff --git a/datasets/openslr_yoruba/yom_03034_01115540083.wav b/datasets/openslr_yoruba/yom_03034_01115540083.wav new file mode 100644 index 0000000000000000000000000000000000000000..b92d8228d390c33ed7dc4883483c56b346ba5f96 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01115540083.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d54f1ed7762412dc621a2b708e1da15bbb7ecd8ba1270c7e0064804836c4abd +size 606252 diff --git a/datasets/openslr_yoruba/yom_03034_01116358683.wav b/datasets/openslr_yoruba/yom_03034_01116358683.wav new file mode 100644 index 0000000000000000000000000000000000000000..144d2ed3f1f40ca5bb33656c11d509a9b26f6d6e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01116358683.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2097415b8ebec58474f7f1aedc593548596483b6f5d3a85ebd25066bd3c6fb +size 213036 diff --git a/datasets/openslr_yoruba/yom_03034_01222801439.wav b/datasets/openslr_yoruba/yom_03034_01222801439.wav new file mode 100644 index 0000000000000000000000000000000000000000..b63c2111b864bd8c329dffaac66b54216e10add7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01222801439.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac61fcd1a47c94d3f5a46c4769d6c0da439d2f8fbb454d3ee00d9652fac85dc +size 401452 diff --git a/datasets/openslr_yoruba/yom_03034_01235071468.wav b/datasets/openslr_yoruba/yom_03034_01235071468.wav new file mode 100644 index 0000000000000000000000000000000000000000..61b9c051949d90df7a323a4826c885d4238ed173 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01235071468.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786277ce69bc4c9e786ac14e556948f92865cc4dfce2312c6b0774fe493f1543 +size 311340 diff --git a/datasets/openslr_yoruba/yom_03034_01238324645.wav b/datasets/openslr_yoruba/yom_03034_01238324645.wav new file mode 100644 index 0000000000000000000000000000000000000000..8274ffa5838bfe6480fd6c8bada0dbaf9b2496a6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01238324645.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c94ab24c1ee90c31124a59535e2c57b5ff2d9117dae06bfce6daeec915c063d +size 270380 diff --git a/datasets/openslr_yoruba/yom_03034_01243547611.wav b/datasets/openslr_yoruba/yom_03034_01243547611.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c02a85db106e4cad2de48ee08e26142c3b82a23 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01243547611.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c4a93c83b0d6c69dbb317997f51aecc46b29f43b74d7d841dd41eed5724d76 +size 188460 diff --git a/datasets/openslr_yoruba/yom_03034_01245173600.wav b/datasets/openslr_yoruba/yom_03034_01245173600.wav new file mode 100644 index 0000000000000000000000000000000000000000..3665b462121f4aaf2d00eb0b2e5dd84f6db8b91c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01245173600.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ebed336a7ab20c5d962352c9ac5ab6735d7ebf432515eb37a7066e9c412fde1 +size 180268 diff --git a/datasets/openslr_yoruba/yom_03034_01271607144.wav b/datasets/openslr_yoruba/yom_03034_01271607144.wav new file mode 100644 index 0000000000000000000000000000000000000000..8c6b3253c0ba7b9721c2a955f182a6c57a06af24 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01271607144.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1012a386c6cc8c8e903fa90ef22994e0860d82927167edb857adf2b4485d5111 +size 524332 diff --git a/datasets/openslr_yoruba/yom_03034_01276465065.wav b/datasets/openslr_yoruba/yom_03034_01276465065.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf0d2fed726a63adbf0855e83bb89eaa878434c3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01276465065.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa1e0241ba2ad0a74b356b2b5b51b1de8a4a8facdc6840e94ff0a3296986aa02 +size 221228 diff --git a/datasets/openslr_yoruba/yom_03034_01309080939.wav b/datasets/openslr_yoruba/yom_03034_01309080939.wav new file mode 100644 index 0000000000000000000000000000000000000000..d5f0fd7ae24847822578497223b747787d558bf5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01309080939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57256a00fd6dc6c6c29e6f42a847921415ac87d95d01f25530dd6423962134e6 +size 360492 diff --git a/datasets/openslr_yoruba/yom_03034_01318895762.wav b/datasets/openslr_yoruba/yom_03034_01318895762.wav new file mode 100644 index 0000000000000000000000000000000000000000..81052af8e06281d81474c2049f2e32ad11b7495d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01318895762.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a169d90799819dd0fb6b8e60505c722ff5e38134c05d4eb7ad0cf9f8cd7b0f0 +size 262188 diff --git a/datasets/openslr_yoruba/yom_03034_01362132030.wav b/datasets/openslr_yoruba/yom_03034_01362132030.wav new file mode 100644 index 0000000000000000000000000000000000000000..950f344bc23da32998858c5ab2e1373b118c221c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01362132030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b452f1bf24a4eacd046d3f4990fc69a94a650973da8bf518e86878b928255ec2 +size 286764 diff --git a/datasets/openslr_yoruba/yom_03034_01392332855.wav b/datasets/openslr_yoruba/yom_03034_01392332855.wav new file mode 100644 index 0000000000000000000000000000000000000000..83521cdb48c528124bf174e485cf9538e4f9331c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01392332855.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66cd2312fc86a61f1f5e3304804d1aedde84fbe9dd35bf4d8a4b9176930be4a +size 466988 diff --git a/datasets/openslr_yoruba/yom_03034_01418840084.wav b/datasets/openslr_yoruba/yom_03034_01418840084.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac28b6431c9b55544ce32d07ad461474f21d2db8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01418840084.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2928f33c2c086eb0b9ffb2bec00fa696d7cfa9980ed0f56f322b94e92cdaee21 +size 188460 diff --git a/datasets/openslr_yoruba/yom_03034_01431651662.wav b/datasets/openslr_yoruba/yom_03034_01431651662.wav new file mode 100644 index 0000000000000000000000000000000000000000..5bf64cb90e1dd022d9667ddfc14e16d5275659ec --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01431651662.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d06c97bcec451d0e17ca5d6bfa3c28f764ddafe85d4440fda3b41e75f46d182 +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_01450632096.wav b/datasets/openslr_yoruba/yom_03034_01450632096.wav new file mode 100644 index 0000000000000000000000000000000000000000..1b041b9e8c6954117e039e1002ffae9d83b31f63 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01450632096.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4553c56d154732b3025c282f660572895c5ae6c5ec3f4028111655c4e46530fa +size 294956 diff --git a/datasets/openslr_yoruba/yom_03034_01496456227.wav b/datasets/openslr_yoruba/yom_03034_01496456227.wav new file mode 100644 index 0000000000000000000000000000000000000000..2f74550d3060f839cffaf828984400c95c87fa67 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01496456227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30448e6b93df67bbdc155ca825d69955041e57a3914a29c0316519c37d8d9268 +size 311340 diff --git a/datasets/openslr_yoruba/yom_03034_01498022930.wav b/datasets/openslr_yoruba/yom_03034_01498022930.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2e0eb060ddd9c52871f39bc90e08c60830ca974 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01498022930.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347af078712151a2ddb1b8c10783ecc57278fc2f122a0b328f5d0bdc029228d6 +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_01510768014.wav b/datasets/openslr_yoruba/yom_03034_01510768014.wav new file mode 100644 index 0000000000000000000000000000000000000000..89a47186ce67bda2b7d38c0abb6d477aef247fc3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01510768014.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59fc930507f593aa771cff5ed2d90cd36797b7502288944d5b1561f1795832e +size 368684 diff --git a/datasets/openslr_yoruba/yom_03034_01569789295.wav b/datasets/openslr_yoruba/yom_03034_01569789295.wav new file mode 100644 index 0000000000000000000000000000000000000000..78520fafef1da9951e9980e9b7c23f9a626bd021 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01569789295.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf050e4d9f9e83ad9465a34cc7d2af0e8bac7579438e17534dd7802648f4ff32 +size 335916 diff --git a/datasets/openslr_yoruba/yom_03034_01575312581.wav b/datasets/openslr_yoruba/yom_03034_01575312581.wav new file mode 100644 index 0000000000000000000000000000000000000000..d855e812a0a6c8e97e95a6f0a9d172414a388ab9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01575312581.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c051f116399c2a49ba493dee80a5669b31586a533e43b411d3aff526306729 +size 737324 diff --git a/datasets/openslr_yoruba/yom_03034_01604613434.wav b/datasets/openslr_yoruba/yom_03034_01604613434.wav new file mode 100644 index 0000000000000000000000000000000000000000..97fcccc475ea2c305d35e600ccf9d44109664885 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01604613434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f71c1c154641cc22b508ba380c1ceb14cb27fe0c39db6c2aae1cae8d250d0f +size 229420 diff --git a/datasets/openslr_yoruba/yom_03034_01606444575.wav b/datasets/openslr_yoruba/yom_03034_01606444575.wav new file mode 100644 index 0000000000000000000000000000000000000000..27350041dcfdadffb2c2c70cd44c6f9b4bdea117 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01606444575.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9fdd74cb02b6b5e2617ca9d10dfa03fc732583da03f0fc31ee775eb7f8fb35 +size 319532 diff --git a/datasets/openslr_yoruba/yom_03034_01614905881.wav b/datasets/openslr_yoruba/yom_03034_01614905881.wav new file mode 100644 index 0000000000000000000000000000000000000000..63a7e56f8d07f8df6869dcd0c35bf1459a06de62 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01614905881.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb8d4dbf5e08a0e0c68d805cef481176bf2b2464dbcb96ed2ec1bfef08ba3053 +size 303148 diff --git a/datasets/openslr_yoruba/yom_03034_01649696210.wav b/datasets/openslr_yoruba/yom_03034_01649696210.wav new file mode 100644 index 0000000000000000000000000000000000000000..257adc688d5714770b856cc82dd983bc3f3d7d14 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01649696210.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc1277751470af41645fccac8532ba973540902c08cdb68608193368b7da43f +size 409644 diff --git a/datasets/openslr_yoruba/yom_03034_01651774540.wav b/datasets/openslr_yoruba/yom_03034_01651774540.wav new file mode 100644 index 0000000000000000000000000000000000000000..050cef04f5f6a1db0f044669f84abbfc968e1db4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01651774540.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234b799fd4decd26ffc2e115a2ddae7a73e2bcc30bcc91113828e8bfc18060a1 +size 368684 diff --git a/datasets/openslr_yoruba/yom_03034_01657340547.wav b/datasets/openslr_yoruba/yom_03034_01657340547.wav new file mode 100644 index 0000000000000000000000000000000000000000..a565047035e561fcf3bd87f04f275ac655267eb3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01657340547.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789a8c86c378cedb7a50fbe0a2eb7f9f7050817cf751024ee81ad5e70b9580c1 +size 245804 diff --git a/datasets/openslr_yoruba/yom_03034_01689635070.wav b/datasets/openslr_yoruba/yom_03034_01689635070.wav new file mode 100644 index 0000000000000000000000000000000000000000..1b89681cc1e172b6c2a75ac095960154ac00fc7f --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01689635070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c06b0cb02434cb5b5953232f7d09bc689fb5120d7940b009936f69ffdf1639 +size 335916 diff --git a/datasets/openslr_yoruba/yom_03034_01760537447.wav b/datasets/openslr_yoruba/yom_03034_01760537447.wav new file mode 100644 index 0000000000000000000000000000000000000000..a24959267ba7a3328d9f4f2ea5b2c1e799a43979 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01760537447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4549526d6e2bebb778a8c9543890c83b20d749d4ef2777002a25b9b9fc0eec5c +size 245804 diff --git a/datasets/openslr_yoruba/yom_03034_01763492281.wav b/datasets/openslr_yoruba/yom_03034_01763492281.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba7d0dfa2321fb43d217f0a7042257a76c51831f --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01763492281.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ffabc62345598e93b12626edb78ea8a4ad0ea573e8921d79fd9e68ea5e8755 +size 180268 diff --git a/datasets/openslr_yoruba/yom_03034_01772889151.wav b/datasets/openslr_yoruba/yom_03034_01772889151.wav new file mode 100644 index 0000000000000000000000000000000000000000..da1a380f0f78326f94fba8360ae21b43710b5edf --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01772889151.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a69a9e87cef34041f636bc63af7924536ea2ba9f1e67e400f75ae9f251e6a9 +size 278572 diff --git a/datasets/openslr_yoruba/yom_03034_01842627620.wav b/datasets/openslr_yoruba/yom_03034_01842627620.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9b2aed57f68c5254b2caa0b108135c7f944e3f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01842627620.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26935c8d758be6aa7a59940c8c3b7c9f38e15a281b58bd4a500805d14e7cbc18 +size 270380 diff --git a/datasets/openslr_yoruba/yom_03034_01843115561.wav b/datasets/openslr_yoruba/yom_03034_01843115561.wav new file mode 100644 index 0000000000000000000000000000000000000000..a49276daa47e113378a94e61690bb3a0e88a219b --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01843115561.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:989aa0cf11ce586059cb4fb969e86ba38714170541d70838f5d57a332ea6c115 +size 352300 diff --git a/datasets/openslr_yoruba/yom_03034_01879578919.wav b/datasets/openslr_yoruba/yom_03034_01879578919.wav new file mode 100644 index 0000000000000000000000000000000000000000..fac6fd6aedd816dca411bb35a143186fe00057dc --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01879578919.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c96766e8397c593d142e70f48b37134ff06d8e5e6d0b56678fc00b25ffd8af49 +size 270380 diff --git a/datasets/openslr_yoruba/yom_03034_01900356850.wav b/datasets/openslr_yoruba/yom_03034_01900356850.wav new file mode 100644 index 0000000000000000000000000000000000000000..df1d3515e87b688d3edb40e7a46edab043a32edb --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01900356850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6bda147ddda4915a32da8a9a5996a62d3390bff8273420cc9de30ff5fda59f +size 180268 diff --git a/datasets/openslr_yoruba/yom_03034_01911907681.wav b/datasets/openslr_yoruba/yom_03034_01911907681.wav new file mode 100644 index 0000000000000000000000000000000000000000..19d38e7dc544f14dc57d4b022ff7301288bcc77f --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01911907681.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b73484095f74502201bd839f19fd37b0c663d42292748466616d29d8b1e7600 +size 344108 diff --git a/datasets/openslr_yoruba/yom_03034_01944400468.wav b/datasets/openslr_yoruba/yom_03034_01944400468.wav new file mode 100644 index 0000000000000000000000000000000000000000..93f932bdc864328d1b1c35be4cb007095aef2d93 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_01944400468.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb35c0e1c9c7d68ac18fb527f10b3d3cf8fea819d5edc71f98652faf50c4af1d +size 163884 diff --git a/datasets/openslr_yoruba/yom_03034_02001897562.wav b/datasets/openslr_yoruba/yom_03034_02001897562.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b9d0ebe7b0eaa06b3743110d44bdd421b3ec133 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02001897562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f7dd3528b0b36d55a482abe5adcf1c64f58d42edbb2bbf8536dbe76635d21c +size 213036 diff --git a/datasets/openslr_yoruba/yom_03034_02007981721.wav b/datasets/openslr_yoruba/yom_03034_02007981721.wav new file mode 100644 index 0000000000000000000000000000000000000000..e70f1fd40ecb56ab66d9224b78ac5af217a6613e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02007981721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d0f1de29a1153205e29bb9cc5abe2952d7ea643f23f1a57623ebd88d814337 +size 417836 diff --git a/datasets/openslr_yoruba/yom_03034_02014226570.wav b/datasets/openslr_yoruba/yom_03034_02014226570.wav new file mode 100644 index 0000000000000000000000000000000000000000..86b47b4e41a353cee5582f6058010c1af4f1a123 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02014226570.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4473fe8db1a2247a3c3a1ca777caa675cc075f654141ecf3f43a58d707b41f59 +size 286764 diff --git a/datasets/openslr_yoruba/yom_03034_02026907496.wav b/datasets/openslr_yoruba/yom_03034_02026907496.wav new file mode 100644 index 0000000000000000000000000000000000000000..bb73db68b88580ceaf41ef8d246d745bb70e0d45 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02026907496.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbffd01cd97464c89f5ee74d2677f0d9ab581fc4288e1e895ca012c0d5b0d9bf +size 622636 diff --git a/datasets/openslr_yoruba/yom_03034_02036646410.wav b/datasets/openslr_yoruba/yom_03034_02036646410.wav new file mode 100644 index 0000000000000000000000000000000000000000..92e5b8b75d58070a1f1f7416d8e09d4cb19cbf1d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02036646410.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0352477231060b402fc4b7236717835caa17c4dfc3e9e62c2815003d7bcbcc +size 385068 diff --git a/datasets/openslr_yoruba/yom_03034_02054899976.wav b/datasets/openslr_yoruba/yom_03034_02054899976.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba40a494bd6d17517365b534fa4f8c3bef8bc315 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02054899976.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6005cbedbc9fb282df1cbcdf55d8d418286e00a1d6f562702541799adffcc2f3 +size 589868 diff --git a/datasets/openslr_yoruba/yom_03034_02076520520.wav b/datasets/openslr_yoruba/yom_03034_02076520520.wav new file mode 100644 index 0000000000000000000000000000000000000000..45ce1d8396b5ee07b6d54523568b355d267268b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02076520520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b95df4fec61856a87b0b669d16d64ad9051de71a59eb30cffcc0332759be03 +size 204844 diff --git a/datasets/openslr_yoruba/yom_03034_02085750267.wav b/datasets/openslr_yoruba/yom_03034_02085750267.wav new file mode 100644 index 0000000000000000000000000000000000000000..20cb2e3932c09b6130a9e55525c94e176d01233c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02085750267.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6643fada07a9061b523645a2349f0e681da1986da963cfe66426e76489f67a14 +size 434220 diff --git a/datasets/openslr_yoruba/yom_03034_02088660657.wav b/datasets/openslr_yoruba/yom_03034_02088660657.wav new file mode 100644 index 0000000000000000000000000000000000000000..3575a7c2d769544acef28ad73faa4e780ddb9fbe --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02088660657.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a784bc2de9905e421ba1e7db83e4fbd5a4b9cc5fe34ad05c1e1ec49d417e40 +size 253996 diff --git a/datasets/openslr_yoruba/yom_03034_02103527432.wav b/datasets/openslr_yoruba/yom_03034_02103527432.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b034dad2f0d40a073eff8724381caa71d86a5c6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02103527432.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d278e5b9d2cc819bb320a8cb7800961a0bd33e697789ac64323c7d9c24f5d2 +size 122924 diff --git a/datasets/openslr_yoruba/yom_03034_02137475519.wav b/datasets/openslr_yoruba/yom_03034_02137475519.wav new file mode 100644 index 0000000000000000000000000000000000000000..3fb4455ab7ce8ae23ce496ab5bf5d463191c9de0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02137475519.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a57ce4ab9f05a982bfa44f6be93fc2a82c68b580ff708af941f1b637fa46e51 +size 516140 diff --git a/datasets/openslr_yoruba/yom_03034_02139099150.wav b/datasets/openslr_yoruba/yom_03034_02139099150.wav new file mode 100644 index 0000000000000000000000000000000000000000..76cd134e77c4742d320348b9145c8f29a57c9fc4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02139099150.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed624845f723cfcf1312a9ef2530ee0bbe21941f6f2b34efef9cf73ecf4d84e +size 360492 diff --git a/datasets/openslr_yoruba/yom_03034_02143956112.wav b/datasets/openslr_yoruba/yom_03034_02143956112.wav new file mode 100644 index 0000000000000000000000000000000000000000..67ae5c7bc28fe42c5069d5e3a5f7d92ae7f00907 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03034_02143956112.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764e133e78f66333f7314202c989766b44a0cbd8b02a7e27ba0621fde6a3fec4 +size 163884 diff --git a/datasets/openslr_yoruba/yom_03397_00007754824.wav b/datasets/openslr_yoruba/yom_03397_00007754824.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1b284266bc6af4f7ba07924601cd2b3d7824183 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00007754824.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b659448cb03906a8dd795df0484cf7d102c301dd4ca0638b897851546a35eae1 +size 352300 diff --git a/datasets/openslr_yoruba/yom_03397_00043840630.wav b/datasets/openslr_yoruba/yom_03397_00043840630.wav new file mode 100644 index 0000000000000000000000000000000000000000..de36e8887ca2f6725c5878fc34e9573e13981774 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00043840630.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451019f7a3920529881b544ece34f05d7098469fea6e88da64dc9a9efde0a8dd +size 614444 diff --git a/datasets/openslr_yoruba/yom_03397_00057426270.wav b/datasets/openslr_yoruba/yom_03397_00057426270.wav new file mode 100644 index 0000000000000000000000000000000000000000..965155a0093e955feb7a603bb1ef80177e28898f --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00057426270.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8344309438d57235495d7e5944459aded4efca889696d4ca02169430677f29cd +size 639020 diff --git a/datasets/openslr_yoruba/yom_03397_00065684393.wav b/datasets/openslr_yoruba/yom_03397_00065684393.wav new file mode 100644 index 0000000000000000000000000000000000000000..235fcc157d5b38e720b15dd27476bf8c3380b9f4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00065684393.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc53ae1870ee5ffcbbccc3ca7e029b6fe956593ea6a548660586cd1a8b76dede +size 720940 diff --git a/datasets/openslr_yoruba/yom_03397_00120623157.wav b/datasets/openslr_yoruba/yom_03397_00120623157.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad7dfb412f79602e002750c9dcadc087aaa36e8d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00120623157.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830ba4787ccc0404a9dd2f98087f507dc86d45b6cf4c391e7c7543774f4db4b5 +size 507948 diff --git a/datasets/openslr_yoruba/yom_03397_00131895109.wav b/datasets/openslr_yoruba/yom_03397_00131895109.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8fa8d0dc8940f6a8895484386d8249690273dc4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00131895109.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fee013f877e58bdd5cf002c5fa763ea8f8508f1396649d9f8626a3bdb73a92e +size 491564 diff --git a/datasets/openslr_yoruba/yom_03397_00197060505.wav b/datasets/openslr_yoruba/yom_03397_00197060505.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0b11b862042dbcd07f1904902e78203ec97cb1e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00197060505.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d3a35f193f84b5b34d1a081ba97a6163fd862974d1b325b531adc6a6941473 +size 524332 diff --git a/datasets/openslr_yoruba/yom_03397_00222239239.wav b/datasets/openslr_yoruba/yom_03397_00222239239.wav new file mode 100644 index 0000000000000000000000000000000000000000..716c14d156a83c3f18476f58334354b8ec221117 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00222239239.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ab6cec7c37e412c1ea62fb27aba1c0430c5e1f3411fb458ea8f0060a503445 +size 385068 diff --git a/datasets/openslr_yoruba/yom_03397_00254890397.wav b/datasets/openslr_yoruba/yom_03397_00254890397.wav new file mode 100644 index 0000000000000000000000000000000000000000..79cd62dcd0d0db7790644b4ac6610aae1dfb165e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00254890397.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58e165ae69b369f6e4e934163d52a5ce7fea110a7045ee4b1a01e1946d5bac7 +size 622636 diff --git a/datasets/openslr_yoruba/yom_03397_00323372903.wav b/datasets/openslr_yoruba/yom_03397_00323372903.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a8f04641834baf68c308d59bdad511f7c358975 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00323372903.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47dc0ffd2c2a464411ed22b91133bc0cb76f81b4d6404d019d4fe82129bc0f34 +size 802860 diff --git a/datasets/openslr_yoruba/yom_03397_00332537205.wav b/datasets/openslr_yoruba/yom_03397_00332537205.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab44f3ddd1be765668c6673408b0cf7d50536b91 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00332537205.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ce6fe8b011cafa765545d9fc2eea096ed8725c04f6ccfd7342d851cd781fa9 +size 442412 diff --git a/datasets/openslr_yoruba/yom_03397_00334420973.wav b/datasets/openslr_yoruba/yom_03397_00334420973.wav new file mode 100644 index 0000000000000000000000000000000000000000..988b133d95dff802ffa99897df6a84c8a10f762a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00334420973.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802f0282a613878c7f20ca46e0d37208a9475408a6bdfefb69181542ebf5a42b +size 532524 diff --git a/datasets/openslr_yoruba/yom_03397_00363326547.wav b/datasets/openslr_yoruba/yom_03397_00363326547.wav new file mode 100644 index 0000000000000000000000000000000000000000..133e5dcb972f495c6813335053fa33019009079c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00363326547.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412d9e041497af8f1fca7a55f954435b6299bb52c62342e3057dd6d97955a40e +size 360492 diff --git a/datasets/openslr_yoruba/yom_03397_00379284769.wav b/datasets/openslr_yoruba/yom_03397_00379284769.wav new file mode 100644 index 0000000000000000000000000000000000000000..93d83cbd1b2fdbddb8dce96dce4cf00f112fbc47 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00379284769.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1636d6399be83feea08d48fbf0baec0ceede4dc8e68175a42b66478a2c0a8391 +size 376876 diff --git a/datasets/openslr_yoruba/yom_03397_00411341696.wav b/datasets/openslr_yoruba/yom_03397_00411341696.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d14d215a8c7e44221da7e434eb5e82aa3b22d74 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00411341696.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aa2df5609a41d818ad4d189092ee805793ff0f9b3f77ed5baef89b888e870ea +size 442412 diff --git a/datasets/openslr_yoruba/yom_03397_00422737555.wav b/datasets/openslr_yoruba/yom_03397_00422737555.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b56b0be997e0007c86ea60cbff0a20c23a2c02e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00422737555.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0d2b8882e4f23a4e02dff43b596c1049ab60b010241b4f8b3e2521eef655a4 +size 434220 diff --git a/datasets/openslr_yoruba/yom_03397_00429905102.wav b/datasets/openslr_yoruba/yom_03397_00429905102.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e4d3e3f2d039ee5633be7556fc44cc6a6d6420f --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00429905102.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52c2d7cd36eff8d083523c044fdb91e09dabaf43acfc2206dde048ba3089096f +size 417836 diff --git a/datasets/openslr_yoruba/yom_03397_00439759270.wav b/datasets/openslr_yoruba/yom_03397_00439759270.wav new file mode 100644 index 0000000000000000000000000000000000000000..20ca9fee428b55d29943a9e87163539845313668 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00439759270.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9b2290a9b06ae528dd496c5761421b39d747916c7957ec0bfaf5cc7c18fb3d +size 426028 diff --git a/datasets/openslr_yoruba/yom_03397_00442217461.wav b/datasets/openslr_yoruba/yom_03397_00442217461.wav new file mode 100644 index 0000000000000000000000000000000000000000..910becc0586dc8cdb977c2bcf14caf1fcfa0953c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00442217461.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03292423de6f54a67db3bb5c5286accfc18ab883c041079171704aab4941cd8e +size 548908 diff --git a/datasets/openslr_yoruba/yom_03397_00451394405.wav b/datasets/openslr_yoruba/yom_03397_00451394405.wav new file mode 100644 index 0000000000000000000000000000000000000000..66dd9530626eb661aa48d0b802f792a71fcc6275 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00451394405.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492e4bc5d858b8c6c57196d256900939406ae71960f021d89f4e7cecb94c5bbd +size 450604 diff --git a/datasets/openslr_yoruba/yom_03397_00477880827.wav b/datasets/openslr_yoruba/yom_03397_00477880827.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7907fdf9111b0badf386cb0f88891f072075553 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00477880827.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1356c7632c918fefa4505e2d5c418ef0233b02b61ce692e11e3b95f49b014fa +size 622636 diff --git a/datasets/openslr_yoruba/yom_03397_00526371421.wav b/datasets/openslr_yoruba/yom_03397_00526371421.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba24416c02f47daeeb3eb77b54f14ca9aa11a821 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00526371421.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ed236c782e84a819e7c1fa92a8583976c6b426f7f9255b4d37327a4c5c1470 +size 647212 diff --git a/datasets/openslr_yoruba/yom_03397_00529031080.wav b/datasets/openslr_yoruba/yom_03397_00529031080.wav new file mode 100644 index 0000000000000000000000000000000000000000..03ada55e8f85bd389f656c4cf082d0325f10d60d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00529031080.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6232e1437737ca6677cc528fc725a29da69e374bd44be87e2489d863defc5506 +size 417836 diff --git a/datasets/openslr_yoruba/yom_03397_00544010536.wav b/datasets/openslr_yoruba/yom_03397_00544010536.wav new file mode 100644 index 0000000000000000000000000000000000000000..f496a81bea4b497f477f3e50ae472ad388c5afb3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00544010536.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:036e1900fe1835cca21ddc8527597e7bdb5f1905209e9ad256a7df6bc973ceab +size 507948 diff --git a/datasets/openslr_yoruba/yom_03397_00569054665.wav b/datasets/openslr_yoruba/yom_03397_00569054665.wav new file mode 100644 index 0000000000000000000000000000000000000000..17a909bda328ae52de806730e49cfe6d1be731dc --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00569054665.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f251206f89abdc00a03bd9f0f67de6a6fad2b99e67693b664ec665622c4e1079 +size 639020 diff --git a/datasets/openslr_yoruba/yom_03397_00583031395.wav b/datasets/openslr_yoruba/yom_03397_00583031395.wav new file mode 100644 index 0000000000000000000000000000000000000000..abbae69e04dec51e2ad3e6ac7bfb7d8990c26063 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00583031395.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e9977dd2035aed95fee9fbd391b39beec4e05488c76066a1fc8fb59a552716 +size 483372 diff --git a/datasets/openslr_yoruba/yom_03397_00584387189.wav b/datasets/openslr_yoruba/yom_03397_00584387189.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d364e93ce639fa35b2a7673b4d7c5316ba424de --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00584387189.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab82bb74650e525e633af1d5a763223c60e82cfe638dd25b278f466bae8974d3 +size 499756 diff --git a/datasets/openslr_yoruba/yom_03397_00599339971.wav b/datasets/openslr_yoruba/yom_03397_00599339971.wav new file mode 100644 index 0000000000000000000000000000000000000000..6fa3f9f6e2a6b8e71ff29c57c7cd41c886fa5d62 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00599339971.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dec0494e16e2a1c7b351247252670b0ad3e48f52e2a4ad8b0fc07474e95e6a5 +size 532524 diff --git a/datasets/openslr_yoruba/yom_03397_00605134215.wav b/datasets/openslr_yoruba/yom_03397_00605134215.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c0113f5e9bb9b3d7ca6eacdc0f39b7af9c733ce --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00605134215.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb498419eec579e407c90d86d66d688343c83aace7e56ff568d4dbfe91919c5e +size 458796 diff --git a/datasets/openslr_yoruba/yom_03397_00638872276.wav b/datasets/openslr_yoruba/yom_03397_00638872276.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ba46ab24b8885e033f3f70300b199d3b0d065fb --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00638872276.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acfa191aba4f1247b07e87c96fe3c02484db1621de3705a2094170c66baf8391 +size 614444 diff --git a/datasets/openslr_yoruba/yom_03397_00643000118.wav b/datasets/openslr_yoruba/yom_03397_00643000118.wav new file mode 100644 index 0000000000000000000000000000000000000000..d4b82a4c3dc72dcfc091708885c4d603aa703abe --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00643000118.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec9b97d9c7ebbe77a82c6377a8e12633fd48bbcfffe87ff355f8d4e7812c831 +size 401452 diff --git a/datasets/openslr_yoruba/yom_03397_00660192729.wav b/datasets/openslr_yoruba/yom_03397_00660192729.wav new file mode 100644 index 0000000000000000000000000000000000000000..72f7e555f418a6c6993f17c813cf4f323b8d205e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00660192729.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef6b0fa0736b6687512d7ff172364c0ce1a00bfb0ac9c657bb737ec68035b13 +size 376876 diff --git a/datasets/openslr_yoruba/yom_03397_00672719018.wav b/datasets/openslr_yoruba/yom_03397_00672719018.wav new file mode 100644 index 0000000000000000000000000000000000000000..316e72a092258cfd19853923cb0658f6aaca48a5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00672719018.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d83c9298f6c58e1952d8926eafc0199c51a033be8b29972c54f59cd081e18bb +size 491564 diff --git a/datasets/openslr_yoruba/yom_03397_00674292892.wav b/datasets/openslr_yoruba/yom_03397_00674292892.wav new file mode 100644 index 0000000000000000000000000000000000000000..48425591260b652197bc2477b68e4a5dd780b845 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00674292892.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1a1e09eee2c15570bb2502a10b4864bc91c03ea7cab8e060b55a0adad6e4fb +size 557100 diff --git a/datasets/openslr_yoruba/yom_03397_00683716873.wav b/datasets/openslr_yoruba/yom_03397_00683716873.wav new file mode 100644 index 0000000000000000000000000000000000000000..b82bfe18beeedbef3fa6d85c8eb13f9346aaaa14 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00683716873.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef55e41fa3d11baab0db54918d738c59c8a54e5d16a0a22bbdec3a4d45e70b3a +size 409644 diff --git a/datasets/openslr_yoruba/yom_03397_00716640676.wav b/datasets/openslr_yoruba/yom_03397_00716640676.wav new file mode 100644 index 0000000000000000000000000000000000000000..4a9f51ba4d39abfa1453bef45cd3e6797a71efb3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00716640676.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a969d0cdfa3edca20041dad3cda5cf4b3b01538e56bdcc736f9b50aff768f062 +size 573484 diff --git a/datasets/openslr_yoruba/yom_03397_00742019698.wav b/datasets/openslr_yoruba/yom_03397_00742019698.wav new file mode 100644 index 0000000000000000000000000000000000000000..295072ba06e0af2e6901a530baa469701221772e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00742019698.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff875221f23d525c3c985a6764fe05bf1a63e0d7d73a6bed9305db8da42ba085 +size 385068 diff --git a/datasets/openslr_yoruba/yom_03397_00745720052.wav b/datasets/openslr_yoruba/yom_03397_00745720052.wav new file mode 100644 index 0000000000000000000000000000000000000000..03ed616a1f804143633facb1028e1bc25022ba9e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00745720052.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d79c35e879ea35c64544ab142d37fdc4f9192d8f49741bd1c56a270c5df09d +size 778284 diff --git a/datasets/openslr_yoruba/yom_03397_00766455445.wav b/datasets/openslr_yoruba/yom_03397_00766455445.wav new file mode 100644 index 0000000000000000000000000000000000000000..06e1dd2509b3c7a5c85fe20e039b13a464976497 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00766455445.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a868128196ca8340747b920218ddcda836a4b59be7ada11a83913468ee25c00 +size 458796 diff --git a/datasets/openslr_yoruba/yom_03397_00821101412.wav b/datasets/openslr_yoruba/yom_03397_00821101412.wav new file mode 100644 index 0000000000000000000000000000000000000000..7816554b471c34403e2bac850c4eb011a3421e88 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00821101412.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b430add9be503cedd83f7b26801e4e7e204c7909a198f5d781c9b042f4f25a7 +size 540716 diff --git a/datasets/openslr_yoruba/yom_03397_00832369199.wav b/datasets/openslr_yoruba/yom_03397_00832369199.wav new file mode 100644 index 0000000000000000000000000000000000000000..e2538bd03b1def6d6a44e18955034a3d64206284 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00832369199.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab55bbbfe9dc36eeb837b95c1855a47c105a9210dfd68e1174f079fc44b67be3 +size 516140 diff --git a/datasets/openslr_yoruba/yom_03397_00855663516.wav b/datasets/openslr_yoruba/yom_03397_00855663516.wav new file mode 100644 index 0000000000000000000000000000000000000000..3bdaa486c0892d2393780dbadc5c49dce303fe0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00855663516.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e503822b197288bde0e03e97b9f404f57600fd08412465ec5aabb95909c4e4b7 +size 868396 diff --git a/datasets/openslr_yoruba/yom_03397_00866133086.wav b/datasets/openslr_yoruba/yom_03397_00866133086.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1809f5fc03212bb72d1a2f59fbc4cf1560a4a35 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00866133086.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6906ea9b245b918fa548a655885a136372c831a4d046a17016b47f8bc6e51acd +size 606252 diff --git a/datasets/openslr_yoruba/yom_03397_00872186519.wav b/datasets/openslr_yoruba/yom_03397_00872186519.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5efb5c7e86c1ef3fc2a70398da6dff64516a35d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00872186519.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0570260286ee97ccc9bacefeabebe15a9bb5d4fa2dd65493cec48435db7dca0 +size 737324 diff --git a/datasets/openslr_yoruba/yom_03397_00881664179.wav b/datasets/openslr_yoruba/yom_03397_00881664179.wav new file mode 100644 index 0000000000000000000000000000000000000000..77d26acf7e9fb0cf03848b0f6f95f29b66b28f7d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00881664179.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2767be272912c7896d2a15ccf8556325fed28af8c252ce5a471c309173f27177 +size 319532 diff --git a/datasets/openslr_yoruba/yom_03397_00884869351.wav b/datasets/openslr_yoruba/yom_03397_00884869351.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdd2c2ec6ee7a8390a588ce265ef7c7f88f5e0e9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00884869351.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144666b1cb9322c5da4041670fcb31f335e84ccc11306b7a85fdd604177a31ec +size 679980 diff --git a/datasets/openslr_yoruba/yom_03397_00916968644.wav b/datasets/openslr_yoruba/yom_03397_00916968644.wav new file mode 100644 index 0000000000000000000000000000000000000000..00c11bc7288059494703ea0e2c22bb61d87322ec --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00916968644.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc166c02e90dd9e21481e9f439872eca952b593c654b4f5b62e167348b111efd +size 532524 diff --git a/datasets/openslr_yoruba/yom_03397_00985497268.wav b/datasets/openslr_yoruba/yom_03397_00985497268.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a7e9db9f04a82decc4d80d856bb6b4d02a91b73 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00985497268.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd99976f1c34ce1cb20468b82e2fe8a04a229ed431ed1c2a444eeb64e906a197 +size 557100 diff --git a/datasets/openslr_yoruba/yom_03397_00988160910.wav b/datasets/openslr_yoruba/yom_03397_00988160910.wav new file mode 100644 index 0000000000000000000000000000000000000000..abae1e6dc96f3094dd6b640ab03a4b4b2e1f14c4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_00988160910.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1dfcd7fdd5cdeb9008c5174ec78f768ba8673ed68c6dfc1bfaef187196411f +size 647212 diff --git a/datasets/openslr_yoruba/yom_03397_01023928001.wav b/datasets/openslr_yoruba/yom_03397_01023928001.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea41814f4789283119aef970046f62e0bd4b4de1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01023928001.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39217c88d95ca1aeb95ffad63a4f85e296079ba0d4f61b86126f9ef20118750 +size 442412 diff --git a/datasets/openslr_yoruba/yom_03397_01091579391.wav b/datasets/openslr_yoruba/yom_03397_01091579391.wav new file mode 100644 index 0000000000000000000000000000000000000000..22232e35e5423c2e99315387733cd55d4c3a494e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01091579391.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f0cdc8620b44abf2e1acadb3e5474801f8ee0c5424034056f55de6b4c230d2 +size 483372 diff --git a/datasets/openslr_yoruba/yom_03397_01099061384.wav b/datasets/openslr_yoruba/yom_03397_01099061384.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a776f2fa03c11f2d9cc104b55b5fc759863603e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01099061384.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e7472243b350f2893fdca380f93fb690107e4a1d62dea3ad159cf5d525ac78 +size 614444 diff --git a/datasets/openslr_yoruba/yom_03397_01117611970.wav b/datasets/openslr_yoruba/yom_03397_01117611970.wav new file mode 100644 index 0000000000000000000000000000000000000000..c6e80e232d0589afee4186a8e332e01abcd5f476 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01117611970.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd3cc9e6c65277442ea32a36cbc7a0facd0996e5eea182b8b4acba58985aaa5 +size 450604 diff --git a/datasets/openslr_yoruba/yom_03397_01135790070.wav b/datasets/openslr_yoruba/yom_03397_01135790070.wav new file mode 100644 index 0000000000000000000000000000000000000000..1914f37fa45a4a731647109dcae6999fda80f67d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01135790070.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3403edbfcd0e7d411a64f51068cd6c730488bd3c78f7554940ac9e0ecc2b6151 +size 475180 diff --git a/datasets/openslr_yoruba/yom_03397_01157193156.wav b/datasets/openslr_yoruba/yom_03397_01157193156.wav new file mode 100644 index 0000000000000000000000000000000000000000..93cc91f8a0300aeedb91505a2bd0b2e4e802e3d3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01157193156.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf7f738d470b8f57f7241c5434ad6d4920e35fe20b9200324078e2db089e32e +size 598060 diff --git a/datasets/openslr_yoruba/yom_03397_01164049831.wav b/datasets/openslr_yoruba/yom_03397_01164049831.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f469c11afe90a98cbd8849fb8d0e4b664dd2b7a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01164049831.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24df61878eb411d7cc54399e3dc90d7c7c3a97cb87e5ff16a91516ccaed71c24 +size 434220 diff --git a/datasets/openslr_yoruba/yom_03397_01185231523.wav b/datasets/openslr_yoruba/yom_03397_01185231523.wav new file mode 100644 index 0000000000000000000000000000000000000000..e283113310e9794c24df8bf887dd431e7372bfa1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01185231523.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92fa583ce3dd431c2296a525204469541e6628e8e3002b17fe0c2e36e7172eda +size 524332 diff --git a/datasets/openslr_yoruba/yom_03397_01310927765.wav b/datasets/openslr_yoruba/yom_03397_01310927765.wav new file mode 100644 index 0000000000000000000000000000000000000000..08e2fc72e8d3349a1df88eeec77d9e67406b28f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01310927765.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1665893cb4fe88774bfc8474a015334d10842ae5bce23a342cc868823711f2 +size 442412 diff --git a/datasets/openslr_yoruba/yom_03397_01322486103.wav b/datasets/openslr_yoruba/yom_03397_01322486103.wav new file mode 100644 index 0000000000000000000000000000000000000000..39c3e6a4c8eadcc2802ad357b7c03b327eb86db3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01322486103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58dd569f489b401c1d8397b9d9494e98a3bef15bb17bce895a4ba171baf12ed3 +size 335916 diff --git a/datasets/openslr_yoruba/yom_03397_01356689494.wav b/datasets/openslr_yoruba/yom_03397_01356689494.wav new file mode 100644 index 0000000000000000000000000000000000000000..143c76b24f7afd484a3226c415f65b7fb47880ae --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01356689494.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9666bd8432ffb3b27cab0294095f269b0636a7883c8efb8e5e301431016afc6b +size 696364 diff --git a/datasets/openslr_yoruba/yom_03397_01376360817.wav b/datasets/openslr_yoruba/yom_03397_01376360817.wav new file mode 100644 index 0000000000000000000000000000000000000000..67a6302c4f4d93e58aecdfdbeb2cc023423bcf26 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01376360817.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6f2ebc7163c07bf0763e115d55e71c508e68829f67b0a5db9cb74623e5a9454 +size 409644 diff --git a/datasets/openslr_yoruba/yom_03397_01379694402.wav b/datasets/openslr_yoruba/yom_03397_01379694402.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d8bd95bb1d2d00ad77994e761448ab1468a2dbd --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01379694402.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1217edc94c921801b393c13a371a62517939c2db8f042d377e7ca309645697bd +size 557100 diff --git a/datasets/openslr_yoruba/yom_03397_01396506552.wav b/datasets/openslr_yoruba/yom_03397_01396506552.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d960c3e2adf50f99f6f1636acbbb3108e11988a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01396506552.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d67bab9baed3b1be85d2260575494b8455caa7c7571122f20eb67caceef4af +size 426028 diff --git a/datasets/openslr_yoruba/yom_03397_01398413670.wav b/datasets/openslr_yoruba/yom_03397_01398413670.wav new file mode 100644 index 0000000000000000000000000000000000000000..4fb74a37cd3e4d46e00a7e513c6751469888a3b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01398413670.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19869ffeb51ca2219b2e8efdb0176b5b885192d4de7d4a52b61e85b2f9f8fbb7 +size 385068 diff --git a/datasets/openslr_yoruba/yom_03397_01404578582.wav b/datasets/openslr_yoruba/yom_03397_01404578582.wav new file mode 100644 index 0000000000000000000000000000000000000000..b4f84443380d637125ea7dade36b49d7e82bf281 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01404578582.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95dc54d267c0db4b18992086e0fce1b02256b2096864e562e73d4bf3292a0be +size 426028 diff --git a/datasets/openslr_yoruba/yom_03397_01408413858.wav b/datasets/openslr_yoruba/yom_03397_01408413858.wav new file mode 100644 index 0000000000000000000000000000000000000000..c8baed69727710eb2d14150ace6994c61d8863bb --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01408413858.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77059fed4c2e162d05530961c4f3b3c93931bbd858db829b78b8b620ab540eff +size 368684 diff --git a/datasets/openslr_yoruba/yom_03397_01431436647.wav b/datasets/openslr_yoruba/yom_03397_01431436647.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ce58e0a7abae3afe22eaab7e24aff50d144d0ad --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01431436647.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8846529adc915ff1b9143a18f8cd8d8c2115e5bb936a733d170ad8c40c4fbc +size 450604 diff --git a/datasets/openslr_yoruba/yom_03397_01441263050.wav b/datasets/openslr_yoruba/yom_03397_01441263050.wav new file mode 100644 index 0000000000000000000000000000000000000000..99f2aac70c43ea5c42613864dc3765af13bd6a3a --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01441263050.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254b1b9ad6a172a52e50f19a205ec0d83742ba6b3afc4cec13c0d51a06d454d6 +size 606252 diff --git a/datasets/openslr_yoruba/yom_03397_01455201401.wav b/datasets/openslr_yoruba/yom_03397_01455201401.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd4d9c1024d7e458f23fb3000a30ed6727419bd3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01455201401.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da25399763bcbe728827d88300e13705f9dba786c2b67bafd04bb308a19f5753 +size 368684 diff --git a/datasets/openslr_yoruba/yom_03397_01566492596.wav b/datasets/openslr_yoruba/yom_03397_01566492596.wav new file mode 100644 index 0000000000000000000000000000000000000000..24f4ea9c34186c42f85cc4cdc4ed29d308bcee32 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01566492596.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2b735709e23eec836938fbd606ec2c75a39d1eea13ad70f0b12297fbf1912e +size 696364 diff --git a/datasets/openslr_yoruba/yom_03397_01595328562.wav b/datasets/openslr_yoruba/yom_03397_01595328562.wav new file mode 100644 index 0000000000000000000000000000000000000000..56b88d899b0210845366e26931e4bdc5bcc0da45 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01595328562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6580e5cb3d5771fdf1ddae0cf8bb83baafb92c8b186c8011d235bdd45353e9db +size 442412 diff --git a/datasets/openslr_yoruba/yom_03397_01612232194.wav b/datasets/openslr_yoruba/yom_03397_01612232194.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1d771c17ed158361428470cbd877e24d07ca404 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01612232194.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d54d70d4e0beb49255862d69c4dbb5f5b9e1cb0bf14f105f74b8863ffad9b0f +size 573484 diff --git a/datasets/openslr_yoruba/yom_03397_01615082850.wav b/datasets/openslr_yoruba/yom_03397_01615082850.wav new file mode 100644 index 0000000000000000000000000000000000000000..0dd9a901cdbddd306839af391431d1611798b2d1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01615082850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06768fb7c8f4b3df843926727e6c2709bea7e5dfdfb498b7f62a3182d8e378d3 +size 401452 diff --git a/datasets/openslr_yoruba/yom_03397_01710524227.wav b/datasets/openslr_yoruba/yom_03397_01710524227.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9835132fbeb9bea3712d784e78b6014cd785368 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01710524227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9cc4b82affdf48d6e2c516a7cde5e8d273caa2f2f41d85fc6c0c6378f1b431b +size 475180 diff --git a/datasets/openslr_yoruba/yom_03397_01729574051.wav b/datasets/openslr_yoruba/yom_03397_01729574051.wav new file mode 100644 index 0000000000000000000000000000000000000000..859483bede78503104bd5d7d57934416fe6bb699 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01729574051.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a58f587204c38e43a635739a1b4ad56ef68f6dd1f090c06b604569a527ad5f3 +size 499756 diff --git a/datasets/openslr_yoruba/yom_03397_01750196608.wav b/datasets/openslr_yoruba/yom_03397_01750196608.wav new file mode 100644 index 0000000000000000000000000000000000000000..7858f54d6edbc719613fc9b17832b362eb197db7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01750196608.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18293eb4a12e6ecd0fdd960b70095bdf3eae984083a81043c5a207ab65bd07f +size 311340 diff --git a/datasets/openslr_yoruba/yom_03397_01751668117.wav b/datasets/openslr_yoruba/yom_03397_01751668117.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e3721e1831c7b8e2b64762864771239ceda3cd3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01751668117.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67915ce6d69521229111abcc37da572505e28d1404affde36311811962da964b +size 360492 diff --git a/datasets/openslr_yoruba/yom_03397_01771472448.wav b/datasets/openslr_yoruba/yom_03397_01771472448.wav new file mode 100644 index 0000000000000000000000000000000000000000..97ab5209036ae29ff21bffa90ee7b46860569e13 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01771472448.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7000a08025faadbad64e8f71a83c8aea583708921d972be1ad1eddbb264ba01d +size 442412 diff --git a/datasets/openslr_yoruba/yom_03397_01779080380.wav b/datasets/openslr_yoruba/yom_03397_01779080380.wav new file mode 100644 index 0000000000000000000000000000000000000000..688ec5a27d5d8c6fd6bd4038484aa338e9c259e2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01779080380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f197ff79729e0259dcf5008f35c5318beac6e08452681412a4cf63c78b1aa3fd +size 409644 diff --git a/datasets/openslr_yoruba/yom_03397_01791068891.wav b/datasets/openslr_yoruba/yom_03397_01791068891.wav new file mode 100644 index 0000000000000000000000000000000000000000..1745579997590d33afc8e56f15d5e8f12257d8a9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01791068891.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e6283e0ce061e041b72f3c9c88a443d6d05bb1e1c1b26b1b21e87395d4c467 +size 655404 diff --git a/datasets/openslr_yoruba/yom_03397_01806434024.wav b/datasets/openslr_yoruba/yom_03397_01806434024.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d01a5d5a07274a1c19443303cae0b13384f351d --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01806434024.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54aab3aa16196a2790a267511b897c2211388ebe97d42b39015aa8d701c4c2c4 +size 319532 diff --git a/datasets/openslr_yoruba/yom_03397_01826257088.wav b/datasets/openslr_yoruba/yom_03397_01826257088.wav new file mode 100644 index 0000000000000000000000000000000000000000..8612efe0be161a62f04c907c66500ed826f7f5ec --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01826257088.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfde6411ec0bf52b84826c47c5d2c9b06a3689d8d6c2710e4c38ac413ada94da +size 450604 diff --git a/datasets/openslr_yoruba/yom_03397_01839425777.wav b/datasets/openslr_yoruba/yom_03397_01839425777.wav new file mode 100644 index 0000000000000000000000000000000000000000..738bf8aaf5aac66472ac1820807a8b0e7d323240 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01839425777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b49645565de0c5b39a16ef6fed700973598b67d2e4c6ea4343b2ae05dc4abc6 +size 794668 diff --git a/datasets/openslr_yoruba/yom_03397_01877983138.wav b/datasets/openslr_yoruba/yom_03397_01877983138.wav new file mode 100644 index 0000000000000000000000000000000000000000..d812ada2b60a0981522f475e5867476b1d3c39b2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01877983138.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0485d54135e984cb6dc140dfe41bd2e5acbed1a56f02d9c9500b7164e06ad3 +size 581676 diff --git a/datasets/openslr_yoruba/yom_03397_01912975545.wav b/datasets/openslr_yoruba/yom_03397_01912975545.wav new file mode 100644 index 0000000000000000000000000000000000000000..44de10a0163eb976dbabf1258e6ac122c58da624 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01912975545.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11509b5a37564c833eb0d95df055977139fe5b3507d5fb3742ab65c85f89d31a +size 417836 diff --git a/datasets/openslr_yoruba/yom_03397_01914261822.wav b/datasets/openslr_yoruba/yom_03397_01914261822.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c9a86c4d16d780f415724e087c8905caf501329 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01914261822.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd16c531d39c9cd45c3ea077153b7b7e13aff9e040ec2a471bd97246225b27e7 +size 565292 diff --git a/datasets/openslr_yoruba/yom_03397_01919677732.wav b/datasets/openslr_yoruba/yom_03397_01919677732.wav new file mode 100644 index 0000000000000000000000000000000000000000..6050e9cec6713b4cedbbea18a1f6e92b11c9f98c --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01919677732.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7411d049d5cbbb7320db87c9f72c8904efebf877f93cca20bd14d1330577a63b +size 712748 diff --git a/datasets/openslr_yoruba/yom_03397_01921307701.wav b/datasets/openslr_yoruba/yom_03397_01921307701.wav new file mode 100644 index 0000000000000000000000000000000000000000..bed9ebd176a0b1850171af24fd35779dc156bf46 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01921307701.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:497f0288b8fe058b712b591a7c7931e5c15d352213bbda968466d67fa6226f6c +size 393260 diff --git a/datasets/openslr_yoruba/yom_03397_01968666909.wav b/datasets/openslr_yoruba/yom_03397_01968666909.wav new file mode 100644 index 0000000000000000000000000000000000000000..d7b6afc1076b120a33812f2e467694f237a1432e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01968666909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ee8a95cbe31e3cb2961c27e4ad1e1d1c15124df2e3c2ef859a392a13a644d6 +size 720940 diff --git a/datasets/openslr_yoruba/yom_03397_01984530007.wav b/datasets/openslr_yoruba/yom_03397_01984530007.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d5e00c26b152d4eb5f2ca5e8390fd6fa51590a9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_01984530007.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ab9a071ca7ddaf440153b01d62c99e0ceaf04ba5837bd9b684bdd2ab2f99c3 +size 524332 diff --git a/datasets/openslr_yoruba/yom_03397_02005216126.wav b/datasets/openslr_yoruba/yom_03397_02005216126.wav new file mode 100644 index 0000000000000000000000000000000000000000..acb69e58a12f006872a2ef59d8f9ebf25b59bcf7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02005216126.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce82464e11f963abd87d7d64c5e0b10fcb01a144122586b528573b25f90ab2ea +size 450604 diff --git a/datasets/openslr_yoruba/yom_03397_02035612405.wav b/datasets/openslr_yoruba/yom_03397_02035612405.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3f9d29876f039eb5e6220abc22cb9c10afe46e5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02035612405.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34dd121811cd24eff68460550974ffd5ff159e3f0395cff86bde026f90f6280 +size 466988 diff --git a/datasets/openslr_yoruba/yom_03397_02037042366.wav b/datasets/openslr_yoruba/yom_03397_02037042366.wav new file mode 100644 index 0000000000000000000000000000000000000000..e12b92a38f6fe6e30fb9e7651cd67496c875cec2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02037042366.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa146434e5e65366e109b52f0b6c37b3c1a0245c7166b9e2ab81b00f0d074663 +size 450604 diff --git a/datasets/openslr_yoruba/yom_03397_02078062575.wav b/datasets/openslr_yoruba/yom_03397_02078062575.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a500ca779661448d68e7b373ab4393d9a697629 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02078062575.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167984ba0505f40740d1f2a4960779c89d3b3a45baa9c49bf6ebcbcf26d21cd3 +size 524332 diff --git a/datasets/openslr_yoruba/yom_03397_02082064921.wav b/datasets/openslr_yoruba/yom_03397_02082064921.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c7857580cdb5fb7f451b9208f42f6704c27fbb9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02082064921.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4888cb6becc9417527ec697809fae7dd89c4dd7871657580e3615a5c08ab204 +size 426028 diff --git a/datasets/openslr_yoruba/yom_03397_02101059719.wav b/datasets/openslr_yoruba/yom_03397_02101059719.wav new file mode 100644 index 0000000000000000000000000000000000000000..16c1ec930b2dd4240a8fa411923de67c990994f2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02101059719.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d167e5b17dfc43df50b16ad6f1ff27c6a7c4c93f6e1a4cc0210cf4d60a044bcd +size 548908 diff --git a/datasets/openslr_yoruba/yom_03397_02118425909.wav b/datasets/openslr_yoruba/yom_03397_02118425909.wav new file mode 100644 index 0000000000000000000000000000000000000000..3298365138a1ffd00367bbe106caff7130337585 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02118425909.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054d1d6d7e4f497381ceb01d02af508697fd6fdd00da11fa99759c4a835ff997 +size 385068 diff --git a/datasets/openslr_yoruba/yom_03397_02131593374.wav b/datasets/openslr_yoruba/yom_03397_02131593374.wav new file mode 100644 index 0000000000000000000000000000000000000000..a33ddd7a240234a1f59bac63ae458e0c49d63b2e --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02131593374.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c47291f9681b9bee7e4f086d900176526fdedf53c512c648d6a359522fa26da +size 450604 diff --git a/datasets/openslr_yoruba/yom_03397_02146955738.wav b/datasets/openslr_yoruba/yom_03397_02146955738.wav new file mode 100644 index 0000000000000000000000000000000000000000..9dde74e7e2b04be93ac03efe8068ba669bc85608 --- /dev/null +++ b/datasets/openslr_yoruba/yom_03397_02146955738.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41da624bd2e5e57b78389fce40c48403abbb2b9ebcc7f7fe68eb0d6eca87fb98 +size 622636 diff --git a/datasets/openslr_yoruba/yom_04310_00022287278.wav b/datasets/openslr_yoruba/yom_04310_00022287278.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b82359eaed61a6630d1dbe04ab26f113b83ed64 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00022287278.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab9f5f7c74b110db1eb083752e48355efe3b7135027ca79f9b05c683a208209 +size 417836 diff --git a/datasets/openslr_yoruba/yom_04310_00028596448.wav b/datasets/openslr_yoruba/yom_04310_00028596448.wav new file mode 100644 index 0000000000000000000000000000000000000000..b81dbf65a88aab1737379b486443abc32b89b69d --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00028596448.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3bbc604438ba317e4012f3a07efe2beb694243912063c9b345324f6bd58766e +size 262188 diff --git a/datasets/openslr_yoruba/yom_04310_00039804096.wav b/datasets/openslr_yoruba/yom_04310_00039804096.wav new file mode 100644 index 0000000000000000000000000000000000000000..48f9e959b31fb46da7606d15c294bfb24520ebdb --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00039804096.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513d6fc4c7abb23c5a3de3fd73f3c459dc1a2160ef95b480413de734d86c4885 +size 368684 diff --git a/datasets/openslr_yoruba/yom_04310_00043047586.wav b/datasets/openslr_yoruba/yom_04310_00043047586.wav new file mode 100644 index 0000000000000000000000000000000000000000..a42aeb2e9d9d50e9145b9a78aad871fc7d5e1a86 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00043047586.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bdd3050dd84a51ea6e34c1141602fc7a9f0c1e0af670124a585db1170a648c +size 589868 diff --git a/datasets/openslr_yoruba/yom_04310_00048858685.wav b/datasets/openslr_yoruba/yom_04310_00048858685.wav new file mode 100644 index 0000000000000000000000000000000000000000..55d17929d43fef58defa74269d315c4551e7d463 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00048858685.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29fce04b0a634eb1f67cfc91be19c7d7716cae45987a55f1afe9fe6bfa1aef3c +size 196652 diff --git a/datasets/openslr_yoruba/yom_04310_00053494786.wav b/datasets/openslr_yoruba/yom_04310_00053494786.wav new file mode 100644 index 0000000000000000000000000000000000000000..8127ef609f4ac95655f74b76a6da7ec48e50a876 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00053494786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c03231003a32a14455480792432e9661f5adb7b5f26e4a4af2c2ebd12fc7bc +size 311340 diff --git a/datasets/openslr_yoruba/yom_04310_00067333103.wav b/datasets/openslr_yoruba/yom_04310_00067333103.wav new file mode 100644 index 0000000000000000000000000000000000000000..13c6e8b4c1bf4e1c30c6c381902380e89affc13d --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00067333103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29548500a5ef10b4d35d60affb3cd9bf5417baefe4b53a5d51250a9b7fbb8810 +size 213036 diff --git a/datasets/openslr_yoruba/yom_04310_00068034721.wav b/datasets/openslr_yoruba/yom_04310_00068034721.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc31b86f9be4d0a45ef57169a557b681e199de0b --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00068034721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc161f5713a37d6b2a7ea19e768abcd0cec83768c018438c9020626a3355bfff +size 188460 diff --git a/datasets/openslr_yoruba/yom_04310_00136067945.wav b/datasets/openslr_yoruba/yom_04310_00136067945.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9b46511b28179b5fa9d92fa935de64c364d1caf --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00136067945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b03af3572aced8bf9d855a97aec94bdc5e5a34ebf79a0e93dfc819e968dae17 +size 565292 diff --git a/datasets/openslr_yoruba/yom_04310_00142694911.wav b/datasets/openslr_yoruba/yom_04310_00142694911.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd66e50904f8bcbd01ba99831d95650a94f23bc8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00142694911.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727b65b0aec074f4b97a00bacbecf4160965ea04b2779cf0e0c4a14d986f3eb3 +size 229420 diff --git a/datasets/openslr_yoruba/yom_04310_00158953253.wav b/datasets/openslr_yoruba/yom_04310_00158953253.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab0d6d74f4060ae114e760e2322db55ddaebb34f --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00158953253.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4b22eb4b90bf953d31f59e3c699334a41f93f870b65b52367648ab869c1c19 +size 180268 diff --git a/datasets/openslr_yoruba/yom_04310_00179525844.wav b/datasets/openslr_yoruba/yom_04310_00179525844.wav new file mode 100644 index 0000000000000000000000000000000000000000..2280138744547053d0345239526415ce5c2dde18 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00179525844.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1b110be1d6ae6f257695b1848c4dfbd56abd7760d8cf4a5219084d5364e9c9 +size 401452 diff --git a/datasets/openslr_yoruba/yom_04310_00216530353.wav b/datasets/openslr_yoruba/yom_04310_00216530353.wav new file mode 100644 index 0000000000000000000000000000000000000000..7fb8492b07d223b1447b61b9652bba6ece17e958 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00216530353.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5dc476a2dda0ceeed77ce955f5394fb5d43edccf3c382103d029cfe6e882d2 +size 327724 diff --git a/datasets/openslr_yoruba/yom_04310_00224640928.wav b/datasets/openslr_yoruba/yom_04310_00224640928.wav new file mode 100644 index 0000000000000000000000000000000000000000..e43a03583fdf3efaf256e3724d7ef147f74dea32 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00224640928.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2970a3b510b25f079b82f894ae9db4b7f9fe969d9a1ea2a40bb7aeed531912b8 +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_00235468565.wav b/datasets/openslr_yoruba/yom_04310_00235468565.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c7d8b79cb3bf3782388fe6fcf5fb38ca88bddd9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00235468565.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383d6a321fd3206711dfbb88ada9a02b4297a0808713305025586cb808aca4e9 +size 434220 diff --git a/datasets/openslr_yoruba/yom_04310_00239113163.wav b/datasets/openslr_yoruba/yom_04310_00239113163.wav new file mode 100644 index 0000000000000000000000000000000000000000..3fbc4f67ac8ccb70f403b2304167b937e36f457c --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00239113163.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7720f339d745daeea442b1cb3e3f26cddd809494764f9033509585eb18da47 +size 434220 diff --git a/datasets/openslr_yoruba/yom_04310_00251924654.wav b/datasets/openslr_yoruba/yom_04310_00251924654.wav new file mode 100644 index 0000000000000000000000000000000000000000..d81c3aa1c4277a8b7a238cc640f6b0cb78dee502 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00251924654.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bdf341770473d0bc6c4befe5eef905226a720fdb3994befcfd79fe0de6ed627 +size 213036 diff --git a/datasets/openslr_yoruba/yom_04310_00260318438.wav b/datasets/openslr_yoruba/yom_04310_00260318438.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd579be2407c575cea3e67d39e6e7e9aae8cb20d --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00260318438.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc6dffaf45564dcbf0775f187dbdc7f70d17cbef72ca67677f0ec3db410fb672 +size 409644 diff --git a/datasets/openslr_yoruba/yom_04310_00273816675.wav b/datasets/openslr_yoruba/yom_04310_00273816675.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8918eabeeda79011f542b3e68bd86a04605b3cf --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00273816675.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b67e54cfab6fdd1f20cc864948522aced3bc9a42a23ffe1cbe7d8b8eaa5d646 +size 229420 diff --git a/datasets/openslr_yoruba/yom_04310_00341276759.wav b/datasets/openslr_yoruba/yom_04310_00341276759.wav new file mode 100644 index 0000000000000000000000000000000000000000..a8069d5fe1870c026a55704cf171aaa4fae88fa5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00341276759.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f576ab10ca1d6b0211ed1c3186b72540d7e37f55b1f8ff3cdc0c153d2441fbd1 +size 622636 diff --git a/datasets/openslr_yoruba/yom_04310_00349960103.wav b/datasets/openslr_yoruba/yom_04310_00349960103.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b7d6be291c3a8ab37f3b92a0f5782b98b539681 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00349960103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f1c165fc1e5be662c85ec0a2c7ded8f5cec90db97bcae1e6522fc25dab5a41 +size 581676 diff --git a/datasets/openslr_yoruba/yom_04310_00363799652.wav b/datasets/openslr_yoruba/yom_04310_00363799652.wav new file mode 100644 index 0000000000000000000000000000000000000000..fbaf9f80f5c7ad8b58d45e383ab1e69d7cfc1e62 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00363799652.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2068eba600f0fee459a0c19611274204ceed65a4ff1c098e746d6ebbe8e8d095 +size 237612 diff --git a/datasets/openslr_yoruba/yom_04310_00398156349.wav b/datasets/openslr_yoruba/yom_04310_00398156349.wav new file mode 100644 index 0000000000000000000000000000000000000000..e42db321d92b4357e554fc1fb4fa1f8280434e8d --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00398156349.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67a576c886f47646f18801acbaacaabfc633dce10b268c7a20c762d3c503686 +size 344108 diff --git a/datasets/openslr_yoruba/yom_04310_00425358829.wav b/datasets/openslr_yoruba/yom_04310_00425358829.wav new file mode 100644 index 0000000000000000000000000000000000000000..7b1202733efa0dd86255d19e61f4866308ae5004 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00425358829.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1feb1d41c736af7c97c36285f19df6080be9cf49afed5d16e52f743712db10cd +size 376876 diff --git a/datasets/openslr_yoruba/yom_04310_00451919045.wav b/datasets/openslr_yoruba/yom_04310_00451919045.wav new file mode 100644 index 0000000000000000000000000000000000000000..212ea4116017363e3fb575ee9e9839b192711bd9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00451919045.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2db97759d452528a20c610cc1017951956884d4a23076bf4eef9cf79e4d5c2a +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_00457696226.wav b/datasets/openslr_yoruba/yom_04310_00457696226.wav new file mode 100644 index 0000000000000000000000000000000000000000..01c65ae37366aa2093ca88ec19b2ed5ceeb9ac95 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00457696226.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb47ab06173fe01bc294ed9d1a40e6be361eb4e0439670989dc22de2b1273fb6 +size 352300 diff --git a/datasets/openslr_yoruba/yom_04310_00467020071.wav b/datasets/openslr_yoruba/yom_04310_00467020071.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b5870bee23094d7852a2b3b35bfb41bac3b33c2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00467020071.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dabd0503470b338c65b6b399e688395e71f5b78a175bde3533bfadebee476271 +size 524332 diff --git a/datasets/openslr_yoruba/yom_04310_00481083763.wav b/datasets/openslr_yoruba/yom_04310_00481083763.wav new file mode 100644 index 0000000000000000000000000000000000000000..a05aadc3faf73154eb514e83f782dd44ee213c24 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00481083763.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54ed00c3879ff185c08a01a1794c1ea8aa68144479a2fda5e394a3d52d3eb00 +size 475180 diff --git a/datasets/openslr_yoruba/yom_04310_00491607396.wav b/datasets/openslr_yoruba/yom_04310_00491607396.wav new file mode 100644 index 0000000000000000000000000000000000000000..5066fe73304fbf11a5a0f1a5b48fff8639817460 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00491607396.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0721d2889b5580695e626343d25d863f4ed8dc763494b004721554d1d65efa38 +size 712748 diff --git a/datasets/openslr_yoruba/yom_04310_00536979079.wav b/datasets/openslr_yoruba/yom_04310_00536979079.wav new file mode 100644 index 0000000000000000000000000000000000000000..513b912b6c360b05a7782b5922d300b9860f811f --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00536979079.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:377eb64162ec929554f0767a66028dc3128597f8465cee69a771d1029ceb477e +size 368684 diff --git a/datasets/openslr_yoruba/yom_04310_00623693494.wav b/datasets/openslr_yoruba/yom_04310_00623693494.wav new file mode 100644 index 0000000000000000000000000000000000000000..92dbc9d938cd69557b28d3e9981bf0179cbcdcde --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00623693494.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0823799d3ea2eeb95c40b0dd91755ef186ce1699fd31350a9a0ef4572f543693 +size 204844 diff --git a/datasets/openslr_yoruba/yom_04310_00642310364.wav b/datasets/openslr_yoruba/yom_04310_00642310364.wav new file mode 100644 index 0000000000000000000000000000000000000000..cfd391ee9d6a57c3525b8285b1cea0cd6d9e2701 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00642310364.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374f9124628395c36a61c89a05545a17da75ec6e9b6e6eeed826406e6b44a344 +size 245804 diff --git a/datasets/openslr_yoruba/yom_04310_00645421127.wav b/datasets/openslr_yoruba/yom_04310_00645421127.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b33f2bfea3e2708e741deb27c26a5af6b450d99 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00645421127.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d8e2b0e2c9abad37307f48aff718e093ceaeb94af281037daf51dc3944f21c +size 327724 diff --git a/datasets/openslr_yoruba/yom_04310_00655668377.wav b/datasets/openslr_yoruba/yom_04310_00655668377.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc9e2c9cdedd592fb2a2a11740f64756300241a4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00655668377.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3eb0387e5b4955ebd1fc47e3edbd9ca0a17050fc84f51c45524562c3b82d4d1 +size 270380 diff --git a/datasets/openslr_yoruba/yom_04310_00657137508.wav b/datasets/openslr_yoruba/yom_04310_00657137508.wav new file mode 100644 index 0000000000000000000000000000000000000000..e89183342f66db74ea46c1d5ec36adef32179450 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00657137508.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927c4a5c39ed5735e52d7ff2744498d51b943454a548c3fdcbae8353a8197643 +size 319532 diff --git a/datasets/openslr_yoruba/yom_04310_00661357128.wav b/datasets/openslr_yoruba/yom_04310_00661357128.wav new file mode 100644 index 0000000000000000000000000000000000000000..04e9434c7091916e61618a0ee743cc6cb5d0fd7c --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00661357128.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695984c40076fecb29455e2e4c56fe07a7d8ed4bc497d7b7b01e5a81f3703eb1 +size 475180 diff --git a/datasets/openslr_yoruba/yom_04310_00698349134.wav b/datasets/openslr_yoruba/yom_04310_00698349134.wav new file mode 100644 index 0000000000000000000000000000000000000000..998f880465fd932131f36198e5b98aff59af2323 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00698349134.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634ed4df1a56d20261fd62aee411f857613d72d3e02441c2a428e7a5f6e0cebe +size 426028 diff --git a/datasets/openslr_yoruba/yom_04310_00730116824.wav b/datasets/openslr_yoruba/yom_04310_00730116824.wav new file mode 100644 index 0000000000000000000000000000000000000000..3259e3556ef112774cc67ebd88ab3816430c0675 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00730116824.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a3338f213aea936f290325ca6cd190fcef57f0016bc99a3b1aa5fabce415e1 +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_00733516550.wav b/datasets/openslr_yoruba/yom_04310_00733516550.wav new file mode 100644 index 0000000000000000000000000000000000000000..fb0c181b281b358ad3377da436bf5e4efd85fd9b --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00733516550.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b76d33597dda3bb2044a91645062d3772d7f3c3e88807cf3653e3ca2be2f51c +size 368684 diff --git a/datasets/openslr_yoruba/yom_04310_00767913939.wav b/datasets/openslr_yoruba/yom_04310_00767913939.wav new file mode 100644 index 0000000000000000000000000000000000000000..d85d176e1e03f57174f7c24ef150100f3b72a2ed --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00767913939.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8992c1487b1723cb1745364536b290d34791b9a8a666fb3bba875496f8c13572 +size 614444 diff --git a/datasets/openslr_yoruba/yom_04310_00784459878.wav b/datasets/openslr_yoruba/yom_04310_00784459878.wav new file mode 100644 index 0000000000000000000000000000000000000000..fa180d295011f7ac70e874a1c39ef46011643ce0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00784459878.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ad93cff6c52ec73d70dab20adde2e126b52bb9629b219b7f2f84bea055f321 +size 393260 diff --git a/datasets/openslr_yoruba/yom_04310_00866563516.wav b/datasets/openslr_yoruba/yom_04310_00866563516.wav new file mode 100644 index 0000000000000000000000000000000000000000..29139aed60d2ad351712eda1ea51c0ae5f27acc9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00866563516.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa8583cd2688dc340b44389b15479c5f46145525d47e7a832a3c51de353db91 +size 237612 diff --git a/datasets/openslr_yoruba/yom_04310_00870319925.wav b/datasets/openslr_yoruba/yom_04310_00870319925.wav new file mode 100644 index 0000000000000000000000000000000000000000..0567c69b920d50a5f71cbce3231c6d8a4a051a23 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00870319925.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31baf74a3f1f77145d4999d77956bbfd98b9879d94019734b84c61e55ded8fea +size 270380 diff --git a/datasets/openslr_yoruba/yom_04310_00888149686.wav b/datasets/openslr_yoruba/yom_04310_00888149686.wav new file mode 100644 index 0000000000000000000000000000000000000000..16afbbf400b9dbf262f0caa714969061423cf7cc --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00888149686.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6b920f5219375cf26c79ad13f251aa8b3b4db5e802d9a4d23afa394d70003e +size 426028 diff --git a/datasets/openslr_yoruba/yom_04310_00934704293.wav b/datasets/openslr_yoruba/yom_04310_00934704293.wav new file mode 100644 index 0000000000000000000000000000000000000000..bf6f3674e713f03e959821dee6c44546884e9140 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00934704293.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d4f8535a89640d288c6cd9585182c1abcf0aaa76766093d6c7c5549041b897 +size 344108 diff --git a/datasets/openslr_yoruba/yom_04310_00935632064.wav b/datasets/openslr_yoruba/yom_04310_00935632064.wav new file mode 100644 index 0000000000000000000000000000000000000000..d89365c8becd4b5545bb47fdfe0a03ff783fc1e2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00935632064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2e71ae256b78123429165fc82373d7d179cc8e60598b72b51cdd45ad4a6f50 +size 385068 diff --git a/datasets/openslr_yoruba/yom_04310_00971636263.wav b/datasets/openslr_yoruba/yom_04310_00971636263.wav new file mode 100644 index 0000000000000000000000000000000000000000..85c50f7128e424084884082d88c348ee49c0a097 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00971636263.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:680bcbe036453a010b67cb73e2b7af7112cacd8ce93e98d15b367e7170dd6edc +size 360492 diff --git a/datasets/openslr_yoruba/yom_04310_00972272422.wav b/datasets/openslr_yoruba/yom_04310_00972272422.wav new file mode 100644 index 0000000000000000000000000000000000000000..25eca88ad0d944e24f4fe8a64559cee09550b454 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00972272422.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f58686ea3f66c48c45e117e05d5670638b1807057b497d4da91888eac2531013 +size 270380 diff --git a/datasets/openslr_yoruba/yom_04310_00981044538.wav b/datasets/openslr_yoruba/yom_04310_00981044538.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7d82fbbb14ad2dbc2f9434297701d5af5c99cd1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00981044538.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77bfb63d1b01d46f80f35e925f5cad2ecccf4bb2ec9335e900d0aa897e195e54 +size 344108 diff --git a/datasets/openslr_yoruba/yom_04310_00996132431.wav b/datasets/openslr_yoruba/yom_04310_00996132431.wav new file mode 100644 index 0000000000000000000000000000000000000000..3224d7ee9d6822d0f4c0df5652714bb029449568 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_00996132431.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9e7663cb1e8a2f7aaa8bbcc88f8ec3eb5ec327754b400dba4825a31ca2a1d1 +size 303148 diff --git a/datasets/openslr_yoruba/yom_04310_01000861379.wav b/datasets/openslr_yoruba/yom_04310_01000861379.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ba65e348ed3d8b921fc70757ce9afa6fa58c029 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01000861379.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc09570444cab725217b1ec4397ce08d181fe5e74ce1f67e43a297c79c7c041 +size 278572 diff --git a/datasets/openslr_yoruba/yom_04310_01007763877.wav b/datasets/openslr_yoruba/yom_04310_01007763877.wav new file mode 100644 index 0000000000000000000000000000000000000000..d382d1d6e090b2e9d7250ba43736ac2be8854d73 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01007763877.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7172fab99b28aba30f4a98d0e94fcc079d2dc732838ea0304cf19664d0f3256a +size 278572 diff --git a/datasets/openslr_yoruba/yom_04310_01015966740.wav b/datasets/openslr_yoruba/yom_04310_01015966740.wav new file mode 100644 index 0000000000000000000000000000000000000000..dd5ab91602f0f6791e3c7c7830202a6f586a5da6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01015966740.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:951a402ae9b1d9ab516e1f9c478b290ecaf9e1160de1b2b1c3488bee7ad6909f +size 253996 diff --git a/datasets/openslr_yoruba/yom_04310_01019575995.wav b/datasets/openslr_yoruba/yom_04310_01019575995.wav new file mode 100644 index 0000000000000000000000000000000000000000..e217a51f548c0d1e5c8a41861c1adb9dd0331caa --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01019575995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ab016920e9abbc5e10a50cdb01774ab9236f0f1661f9c7a3f5f5740331aafc +size 262188 diff --git a/datasets/openslr_yoruba/yom_04310_01040078318.wav b/datasets/openslr_yoruba/yom_04310_01040078318.wav new file mode 100644 index 0000000000000000000000000000000000000000..8b8357cbb79a2a08c9d7f91df0e96da5ff786ebd --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01040078318.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d56589cecfd90fc2e11286c76b590a14e9de7c69f6613e2642831e76686578e +size 262188 diff --git a/datasets/openslr_yoruba/yom_04310_01044682943.wav b/datasets/openslr_yoruba/yom_04310_01044682943.wav new file mode 100644 index 0000000000000000000000000000000000000000..6eb76691c86fb12f49c4c1f4203433358f7dfd60 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01044682943.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7587e1ebe3ccd1d67b31da36ab764e7435a089246ca26cd47cb14bb4e8a5074f +size 278572 diff --git a/datasets/openslr_yoruba/yom_04310_01044698400.wav b/datasets/openslr_yoruba/yom_04310_01044698400.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ec730302921341a6d11e99038f6d68644d6152e --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01044698400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1efbf5da99731d997e95b2cbb08edf72f79de4aad0aa608a4bf836abf61935ed +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_01048959711.wav b/datasets/openslr_yoruba/yom_04310_01048959711.wav new file mode 100644 index 0000000000000000000000000000000000000000..605c158ab91626c75b99ad6ecb5453d41dba6aa4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01048959711.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3054a1d8dcf09fa5485c6fece28c60a81ae3106f7fb3cff88c0e390b9776b088 +size 253996 diff --git a/datasets/openslr_yoruba/yom_04310_01088045075.wav b/datasets/openslr_yoruba/yom_04310_01088045075.wav new file mode 100644 index 0000000000000000000000000000000000000000..c72454289bf059d5de8343461be53ae999482dbe --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01088045075.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a15d7cd8996d91ec0736fd92535b0eeebd9c55017a809e465f657548da9944 +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_01093720849.wav b/datasets/openslr_yoruba/yom_04310_01093720849.wav new file mode 100644 index 0000000000000000000000000000000000000000..a611fe02db2ba3b49cafa94b57b3bb58eeca4c19 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01093720849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09b69572b91641ecbb64c96afd774de67029f4300dc25b672a9c857b6510f17 +size 417836 diff --git a/datasets/openslr_yoruba/yom_04310_01121296372.wav b/datasets/openslr_yoruba/yom_04310_01121296372.wav new file mode 100644 index 0000000000000000000000000000000000000000..cff857def07d1d047cb0b8626d69c828674ec32d --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01121296372.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61ddfe2f9c2fa7c3d19986056a04de4184730bb045a00d34fa4959593f22346 +size 393260 diff --git a/datasets/openslr_yoruba/yom_04310_01153510146.wav b/datasets/openslr_yoruba/yom_04310_01153510146.wav new file mode 100644 index 0000000000000000000000000000000000000000..6af184538d219f9b985d148c1b7a24b6d18ec79a --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01153510146.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4cb911542feeb5afc2d10f63ab4ab3de44985894bda3bf9d14d5d9b9cb3bb7 +size 311340 diff --git a/datasets/openslr_yoruba/yom_04310_01189473556.wav b/datasets/openslr_yoruba/yom_04310_01189473556.wav new file mode 100644 index 0000000000000000000000000000000000000000..df72e671e80e83b1cc406b7d0b15def73480defa --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01189473556.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19b3b63144291654e8e0992ef9ab1fcf2fff4e9a748ddab08ec5f6b9c2b16a3 +size 360492 diff --git a/datasets/openslr_yoruba/yom_04310_01237282335.wav b/datasets/openslr_yoruba/yom_04310_01237282335.wav new file mode 100644 index 0000000000000000000000000000000000000000..17dfdea34721afbda17a3505886aa3cf20a35657 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01237282335.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7d00cf872d4be372cdf59f026f63112600f25f37bc398ad75e4416c2250445 +size 434220 diff --git a/datasets/openslr_yoruba/yom_04310_01326155867.wav b/datasets/openslr_yoruba/yom_04310_01326155867.wav new file mode 100644 index 0000000000000000000000000000000000000000..83ab3eaffa2410c9973697f7c665ad27d24e70a5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01326155867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c3f65f75cf369ba024051f0aa882fc501ec265c94a6b1ff8f11a92b4667280 +size 516140 diff --git a/datasets/openslr_yoruba/yom_04310_01329108058.wav b/datasets/openslr_yoruba/yom_04310_01329108058.wav new file mode 100644 index 0000000000000000000000000000000000000000..494f2b80cd0fe67e65270a287118f617e5ec7d22 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01329108058.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4d1dbed1284ed442d5a4830bbecf9fd373137db937885da5a21640bbbca84e +size 385068 diff --git a/datasets/openslr_yoruba/yom_04310_01361544805.wav b/datasets/openslr_yoruba/yom_04310_01361544805.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0ffe96a64b485c25cf94373b961a5adc68139bc --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01361544805.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:156b008995ba3e2ebf335d74ff8877771730402976542116030e6d267212709a +size 393260 diff --git a/datasets/openslr_yoruba/yom_04310_01385314574.wav b/datasets/openslr_yoruba/yom_04310_01385314574.wav new file mode 100644 index 0000000000000000000000000000000000000000..2266c0cba792fff4cee5edaa5f43ad38d84d1e30 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01385314574.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:416ae474ef892d24161c6fef24e6f5f08e11b50c5e1e8c52cae84c07bb410168 +size 352300 diff --git a/datasets/openslr_yoruba/yom_04310_01397844421.wav b/datasets/openslr_yoruba/yom_04310_01397844421.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e2bf7ae0adf5ec2085dd39ee4bae38a88f6240b --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01397844421.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba7f8581409de69e60a37542801521340a8f6e6565f6bb8ab0446d87ce907fa +size 213036 diff --git a/datasets/openslr_yoruba/yom_04310_01404281261.wav b/datasets/openslr_yoruba/yom_04310_01404281261.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f700c59806a8c637efd14a63ecebd27a981b7fa --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01404281261.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff8b8c4215d9a83bdd9f38190110b9905a535852180772bd72219af8834fb08 +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_01416816876.wav b/datasets/openslr_yoruba/yom_04310_01416816876.wav new file mode 100644 index 0000000000000000000000000000000000000000..b557de9ce77b68f5e4573e72dc746e4ae5eff4ed --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01416816876.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b0ff3ad8a7212784fac96ea064c1e16297bd2f0ff86e9a5553d5385d009894 +size 327724 diff --git a/datasets/openslr_yoruba/yom_04310_01458918306.wav b/datasets/openslr_yoruba/yom_04310_01458918306.wav new file mode 100644 index 0000000000000000000000000000000000000000..50e70fa52a3f77644732c3a7fb2ff2112030b243 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01458918306.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab2e8d445cf6fb773accf35423f7273b43e4b31ea358696b37308cdf345e0be +size 221228 diff --git a/datasets/openslr_yoruba/yom_04310_01478059469.wav b/datasets/openslr_yoruba/yom_04310_01478059469.wav new file mode 100644 index 0000000000000000000000000000000000000000..deea0a3556b8d16663ad1417af72de4e221f9e45 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01478059469.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbd7ebd589d5df3661ba1dff626d1293fa0b622fb2ee331ed418e316dea588ac +size 294956 diff --git a/datasets/openslr_yoruba/yom_04310_01478906672.wav b/datasets/openslr_yoruba/yom_04310_01478906672.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef4221db5b0a140cac5822c132f3b16eaa78a77f --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01478906672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d09aee36ded096aab4c4ab0db2cc97ee88e0bb8f49ea530750d4a20ac597b3 +size 466988 diff --git a/datasets/openslr_yoruba/yom_04310_01552778313.wav b/datasets/openslr_yoruba/yom_04310_01552778313.wav new file mode 100644 index 0000000000000000000000000000000000000000..816ba6242c725acfaeedc357d5121b16a9114d19 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01552778313.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22944118d1588a19122c36b5f3cf0dc6297f9e90272f1d9b1103611f555b14c5 +size 319532 diff --git a/datasets/openslr_yoruba/yom_04310_01573522146.wav b/datasets/openslr_yoruba/yom_04310_01573522146.wav new file mode 100644 index 0000000000000000000000000000000000000000..288c88556aec1115f49fdff26c2450c8ba1f75d9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01573522146.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942d6ce411a033527824cad0f8a8a342431943c087360f91b478bffa15a13e2d +size 352300 diff --git a/datasets/openslr_yoruba/yom_04310_01581232845.wav b/datasets/openslr_yoruba/yom_04310_01581232845.wav new file mode 100644 index 0000000000000000000000000000000000000000..db157678315d7a645cea167f873b0559a1e91a06 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01581232845.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d22133dcbd4b64b5916f257188c08d10264260864dfd38f482abfa5b3c3019d +size 286764 diff --git a/datasets/openslr_yoruba/yom_04310_01586639190.wav b/datasets/openslr_yoruba/yom_04310_01586639190.wav new file mode 100644 index 0000000000000000000000000000000000000000..cce3ac42b858ffd426efbe2422f6abc41f65241e --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01586639190.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e8391342a4ae9df2b6d834d0f39e36ea40f61f92d03ea598547b9a85fd74262 +size 344108 diff --git a/datasets/openslr_yoruba/yom_04310_01644923220.wav b/datasets/openslr_yoruba/yom_04310_01644923220.wav new file mode 100644 index 0000000000000000000000000000000000000000..8808008cacbcd00acc944fccbf50f9e7bb9aa8bd --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01644923220.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf4747cfd881ae63a5df25025c5ba63603a58bcc64b647b790f9e98cd8d930ab +size 401452 diff --git a/datasets/openslr_yoruba/yom_04310_01669842088.wav b/datasets/openslr_yoruba/yom_04310_01669842088.wav new file mode 100644 index 0000000000000000000000000000000000000000..07e50932cc884325b7d9242ecc0389a658f14d83 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01669842088.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66e4e51eb4899f1ba7176a9ee49766c8958ee10321e595930a047da95728cd2 +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_01672980641.wav b/datasets/openslr_yoruba/yom_04310_01672980641.wav new file mode 100644 index 0000000000000000000000000000000000000000..48c763466f98959ad78c71f3ac79f387945b2a61 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01672980641.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cbe4e3450afe3014e9b172bcf8d6f30bd173459db89b408ac0b9b8b782365c8 +size 311340 diff --git a/datasets/openslr_yoruba/yom_04310_01687613927.wav b/datasets/openslr_yoruba/yom_04310_01687613927.wav new file mode 100644 index 0000000000000000000000000000000000000000..394f3795f5a315a9304a347d71b226a72f6ee67a --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01687613927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be1933ebd46e1143c506851ef7ae6f2be3d90abed63dc0011bd8207d791e2f52 +size 253996 diff --git a/datasets/openslr_yoruba/yom_04310_01703374574.wav b/datasets/openslr_yoruba/yom_04310_01703374574.wav new file mode 100644 index 0000000000000000000000000000000000000000..47da24d37f37e95fe51b224f140c01d7c0899f52 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01703374574.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b110a85f5fa55729b8ef8879e7b1eef13b568fc5b763f4162a7585c0a042b7 +size 942124 diff --git a/datasets/openslr_yoruba/yom_04310_01719631246.wav b/datasets/openslr_yoruba/yom_04310_01719631246.wav new file mode 100644 index 0000000000000000000000000000000000000000..35cd1e9b7026ba2a4024759257586babb33d9bee --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01719631246.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc31596ab7064b459efaf76fa3bfb727f3c822dc19c2e0dbe9f5300ecd31eae +size 557100 diff --git a/datasets/openslr_yoruba/yom_04310_01733840109.wav b/datasets/openslr_yoruba/yom_04310_01733840109.wav new file mode 100644 index 0000000000000000000000000000000000000000..2995395326273aed06e9a199e5ecac35eeea9fb6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01733840109.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66c53096953c5983b00bcb5293691f966b669f181fc9bb8fbb043fe69a5ba58 +size 286764 diff --git a/datasets/openslr_yoruba/yom_04310_01743306004.wav b/datasets/openslr_yoruba/yom_04310_01743306004.wav new file mode 100644 index 0000000000000000000000000000000000000000..099753a04a7222be135c5aedb8084e4588da5140 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01743306004.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ed5c2818e31bf762199370314da9deadea1f97a8d7ae84b69bb718cdec6f9c +size 262188 diff --git a/datasets/openslr_yoruba/yom_04310_01758552797.wav b/datasets/openslr_yoruba/yom_04310_01758552797.wav new file mode 100644 index 0000000000000000000000000000000000000000..a94c2d51a149d460c8f34a3ed662ef9274aac294 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01758552797.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b32d73f3ca61e1b5bec7c69e7515ed776f7af00f76bbb5e8701deda3fad72350 +size 253996 diff --git a/datasets/openslr_yoruba/yom_04310_01782056209.wav b/datasets/openslr_yoruba/yom_04310_01782056209.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d2e8fadc738a5e566c473a043b17af6a333608a --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01782056209.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63526fada3976a48774fbc8853596b07b7358e238e2e42462eab54fadfbbb9ef +size 360492 diff --git a/datasets/openslr_yoruba/yom_04310_01789265150.wav b/datasets/openslr_yoruba/yom_04310_01789265150.wav new file mode 100644 index 0000000000000000000000000000000000000000..c62a363401b9b1524ffca76f4cdfcf122023b059 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01789265150.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0e3e26c04011011a9e6c4b88d04dc6c1d8e1fe200863a69920bda33bcb3c5a2 +size 303148 diff --git a/datasets/openslr_yoruba/yom_04310_01804139119.wav b/datasets/openslr_yoruba/yom_04310_01804139119.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d6bb0121267b5d0cc1d82f0273f02f52488d869 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01804139119.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5ccc6b21c2004ee439cc7787a07db4eed7c848596a2309096509538d60c0ca +size 393260 diff --git a/datasets/openslr_yoruba/yom_04310_01848067936.wav b/datasets/openslr_yoruba/yom_04310_01848067936.wav new file mode 100644 index 0000000000000000000000000000000000000000..d20c327458e7dc5303fdcdc54844a7bdaf432ed9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01848067936.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca9c6525c993c74091c62fb91ee889269120de767545d96579773e9ca97f5dd +size 278572 diff --git a/datasets/openslr_yoruba/yom_04310_01855565612.wav b/datasets/openslr_yoruba/yom_04310_01855565612.wav new file mode 100644 index 0000000000000000000000000000000000000000..be222cc0316d9f8f819122e99b08cf228b7b817e --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01855565612.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e63cb961c50e8d909630ef98a0ea3ba85a54d3ba4f06242060eaad990bdeaa +size 409644 diff --git a/datasets/openslr_yoruba/yom_04310_01892171200.wav b/datasets/openslr_yoruba/yom_04310_01892171200.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb7405cccaeaf31712ab6407690d49d405e56f92 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01892171200.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52234e0f83eb6906675b924ef9689d70573c4cb1589d734292dda533e9b53d4b +size 376876 diff --git a/datasets/openslr_yoruba/yom_04310_01920145996.wav b/datasets/openslr_yoruba/yom_04310_01920145996.wav new file mode 100644 index 0000000000000000000000000000000000000000..790bd6c44f95c7bf6177752b809f80c6f060430b --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01920145996.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced6633ba6f25005164dbf5c74e9f84c92b72b0a52720eac8c9f5d96c0993208 +size 557100 diff --git a/datasets/openslr_yoruba/yom_04310_01967338071.wav b/datasets/openslr_yoruba/yom_04310_01967338071.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ba7bf7b7b3fd8407d9e8d1d97fe66475eb72f0c --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01967338071.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3be40d09c6e4ebc585b4fbb5bef338ee1bf967603002cf7b618ce7f8b5a53b1 +size 368684 diff --git a/datasets/openslr_yoruba/yom_04310_01975608134.wav b/datasets/openslr_yoruba/yom_04310_01975608134.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0dfd5cbc18bfb40e15fa108fb7ed955b7f6664a --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01975608134.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f86a35a08642abecd4ad0bd0080602f55097a6e17153ce39a649d9a4a097414 +size 294956 diff --git a/datasets/openslr_yoruba/yom_04310_01985103813.wav b/datasets/openslr_yoruba/yom_04310_01985103813.wav new file mode 100644 index 0000000000000000000000000000000000000000..0aaaef06218492bdc83412d6762380f648b543dc --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01985103813.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71abc906eba6e4d52c06022f123226c14e526787412abdee9007796895680772 +size 385068 diff --git a/datasets/openslr_yoruba/yom_04310_01992336275.wav b/datasets/openslr_yoruba/yom_04310_01992336275.wav new file mode 100644 index 0000000000000000000000000000000000000000..303dcf317f731325c5cd5b462a1ba9800b4af874 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_01992336275.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e355c5cfba37648e4e69293da2d5c6e8ffebc825011de9e2af65c1ba06b8bbed +size 335916 diff --git a/datasets/openslr_yoruba/yom_04310_02076343383.wav b/datasets/openslr_yoruba/yom_04310_02076343383.wav new file mode 100644 index 0000000000000000000000000000000000000000..361832ff3f4d1550ea1882ef3a5bd7fe04f455f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_04310_02076343383.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7de86b6807483395776ac99442b5166172bc57f875b7f4df2207da72fded517 +size 237612 diff --git a/datasets/openslr_yoruba/yom_06136_00003960212.wav b/datasets/openslr_yoruba/yom_06136_00003960212.wav new file mode 100644 index 0000000000000000000000000000000000000000..add1a99aa3d5a84c2aa11b8bc425058ce9dbf870 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00003960212.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ea4ac17e65b278824cf474916c341a259c17e16f889e6666e06824ad69ec14 +size 794668 diff --git a/datasets/openslr_yoruba/yom_06136_00024825562.wav b/datasets/openslr_yoruba/yom_06136_00024825562.wav new file mode 100644 index 0000000000000000000000000000000000000000..e20bf3715374ffa3301751b0da0792a39a794d06 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00024825562.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c132eadca632123e216f1d81c903fdc715573a171bf43a48eac11c4db05e8199 +size 393260 diff --git a/datasets/openslr_yoruba/yom_06136_00049774741.wav b/datasets/openslr_yoruba/yom_06136_00049774741.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad71051468ff1d4be64014830ce81755a6b54cff --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00049774741.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8558d3f245f205d4994841401297f0bde2fa82a0806b7ae7a97a04600098dee6 +size 507948 diff --git a/datasets/openslr_yoruba/yom_06136_00066077105.wav b/datasets/openslr_yoruba/yom_06136_00066077105.wav new file mode 100644 index 0000000000000000000000000000000000000000..a67fd5f0bdf8927028e9185c432bfb918437f236 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00066077105.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c30199f68e1d5ecc564a8efa6a1d08d3e407987309b593927700eab7a9eeadbe +size 401452 diff --git a/datasets/openslr_yoruba/yom_06136_00069134347.wav b/datasets/openslr_yoruba/yom_06136_00069134347.wav new file mode 100644 index 0000000000000000000000000000000000000000..7f9252d4a44a08911c91579e1ddfe328bd9bae60 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00069134347.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eaef33459571fe85ea835cffc14c66a153dfb463404a67ee47747f3787c969d +size 581676 diff --git a/datasets/openslr_yoruba/yom_06136_00074953127.wav b/datasets/openslr_yoruba/yom_06136_00074953127.wav new file mode 100644 index 0000000000000000000000000000000000000000..131ca8d6c65ca7b08944d40e22ec5c19654ef72d --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00074953127.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12143cbedd6acf3e78d54985a6fb3d13e4118d731ff6391727504b7b30d53db0 +size 434220 diff --git a/datasets/openslr_yoruba/yom_06136_00080388109.wav b/datasets/openslr_yoruba/yom_06136_00080388109.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bb77b4ffd6e18efdd956ccc49946e342626de17 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00080388109.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d144cbf77aa6671955ca0df5b7e5ada9656d922fb9022b5b77acf768aa63a164 +size 344108 diff --git a/datasets/openslr_yoruba/yom_06136_00112118729.wav b/datasets/openslr_yoruba/yom_06136_00112118729.wav new file mode 100644 index 0000000000000000000000000000000000000000..ff4a234f97e4ed687951efccfa438404e841f196 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00112118729.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b48e3de23177f7d3257a0109b1ac8a19cdd2fddc118208e7952fee040cc7aea +size 811052 diff --git a/datasets/openslr_yoruba/yom_06136_00115654801.wav b/datasets/openslr_yoruba/yom_06136_00115654801.wav new file mode 100644 index 0000000000000000000000000000000000000000..b0bcf4c1c1a430e1c4a42c29c3403be683f8c1a1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00115654801.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aaeca34754a11647f69114bfdf535c6a253e1c39b63ff724805ab58f876b31e +size 385068 diff --git a/datasets/openslr_yoruba/yom_06136_00140292369.wav b/datasets/openslr_yoruba/yom_06136_00140292369.wav new file mode 100644 index 0000000000000000000000000000000000000000..7c6bef9a8ca28b646cfbd33ea6692dd37e54aa0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00140292369.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6280f2fdf91cf01e51962ae589fcc5d8d33bb0a093e52aacd783ff37786da215 +size 901164 diff --git a/datasets/openslr_yoruba/yom_06136_00227150227.wav b/datasets/openslr_yoruba/yom_06136_00227150227.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c15eceb4e17b31cc62801dd4520e06450af52ee --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00227150227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d2dc0cf6eb228ebba6e5f6478d16382ce984482c66c69ab064f79f26d97375 +size 450604 diff --git a/datasets/openslr_yoruba/yom_06136_00231561177.wav b/datasets/openslr_yoruba/yom_06136_00231561177.wav new file mode 100644 index 0000000000000000000000000000000000000000..494a38b2d70d716e528bee4ff35f9b12fae45e34 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00231561177.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2ccbe72f0db0c55164a1f0dbcbb52fa72352262fc8b65cdeb97bd8df5802a5 +size 401452 diff --git a/datasets/openslr_yoruba/yom_06136_00232881290.wav b/datasets/openslr_yoruba/yom_06136_00232881290.wav new file mode 100644 index 0000000000000000000000000000000000000000..996d355964738f8647c156a2e10d4583ad83cd65 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00232881290.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e3d26e7d5ef067bd4ee8f265d18cb63f1c69f2d558302c6e80cd3cb13d89e8 +size 483372 diff --git a/datasets/openslr_yoruba/yom_06136_00291346566.wav b/datasets/openslr_yoruba/yom_06136_00291346566.wav new file mode 100644 index 0000000000000000000000000000000000000000..c221012df6eb1c59b7b6bcc8d4d775be793da96f --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00291346566.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebeefb05b0daa816e4576f69a9526023ff958f66e8dfa2ca3ee6907c80a2646 +size 450604 diff --git a/datasets/openslr_yoruba/yom_06136_00293511194.wav b/datasets/openslr_yoruba/yom_06136_00293511194.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad2ad72ff5c68e61fef1a0f2c072410f2c39afbb --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00293511194.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aef5ec4fe60da5dfefcf07dc3b7676a7fce0e8358a43338f9154cca392838c0 +size 426028 diff --git a/datasets/openslr_yoruba/yom_06136_00327339250.wav b/datasets/openslr_yoruba/yom_06136_00327339250.wav new file mode 100644 index 0000000000000000000000000000000000000000..f21002f42577470567a326b52f8de2b15067423e --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00327339250.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f82151af4bc731d90a4005ee13f95705eb914d0520269b3be846f7635030eb6 +size 589868 diff --git a/datasets/openslr_yoruba/yom_06136_00327789705.wav b/datasets/openslr_yoruba/yom_06136_00327789705.wav new file mode 100644 index 0000000000000000000000000000000000000000..ce6b323cce875ac14fd0c1405af69de6585d748f --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00327789705.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4adf4efaafffa217fb85de22b1f840274271f03e8417566f2eea010cf720ff3 +size 442412 diff --git a/datasets/openslr_yoruba/yom_06136_00349885157.wav b/datasets/openslr_yoruba/yom_06136_00349885157.wav new file mode 100644 index 0000000000000000000000000000000000000000..b9674b6348be21bcc004aece68b5d50311fec0ce --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00349885157.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e881793b3019d87dc99294f9abe7064f2aec0634ce6e2e61c95d29411dffb0b8 +size 434220 diff --git a/datasets/openslr_yoruba/yom_06136_00372800060.wav b/datasets/openslr_yoruba/yom_06136_00372800060.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ac3e53305c81e4edd9d3bc5eee3a4b413fce0d9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00372800060.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00e7f36462916b8735cd8eb31da84f435e1307f5139e68edfec19d63625296e +size 458796 diff --git a/datasets/openslr_yoruba/yom_06136_00386272214.wav b/datasets/openslr_yoruba/yom_06136_00386272214.wav new file mode 100644 index 0000000000000000000000000000000000000000..06ee7390d92f7e93ca0181b0abf5e186e28c6ae7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00386272214.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1a6498a313d4c8f73357a0bafea928f31668d17808f76ff71096ea78ff4b4e +size 507948 diff --git a/datasets/openslr_yoruba/yom_06136_00455153014.wav b/datasets/openslr_yoruba/yom_06136_00455153014.wav new file mode 100644 index 0000000000000000000000000000000000000000..2910198ba2e69fa93f8c956e61622d3381f2e48d --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00455153014.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c8fe28c6c3e5eb6c692ab2e4c83f8210d8675fc50d1d06602403d179076d1d +size 475180 diff --git a/datasets/openslr_yoruba/yom_06136_00459195959.wav b/datasets/openslr_yoruba/yom_06136_00459195959.wav new file mode 100644 index 0000000000000000000000000000000000000000..ae16f0b19f782eedaccb23807b551a8bef34ea28 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00459195959.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90384bbf21843f55439ad820ccb4071a1c864972b0fe0232938d0e33041ec822 +size 475180 diff --git a/datasets/openslr_yoruba/yom_06136_00478536386.wav b/datasets/openslr_yoruba/yom_06136_00478536386.wav new file mode 100644 index 0000000000000000000000000000000000000000..baee0a1201730699e3093ed4eacb2bb2467b41d1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00478536386.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e316c4474a5b7e04eb84315e8bd0b05a047b0a7fdcabc66ee4a0ee969730d7 +size 466988 diff --git a/datasets/openslr_yoruba/yom_06136_00513610746.wav b/datasets/openslr_yoruba/yom_06136_00513610746.wav new file mode 100644 index 0000000000000000000000000000000000000000..690a46c8287e0938c392df62d14fe174fc1c6b50 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00513610746.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89354b6ee80686f7d68bf525b45eb0a140bbf7310de1bf5a13d20496415df671 +size 524332 diff --git a/datasets/openslr_yoruba/yom_06136_00531615210.wav b/datasets/openslr_yoruba/yom_06136_00531615210.wav new file mode 100644 index 0000000000000000000000000000000000000000..a0ae2114774509b1716016f6af5e4ff70eea4817 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00531615210.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2995907dbf392717843c14abddc277fece2c7e7928bfadf7575b970c4387bbf6 +size 639020 diff --git a/datasets/openslr_yoruba/yom_06136_00573447371.wav b/datasets/openslr_yoruba/yom_06136_00573447371.wav new file mode 100644 index 0000000000000000000000000000000000000000..a9f1af799f705ee13631941a1e63df8f0f3ab5e1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00573447371.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6428916b30c000bb6235e66e0189d6a15981d0be0c8c487bde06f99db5ef19a +size 639020 diff --git a/datasets/openslr_yoruba/yom_06136_00575235639.wav b/datasets/openslr_yoruba/yom_06136_00575235639.wav new file mode 100644 index 0000000000000000000000000000000000000000..0dfa0cd648291330af6d5858455fe4c95d1807d0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00575235639.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85df72eaf7e7088709d5116efc5cfb2128beb270b05f4802245d0fa5f6bb972a +size 393260 diff --git a/datasets/openslr_yoruba/yom_06136_00578784597.wav b/datasets/openslr_yoruba/yom_06136_00578784597.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b5aa07d1a2e6af25ef43c52c6ca75e8c7e9f178 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00578784597.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5291851c1804ce6b24c8797f9d9966a2bd1ae90d619838d81ef3d544212c4498 +size 565292 diff --git a/datasets/openslr_yoruba/yom_06136_00580369772.wav b/datasets/openslr_yoruba/yom_06136_00580369772.wav new file mode 100644 index 0000000000000000000000000000000000000000..301ed9260b3cec61427cadbf655159a3535da988 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00580369772.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d71669d322e091b2f82499609a80c68ba358cce8ad6318475f2bc7fefea61f +size 483372 diff --git a/datasets/openslr_yoruba/yom_06136_00636935093.wav b/datasets/openslr_yoruba/yom_06136_00636935093.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ca1e441d99ac2373d7cfba0fdff3b94dcf5e7d0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00636935093.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599eb080c4a9af7e7d98429fbeb88a28b3a4156fb96d37328a9fad88b5b524a1 +size 565292 diff --git a/datasets/openslr_yoruba/yom_06136_00645370566.wav b/datasets/openslr_yoruba/yom_06136_00645370566.wav new file mode 100644 index 0000000000000000000000000000000000000000..c153b0cf27235230aa36260b83167b246ea45a5b --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00645370566.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa08999297f10d5b7e90c063e6b6ba8cb9f5587adfe20e7fcd30a29a0fc6a4b +size 729132 diff --git a/datasets/openslr_yoruba/yom_06136_00656527706.wav b/datasets/openslr_yoruba/yom_06136_00656527706.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2c97f021198959b92b7d683da52beb9ff069169 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00656527706.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e0ecf8c4fb99f01da0829df51f639853dd36115843f267a3504cd5aba4ba9c +size 589868 diff --git a/datasets/openslr_yoruba/yom_06136_00657725130.wav b/datasets/openslr_yoruba/yom_06136_00657725130.wav new file mode 100644 index 0000000000000000000000000000000000000000..4d741ba3c2b1fde05645a7339d96ee4ed4e7e6fe --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00657725130.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6101ce682ee336a13233e10f02bb9a9bb1a67f1d94ebc70ccffd88fc5bd2e7c9 +size 450604 diff --git a/datasets/openslr_yoruba/yom_06136_00686675533.wav b/datasets/openslr_yoruba/yom_06136_00686675533.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ac8065261ac478cfc790dc3ced0aed6cc91e06b --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00686675533.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26782b1f5b0a677e870c90af9f1c0b6429599617337df5476740d5d3e2f5a34 +size 417836 diff --git a/datasets/openslr_yoruba/yom_06136_00699650691.wav b/datasets/openslr_yoruba/yom_06136_00699650691.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e506930a81bdc1b80a2c25c83d51080ee3757c4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00699650691.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b0bd589cfea3a42ae2b9f43a131aa257de1d9231704eb6f9dd661516b0c84a +size 573484 diff --git a/datasets/openslr_yoruba/yom_06136_00706013777.wav b/datasets/openslr_yoruba/yom_06136_00706013777.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3679954c9336121b6b721f4f25b1a825a5b250b --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00706013777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc75caedd57fbdc073c864531e3375f0daf804b5d12d6d278763fcf1ed12f9e +size 532524 diff --git a/datasets/openslr_yoruba/yom_06136_00742549179.wav b/datasets/openslr_yoruba/yom_06136_00742549179.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3c121a064f6eb711645c2092ce8fd1697de77ea --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00742549179.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f09a7d1531db1311d5a7cfd1999e4049647c8d89f8dec86139ab0838fb960d +size 630828 diff --git a/datasets/openslr_yoruba/yom_06136_00756587928.wav b/datasets/openslr_yoruba/yom_06136_00756587928.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f018802d799ea391441fbfd362720f5179807c2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00756587928.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d892f41115cdba595ad1349dc563b2c8c02410a868e4f53115a7fae25fc7bbbb +size 409644 diff --git a/datasets/openslr_yoruba/yom_06136_00803488750.wav b/datasets/openslr_yoruba/yom_06136_00803488750.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd4fcd5344c438c2950767341071ad32b27ee12c --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00803488750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632de515223fa1ed9f981ecb28311e07b19d4549da13d1aef1140315d98db2bd +size 532524 diff --git a/datasets/openslr_yoruba/yom_06136_00804124815.wav b/datasets/openslr_yoruba/yom_06136_00804124815.wav new file mode 100644 index 0000000000000000000000000000000000000000..583cbb6c72d7dae360412aecfcb04aafae884a63 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00804124815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3adccc7d364ca2ffbe43736bf148d93cc4108bdfd1a381f76a7aae3137158819 +size 876588 diff --git a/datasets/openslr_yoruba/yom_06136_00804435337.wav b/datasets/openslr_yoruba/yom_06136_00804435337.wav new file mode 100644 index 0000000000000000000000000000000000000000..5682751cbe39ca56ba4323c654243aea672031e9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00804435337.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005dce30bf151a5ad21a89ef24eb08acf885a4bb9087d60b4f043ad609f1d17a +size 385068 diff --git a/datasets/openslr_yoruba/yom_06136_00819762698.wav b/datasets/openslr_yoruba/yom_06136_00819762698.wav new file mode 100644 index 0000000000000000000000000000000000000000..173919aa6015a88087e02fdb1ab8227ec72f83ee --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00819762698.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d89393ef0991b899c1a9373e7cad5949562d4c913bd292aa73f21b01146e5b1 +size 335916 diff --git a/datasets/openslr_yoruba/yom_06136_00822519227.wav b/datasets/openslr_yoruba/yom_06136_00822519227.wav new file mode 100644 index 0000000000000000000000000000000000000000..323a961a2e42d156d674af4bc83687d252320878 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00822519227.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec7e34fb22b2e78695eca7367e81be769397595f8b443bad99341ae4fc823ab +size 442412 diff --git a/datasets/openslr_yoruba/yom_06136_00900668750.wav b/datasets/openslr_yoruba/yom_06136_00900668750.wav new file mode 100644 index 0000000000000000000000000000000000000000..f432265ab45c8025f67dfb7f44f3a53e064774ec --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00900668750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eda528a00958c2c914cf2ac7c877d274d327ac9a570df4c01904e153d5c01b6 +size 458796 diff --git a/datasets/openslr_yoruba/yom_06136_00906913714.wav b/datasets/openslr_yoruba/yom_06136_00906913714.wav new file mode 100644 index 0000000000000000000000000000000000000000..2516f873b644ca396c82f4f7a435d9698d3fa81a --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00906913714.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53145a0b38afc388cff28ee56c6370d29b96218ed379f39a97b3ce4503268be8 +size 491564 diff --git a/datasets/openslr_yoruba/yom_06136_00915399749.wav b/datasets/openslr_yoruba/yom_06136_00915399749.wav new file mode 100644 index 0000000000000000000000000000000000000000..56e7eceef8ec617b48171c15bbbac06a83ceb29d --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00915399749.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8262964b5fec21822a2fe7ab8a956abc9816c59e037faa38d2605cc0bf572fd6 +size 565292 diff --git a/datasets/openslr_yoruba/yom_06136_00920807766.wav b/datasets/openslr_yoruba/yom_06136_00920807766.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1c88c4a041ee52bbf7b96c7082398c581f612cf --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00920807766.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e357ad022f540a6b4ec1b0960f42d73c60c394dc895eb7a09bd13eeabd06632 +size 426028 diff --git a/datasets/openslr_yoruba/yom_06136_00956618144.wav b/datasets/openslr_yoruba/yom_06136_00956618144.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e4be187ac88a6a3552b89e982f15c117aff3709 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00956618144.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deff9ee8f941bf1ec952971008c06ecc0c8767d90cc83a7f012e7ea168ef61de +size 589868 diff --git a/datasets/openslr_yoruba/yom_06136_00971138091.wav b/datasets/openslr_yoruba/yom_06136_00971138091.wav new file mode 100644 index 0000000000000000000000000000000000000000..291ccd02b8d64b16dc6053effc1b671c09026549 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00971138091.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45947aa71dd2ae11a481cc41f46247644f1b94d950c1c9738f4e2478e5a56999 +size 319532 diff --git a/datasets/openslr_yoruba/yom_06136_00990047285.wav b/datasets/openslr_yoruba/yom_06136_00990047285.wav new file mode 100644 index 0000000000000000000000000000000000000000..3a186fb74cbb706d0beaaedff1bd8b608ad1151b --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_00990047285.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab332af0d062323e26d22e46f53971642b23e8880df95f56039a9c624478e788 +size 573484 diff --git a/datasets/openslr_yoruba/yom_06136_01008826631.wav b/datasets/openslr_yoruba/yom_06136_01008826631.wav new file mode 100644 index 0000000000000000000000000000000000000000..dc83d415141b6a15918e284f0e151d0f1f59e96e --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01008826631.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0d03cc90f0ddd05477e134a55c6c35fefc0b937742f0a22780876b98bb3d61 +size 450604 diff --git a/datasets/openslr_yoruba/yom_06136_01020370776.wav b/datasets/openslr_yoruba/yom_06136_01020370776.wav new file mode 100644 index 0000000000000000000000000000000000000000..66a6680157e293836c1df5b8f1d9564e555f51fb --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01020370776.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e2e3038b211373a6304f89a9bf81f9756b455ec4d22cdfab18f77e964052cb +size 548908 diff --git a/datasets/openslr_yoruba/yom_06136_01033074681.wav b/datasets/openslr_yoruba/yom_06136_01033074681.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c12cc6de07e073c6cba5b32e2c19964a409c1ef --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01033074681.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b4891125664865e45e5cc81ed885b9e3a5c567faffd1ac9e74f976e9243a5a3 +size 360492 diff --git a/datasets/openslr_yoruba/yom_06136_01046994608.wav b/datasets/openslr_yoruba/yom_06136_01046994608.wav new file mode 100644 index 0000000000000000000000000000000000000000..4fee7d07e18ebc0d121853d1b9125a45d92d5450 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01046994608.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bbcecb892af45b59fb2bf4b0ade90c9375245ce5d8dac4a9f354716720e7ec +size 442412 diff --git a/datasets/openslr_yoruba/yom_06136_01129683886.wav b/datasets/openslr_yoruba/yom_06136_01129683886.wav new file mode 100644 index 0000000000000000000000000000000000000000..37d749e9d1b73eb1f5163b38812d945fb451bdbb --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01129683886.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53726e701eca655503eee66d4eb15f1c4a105cce622cc1a74271b5ee967943c2 +size 458796 diff --git a/datasets/openslr_yoruba/yom_06136_01141892864.wav b/datasets/openslr_yoruba/yom_06136_01141892864.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d0f448d80cc199f956cbc9cc147c58a3fdbf41c --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01141892864.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3fbbb2cfe4c6a6d8e1bc34f7369c473bde745864bac490d7aad00cb69d59d0 +size 565292 diff --git a/datasets/openslr_yoruba/yom_06136_01143703620.wav b/datasets/openslr_yoruba/yom_06136_01143703620.wav new file mode 100644 index 0000000000000000000000000000000000000000..d123624a48ddf621856bde77c28006fa7d672d38 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01143703620.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de67be090939a2f379e10b9bdc05210cd2854d44ca944508330af20444b95030 +size 458796 diff --git a/datasets/openslr_yoruba/yom_06136_01196494509.wav b/datasets/openslr_yoruba/yom_06136_01196494509.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9d924c3800c374faf30dd57cc62b46e32a7a7fd --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01196494509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60dfed25349c0315f3a4064f7935c522b95ab04ce48060fb8722dd9e3136d689 +size 385068 diff --git a/datasets/openslr_yoruba/yom_06136_01209879143.wav b/datasets/openslr_yoruba/yom_06136_01209879143.wav new file mode 100644 index 0000000000000000000000000000000000000000..522c1d24dbeae9470186c0661c96cdb61cf7ab55 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01209879143.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b39f3f8d73932c016677534d9c1099865ca1ce3f2d27b7b8a656fff692388d0 +size 475180 diff --git a/datasets/openslr_yoruba/yom_06136_01221339237.wav b/datasets/openslr_yoruba/yom_06136_01221339237.wav new file mode 100644 index 0000000000000000000000000000000000000000..30afdb8ae12a1e071857a7a7ab2e8b737379e176 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01221339237.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd6a6279b8ef46e52d308aab07d748b448a4ed88ac37a46a0ab8eb969b5c4c2 +size 491564 diff --git a/datasets/openslr_yoruba/yom_06136_01245332301.wav b/datasets/openslr_yoruba/yom_06136_01245332301.wav new file mode 100644 index 0000000000000000000000000000000000000000..392681cc8ecee2da58dbaeeb7daa4fca1aaea3e9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01245332301.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b382551356ddf161a1761ab1d690a6130feca6ee7661ba4996d54d1ad85d4756 +size 491564 diff --git a/datasets/openslr_yoruba/yom_06136_01282811083.wav b/datasets/openslr_yoruba/yom_06136_01282811083.wav new file mode 100644 index 0000000000000000000000000000000000000000..582a44aa475418f06296d17f0108b71397b9ba04 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01282811083.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eeede025f376ba5b9d26ee76a9e6de4d94f5fd739c9f1d4eaee5f720f9b3ed0 +size 409644 diff --git a/datasets/openslr_yoruba/yom_06136_01319047427.wav b/datasets/openslr_yoruba/yom_06136_01319047427.wav new file mode 100644 index 0000000000000000000000000000000000000000..847b3c8310a0a3eae0329d6cfa234d73ba444752 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01319047427.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c69fd61adaa75d4efb93987c8f5e37797102abd38c3bacbd89c6bf151ffa95 +size 475180 diff --git a/datasets/openslr_yoruba/yom_06136_01335643238.wav b/datasets/openslr_yoruba/yom_06136_01335643238.wav new file mode 100644 index 0000000000000000000000000000000000000000..45de4276672a8b5034f0e03632270098eda47e47 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01335643238.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469064a5ddb18ceb8d170c7ef59ad763979224effee2ee47a7d05e32c7cff219 +size 376876 diff --git a/datasets/openslr_yoruba/yom_06136_01340031572.wav b/datasets/openslr_yoruba/yom_06136_01340031572.wav new file mode 100644 index 0000000000000000000000000000000000000000..6bc63523aa16b98bcda718fffd6c889afc6f9c4b --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01340031572.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5487dc0189bf7d5825b01ad014b197c8c9ef0f0e4f61a76b16f0aaf74ff575a +size 499756 diff --git a/datasets/openslr_yoruba/yom_06136_01350542840.wav b/datasets/openslr_yoruba/yom_06136_01350542840.wav new file mode 100644 index 0000000000000000000000000000000000000000..306be59f3ddec68a12ef0550055189051dc437dd --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01350542840.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7828d09708870f17525b5059edb347c620f095349bbfa7b00d52a8df7784794d +size 507948 diff --git a/datasets/openslr_yoruba/yom_06136_01372511024.wav b/datasets/openslr_yoruba/yom_06136_01372511024.wav new file mode 100644 index 0000000000000000000000000000000000000000..12ed16a3fd9d35fd3f605f72a4861932557a74a0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01372511024.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e926d09d5e9c410e43e9cddd75f2e4a61477570b391fea28d705afc721c06b1 +size 434220 diff --git a/datasets/openslr_yoruba/yom_06136_01374471095.wav b/datasets/openslr_yoruba/yom_06136_01374471095.wav new file mode 100644 index 0000000000000000000000000000000000000000..9fac1ab60cb5b045190e0abf9e22003933e3824c --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01374471095.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b324e4d2d61ae0e935e00ffb3abe0581fbf89fc9dd8ce806e3cac45187125af0 +size 385068 diff --git a/datasets/openslr_yoruba/yom_06136_01398365269.wav b/datasets/openslr_yoruba/yom_06136_01398365269.wav new file mode 100644 index 0000000000000000000000000000000000000000..464c978883bc562789ffcb6d79499604d2de722d --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01398365269.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deda8e506d87f194867c7188f117c673b22a6aae8b901bb78df02a82e5ebd7d9 +size 458796 diff --git a/datasets/openslr_yoruba/yom_06136_01446187454.wav b/datasets/openslr_yoruba/yom_06136_01446187454.wav new file mode 100644 index 0000000000000000000000000000000000000000..f225135f8f0109105edac33a5e341c48dc7fcefc --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01446187454.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6261a5e7940bb99b16633a6b32549d8210f655bc12beece9a9f58c564da8607 +size 450604 diff --git a/datasets/openslr_yoruba/yom_06136_01484524698.wav b/datasets/openslr_yoruba/yom_06136_01484524698.wav new file mode 100644 index 0000000000000000000000000000000000000000..69f1dd79d9480d4d709a1224b34a8170a1ba1707 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01484524698.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738f24dfb2c8d1e0685193ac9eb3f27997bfc400f32079c81b2e1897f27a9779 +size 434220 diff --git a/datasets/openslr_yoruba/yom_06136_01508728698.wav b/datasets/openslr_yoruba/yom_06136_01508728698.wav new file mode 100644 index 0000000000000000000000000000000000000000..dad1a224e5a9d48b19b1b0423b0a72fbda1b38c4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01508728698.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b70ebd4a614980c91be6977050bea6ed3097e3b197ea010cf778611100a70a4 +size 450604 diff --git a/datasets/openslr_yoruba/yom_06136_01510824765.wav b/datasets/openslr_yoruba/yom_06136_01510824765.wav new file mode 100644 index 0000000000000000000000000000000000000000..e9e609bb8e382fba4ad567379a73b8318ca6619e --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01510824765.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533c467759f1f9bac52e954c569b024a388aeabd8b73ff52d6f927a2a8373c32 +size 376876 diff --git a/datasets/openslr_yoruba/yom_06136_01525985206.wav b/datasets/openslr_yoruba/yom_06136_01525985206.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c8b6ef319935faf465882a43b39c16cd6cf48cb --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01525985206.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f59551ee54062238c2fadca337d34b08c081e56dcc00c2369e3da8d987e2b3 +size 434220 diff --git a/datasets/openslr_yoruba/yom_06136_01528901990.wav b/datasets/openslr_yoruba/yom_06136_01528901990.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b0503c4614db40229f238de1edc90663e86df68 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01528901990.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85636f3cb63bae96c167fe7e9c4dc0788bcf4f7894877c180f23ceae97f6cd89 +size 524332 diff --git a/datasets/openslr_yoruba/yom_06136_01531486951.wav b/datasets/openslr_yoruba/yom_06136_01531486951.wav new file mode 100644 index 0000000000000000000000000000000000000000..7c5e05e65913d5e0d81abb3c8b83eac950170b7a --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01531486951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1740cc02c9f62e50c2c7e8401797ff7b1d43828521d2de3f9660386d71f8f3 +size 532524 diff --git a/datasets/openslr_yoruba/yom_06136_01536109513.wav b/datasets/openslr_yoruba/yom_06136_01536109513.wav new file mode 100644 index 0000000000000000000000000000000000000000..ae777dfbd9b5e9431920774ce957ccc2753cb40c --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01536109513.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa72001602fcdd382c8b96fd27e8a46606705d943244f7a645ac40f78a0f8eca +size 385068 diff --git a/datasets/openslr_yoruba/yom_06136_01539725135.wav b/datasets/openslr_yoruba/yom_06136_01539725135.wav new file mode 100644 index 0000000000000000000000000000000000000000..fe585f74e6e7def6098ffeb744e0cdc608fc5f12 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01539725135.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8dc1b5a96d7742da566c7a2b8e1a63108b145dc8cc20b14b88956a431c1e0ca +size 475180 diff --git a/datasets/openslr_yoruba/yom_06136_01554189850.wav b/datasets/openslr_yoruba/yom_06136_01554189850.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c7080b6d96baedca2fb1acf9114ea6d6f8736eb --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01554189850.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbef9195abbd3f733244af40cce4d4007213a1da92af7bd69ca36a1669ff984 +size 794668 diff --git a/datasets/openslr_yoruba/yom_06136_01575860011.wav b/datasets/openslr_yoruba/yom_06136_01575860011.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf752102c012d9b4a560d09b2527cdf17b7f9a33 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01575860011.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ef45af04cd9c599d1edbda364e7b01a99848e83aa389e108bb9352318abdf2 +size 442412 diff --git a/datasets/openslr_yoruba/yom_06136_01698663849.wav b/datasets/openslr_yoruba/yom_06136_01698663849.wav new file mode 100644 index 0000000000000000000000000000000000000000..2882b39a2646fa7cefa4150f9ed8ebb5c1619ad1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01698663849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d86c9c67777c751b431ff2b575fe42073ba44c1458a19dcc29a1344ed01ffb +size 639020 diff --git a/datasets/openslr_yoruba/yom_06136_01711286767.wav b/datasets/openslr_yoruba/yom_06136_01711286767.wav new file mode 100644 index 0000000000000000000000000000000000000000..7397782af42126bd91b101325cf1d0529ae34932 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01711286767.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339d342009502656d1de64f87f161482848af45b3196f99954d9fbf3111bb903 +size 909356 diff --git a/datasets/openslr_yoruba/yom_06136_01755766946.wav b/datasets/openslr_yoruba/yom_06136_01755766946.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b7f8ca619e0a0eec15514e389c40fada313c68a --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01755766946.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93adeec9f9117b0047b6b2b4eb5590dc19dbb9ff0708eef9ee309413bacfe47d +size 532524 diff --git a/datasets/openslr_yoruba/yom_06136_01783801765.wav b/datasets/openslr_yoruba/yom_06136_01783801765.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5341e514e7f1b0147b0492ef47cfdf206a77372 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01783801765.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22351c01338752147f1bfa082fe5a2ef4bd8cbd45a3335b1bfe4507653fe810d +size 376876 diff --git a/datasets/openslr_yoruba/yom_06136_01797301507.wav b/datasets/openslr_yoruba/yom_06136_01797301507.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a8da381fde3b68b8310e7719f20ed1945fb96c3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01797301507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbb633ed71bfeec427474a78f728c8c9721f10c119f207953331a6ea12cbf36 +size 499756 diff --git a/datasets/openslr_yoruba/yom_06136_01799256743.wav b/datasets/openslr_yoruba/yom_06136_01799256743.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e1042864a973472ab04f1e11d1ffac60e5cc735 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01799256743.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0e1370a41aaefe4f771dc8375e73ae1e7104014ca615e41cf44bc39181f3bf3 +size 352300 diff --git a/datasets/openslr_yoruba/yom_06136_01808207611.wav b/datasets/openslr_yoruba/yom_06136_01808207611.wav new file mode 100644 index 0000000000000000000000000000000000000000..d07a328e8ec6590fb6c77575dd5a905deb55ea6b --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01808207611.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6cda1406b15621e9e3d31427199b2c770edc31f92fad489a72a7693f349336 +size 589868 diff --git a/datasets/openslr_yoruba/yom_06136_01842897105.wav b/datasets/openslr_yoruba/yom_06136_01842897105.wav new file mode 100644 index 0000000000000000000000000000000000000000..6eb0ccf46f2fcf967f6f1e0f32176decf3d71d75 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01842897105.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a032b0568b9fc6d8add03cabc2b58af1aee91cd42ce79806896a9df6d6b8c40a +size 598060 diff --git a/datasets/openslr_yoruba/yom_06136_01848457428.wav b/datasets/openslr_yoruba/yom_06136_01848457428.wav new file mode 100644 index 0000000000000000000000000000000000000000..32d13122547440ac560c26a894721e560e747ff8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01848457428.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd5aa9265607ea4eb2d9ba5a60b8dca8f9d278714ccb73b0b6c73abc83d0f6e +size 622636 diff --git a/datasets/openslr_yoruba/yom_06136_01956912474.wav b/datasets/openslr_yoruba/yom_06136_01956912474.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b3d14e4a3ce5aac1d39bef87e41a2caf37313c6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01956912474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e93708eb17f9c0cb4e89cc843eabe9cf8c9c59a0254fdfe18f273b5b1ef0b4 +size 344108 diff --git a/datasets/openslr_yoruba/yom_06136_01985489204.wav b/datasets/openslr_yoruba/yom_06136_01985489204.wav new file mode 100644 index 0000000000000000000000000000000000000000..970af5caf30fe70da975e4cde64b06c2b6fa0003 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01985489204.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceda60f52369702bb5c1ec100f13a6e36f1d98eaeb6ceaf4c2f85e18e83b0bf4 +size 409644 diff --git a/datasets/openslr_yoruba/yom_06136_01999865713.wav b/datasets/openslr_yoruba/yom_06136_01999865713.wav new file mode 100644 index 0000000000000000000000000000000000000000..9934a16ca6442ebfa50c10b229d4d19e05649cc9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_01999865713.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5450fe45885df7824ac37464accd8d4abc322871b434f55193462d70555f071a +size 524332 diff --git a/datasets/openslr_yoruba/yom_06136_02025147386.wav b/datasets/openslr_yoruba/yom_06136_02025147386.wav new file mode 100644 index 0000000000000000000000000000000000000000..093dd82986555e8095ac9936597a086ddcc5ad61 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_02025147386.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b326cedb2e9a41d6e5b4c5ea8a45eb803fba58457b336a644d0ec3259647b4d2 +size 475180 diff --git a/datasets/openslr_yoruba/yom_06136_02031016539.wav b/datasets/openslr_yoruba/yom_06136_02031016539.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1ba4d3634050df3a82c38ec3753b398f9677ced --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_02031016539.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d052a7582b544f7ef518b8151cf9276aa92ddf37131165c598ef2e0c498073a +size 442412 diff --git a/datasets/openslr_yoruba/yom_06136_02047234338.wav b/datasets/openslr_yoruba/yom_06136_02047234338.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf3614ff79ed7995affb67b07c109dea38100748 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_02047234338.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a92f0979a48ee205885e0fcd67d93a591e9b58c051d54919d7db3a7bfdc7ade +size 573484 diff --git a/datasets/openslr_yoruba/yom_06136_02060261766.wav b/datasets/openslr_yoruba/yom_06136_02060261766.wav new file mode 100644 index 0000000000000000000000000000000000000000..b18597fab01048b4205f170bcf844157f79fb9cf --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_02060261766.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb061208ad50a90767246bb36a0fd86e84eeeff8ed6c01eea5b5c5d5b33d0e0e +size 409644 diff --git a/datasets/openslr_yoruba/yom_06136_02067430849.wav b/datasets/openslr_yoruba/yom_06136_02067430849.wav new file mode 100644 index 0000000000000000000000000000000000000000..af2f2b76216e602f3db2e863bf54e373c43be5ab --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_02067430849.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b016a2215c5690e05dc1003a5ab623042b102a7c3e32a7a0e0e09a62323872 +size 745516 diff --git a/datasets/openslr_yoruba/yom_06136_02123537606.wav b/datasets/openslr_yoruba/yom_06136_02123537606.wav new file mode 100644 index 0000000000000000000000000000000000000000..9e89b92fee9d9c70a990d70f39c1159151f2af53 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_02123537606.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04e3fa1931fca503dfe5701abd1535978b9fa9f37cd454457d26de37929db267 +size 360492 diff --git a/datasets/openslr_yoruba/yom_06136_02135927693.wav b/datasets/openslr_yoruba/yom_06136_02135927693.wav new file mode 100644 index 0000000000000000000000000000000000000000..05a61400ee227d9d856c3b4abab8b4e976f2a9a0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_06136_02135927693.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3677eb5ca4689df4df03130e2589dfb1b6d4909204307fc3379ccef81d3f1bb5 +size 426028 diff --git a/datasets/openslr_yoruba/yom_07049_00029708044.wav b/datasets/openslr_yoruba/yom_07049_00029708044.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e722ccfd1927c489d7e3ddb6f72cf1bcc27134d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00029708044.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b0c5f255a9dac62a9068c105efcf9b8d0ef898b0d9c1211eef36a5d60bc5bf +size 286764 diff --git a/datasets/openslr_yoruba/yom_07049_00048629329.wav b/datasets/openslr_yoruba/yom_07049_00048629329.wav new file mode 100644 index 0000000000000000000000000000000000000000..e22a1e549c1d1c4ddffb0541fea213766747cc2a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00048629329.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1889e3c56309b66c582bace26cfe1514fa7bf63634646da7f1dcb0582215a5 +size 581676 diff --git a/datasets/openslr_yoruba/yom_07049_00102692105.wav b/datasets/openslr_yoruba/yom_07049_00102692105.wav new file mode 100644 index 0000000000000000000000000000000000000000..ac957b2a31fc738a118c99f8214a5f08de79b090 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00102692105.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65011d8a630b4cc34d47ed50adfd596c611d32ec0f9a9950ff879a5594cdca57 +size 352300 diff --git a/datasets/openslr_yoruba/yom_07049_00107647614.wav b/datasets/openslr_yoruba/yom_07049_00107647614.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0a7f656aba71753c9b27e9c2978746f3629ce79 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00107647614.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e84d3286103a9bca0a44a3ef48f220384bad8f6a8d75406827349b64575acce +size 352300 diff --git a/datasets/openslr_yoruba/yom_07049_00113104748.wav b/datasets/openslr_yoruba/yom_07049_00113104748.wav new file mode 100644 index 0000000000000000000000000000000000000000..f53133e07e4238903c98e9f54c642f0f9e2f85f1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00113104748.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecfd528c6f651ac7ebbbf08aa1a03f9ef3ec7a618c140f053df4fb892e076cc +size 426028 diff --git a/datasets/openslr_yoruba/yom_07049_00139563981.wav b/datasets/openslr_yoruba/yom_07049_00139563981.wav new file mode 100644 index 0000000000000000000000000000000000000000..d92e4cbff86d633d1352d2b86339f5b9fa79cb3e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00139563981.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf51bd4dc28275b7e34f477bc2f0e405cf28d220ec0176c11563418d133c972f +size 319532 diff --git a/datasets/openslr_yoruba/yom_07049_00162359991.wav b/datasets/openslr_yoruba/yom_07049_00162359991.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea02fa499ad76637766433856dd8c9f802baf13f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00162359991.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1585663a39d7b0cc89e2d471383de783e25ec4d58eacd7dd2a4b4aeaac066c38 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07049_00173157252.wav b/datasets/openslr_yoruba/yom_07049_00173157252.wav new file mode 100644 index 0000000000000000000000000000000000000000..7452c78d9171eaf037fa472edb2d4a87cb94b84b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00173157252.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb39260bacf86352f035f83b7ac8c632be2d62ed7ddddebd0f6b038e4c82322 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07049_00178547600.wav b/datasets/openslr_yoruba/yom_07049_00178547600.wav new file mode 100644 index 0000000000000000000000000000000000000000..9f4e332a626669d2cc0dd0d0de1b20d5a23ca0ed --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00178547600.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec7c794d92a1d7327bc0f15a75796539b48e827f1b334ab5a6c5de0fad63b08 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07049_00180309358.wav b/datasets/openslr_yoruba/yom_07049_00180309358.wav new file mode 100644 index 0000000000000000000000000000000000000000..e48c9e58a913b0495eb49c6dae4dc4bdec625edd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00180309358.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516bc3bbcccc7a30eef91e095babd91a811c8208dd8f8103a856d287d720052b +size 393260 diff --git a/datasets/openslr_yoruba/yom_07049_00209589373.wav b/datasets/openslr_yoruba/yom_07049_00209589373.wav new file mode 100644 index 0000000000000000000000000000000000000000..aa4f3f644abfce78eef21965c6c0528808b6d9c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00209589373.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1551467d3f5fa1af54f1b5aee475e1ed5bd1b1ddc59bd312b7bde67a699b0d +size 286764 diff --git a/datasets/openslr_yoruba/yom_07049_00234203788.wav b/datasets/openslr_yoruba/yom_07049_00234203788.wav new file mode 100644 index 0000000000000000000000000000000000000000..02602ef260d0d0b615ecb0a2469b0800b141c520 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00234203788.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9f6da9eb2089d70e56dbc8432141e764061144e12d475db79ef456e3038d05 +size 401452 diff --git a/datasets/openslr_yoruba/yom_07049_00243527409.wav b/datasets/openslr_yoruba/yom_07049_00243527409.wav new file mode 100644 index 0000000000000000000000000000000000000000..44a7936946db92c170029d9a7e89d5fc874aab4a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00243527409.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2b7f757d0138525b34d16a655c3e439b7919c0e63cff4fc8e7e4e6eba01ce6 +size 581676 diff --git a/datasets/openslr_yoruba/yom_07049_00284564638.wav b/datasets/openslr_yoruba/yom_07049_00284564638.wav new file mode 100644 index 0000000000000000000000000000000000000000..64888b9cc8bacf2ca1d078e4bcb84649d81c9220 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00284564638.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2214fcbcac78b94992d0d33aa4b90a0cdb3341a9c37160f6a0b58ba993e26337 +size 352300 diff --git a/datasets/openslr_yoruba/yom_07049_00305661349.wav b/datasets/openslr_yoruba/yom_07049_00305661349.wav new file mode 100644 index 0000000000000000000000000000000000000000..267d6594096a0420c32e365157fcd18a2b1ec207 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00305661349.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22425e40e47d85c56be1a796899cb4b6b178b86f302daef02908e343f3227df +size 311340 diff --git a/datasets/openslr_yoruba/yom_07049_00308862133.wav b/datasets/openslr_yoruba/yom_07049_00308862133.wav new file mode 100644 index 0000000000000000000000000000000000000000..4cb751971801201552839f82d98d2c5e95429493 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00308862133.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42325e4437e480ee15e7d519b0b0cf9983e5e4ff5d06e82bdc9343a08e7bf96e +size 655404 diff --git a/datasets/openslr_yoruba/yom_07049_00369738026.wav b/datasets/openslr_yoruba/yom_07049_00369738026.wav new file mode 100644 index 0000000000000000000000000000000000000000..1afe0bcc01ac905428ebef5f590d1339e12efb1e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00369738026.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff9e8099186c5cdb0e7a7f8dd07c19049ef3be742685aa0194256b88af4673d +size 507948 diff --git a/datasets/openslr_yoruba/yom_07049_00385895616.wav b/datasets/openslr_yoruba/yom_07049_00385895616.wav new file mode 100644 index 0000000000000000000000000000000000000000..774880f33efb700cb2debd02ef0337e6b561b368 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00385895616.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41090c38c0bc30d940246081ee84db27d9a5f3b6d2d64c58174cc1b5d8c54a2b +size 385068 diff --git a/datasets/openslr_yoruba/yom_07049_00404432022.wav b/datasets/openslr_yoruba/yom_07049_00404432022.wav new file mode 100644 index 0000000000000000000000000000000000000000..8df95f8a9bb427d938e87b823076256fe4495a5f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00404432022.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd0e9de6126a10fe8a125824e9d0ea3df8301c3b1abad5ad379c1b5c36237db +size 303148 diff --git a/datasets/openslr_yoruba/yom_07049_00404981893.wav b/datasets/openslr_yoruba/yom_07049_00404981893.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0c4d9ed1c27161588bd6d3417f92f872e5e5972 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00404981893.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9c30abbc654a6f82c4e4e09aaa89ec446d26eac72afa5fd125ba477efb5cc2 +size 319532 diff --git a/datasets/openslr_yoruba/yom_07049_00434646843.wav b/datasets/openslr_yoruba/yom_07049_00434646843.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7c360ea0527c8ed6afae7f67d2cd5c2dacd0435 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00434646843.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda369d8e2085ad9dc0284c454659cafceb04ed5482d999217fe2e807d5acb75 +size 466988 diff --git a/datasets/openslr_yoruba/yom_07049_00514957360.wav b/datasets/openslr_yoruba/yom_07049_00514957360.wav new file mode 100644 index 0000000000000000000000000000000000000000..667b057e6aae1c3c6893bca336ef7d4d9023addd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00514957360.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cb89c250c2fafd494ddc26b53a6d75a0636ce826afcbae71a1437519e20a0a +size 319532 diff --git a/datasets/openslr_yoruba/yom_07049_00532380796.wav b/datasets/openslr_yoruba/yom_07049_00532380796.wav new file mode 100644 index 0000000000000000000000000000000000000000..36d731714a83265aa1b0c384716d4375708a69ae --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00532380796.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df53db8482d3f2a6d409b34bead3375b4fd357505c2e7a0be858f4221c2c67c +size 532524 diff --git a/datasets/openslr_yoruba/yom_07049_00554372530.wav b/datasets/openslr_yoruba/yom_07049_00554372530.wav new file mode 100644 index 0000000000000000000000000000000000000000..bc95a9f98785ac87ed074a9baebf01eb541c8a12 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00554372530.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c23bc63cf079f11d6abeb3ec38579c2ba76388a96821cf68d8a99860ffbfde4 +size 532524 diff --git a/datasets/openslr_yoruba/yom_07049_00557808337.wav b/datasets/openslr_yoruba/yom_07049_00557808337.wav new file mode 100644 index 0000000000000000000000000000000000000000..219ed409a8a2f36c43185dca06ccb860caa1fbaa --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00557808337.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a113abdebda7d0a64512e118c6e37aa98c8347a24fa56900379e37cfdbfa9a75 +size 368684 diff --git a/datasets/openslr_yoruba/yom_07049_00608347854.wav b/datasets/openslr_yoruba/yom_07049_00608347854.wav new file mode 100644 index 0000000000000000000000000000000000000000..887fb6168aac0f5b70b4a707540246d39db4fbe9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00608347854.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03f2deecb344258d133048111c4c4383a3c8b5ae1d9bc6015ebd13397be72b7 +size 286764 diff --git a/datasets/openslr_yoruba/yom_07049_00636047280.wav b/datasets/openslr_yoruba/yom_07049_00636047280.wav new file mode 100644 index 0000000000000000000000000000000000000000..e5d01c12b6b3525a7fac10341aa5a4c6fdcef8ee --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00636047280.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f97a579581a2d469442fd5706e57f09a5d8019769e004dc377ec225ff7d6dd7 +size 319532 diff --git a/datasets/openslr_yoruba/yom_07049_00636441008.wav b/datasets/openslr_yoruba/yom_07049_00636441008.wav new file mode 100644 index 0000000000000000000000000000000000000000..de46b15de2b5437163bf6eb407a6e94ccf6ba6cd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00636441008.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5082b8ef4d23e1e1862cff4f9f937543a536cabb67011364b96ad89f0c7d41ed +size 344108 diff --git a/datasets/openslr_yoruba/yom_07049_00667014222.wav b/datasets/openslr_yoruba/yom_07049_00667014222.wav new file mode 100644 index 0000000000000000000000000000000000000000..3b5e991e72993a0b2b35eb5f817c284c14da4c9e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00667014222.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad7aebd9b9a3d6fa02b078e0b99d70e15bcee231d9113cc0b374a59d2538947 +size 401452 diff --git a/datasets/openslr_yoruba/yom_07049_00676007103.wav b/datasets/openslr_yoruba/yom_07049_00676007103.wav new file mode 100644 index 0000000000000000000000000000000000000000..722c533ccdcd46440c1307f3cab8aa61f31d0c33 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00676007103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c136dfbd3bd6799a346947f3ad38a7ff5a4e9b5ec484524805cc092eb3bb282d +size 589868 diff --git a/datasets/openslr_yoruba/yom_07049_00704927809.wav b/datasets/openslr_yoruba/yom_07049_00704927809.wav new file mode 100644 index 0000000000000000000000000000000000000000..84ffdc4a0f8bc5c720d0a36461ac49006063ffcf --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00704927809.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64016da7356ddb39202d52aa2d08f06a9bacfe6d9db9f8d9f6d229cd5c7b9092 +size 303148 diff --git a/datasets/openslr_yoruba/yom_07049_00711556234.wav b/datasets/openslr_yoruba/yom_07049_00711556234.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b82e3d8dde0a201e7f29ead564474f1269cc3b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00711556234.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9983946740861f40ef32cc24fc45e9c4c4c70d7be9a6ded113e51043639e445 +size 344108 diff --git a/datasets/openslr_yoruba/yom_07049_00727404490.wav b/datasets/openslr_yoruba/yom_07049_00727404490.wav new file mode 100644 index 0000000000000000000000000000000000000000..5130cac2b817dc5a2b6cd3fac1a392a2e8feaf8b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00727404490.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca7b67600624fed0a5d6bfe7e477121a24738044683c895a6abe3b231782398 +size 532524 diff --git a/datasets/openslr_yoruba/yom_07049_00730255367.wav b/datasets/openslr_yoruba/yom_07049_00730255367.wav new file mode 100644 index 0000000000000000000000000000000000000000..b933a0a3d69649321d763eb904cf5d0b50d22948 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00730255367.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a26a4748c7af0851ea49bfacbd9e2882796dee4418ff0296cc68683446eea84 +size 368684 diff --git a/datasets/openslr_yoruba/yom_07049_00866136075.wav b/datasets/openslr_yoruba/yom_07049_00866136075.wav new file mode 100644 index 0000000000000000000000000000000000000000..5220848872785f41f66bdbc9f728a84db57afd36 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00866136075.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da6a4a490bc23a0fe0ee8f7170dd3873aee3325de7f710622f3efad5c70c977 +size 303148 diff --git a/datasets/openslr_yoruba/yom_07049_00867906662.wav b/datasets/openslr_yoruba/yom_07049_00867906662.wav new file mode 100644 index 0000000000000000000000000000000000000000..939aba7dbc968f8815652f9eb4b38a17c9658489 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00867906662.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b119fef82e56ac1880346b43ec378c801309b0ca87fc156808f0a88cd4fb2e5 +size 401452 diff --git a/datasets/openslr_yoruba/yom_07049_00870877285.wav b/datasets/openslr_yoruba/yom_07049_00870877285.wav new file mode 100644 index 0000000000000000000000000000000000000000..222818ed694453f9872262f42602d6be2d7e019a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00870877285.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d3511345099067c114359a3c4cda7abac8b68b60853926e0857a340ff38ecb +size 516140 diff --git a/datasets/openslr_yoruba/yom_07049_00939672341.wav b/datasets/openslr_yoruba/yom_07049_00939672341.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc35616e4292e2329c0b02a49e045ce4ab649221 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00939672341.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86fe0b1501722887ce67a9e0f0f91c376034ca1293346bd5436dc1ae55093e1d +size 385068 diff --git a/datasets/openslr_yoruba/yom_07049_00985777771.wav b/datasets/openslr_yoruba/yom_07049_00985777771.wav new file mode 100644 index 0000000000000000000000000000000000000000..2dd5d123d727fbe65bad50f1f8f1bbf2808679e0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_00985777771.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f12fb63d4f0a70df4d532119d7012bcab733ce14f712014a9fa7537dce9dfa1 +size 417836 diff --git a/datasets/openslr_yoruba/yom_07049_01002068821.wav b/datasets/openslr_yoruba/yom_07049_01002068821.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed461cf7f5b528293664d8273e5f7719c7e72ba0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01002068821.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a973e8055d079b0c222a24c59e347154648858bfbd54881be7cdaf9a209b17fb +size 352300 diff --git a/datasets/openslr_yoruba/yom_07049_01002258700.wav b/datasets/openslr_yoruba/yom_07049_01002258700.wav new file mode 100644 index 0000000000000000000000000000000000000000..29f556a594be1fcea5393ad96a5f9b9dc182e296 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01002258700.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7162771c78246be6964977be808c63a215fa2a3a2490479f3c59b4c843a02c82 +size 409644 diff --git a/datasets/openslr_yoruba/yom_07049_01040320261.wav b/datasets/openslr_yoruba/yom_07049_01040320261.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6e72a8e738f8caf759eb9f66ed161b4b173c6df --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01040320261.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd428c4724e9424cec52c8fcaf45431ec0f8cb28715f5113c67eaf5d4844019 +size 663596 diff --git a/datasets/openslr_yoruba/yom_07049_01072765912.wav b/datasets/openslr_yoruba/yom_07049_01072765912.wav new file mode 100644 index 0000000000000000000000000000000000000000..373ea4a85dd1131d481ceb51cba24b23fd279481 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01072765912.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bafbc43d04f9e35bb3d4a001311a9ff9a1081ae35c58e6453640d91761dc4348 +size 589868 diff --git a/datasets/openslr_yoruba/yom_07049_01082141419.wav b/datasets/openslr_yoruba/yom_07049_01082141419.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8b92f8f088766f683f2dc0f2e0b2858516ce5fe --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01082141419.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5bddec1cea908834917af205f401283b42a5be0d90d0a8dfb834883b7dae492 +size 442412 diff --git a/datasets/openslr_yoruba/yom_07049_01092361563.wav b/datasets/openslr_yoruba/yom_07049_01092361563.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ae5a7a9936109296db5a054b76ea897ef38c320 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01092361563.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2060c052a62ef6203a2cb0bbb86229f48b86a627fbafc15b8061b9048900ec41 +size 409644 diff --git a/datasets/openslr_yoruba/yom_07049_01107342053.wav b/datasets/openslr_yoruba/yom_07049_01107342053.wav new file mode 100644 index 0000000000000000000000000000000000000000..5769bc005d0b1f6a3c26b4fd7bb794b55b4aa095 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01107342053.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b91b58191b481ca0dacef8983f4857c4e3e314ed459720976ce86657329b58c +size 442412 diff --git a/datasets/openslr_yoruba/yom_07049_01111732904.wav b/datasets/openslr_yoruba/yom_07049_01111732904.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c513ba206f3f4c492f765a2b89c600d647ec316 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01111732904.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d50b29734946375d89bf596d2c1d476698b12cf5e05ab71d43ff2bc4a89bb9 +size 270380 diff --git a/datasets/openslr_yoruba/yom_07049_01127248937.wav b/datasets/openslr_yoruba/yom_07049_01127248937.wav new file mode 100644 index 0000000000000000000000000000000000000000..2db222f1b65b358922658c2b4addb1b95b2f3c7e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01127248937.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9055835feab91c158cd6306a452275e03899beaa16d4affda79e337fcdbe88 +size 385068 diff --git a/datasets/openslr_yoruba/yom_07049_01127285005.wav b/datasets/openslr_yoruba/yom_07049_01127285005.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba4e07d53f890ed4c65e37d93aa221ba792351f1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01127285005.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d480b1febfbddd334999177ee58737a3331ad932464339636e73a302a7f55884 +size 679980 diff --git a/datasets/openslr_yoruba/yom_07049_01135577802.wav b/datasets/openslr_yoruba/yom_07049_01135577802.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c300893dce367957a7f78f1b4e41252e2fff15f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01135577802.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510f9ca4eff7ebce3e0ae63f26bb19e0dd2c2216c2a36537b708bec084b3de3c +size 344108 diff --git a/datasets/openslr_yoruba/yom_07049_01141203318.wav b/datasets/openslr_yoruba/yom_07049_01141203318.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0a85eb33e936a0591d5f1ef275fd9c608df5181 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01141203318.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd74fdcfa64c523f80aa3c8ecbf2bfb39cf6cd33728263bec62932a27d474a9 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07049_01155105413.wav b/datasets/openslr_yoruba/yom_07049_01155105413.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d64194a5db57065c7c4dd68a71a5f71add48a1b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01155105413.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41c54b2818575323acf6f59ead0d78c2ce1b1e0cbb5d9c200633053e655c600 +size 614444 diff --git a/datasets/openslr_yoruba/yom_07049_01162914798.wav b/datasets/openslr_yoruba/yom_07049_01162914798.wav new file mode 100644 index 0000000000000000000000000000000000000000..feb583c363b62b1ebe8a8e7c55d3542d69316aa3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01162914798.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8dddb00c3518e33c3ace445e9a2c4487e24e1f251f0a64c35424dc57d37fb6 +size 262188 diff --git a/datasets/openslr_yoruba/yom_07049_01171430479.wav b/datasets/openslr_yoruba/yom_07049_01171430479.wav new file mode 100644 index 0000000000000000000000000000000000000000..ee61efa48d9de181c728eb0dc5c85ef583099331 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01171430479.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0663f289b94851171a1d94d5f842138024c8fd573b4ebefea0e10ab0f19d96ae +size 483372 diff --git a/datasets/openslr_yoruba/yom_07049_01211642354.wav b/datasets/openslr_yoruba/yom_07049_01211642354.wav new file mode 100644 index 0000000000000000000000000000000000000000..0003971d6f516ed90f50a55a8cbd69f0c4de6f5f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01211642354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57fe893b662a39f1f3298f7733fda4890b116ff596bb373e485acefaba8d3524 +size 745516 diff --git a/datasets/openslr_yoruba/yom_07049_01212888034.wav b/datasets/openslr_yoruba/yom_07049_01212888034.wav new file mode 100644 index 0000000000000000000000000000000000000000..195b84430d70ca0a5893ac99993aa9a8313d3c17 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01212888034.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe2676eeca7cfe90cab897404b37b3cf7b77f3a2f96d714f1e1d018418bcf83 +size 466988 diff --git a/datasets/openslr_yoruba/yom_07049_01241482870.wav b/datasets/openslr_yoruba/yom_07049_01241482870.wav new file mode 100644 index 0000000000000000000000000000000000000000..224b5b639eb52053ffcefa42f7f846b36ebe4220 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01241482870.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814d3c58d0cd565d525280a95b3b1add418d620aff9370472b0355809462977d +size 245804 diff --git a/datasets/openslr_yoruba/yom_07049_01259466954.wav b/datasets/openslr_yoruba/yom_07049_01259466954.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d42639e26b66f9e963105c2bf96a63ab31439a8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01259466954.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6538577823e16c5364b4a916fe57e9524ded682ceff012708d07dca132dc7af7 +size 409644 diff --git a/datasets/openslr_yoruba/yom_07049_01273855916.wav b/datasets/openslr_yoruba/yom_07049_01273855916.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3db9a3babbacf0a6960bb31a69f2320eaf796cc --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01273855916.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121c37b66e09d13799cb32096461a51c84050bd17d2bfb7bde87b98fd21e80c6 +size 393260 diff --git a/datasets/openslr_yoruba/yom_07049_01314002336.wav b/datasets/openslr_yoruba/yom_07049_01314002336.wav new file mode 100644 index 0000000000000000000000000000000000000000..b12ac7c2ecd8b7ef6839cc4537d9cb03c07dcd32 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01314002336.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cac2c1e4ee0f6ea3b677e50e320d2620de94ce9ada2585a1210a88c853d516d +size 393260 diff --git a/datasets/openslr_yoruba/yom_07049_01373015271.wav b/datasets/openslr_yoruba/yom_07049_01373015271.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c8d908af10e8e4c90a02a4788a0531b98b33b59 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01373015271.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd7e7b50fdaa40962ee86807dc3efdc56ab65abcac71894c89bafbffb35d947 +size 286764 diff --git a/datasets/openslr_yoruba/yom_07049_01406295206.wav b/datasets/openslr_yoruba/yom_07049_01406295206.wav new file mode 100644 index 0000000000000000000000000000000000000000..150fd6510cc749fd30addb3e3b190705983b24f1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01406295206.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af38ba2608b0d761d2c7c80587d4b58f453c075b879b4d48446de93c28e98d33 +size 376876 diff --git a/datasets/openslr_yoruba/yom_07049_01445571874.wav b/datasets/openslr_yoruba/yom_07049_01445571874.wav new file mode 100644 index 0000000000000000000000000000000000000000..72fc1238bb1fd521fd1cd7cafe7a980894f2fd88 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01445571874.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b785e3440cac6ebe4ea94316f6d00541d8bebebf7245ef3dd6c749d414b4a9a2 +size 655404 diff --git a/datasets/openslr_yoruba/yom_07049_01449857967.wav b/datasets/openslr_yoruba/yom_07049_01449857967.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b3733048bd7070c8d249d751c2ed1c796c6a4e1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01449857967.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3733c5d473188802266196eedfd153d3b94cd9a4134e0f4b01dfb8cc98549ac +size 426028 diff --git a/datasets/openslr_yoruba/yom_07049_01449980905.wav b/datasets/openslr_yoruba/yom_07049_01449980905.wav new file mode 100644 index 0000000000000000000000000000000000000000..f505272f11c967c90645cad9e51a594ef0582e99 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01449980905.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197de91709dcd7cbd07b4259ac36807d7eae3396c92278123a3ec774d9208c54 +size 614444 diff --git a/datasets/openslr_yoruba/yom_07049_01473111251.wav b/datasets/openslr_yoruba/yom_07049_01473111251.wav new file mode 100644 index 0000000000000000000000000000000000000000..4269065fbbc37a00f0cefc5f5eab5f663aaf6b2a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01473111251.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258f7d77d33987c6faefed5e8cf029d54dbfd7dc65722e49eb3c05dec8bf24f7 +size 524332 diff --git a/datasets/openslr_yoruba/yom_07049_01528856074.wav b/datasets/openslr_yoruba/yom_07049_01528856074.wav new file mode 100644 index 0000000000000000000000000000000000000000..d8538da8352286aaf22772cde78703def86722a3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01528856074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da67c0d80294257e9d898709051cb3d8bc48b9348063137ae4a40c445d369070 +size 344108 diff --git a/datasets/openslr_yoruba/yom_07049_01543594653.wav b/datasets/openslr_yoruba/yom_07049_01543594653.wav new file mode 100644 index 0000000000000000000000000000000000000000..5b0e8555d670954d833fbd602295abdcb5e8931d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01543594653.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b6616d95b2df30e0ac06de8ce8ff48adea112c088f07675e3f05dc9b7bed296 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07049_01544244103.wav b/datasets/openslr_yoruba/yom_07049_01544244103.wav new file mode 100644 index 0000000000000000000000000000000000000000..141c702dcf665ac54c0654b33f28c6331f35af03 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01544244103.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e152e0a5ef253a1c37a5d4a2832f8d687426aa939e8ec7120b3f8a49d691e16d +size 491564 diff --git a/datasets/openslr_yoruba/yom_07049_01569229563.wav b/datasets/openslr_yoruba/yom_07049_01569229563.wav new file mode 100644 index 0000000000000000000000000000000000000000..6dddb1dd1d47fdc9f840f74360320c3298525bf9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01569229563.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ba632817431cd163c09238af4e2e771e07f78bf6b90c84502b057eb7ca8b19 +size 270380 diff --git a/datasets/openslr_yoruba/yom_07049_01576880734.wav b/datasets/openslr_yoruba/yom_07049_01576880734.wav new file mode 100644 index 0000000000000000000000000000000000000000..39d668aeca5169fc5f24c5ad9c6dd89e914d29d5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01576880734.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:774956603a1a191bb9f93bf3c8c43643fe2ae27b52c6d70ef9037453d5997df1 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07049_01580320228.wav b/datasets/openslr_yoruba/yom_07049_01580320228.wav new file mode 100644 index 0000000000000000000000000000000000000000..f1fdc348e111d673411748f146b7d741ebe64a89 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01580320228.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe3d9123e416273656d2f8c76ff28351eeed8bcc2eb03f38afc2b7961643d43 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07049_01606231622.wav b/datasets/openslr_yoruba/yom_07049_01606231622.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1813ceb4521c79ce17886b9641429f588e63573 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01606231622.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd474b145fe95a501034ef99c4834da80e873d48579627682c9497fdb0ba0bb4 +size 630828 diff --git a/datasets/openslr_yoruba/yom_07049_01609742458.wav b/datasets/openslr_yoruba/yom_07049_01609742458.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb6eb57ec3caf864c1cb1cd08210f33e215f8e1b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01609742458.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e729edf1b7672177294c3655d1cc478b0e87e3dd139137688bda1ccd5e0ccd7 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07049_01615482826.wav b/datasets/openslr_yoruba/yom_07049_01615482826.wav new file mode 100644 index 0000000000000000000000000000000000000000..f2fefb24a78d4c97c3aca993441e37613f7659b1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01615482826.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce802f4cae0e7e6dbef4aecc7c5ad543e963b381acf7920d601ec2cc797a0b0 +size 376876 diff --git a/datasets/openslr_yoruba/yom_07049_01655323368.wav b/datasets/openslr_yoruba/yom_07049_01655323368.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdc80dee39d882cf55930a225f6d0374991e8ca7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01655323368.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1468b52010e70acf55c10f4a5a0f7c79e0ec9dffc78356d3f5160eb894ba39 +size 417836 diff --git a/datasets/openslr_yoruba/yom_07049_01666876564.wav b/datasets/openslr_yoruba/yom_07049_01666876564.wav new file mode 100644 index 0000000000000000000000000000000000000000..7cdd9595961336fb8ecf5bfc76a5c1004355f7a1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01666876564.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53fd9578ac2912069ce82b4d786812d249928ed50bbcc11d72883bd678fac99c +size 409644 diff --git a/datasets/openslr_yoruba/yom_07049_01667951075.wav b/datasets/openslr_yoruba/yom_07049_01667951075.wav new file mode 100644 index 0000000000000000000000000000000000000000..5399ab7a15f4425de1a178a5191418677560c3e8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01667951075.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19b80a431de22005eebb2b99e6c77c0132efb2e65e83ae32612920d0624fe94 +size 434220 diff --git a/datasets/openslr_yoruba/yom_07049_01700911293.wav b/datasets/openslr_yoruba/yom_07049_01700911293.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef10ebabfdfed20c7a2d1ab057b0f7c4dcd7e29f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01700911293.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0e2219fe4da7af8063affc0c063a3c3461a14e0808329da0f57cceb7072252 +size 344108 diff --git a/datasets/openslr_yoruba/yom_07049_01716546573.wav b/datasets/openslr_yoruba/yom_07049_01716546573.wav new file mode 100644 index 0000000000000000000000000000000000000000..08bbf1e22f4c213490f57ecc998bba0297f20e40 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01716546573.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3613142935e9678768f395fc0a8314d49720ac64207a83755bfdb60463282887 +size 319532 diff --git a/datasets/openslr_yoruba/yom_07049_01731012721.wav b/datasets/openslr_yoruba/yom_07049_01731012721.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1e37efbd0bb170deaadc38ebeabd9db6a9b8f00 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01731012721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a022ca2146cdf983245040fec9c7928cd613cfe4e8c3ec4129cb179ed2d2e5 +size 352300 diff --git a/datasets/openslr_yoruba/yom_07049_01742657151.wav b/datasets/openslr_yoruba/yom_07049_01742657151.wav new file mode 100644 index 0000000000000000000000000000000000000000..392a40e904a81d9b96546ddc3903ceb50e1ae1c4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01742657151.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e491cf631d526f4aac0453918983947e43e8f41ef8920be9235271d339b2abee +size 466988 diff --git a/datasets/openslr_yoruba/yom_07049_01750297745.wav b/datasets/openslr_yoruba/yom_07049_01750297745.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed4829f6070a377c4b8753a1bcfe3953bbea9134 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01750297745.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81ca1c434998e336de87f1f4dee55f108d7cd9071be4436125183ac9e4cf5d3 +size 385068 diff --git a/datasets/openslr_yoruba/yom_07049_01784945750.wav b/datasets/openslr_yoruba/yom_07049_01784945750.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6bfaee51ac30791cfe6be0e9fe982817b794aae --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01784945750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f988af2e44b7da31435eae21e247f2784207853a19365123341dcf503f634335 +size 352300 diff --git a/datasets/openslr_yoruba/yom_07049_01799615454.wav b/datasets/openslr_yoruba/yom_07049_01799615454.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0346f0b1b7f315767446b5b4744103829dc6e3a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01799615454.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd697df7d8d077a6ad648900609c556be1cbe2cee147d52c9f8c386de74c4f4 +size 417836 diff --git a/datasets/openslr_yoruba/yom_07049_01882276626.wav b/datasets/openslr_yoruba/yom_07049_01882276626.wav new file mode 100644 index 0000000000000000000000000000000000000000..69129a982b74b52f183dbe4996df576957f87424 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01882276626.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e8a85ed8b08c56bcfd7e1bceb6ad358768567c79959ee417007589689d1540 +size 450604 diff --git a/datasets/openslr_yoruba/yom_07049_01897895824.wav b/datasets/openslr_yoruba/yom_07049_01897895824.wav new file mode 100644 index 0000000000000000000000000000000000000000..45207ef9da3524164fce4defca0b679616c5992c --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01897895824.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2279858cb19f088d891a24414e16c75199d283a479a19553d48594140e23f464 +size 573484 diff --git a/datasets/openslr_yoruba/yom_07049_01934407297.wav b/datasets/openslr_yoruba/yom_07049_01934407297.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7caf6eff8101b6a3a55144a4e55e07dc44d35e4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01934407297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58eb567fe77c3f5b32d47084f886d9d5d6ff7707a279cc7eb6e2d98252f644e5 +size 450604 diff --git a/datasets/openslr_yoruba/yom_07049_01942148149.wav b/datasets/openslr_yoruba/yom_07049_01942148149.wav new file mode 100644 index 0000000000000000000000000000000000000000..16d04fa1fabbfae2593b0c4936172092dc77aca8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01942148149.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f576337afc0c3d2d24be7926249b67f314da4985fcaf3896a5fe2ec179f2fe5d +size 262188 diff --git a/datasets/openslr_yoruba/yom_07049_01973898147.wav b/datasets/openslr_yoruba/yom_07049_01973898147.wav new file mode 100644 index 0000000000000000000000000000000000000000..43141d2105588d958bf1ceec9c2f9f9fca48bab8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01973898147.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b43de7133b81532b2295eb6c3724dac7a1da7cb7a32fb926ec58bc0c9449ff4 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07049_01988574147.wav b/datasets/openslr_yoruba/yom_07049_01988574147.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab119bcac7e99772921a460cdd07f9c2fa42c076 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01988574147.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4263e979f25d4506aa682cb076d2c5222861314222f34d8e13bb79bdaba3b60 +size 450604 diff --git a/datasets/openslr_yoruba/yom_07049_01994824495.wav b/datasets/openslr_yoruba/yom_07049_01994824495.wav new file mode 100644 index 0000000000000000000000000000000000000000..223b135f5782951634cde5992faadf75b38b2765 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_01994824495.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54d55b99dfeb509861fed1a542ece4d8ecc64943fd8c236f7baeeb28f4ff43e +size 360492 diff --git a/datasets/openslr_yoruba/yom_07049_02028314081.wav b/datasets/openslr_yoruba/yom_07049_02028314081.wav new file mode 100644 index 0000000000000000000000000000000000000000..be45d77c3acc71bd86ff3a74792f0a3cc7ee84cc --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_02028314081.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4226b4e4f6ccae859833d18e7311d1185c70fe1359219265f73e12576a9659c4 +size 376876 diff --git a/datasets/openslr_yoruba/yom_07049_02039879295.wav b/datasets/openslr_yoruba/yom_07049_02039879295.wav new file mode 100644 index 0000000000000000000000000000000000000000..882816139d167b7f7da857ce5c62e1736602b34d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_02039879295.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9f80a23393244f77643b11a08bd6fcd80e9c4539cd8d33dc511fbd8f8613f6 +size 303148 diff --git a/datasets/openslr_yoruba/yom_07049_02055844857.wav b/datasets/openslr_yoruba/yom_07049_02055844857.wav new file mode 100644 index 0000000000000000000000000000000000000000..529dbc7c18f9193485b88bccb32718f20a1e6568 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_02055844857.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2efca71035044c9d3813a21861904e0f1659af95753fec08896d5da848fed60 +size 303148 diff --git a/datasets/openslr_yoruba/yom_07049_02057650742.wav b/datasets/openslr_yoruba/yom_07049_02057650742.wav new file mode 100644 index 0000000000000000000000000000000000000000..c71aa249d58d249e29b00d5b4cfe5c9329f0a2a7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_02057650742.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4263c195b8194572fe27465a929a50e5a0c3c16ba4ab092ae90caafa9822732 +size 426028 diff --git a/datasets/openslr_yoruba/yom_07049_02073638799.wav b/datasets/openslr_yoruba/yom_07049_02073638799.wav new file mode 100644 index 0000000000000000000000000000000000000000..f890ff95f9bd4df4b0a1fc660f2668d66e78157d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_02073638799.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685f9210cf33f7cb46655675f13a680ccc26ddd24cb8f5a3534b499830727730 +size 409644 diff --git a/datasets/openslr_yoruba/yom_07049_02074688623.wav b/datasets/openslr_yoruba/yom_07049_02074688623.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7596fd133ec86eb6a7967d04556068bb281d3bf --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_02074688623.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0fcf33471b947ba38884f7c120b3734025db1002ea75e5cd2067d14a49b9a85 +size 442412 diff --git a/datasets/openslr_yoruba/yom_07049_02084001817.wav b/datasets/openslr_yoruba/yom_07049_02084001817.wav new file mode 100644 index 0000000000000000000000000000000000000000..ae7484d3941e40a15fba0dd07de326f42354ed8c --- /dev/null +++ b/datasets/openslr_yoruba/yom_07049_02084001817.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96da8529bec139cb06f78b8731dd486bf6a733f0b8db6405a6cb8315a39c0a34 +size 409644 diff --git a/datasets/openslr_yoruba/yom_07505_00014589644.wav b/datasets/openslr_yoruba/yom_07505_00014589644.wav new file mode 100644 index 0000000000000000000000000000000000000000..528dedf746bcc4b88bfb999e51593d228ce188f3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00014589644.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7167a5683f4ba1cdfc6719a96e1d66d7028bfa2a381e4908b2dda3e6e51a16 +size 376876 diff --git a/datasets/openslr_yoruba/yom_07505_00023944927.wav b/datasets/openslr_yoruba/yom_07505_00023944927.wav new file mode 100644 index 0000000000000000000000000000000000000000..b7dd82b349d903ed337ef2dbc296ae2d0fc239d2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00023944927.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8969b9e94b321a84d8ce51109743f06014bbf4fd148815d03f678ef89f2bc7fb +size 385068 diff --git a/datasets/openslr_yoruba/yom_07505_00035428769.wav b/datasets/openslr_yoruba/yom_07505_00035428769.wav new file mode 100644 index 0000000000000000000000000000000000000000..df8c4dedf2c2a245f2aafe2891c3825ca40aa3ae --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00035428769.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3172c30e20b41e74dffd7d64950c877505b3e41c56b670196dda484a1a5ca5a3 +size 778284 diff --git a/datasets/openslr_yoruba/yom_07505_00044171147.wav b/datasets/openslr_yoruba/yom_07505_00044171147.wav new file mode 100644 index 0000000000000000000000000000000000000000..e263a63919a42ac9942259f3dd9d8195cd5ca2ae --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00044171147.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f6bb7b97f6993deddb2eef1985f7c763116d2807e0b392d26db11469a525a9e +size 639020 diff --git a/datasets/openslr_yoruba/yom_07505_00046942163.wav b/datasets/openslr_yoruba/yom_07505_00046942163.wav new file mode 100644 index 0000000000000000000000000000000000000000..4db4f618c8baab9af8cd0ae80d3b63ecf0bd33d5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00046942163.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6552c862c2d5b71dc0f9796da3603492d6bce466a08556db62c50e17ca7a1169 +size 327724 diff --git a/datasets/openslr_yoruba/yom_07505_00068989097.wav b/datasets/openslr_yoruba/yom_07505_00068989097.wav new file mode 100644 index 0000000000000000000000000000000000000000..0fe234d2975052e8920ae29ed51959797982d097 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00068989097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10e2d402b9be8c08fa994189da92a3d1a9f201a7d988f53ee9a214aab530315 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07505_00077322538.wav b/datasets/openslr_yoruba/yom_07505_00077322538.wav new file mode 100644 index 0000000000000000000000000000000000000000..a472736574efbae00d94b7163221a10d65dcbc91 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00077322538.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ff51e98e2af1056abe5badc4d512335f1d0369299a01081475332887ad9ee1 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07505_00079653289.wav b/datasets/openslr_yoruba/yom_07505_00079653289.wav new file mode 100644 index 0000000000000000000000000000000000000000..54d755e8a41e386713cdb08a9df40880031d15bd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00079653289.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cc8ba6c093bdf6e71fc79e14297625704c31a1038e4c2987b155aabc162923 +size 475180 diff --git a/datasets/openslr_yoruba/yom_07505_00114060363.wav b/datasets/openslr_yoruba/yom_07505_00114060363.wav new file mode 100644 index 0000000000000000000000000000000000000000..2e6eafe7c4b73e35db589464019acb98d08a85f6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00114060363.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a1be5807ed2e036f135f3b47c02a47b4cf3a7c6590580376b6653d19d8b48a +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_00124219932.wav b/datasets/openslr_yoruba/yom_07505_00124219932.wav new file mode 100644 index 0000000000000000000000000000000000000000..65649a4f54b89d1bbd7b227f0f157fc3072548ab --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00124219932.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec3ff7e1d686ddbd02f359e08abc43842ba6bbe760a431025912b906202f5109 +size 311340 diff --git a/datasets/openslr_yoruba/yom_07505_00165421972.wav b/datasets/openslr_yoruba/yom_07505_00165421972.wav new file mode 100644 index 0000000000000000000000000000000000000000..324770ec8151997cef470838483d973087dfb0c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00165421972.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020a51852e400a0c620a506eff5a4ac40d0dce516f4fd6c92b4d15d61cc3eae6 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_00172057367.wav b/datasets/openslr_yoruba/yom_07505_00172057367.wav new file mode 100644 index 0000000000000000000000000000000000000000..038505a8f801b4004b463d3bed5dc647212d2efc --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00172057367.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b525c1d4e6252c29046c1121bd0250b69c0d306f386375a9a178e9978bcd057 +size 368684 diff --git a/datasets/openslr_yoruba/yom_07505_00173236478.wav b/datasets/openslr_yoruba/yom_07505_00173236478.wav new file mode 100644 index 0000000000000000000000000000000000000000..338409bdea8f166df78dff86bc40cb9aec3d40e5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00173236478.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c65c883ec7e656454c3949199d4b41cf0e1b52a15c3bc1ec5b0b3cfe15b06ec +size 376876 diff --git a/datasets/openslr_yoruba/yom_07505_00199182522.wav b/datasets/openslr_yoruba/yom_07505_00199182522.wav new file mode 100644 index 0000000000000000000000000000000000000000..932a8c28b573b46b0282ed07475d6137fda12293 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00199182522.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9944d30b0d2d6ce784fdc2d801fda590d2e9bbcdbf78d64a4597f15003a3842 +size 540716 diff --git a/datasets/openslr_yoruba/yom_07505_00212637414.wav b/datasets/openslr_yoruba/yom_07505_00212637414.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf0d5f948e75d93b65a283f54eed39bf010f7b29 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00212637414.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08413858be84cb0f89aa4517bf55e36b4f39e3fef896b8f6429f83fbe9835d5a +size 376876 diff --git a/datasets/openslr_yoruba/yom_07505_00237028149.wav b/datasets/openslr_yoruba/yom_07505_00237028149.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8561fcec5d36d2e110f9ef4265668fabc6f750e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00237028149.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd7a18f0a192a414472ad3a16c27ccf8bcc698d268de8406d8f813fc1e46ba3 +size 344108 diff --git a/datasets/openslr_yoruba/yom_07505_00272648229.wav b/datasets/openslr_yoruba/yom_07505_00272648229.wav new file mode 100644 index 0000000000000000000000000000000000000000..97d612de615b30cfda1ddfe089de4e335ae016b3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00272648229.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e95989470dc59ace8b5bcc4b93b1cb8541c3ae35c3e6fb0672423c22028ff2 +size 344108 diff --git a/datasets/openslr_yoruba/yom_07505_00309679014.wav b/datasets/openslr_yoruba/yom_07505_00309679014.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdce79b8aff6fea920f4806f2adc47d4d13b5868 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00309679014.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29e6d3ac4b23ee0a1f6fa0cc4f2a001555e0ab15f54061822520b2f9d2e1112 +size 466988 diff --git a/datasets/openslr_yoruba/yom_07505_00310661790.wav b/datasets/openslr_yoruba/yom_07505_00310661790.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5b1d5114036c7b941965fa7a32498ec58b0d8d1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00310661790.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303f5fecceee03322c07a22eb1242845ee84302eebdab42dd4763c2e38ac4369 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_00313635721.wav b/datasets/openslr_yoruba/yom_07505_00313635721.wav new file mode 100644 index 0000000000000000000000000000000000000000..a13b4272a2d0eec5955cdb9ae2e3369820363bd0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00313635721.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b2eaac29779c966c80fb35d2988b27b0e7f7478a1b46362fe16885cfe513f8 +size 753708 diff --git a/datasets/openslr_yoruba/yom_07505_00328639836.wav b/datasets/openslr_yoruba/yom_07505_00328639836.wav new file mode 100644 index 0000000000000000000000000000000000000000..28b30b6b39b6ca731ea88255138226d9e6a54fb3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00328639836.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57a7bef8ac2b27c9bbf830fd75754724685249884688a89baad21e7defe15d7 +size 450604 diff --git a/datasets/openslr_yoruba/yom_07505_00360243999.wav b/datasets/openslr_yoruba/yom_07505_00360243999.wav new file mode 100644 index 0000000000000000000000000000000000000000..334a4a67de8877cab769b91186e093ba04ca0e7a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00360243999.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f1fd978669c0f4817d979a3a08a3f180dbc539a45bfaa2a459ea16c03a8903 +size 442412 diff --git a/datasets/openslr_yoruba/yom_07505_00376906867.wav b/datasets/openslr_yoruba/yom_07505_00376906867.wav new file mode 100644 index 0000000000000000000000000000000000000000..69ade30aa8ab43c15af1da0011f8e3f4f038dd35 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00376906867.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50fa44faedb1ac700626faca53f740e7e60b91f928bace7f085bd33ff759e3e3 +size 606252 diff --git a/datasets/openslr_yoruba/yom_07505_00401987764.wav b/datasets/openslr_yoruba/yom_07505_00401987764.wav new file mode 100644 index 0000000000000000000000000000000000000000..7fdf612a4e3a64bbf2ebf15c931f204206155023 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00401987764.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb1dde0ae0ee55b80fa017c5252fee3d4581cf5c3b1ea9467bd3bf925d9ffdfc +size 688172 diff --git a/datasets/openslr_yoruba/yom_07505_00409167380.wav b/datasets/openslr_yoruba/yom_07505_00409167380.wav new file mode 100644 index 0000000000000000000000000000000000000000..c9cd7cc5ab284b3b349fbb769c6395251441a7e1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00409167380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8598c6eca97a839f1d076bd69d9ff6d1214268b8312d6caff2b5b94b224c19a3 +size 434220 diff --git a/datasets/openslr_yoruba/yom_07505_00417269241.wav b/datasets/openslr_yoruba/yom_07505_00417269241.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c6039ce0f88f991517f13f266620887ed61b570 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00417269241.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b7c13e6b22a3e2238a633f43794ffbd9cfd7cc9421211557c151312b0b46e9 +size 327724 diff --git a/datasets/openslr_yoruba/yom_07505_00449231923.wav b/datasets/openslr_yoruba/yom_07505_00449231923.wav new file mode 100644 index 0000000000000000000000000000000000000000..b8e82220be09c9c602a4c10e0dc0f6a936394b83 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00449231923.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926d8f8242fc13d37430bc8d58268c574ced8dcd7668eb98fd2a5b6ea0b1f3e4 +size 581676 diff --git a/datasets/openslr_yoruba/yom_07505_00450757097.wav b/datasets/openslr_yoruba/yom_07505_00450757097.wav new file mode 100644 index 0000000000000000000000000000000000000000..7fcaf72f5bc5d06c85ac96bc110e7dd29851e522 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00450757097.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e203e8a032b1f7dd0e23dd0f74377415a7c248c20993f09643e33a05299505 +size 409644 diff --git a/datasets/openslr_yoruba/yom_07505_00482042486.wav b/datasets/openslr_yoruba/yom_07505_00482042486.wav new file mode 100644 index 0000000000000000000000000000000000000000..c60359db959fcf6ca6ba592e2fee574b427385cb --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00482042486.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68dd249188e9ebcbfbb8d77133fc6d05553aa3c2efe890d8e4245e75a0b2c667 +size 524332 diff --git a/datasets/openslr_yoruba/yom_07505_00501299177.wav b/datasets/openslr_yoruba/yom_07505_00501299177.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a5bb3bfe2596d07ef5644c837369712a8482f85 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00501299177.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55b09ca06571a792f8a75f00cf605ba91da7464314ef5788b1af687e24f484be +size 393260 diff --git a/datasets/openslr_yoruba/yom_07505_00531019790.wav b/datasets/openslr_yoruba/yom_07505_00531019790.wav new file mode 100644 index 0000000000000000000000000000000000000000..c352612c1d4cc8aa3458db9b858d806e508fe4f9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00531019790.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb6a0e33d047bc2e8f5195edf1f6ec60b9035d11128164fdc03a3fc630d13b2f +size 368684 diff --git a/datasets/openslr_yoruba/yom_07505_00535928257.wav b/datasets/openslr_yoruba/yom_07505_00535928257.wav new file mode 100644 index 0000000000000000000000000000000000000000..8da5b7b875ce58f5b9cb0dd7d6d56cf0b7f940b2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00535928257.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2995ec011657320d3cb560126e2c51834b3a95b90b8d51a407ff3004b74653 +size 311340 diff --git a/datasets/openslr_yoruba/yom_07505_00550362230.wav b/datasets/openslr_yoruba/yom_07505_00550362230.wav new file mode 100644 index 0000000000000000000000000000000000000000..48a2c09f28168453b5511d6870eb7ccdadee6f01 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00550362230.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a234f33d58a1abaa6a1990b5aab800b18c73e51699e23ef7926601ef8ee2b7 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_00565274272.wav b/datasets/openslr_yoruba/yom_07505_00565274272.wav new file mode 100644 index 0000000000000000000000000000000000000000..27b67e55e28361b1339434e92b477f648c4649ae --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00565274272.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd8bda84085ae2be95478be306ab1bcfdf730e22f66cc2178e4c733c120380cb +size 393260 diff --git a/datasets/openslr_yoruba/yom_07505_00565955965.wav b/datasets/openslr_yoruba/yom_07505_00565955965.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f0d0d921702dc177f6ee21dbc1cf92c5f8cfdbd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00565955965.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d0b3cd699c07edde30c4ac9cb828b10f29f9b95b590b4f124c46d1eb3f4ead +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_00572150945.wav b/datasets/openslr_yoruba/yom_07505_00572150945.wav new file mode 100644 index 0000000000000000000000000000000000000000..03c2dfa94954eacef33912de827b25eb4c3ea740 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00572150945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2aefa6687107bde508b30478e5f557bf6c00d6338be4e8292d85f68ec974ce3d +size 499756 diff --git a/datasets/openslr_yoruba/yom_07505_00579423714.wav b/datasets/openslr_yoruba/yom_07505_00579423714.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0f3e9a101c60495f4faa0854f11806d41fe80a2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00579423714.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e62225833d418b3f182ceca7b05534cff5e6b1db05072f63164503543956e57 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07505_00618049974.wav b/datasets/openslr_yoruba/yom_07505_00618049974.wav new file mode 100644 index 0000000000000000000000000000000000000000..a58f8adbd15d13a55abfb68f525cc8a61a696fab --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00618049974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b63b4919107b43561681adecb40f765e621f1fcfbabedd00b7545cd7add18ff +size 319532 diff --git a/datasets/openslr_yoruba/yom_07505_00714441660.wav b/datasets/openslr_yoruba/yom_07505_00714441660.wav new file mode 100644 index 0000000000000000000000000000000000000000..50627486a98c15de56fbc626e76f5e2102cec615 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00714441660.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd3473878a0434a2a55108b47ec14ca968b0b8563f3208c1679525e323ee602 +size 647212 diff --git a/datasets/openslr_yoruba/yom_07505_00715844895.wav b/datasets/openslr_yoruba/yom_07505_00715844895.wav new file mode 100644 index 0000000000000000000000000000000000000000..c27e6362f5e54d6cedb0cecbc76a594e8b059607 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00715844895.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb8fbbcf6fd4ac3a712e11f31ee6ca61470e57007beddb8a4d530dacd3e87b1 +size 442412 diff --git a/datasets/openslr_yoruba/yom_07505_00736105483.wav b/datasets/openslr_yoruba/yom_07505_00736105483.wav new file mode 100644 index 0000000000000000000000000000000000000000..98d2d152afc4381bb911186aaa52b5ba74b46dbf --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00736105483.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2264be06da4f1c9f730c4a6a77648e1d705681843dc8e9d38a007a513cafb19 +size 270380 diff --git a/datasets/openslr_yoruba/yom_07505_00795586720.wav b/datasets/openslr_yoruba/yom_07505_00795586720.wav new file mode 100644 index 0000000000000000000000000000000000000000..22e757030314bb3c19297c4c079ee64f7a77eb8a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00795586720.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00c732175eebd887d25ea619d3736004b7b041f5876ffa4389207b317d86797 +size 434220 diff --git a/datasets/openslr_yoruba/yom_07505_00820187801.wav b/datasets/openslr_yoruba/yom_07505_00820187801.wav new file mode 100644 index 0000000000000000000000000000000000000000..56f9eb5f9c2108240409a74fad28aa89831577ae --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00820187801.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:873b053e46530d7eef60b01d2a4f0dafe869c7fde6def8128090b947a8ab3347 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07505_00846535485.wav b/datasets/openslr_yoruba/yom_07505_00846535485.wav new file mode 100644 index 0000000000000000000000000000000000000000..a136b9a46fa2293f45237caa09bc5f653a3a75af --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00846535485.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca4c637907a10e689ed6205205f13ddd1e824bf9ad0385d0907226aee3f3571 +size 507948 diff --git a/datasets/openslr_yoruba/yom_07505_00849493580.wav b/datasets/openslr_yoruba/yom_07505_00849493580.wav new file mode 100644 index 0000000000000000000000000000000000000000..95e1cd8707bae5fec98c74ea46fc83aac8e69520 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00849493580.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db0f3e7f0d49deb1f8f2d377ff738f791096d41a7025a7dad2ce5e68b714efa +size 352300 diff --git a/datasets/openslr_yoruba/yom_07505_00853197788.wav b/datasets/openslr_yoruba/yom_07505_00853197788.wav new file mode 100644 index 0000000000000000000000000000000000000000..4ddeab7c0ec96458c48d33da6c49351b879522d3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00853197788.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b693b644051e39a22b0a19c5b49ad1d13137fc665fcdbe3afb8a60e5177fd25 +size 352300 diff --git a/datasets/openslr_yoruba/yom_07505_00879744298.wav b/datasets/openslr_yoruba/yom_07505_00879744298.wav new file mode 100644 index 0000000000000000000000000000000000000000..a428264d054b66606fdf4679e92af95d158fa5c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00879744298.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f397fcc1fb1fc8b86a4d9e6e1517535c323c5774875f76feeedc9a8cdeb4addd +size 409644 diff --git a/datasets/openslr_yoruba/yom_07505_00913634903.wav b/datasets/openslr_yoruba/yom_07505_00913634903.wav new file mode 100644 index 0000000000000000000000000000000000000000..98683670f8d704cf7d356ec258e7bd7697259525 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00913634903.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa812dee51c1ba7af2c177dc12e685a8dc0ed40ffa6dabe8090613b41bc83989 +size 434220 diff --git a/datasets/openslr_yoruba/yom_07505_00972815832.wav b/datasets/openslr_yoruba/yom_07505_00972815832.wav new file mode 100644 index 0000000000000000000000000000000000000000..60530e4a7024fbc0a6f146cb5866af06f11e856f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_00972815832.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1430082f80cea3d412740d11764ec9e22904d5bfdea9d21859d28bc891e791d9 +size 532524 diff --git a/datasets/openslr_yoruba/yom_07505_01004000945.wav b/datasets/openslr_yoruba/yom_07505_01004000945.wav new file mode 100644 index 0000000000000000000000000000000000000000..f790e4c0f9d75b68b3005a5eeb06ada63af02515 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01004000945.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba525d7ca8a8a99d0e3daa5ce34c03c6ea6cf702488de98a73dddbccb2aed4b +size 679980 diff --git a/datasets/openslr_yoruba/yom_07505_01010882409.wav b/datasets/openslr_yoruba/yom_07505_01010882409.wav new file mode 100644 index 0000000000000000000000000000000000000000..9959d5f14598d1a65747189d3f7a126d30102bfe --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01010882409.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca6dc352950161f810bc0c798bc1fb46f0066fa224c7eeab2693f9320cabbee7 +size 311340 diff --git a/datasets/openslr_yoruba/yom_07505_01016357100.wav b/datasets/openslr_yoruba/yom_07505_01016357100.wav new file mode 100644 index 0000000000000000000000000000000000000000..e644b8123e9aaef126fef05fac6a6b1b67af1488 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01016357100.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca58c06e1b39f141bc0d1ba3121b034b2f702cdc6a76f4f44979668c4751520c +size 360492 diff --git a/datasets/openslr_yoruba/yom_07505_01041889526.wav b/datasets/openslr_yoruba/yom_07505_01041889526.wav new file mode 100644 index 0000000000000000000000000000000000000000..8127010e8672563d112e764f361e6b4b6288a628 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01041889526.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02edfdadefcafb237525bd3a485e165ad0ec14302fac422ea6800d6b3032e0e0 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01059831021.wav b/datasets/openslr_yoruba/yom_07505_01059831021.wav new file mode 100644 index 0000000000000000000000000000000000000000..553df321beb8d2e9f594bcf3188dd3ef4013c7e3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01059831021.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e6f7324758d73f3cb205738a2d978f6306fa0d114a18b2224d05715b0e15cd +size 417836 diff --git a/datasets/openslr_yoruba/yom_07505_01087369798.wav b/datasets/openslr_yoruba/yom_07505_01087369798.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffd897908920a61ef9413fd713359140c4c2c3d6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01087369798.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040ebf4a97fa785450030f01c96769f9f7096496fbe52571a8057a52e4b1a355 +size 483372 diff --git a/datasets/openslr_yoruba/yom_07505_01121169833.wav b/datasets/openslr_yoruba/yom_07505_01121169833.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2f655ccb6458d1aba2e510ff7ce935bb9fa53e9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01121169833.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006b96e775a9c463072aadd84f550e532eb31c0c76d28bf5ae593436ec54b5e0 +size 516140 diff --git a/datasets/openslr_yoruba/yom_07505_01134318847.wav b/datasets/openslr_yoruba/yom_07505_01134318847.wav new file mode 100644 index 0000000000000000000000000000000000000000..d8ff5ed8abf94f6809b09681183c8578256cb74f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01134318847.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6ddfbc08ffee832c148345f372ae39b9e054d06005594dd447293191ba39c7 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01211850621.wav b/datasets/openslr_yoruba/yom_07505_01211850621.wav new file mode 100644 index 0000000000000000000000000000000000000000..094999ba9add825fc2e4af4b7ead86e9c15c7d11 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01211850621.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e2f24394ca4d0f945af87238ebe7655bbf4897b6d9ffa86249160783371c06 +size 368684 diff --git a/datasets/openslr_yoruba/yom_07505_01264896815.wav b/datasets/openslr_yoruba/yom_07505_01264896815.wav new file mode 100644 index 0000000000000000000000000000000000000000..613fc02f3bca2864187a529752825a4badad2763 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01264896815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eefe99084c14f9bebee944e5df3c7d9d8289fb18fb6f118cf1bfc33df25afa6 +size 458796 diff --git a/datasets/openslr_yoruba/yom_07505_01266135425.wav b/datasets/openslr_yoruba/yom_07505_01266135425.wav new file mode 100644 index 0000000000000000000000000000000000000000..79400ed86883e340f8fda22a031ed40f24d0575d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01266135425.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04e9d38757baecad86f0952f9ec89c0e43bf5f9a821874e42bbf8904df147c9 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01267585172.wav b/datasets/openslr_yoruba/yom_07505_01267585172.wav new file mode 100644 index 0000000000000000000000000000000000000000..572ac282fd8e83277b8e33c6e08cd80c5f93d999 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01267585172.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d100af738a12e2f2fe1602d3e14c38e0999284daa09d394f595a3719fda4bc +size 344108 diff --git a/datasets/openslr_yoruba/yom_07505_01273201217.wav b/datasets/openslr_yoruba/yom_07505_01273201217.wav new file mode 100644 index 0000000000000000000000000000000000000000..384512712629b7fc8aa8ff5181b7892895831132 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01273201217.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b893a1e37d7a8f8fd7d0aaa62070683c5d9818a08cfa40a97c8e4b34c65da71 +size 393260 diff --git a/datasets/openslr_yoruba/yom_07505_01283653413.wav b/datasets/openslr_yoruba/yom_07505_01283653413.wav new file mode 100644 index 0000000000000000000000000000000000000000..83b69e28e49f9d8eba6bfbb8b497be98a706fdf3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01283653413.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59fa4f5dc91a2ccf6f2b942e13fd05c46d18021dfa9bb078dfc26174033d259 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07505_01297869791.wav b/datasets/openslr_yoruba/yom_07505_01297869791.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba5892b5d5025f33c4b941208e8ca71c341af865 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01297869791.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde215192af8f931df02cefbc120d729f721b0594e5167aaa5bd64f4883debe3 +size 532524 diff --git a/datasets/openslr_yoruba/yom_07505_01301092163.wav b/datasets/openslr_yoruba/yom_07505_01301092163.wav new file mode 100644 index 0000000000000000000000000000000000000000..a18737a0e2d461678115f2c4c17f9f6174af3fb7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01301092163.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee901619a2f64cfa84a298e9f3b16f531dd63660b993266f2cba6308f9080d8 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01304643046.wav b/datasets/openslr_yoruba/yom_07505_01304643046.wav new file mode 100644 index 0000000000000000000000000000000000000000..df497e01ba4828706099c14ce90968705cb34a6d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01304643046.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89bb25650d12bf2db509f748d08668d92970fa5f32749f77c9b9597750a2abab +size 393260 diff --git a/datasets/openslr_yoruba/yom_07505_01323850336.wav b/datasets/openslr_yoruba/yom_07505_01323850336.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1b6d86885445adca572cf11cb0934a1fb4c93ad --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01323850336.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2b89972a639b167e1273071ba72f53522e13dd6e1ef5dfbca6b1defa1599a5 +size 671788 diff --git a/datasets/openslr_yoruba/yom_07505_01326785119.wav b/datasets/openslr_yoruba/yom_07505_01326785119.wav new file mode 100644 index 0000000000000000000000000000000000000000..219748e71d80712f3344725591a68679935505b1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01326785119.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7610510669727fb1fd573846c7e71616183d1a0fedf29bc14c91e43c232372 +size 573484 diff --git a/datasets/openslr_yoruba/yom_07505_01331061060.wav b/datasets/openslr_yoruba/yom_07505_01331061060.wav new file mode 100644 index 0000000000000000000000000000000000000000..6adcb94b68fc31147b11fd84c2bc62fe571a2546 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01331061060.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7536739e6b3671352f7f32cf29ff8afdefc8f7baedab35cf129ed9e267e5ea +size 360492 diff --git a/datasets/openslr_yoruba/yom_07505_01353857074.wav b/datasets/openslr_yoruba/yom_07505_01353857074.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f56c90725a5e2c65794ce0989ae042dfa867dea --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01353857074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c48a04cd83ad6eb7fd067b1320cea62daaea7e8a78d256e7380469709f8960a +size 278572 diff --git a/datasets/openslr_yoruba/yom_07505_01357520734.wav b/datasets/openslr_yoruba/yom_07505_01357520734.wav new file mode 100644 index 0000000000000000000000000000000000000000..6d0fb4a01b5a9d379f1398e737eb6d7df74f756d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01357520734.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bdf8447aa804ccd7a3b364ec53d01cc21a5cf876dad87244d7e188b665e387f +size 303148 diff --git a/datasets/openslr_yoruba/yom_07505_01380730347.wav b/datasets/openslr_yoruba/yom_07505_01380730347.wav new file mode 100644 index 0000000000000000000000000000000000000000..cacdea70142e89011cf0dfba947bfde7a3d73119 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01380730347.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae72511444a6cc1712e6f5bbf3270df1b9e25d993b232908982a76d1c66010f1 +size 344108 diff --git a/datasets/openslr_yoruba/yom_07505_01401523141.wav b/datasets/openslr_yoruba/yom_07505_01401523141.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab87db189fced55bf8a7c7764319c72aed95f280 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01401523141.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82302ebfb6ecd73c72df90511829d32681f9eb31648138382ac4bde5281ac11a +size 434220 diff --git a/datasets/openslr_yoruba/yom_07505_01415421171.wav b/datasets/openslr_yoruba/yom_07505_01415421171.wav new file mode 100644 index 0000000000000000000000000000000000000000..46916ba74ae06262cff8978a1042ffc8394946be --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01415421171.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35fecd16a8673ba7590b6d1221e4c0cdcec2e44e7570c6a426fc29d3a67fbd9 +size 802860 diff --git a/datasets/openslr_yoruba/yom_07505_01422865584.wav b/datasets/openslr_yoruba/yom_07505_01422865584.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ca8708cf682cc8baae8100f256d4a10de0b41ec --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01422865584.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c44bd69d14e9ccbfc4edb12157b8038949fbd8805ce498e7d332daf2e5d8540 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01456994714.wav b/datasets/openslr_yoruba/yom_07505_01456994714.wav new file mode 100644 index 0000000000000000000000000000000000000000..e93b0b05836ac8565c6af8a9ed1d28b61dff2886 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01456994714.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27ac96d69cd8ba6aba669fe86221ce7de32617efdfdd771ae445d4776c3a74f +size 360492 diff --git a/datasets/openslr_yoruba/yom_07505_01459476689.wav b/datasets/openslr_yoruba/yom_07505_01459476689.wav new file mode 100644 index 0000000000000000000000000000000000000000..06a139de0c072b0185867d769f2ccc8246b39678 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01459476689.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd5abe9538a55356141ef9f48ce0410e90d18cdf600141d4a30cc008d3eef8f +size 557100 diff --git a/datasets/openslr_yoruba/yom_07505_01482096004.wav b/datasets/openslr_yoruba/yom_07505_01482096004.wav new file mode 100644 index 0000000000000000000000000000000000000000..0df1c36f2299531a83e69d41b298b021201bc68a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01482096004.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b9a87e3fdce475e8cb04c9e873856b030ca548cafe57d78a6f53aae39eac02d +size 393260 diff --git a/datasets/openslr_yoruba/yom_07505_01562111994.wav b/datasets/openslr_yoruba/yom_07505_01562111994.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1565f767b52874d06bbf704ab66791447426680 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01562111994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40788f6bd9d608c71e1cbc879f0575853201204ddb9556c934f003d5fda85f15 +size 458796 diff --git a/datasets/openslr_yoruba/yom_07505_01577437713.wav b/datasets/openslr_yoruba/yom_07505_01577437713.wav new file mode 100644 index 0000000000000000000000000000000000000000..28bbbfdfa8bb4e697fd66a5e3255305b99ddf0d7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01577437713.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275580495b541a7aa26398ba93615582069d5629babefa0a3843471c139b5210 +size 442412 diff --git a/datasets/openslr_yoruba/yom_07505_01656667535.wav b/datasets/openslr_yoruba/yom_07505_01656667535.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ba1fbfc4c682fec98271f812a973c6a53a8ae37 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01656667535.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c9058421a545e416cf9662ac8a43ed4d086f0dcf505e87d4ec1e50e6ae9e0e +size 368684 diff --git a/datasets/openslr_yoruba/yom_07505_01673859391.wav b/datasets/openslr_yoruba/yom_07505_01673859391.wav new file mode 100644 index 0000000000000000000000000000000000000000..128c944124cab39d960747291d9ffe2ebbdb3f5e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01673859391.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4b1291f22dea573a2bbd8260a0ee48a6567b39eaaa8c25a3df21795f7f2748 +size 466988 diff --git a/datasets/openslr_yoruba/yom_07505_01680519436.wav b/datasets/openslr_yoruba/yom_07505_01680519436.wav new file mode 100644 index 0000000000000000000000000000000000000000..24e65449bc0dc8abb1b4fd9870e90112e0d70104 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01680519436.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf1ab1f9a64b16a00198a0f7e2efbd5806b6c16768a26fbff19ab53ebc8e3e0 +size 393260 diff --git a/datasets/openslr_yoruba/yom_07505_01699823013.wav b/datasets/openslr_yoruba/yom_07505_01699823013.wav new file mode 100644 index 0000000000000000000000000000000000000000..6148de209287df9c1704847e36c5850f2d313cb4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01699823013.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad5b1115f384d6cd5519f78f62858808b2637f3fd9c5d1275ea56c1de24ca71a +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01726861980.wav b/datasets/openslr_yoruba/yom_07505_01726861980.wav new file mode 100644 index 0000000000000000000000000000000000000000..9704afd33e32b850f73365ccf2f0eccc98aa3ca1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01726861980.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e267e70ef70155b9d498a8a5f34b83e3575b766cb2dc0effdd66f57d558a9248 +size 393260 diff --git a/datasets/openslr_yoruba/yom_07505_01763150504.wav b/datasets/openslr_yoruba/yom_07505_01763150504.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf9b2fed4533a4ed1fb544fce1693e6e1a945699 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01763150504.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ed0962af9e182783b05dae2f8f0e83e696237e19b5486d2229191a3274f89e +size 483372 diff --git a/datasets/openslr_yoruba/yom_07505_01797491011.wav b/datasets/openslr_yoruba/yom_07505_01797491011.wav new file mode 100644 index 0000000000000000000000000000000000000000..9c25ab63e940b536f637a160b8dfc27c8a9b2fff --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01797491011.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084cca7e4e46e33942ec430b3f49e155d9d64ae5b67bbbb8bf3fae747d06eef0 +size 303148 diff --git a/datasets/openslr_yoruba/yom_07505_01808844321.wav b/datasets/openslr_yoruba/yom_07505_01808844321.wav new file mode 100644 index 0000000000000000000000000000000000000000..44607463208dac6981a840d52607b67800ee1d88 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01808844321.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bab6c47a03f822617f7a88564ceac6c98ab839ab805b429f14be3dd4c0a9a7b +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01838521374.wav b/datasets/openslr_yoruba/yom_07505_01838521374.wav new file mode 100644 index 0000000000000000000000000000000000000000..1760979cc7d26601017dd92b0f18bfd0d13f5e82 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01838521374.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a1ffae6b4b1befc56946759c3ba8b3ec95054ba5f502c3dc9388b4de953d8c +size 499756 diff --git a/datasets/openslr_yoruba/yom_07505_01853542095.wav b/datasets/openslr_yoruba/yom_07505_01853542095.wav new file mode 100644 index 0000000000000000000000000000000000000000..4510f3d5a8375875c9b8e559761de811d388d5bd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01853542095.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8110ab91ea3cec45f5d6ae0260f59ce43321eec164ce015ca04773bd3054339 +size 368684 diff --git a/datasets/openslr_yoruba/yom_07505_01893585555.wav b/datasets/openslr_yoruba/yom_07505_01893585555.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e2012f484ba77cd5295d25ef0f69709f3797f90 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01893585555.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540dad041a715ed73d17ceed9323dbc72a00734fbd043832a72411851a37a25a +size 344108 diff --git a/datasets/openslr_yoruba/yom_07505_01936711064.wav b/datasets/openslr_yoruba/yom_07505_01936711064.wav new file mode 100644 index 0000000000000000000000000000000000000000..b10744c549ccd377344054f5f872ad7f3b6f9aae --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01936711064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57d9aa0b79f512ade53e2a7d1d9971a5349c54a0482d3d510185c35399ada0f +size 335916 diff --git a/datasets/openslr_yoruba/yom_07505_01940282405.wav b/datasets/openslr_yoruba/yom_07505_01940282405.wav new file mode 100644 index 0000000000000000000000000000000000000000..8af84b856d6ad15d717d8252c475952fceaaa648 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01940282405.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84dba20469a16b3734ae4ad1074c92a991d12a895fc282f912bc65ea9cc8cb89 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07505_01967020082.wav b/datasets/openslr_yoruba/yom_07505_01967020082.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9dd32d4a222162f3b6b62f2e0c5ae0948779e8d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_01967020082.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29a9254744e3e4b3cad6ddc1c83981f5440a24dd6c641a0094e0a07a346d2e9 +size 319532 diff --git a/datasets/openslr_yoruba/yom_07505_02111388719.wav b/datasets/openslr_yoruba/yom_07505_02111388719.wav new file mode 100644 index 0000000000000000000000000000000000000000..14f70d09f3c03163e06aee087417f2a32dac58e4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_02111388719.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfcf108cf3d0c18a8a6778e15dd9ce5ab2181b78afd8feb3174bd9d22c04f7a +size 237612 diff --git a/datasets/openslr_yoruba/yom_07505_02115488038.wav b/datasets/openslr_yoruba/yom_07505_02115488038.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a3878e18771cecdc658a7d1ed2b680c18ad20fd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_02115488038.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58359749f828733d119619b269ae5f8c5882d0f99a7d5d1a39a6a610232a9f25 +size 426028 diff --git a/datasets/openslr_yoruba/yom_07505_02131160624.wav b/datasets/openslr_yoruba/yom_07505_02131160624.wav new file mode 100644 index 0000000000000000000000000000000000000000..7880e44743f9c91d4ac2101e3f10c4bb00802ba3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07505_02131160624.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87af3c36f35f3d5a133e261580c65f438ba4dfdb1c50f33ea3a8a314ff405ae3 +size 335916 diff --git a/datasets/openslr_yoruba/yom_07508_00108608081.wav b/datasets/openslr_yoruba/yom_07508_00108608081.wav new file mode 100644 index 0000000000000000000000000000000000000000..edfefa3e993408b9304249e044bf1b049089eb69 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00108608081.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a22165d67150cf7c44de727e36259d93ac33a7c5c501d2ab750d83c6f0d182 +size 270380 diff --git a/datasets/openslr_yoruba/yom_07508_00110980675.wav b/datasets/openslr_yoruba/yom_07508_00110980675.wav new file mode 100644 index 0000000000000000000000000000000000000000..2e96bbc3cf9ededf524897dec4be7468266067b0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00110980675.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208183e1df9968ed78f9edefccf77596088ce0df006baf8d4c2a52edc618765a +size 335916 diff --git a/datasets/openslr_yoruba/yom_07508_00122380614.wav b/datasets/openslr_yoruba/yom_07508_00122380614.wav new file mode 100644 index 0000000000000000000000000000000000000000..7c1446ae83ccea22e197265c519c58d43383aa22 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00122380614.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893a6e61387fdcb7c07e846e0c81a1462cbb9b8cae169509ee057f48296c365e +size 188460 diff --git a/datasets/openslr_yoruba/yom_07508_00147882996.wav b/datasets/openslr_yoruba/yom_07508_00147882996.wav new file mode 100644 index 0000000000000000000000000000000000000000..2db71714bb9a9a197b29d6df7ec3a9efa7da36a2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00147882996.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44f3d82a81a64649c71448d6c422a807494e300cf97a1c4e6cf80007eb41a7c +size 466988 diff --git a/datasets/openslr_yoruba/yom_07508_00149954221.wav b/datasets/openslr_yoruba/yom_07508_00149954221.wav new file mode 100644 index 0000000000000000000000000000000000000000..957fff17ad160481b393ec977efc31ab342f4abe --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00149954221.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddcd5fe87a160c27822814484cca8211c05b9d74e38ce2678209f6c1635e4f76 +size 229420 diff --git a/datasets/openslr_yoruba/yom_07508_00199663363.wav b/datasets/openslr_yoruba/yom_07508_00199663363.wav new file mode 100644 index 0000000000000000000000000000000000000000..dad81c89b93591172e0cbbc51b88b1568c7ed8c3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00199663363.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eb4d8e9780780e57772111e86e31c4be5da61d147ae9487445bea7b33406403 +size 180268 diff --git a/datasets/openslr_yoruba/yom_07508_00237062454.wav b/datasets/openslr_yoruba/yom_07508_00237062454.wav new file mode 100644 index 0000000000000000000000000000000000000000..b3d0049a959643cb2c635f2ebe04b18066497ca4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00237062454.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f366bf576519911156b39e6db463b0cac6efdc1e3d005fcc2dde4ddb9f3bb84d +size 409644 diff --git a/datasets/openslr_yoruba/yom_07508_00240132972.wav b/datasets/openslr_yoruba/yom_07508_00240132972.wav new file mode 100644 index 0000000000000000000000000000000000000000..a4a3bf92b020887dbaa0be54d74f44d3b331401f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00240132972.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372969e0b46a0ba29b90c5e226859810a458673d0698b30ef138cd074a6a5abb +size 229420 diff --git a/datasets/openslr_yoruba/yom_07508_00241238816.wav b/datasets/openslr_yoruba/yom_07508_00241238816.wav new file mode 100644 index 0000000000000000000000000000000000000000..2957e19c307f33cc291b60577834ec32790cfdbd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00241238816.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9e1f17e0eb8f1f7e8cbc9df1f1df446b10c8b567933c978705f5bb5fc495fc +size 155692 diff --git a/datasets/openslr_yoruba/yom_07508_00242160806.wav b/datasets/openslr_yoruba/yom_07508_00242160806.wav new file mode 100644 index 0000000000000000000000000000000000000000..4844292a69c128d07f375d3adaa806e982351823 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00242160806.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fa61f3687e3da85f30019e54be571a143ccc8769c367accbb7b5d888b2893d +size 139308 diff --git a/datasets/openslr_yoruba/yom_07508_00253762213.wav b/datasets/openslr_yoruba/yom_07508_00253762213.wav new file mode 100644 index 0000000000000000000000000000000000000000..1479d52987f453e770b9d3ea7e0975ca4cba5f2a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00253762213.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03d5561b82ccb36ff85cd922cac898aaddd9a16d66eb5bf53afb753a3a53051 +size 311340 diff --git a/datasets/openslr_yoruba/yom_07508_00331434484.wav b/datasets/openslr_yoruba/yom_07508_00331434484.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bca249b7b1932d6937806b7e1638384ac4bace2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00331434484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d46c495ffaa73257bc6181918ee31071ba6070508fb5b8ca3015a3ae951f8b2 +size 196652 diff --git a/datasets/openslr_yoruba/yom_07508_00331831273.wav b/datasets/openslr_yoruba/yom_07508_00331831273.wav new file mode 100644 index 0000000000000000000000000000000000000000..4b18960e7f5c065a3a48d792b58d23fe08200dcd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00331831273.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456229b0081f568cbbf6e04d2ac5fec061e1f48b3ea3e6057533381b0da4f066 +size 229420 diff --git a/datasets/openslr_yoruba/yom_07508_00337705986.wav b/datasets/openslr_yoruba/yom_07508_00337705986.wav new file mode 100644 index 0000000000000000000000000000000000000000..b7b0cbb746769601b70c1428e90670ab86e29903 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00337705986.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0d2e7a831cd8c2b72d8865dd24fbf958045bd291fe459b949795f8d8003eb3 +size 237612 diff --git a/datasets/openslr_yoruba/yom_07508_00399342887.wav b/datasets/openslr_yoruba/yom_07508_00399342887.wav new file mode 100644 index 0000000000000000000000000000000000000000..35e85590c7a4289cc5cfa5d20dc7cfa85bc21128 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00399342887.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179de197d0b7e15de39b8f527117ddfc2b8d392ff0a84abd0e65a8972e87b1bf +size 204844 diff --git a/datasets/openslr_yoruba/yom_07508_00431635100.wav b/datasets/openslr_yoruba/yom_07508_00431635100.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d8ad7ef67f69c34620085d53b1efe4ad53e4cb6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00431635100.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721e0af3c0273ea8b16179a25c020a8c042fd6f3e905ef7d0037222d5144a3b0 +size 311340 diff --git a/datasets/openslr_yoruba/yom_07508_00436597889.wav b/datasets/openslr_yoruba/yom_07508_00436597889.wav new file mode 100644 index 0000000000000000000000000000000000000000..79f462b25c5136ef186a00fcd7fea717ef7e7433 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00436597889.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e2848aa8231c5487730dd84329f39f9dfcd255dae5ae424e155e59ab1910c2 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_00466262251.wav b/datasets/openslr_yoruba/yom_07508_00466262251.wav new file mode 100644 index 0000000000000000000000000000000000000000..baedcc3d58f1cb173a9a52d7c9b0215ac2b8ecec --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00466262251.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb7ec53efc069b35b2836377b91ce50e9fdd354d4efcd01f698c5c716ed6ad8 +size 237612 diff --git a/datasets/openslr_yoruba/yom_07508_00520149587.wav b/datasets/openslr_yoruba/yom_07508_00520149587.wav new file mode 100644 index 0000000000000000000000000000000000000000..5696ce48bdb7c108c7714244a848db928602bd41 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00520149587.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54d5c6d369304bc2e233eeb58ba98e7390d351b4d9c3a6095b5a3d6d58f06e8 +size 253996 diff --git a/datasets/openslr_yoruba/yom_07508_00532440359.wav b/datasets/openslr_yoruba/yom_07508_00532440359.wav new file mode 100644 index 0000000000000000000000000000000000000000..0d3aa00b98a51ff0ac38aba91519f0045308d82d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00532440359.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2550c2c6bc6154d2ff84b3a9617384531987e4d087a6f1da6c5b662570a934d +size 253996 diff --git a/datasets/openslr_yoruba/yom_07508_00577892423.wav b/datasets/openslr_yoruba/yom_07508_00577892423.wav new file mode 100644 index 0000000000000000000000000000000000000000..92e0af4bba9666f9c3b3521c8d594bbd568f1e2e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00577892423.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c4d27adf3dd43434376eaa31cb46342da2937dd64f6b21f7c433eaa6eeb23e +size 188460 diff --git a/datasets/openslr_yoruba/yom_07508_00581043285.wav b/datasets/openslr_yoruba/yom_07508_00581043285.wav new file mode 100644 index 0000000000000000000000000000000000000000..2588704eb6c7068352f7a9b4f9df24132c0c3d37 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00581043285.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0a9407f986f4ef368e652af28bc97224ff555acf9ed50a0080a309f6aab7d7 +size 172076 diff --git a/datasets/openslr_yoruba/yom_07508_00613809703.wav b/datasets/openslr_yoruba/yom_07508_00613809703.wav new file mode 100644 index 0000000000000000000000000000000000000000..134765a17beec3274189fc0b6cb2ac58b552c231 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00613809703.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d650b133de03f4ebab6855287b48028f4f74beafe406edbdad59c1e5129789f8 +size 213036 diff --git a/datasets/openslr_yoruba/yom_07508_00616314586.wav b/datasets/openslr_yoruba/yom_07508_00616314586.wav new file mode 100644 index 0000000000000000000000000000000000000000..770bfb1b97b20409b21f641a914f8e53e601124f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00616314586.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e035ab2c9e3c111bcc9cf3b859b98b080ae18a78a82077aad69c8d52196885eb +size 262188 diff --git a/datasets/openslr_yoruba/yom_07508_00629646897.wav b/datasets/openslr_yoruba/yom_07508_00629646897.wav new file mode 100644 index 0000000000000000000000000000000000000000..0844a0d4a4bc0c2ba339dbb765f86bd58f1597f2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00629646897.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8823b012b08592e7f22f3d24da69e628cec06d10daf676d52f9f0ede3b6a85a +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_00645835667.wav b/datasets/openslr_yoruba/yom_07508_00645835667.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4d598e08880bea1ec39e26fbdfead4fb8012eb5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00645835667.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99867d182707d89aae26e3f5c2036b52152df94c545616114395733b367ffe8e +size 319532 diff --git a/datasets/openslr_yoruba/yom_07508_00674666895.wav b/datasets/openslr_yoruba/yom_07508_00674666895.wav new file mode 100644 index 0000000000000000000000000000000000000000..8dc55bc8814140953ee9d436308b8d632fc726c1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00674666895.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d740022c00c136c4451f8a8217eaafe63433d0ab79cd5581559cf5c04d5a57 +size 270380 diff --git a/datasets/openslr_yoruba/yom_07508_00719536244.wav b/datasets/openslr_yoruba/yom_07508_00719536244.wav new file mode 100644 index 0000000000000000000000000000000000000000..406fdfbb898d90b75a16304bbe9cf66d604f6aec --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00719536244.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f0928a6c67fc63f7515b7a111f9f05df411dbfcaf9b32ab5abf59af57bd7e3 +size 221228 diff --git a/datasets/openslr_yoruba/yom_07508_00738689089.wav b/datasets/openslr_yoruba/yom_07508_00738689089.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0d7b7a114934d43433ff33a5cb5c634d56fec8f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00738689089.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f508bd5f12c881014d221dd8ee24fb2fd86a3e6ec53b10cc3e7d0cf6d7f739b9 +size 131116 diff --git a/datasets/openslr_yoruba/yom_07508_00745844924.wav b/datasets/openslr_yoruba/yom_07508_00745844924.wav new file mode 100644 index 0000000000000000000000000000000000000000..fca14564abfe1429896f5574755e46137292b68d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00745844924.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6bf7aa036865f8b8b26e70693f2fe1bd874b6a8070a33255009970f5cc919d +size 188460 diff --git a/datasets/openslr_yoruba/yom_07508_00755235955.wav b/datasets/openslr_yoruba/yom_07508_00755235955.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a75827a957d70b48da30ceb0a952219f7ff7a5c --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00755235955.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f3468ae367e7d9cc11e0cc0271685fddf3f765bbf50c84bba031de9f43e584 +size 286764 diff --git a/datasets/openslr_yoruba/yom_07508_00762047642.wav b/datasets/openslr_yoruba/yom_07508_00762047642.wav new file mode 100644 index 0000000000000000000000000000000000000000..53a130c01efb04b60d50e39b3a3131a292b98969 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00762047642.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e69e7884c6d70b4b2649bcb20e3df7617b1a83a8d2abcb5e4a59c74d02058d5a +size 172076 diff --git a/datasets/openslr_yoruba/yom_07508_00783170538.wav b/datasets/openslr_yoruba/yom_07508_00783170538.wav new file mode 100644 index 0000000000000000000000000000000000000000..3e415356d6603d37d50d076912f9a0a1c83c2a6e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00783170538.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d35dad17c1bf84271737d67ae624471aa1e4a465198e1615c212219d75341c4 +size 188460 diff --git a/datasets/openslr_yoruba/yom_07508_00812206214.wav b/datasets/openslr_yoruba/yom_07508_00812206214.wav new file mode 100644 index 0000000000000000000000000000000000000000..8e15a623ef7dfa6e02d9399664c64d50344ea93b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00812206214.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4541cb211b17162d3bb9be1d3be0de5d12551c460e433aa7f9f747f3a324002a +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_00813365935.wav b/datasets/openslr_yoruba/yom_07508_00813365935.wav new file mode 100644 index 0000000000000000000000000000000000000000..0c1f9506e666ea7eb6adf71589829c04d2f023f5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00813365935.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f8330f5115f5007bb54cb6ffd9955b522a22b6e970cace74fb3e438390b6c3 +size 237612 diff --git a/datasets/openslr_yoruba/yom_07508_00834585297.wav b/datasets/openslr_yoruba/yom_07508_00834585297.wav new file mode 100644 index 0000000000000000000000000000000000000000..24bc5154aa28816317fc824141ed1ccf9097f94d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00834585297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97118df1515b4b38b408439476ec28a58c4a68c6b00844cdb916303321befdfe +size 319532 diff --git a/datasets/openslr_yoruba/yom_07508_00841986848.wav b/datasets/openslr_yoruba/yom_07508_00841986848.wav new file mode 100644 index 0000000000000000000000000000000000000000..20add38377eedb112cb457cf4b600c63831d2f58 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00841986848.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809bf3b5705be061f2d917a95f90d50d39cd7af73a4d56e0edb886e9ebbdf4b6 +size 139308 diff --git a/datasets/openslr_yoruba/yom_07508_00859742057.wav b/datasets/openslr_yoruba/yom_07508_00859742057.wav new file mode 100644 index 0000000000000000000000000000000000000000..96addef37c9bdc944aab05c6aa9560e7d89bed62 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00859742057.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e28c3a9c10a43b7db082aef37b9662ae40afb144c3c194bb83d847f68f9abbc0 +size 237612 diff --git a/datasets/openslr_yoruba/yom_07508_00870120725.wav b/datasets/openslr_yoruba/yom_07508_00870120725.wav new file mode 100644 index 0000000000000000000000000000000000000000..5da0d2821bece0d80d2605852899d40968ab1b95 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00870120725.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74cd2278ce0a0f7af76b4229ef14c566afb1c40fea4adf7e14c750036dab32e +size 196652 diff --git a/datasets/openslr_yoruba/yom_07508_00912338378.wav b/datasets/openslr_yoruba/yom_07508_00912338378.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf7e322041f1efb97f9be36c0946dce302429b32 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00912338378.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b30c0776c22175a23b1efcc43c5f83a96b2cbafcb1fdd05e6e97d8355fe9673 +size 245804 diff --git a/datasets/openslr_yoruba/yom_07508_00957942018.wav b/datasets/openslr_yoruba/yom_07508_00957942018.wav new file mode 100644 index 0000000000000000000000000000000000000000..a724a4498aa3aa95e60544a8c0a30c19fd8fd9dc --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00957942018.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9dd4397ad926174d5f5e2725888cd4418685bca34be00583cef88d5b1d26ac +size 188460 diff --git a/datasets/openslr_yoruba/yom_07508_00959403919.wav b/datasets/openslr_yoruba/yom_07508_00959403919.wav new file mode 100644 index 0000000000000000000000000000000000000000..2908c422849fbe21b0513cd1db53b267e80cceb7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00959403919.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9678f6dc41a9a1681ff6783cc7bf2dc799c0238f4f4a3cf1484bb16bd36d110f +size 163884 diff --git a/datasets/openslr_yoruba/yom_07508_00960226556.wav b/datasets/openslr_yoruba/yom_07508_00960226556.wav new file mode 100644 index 0000000000000000000000000000000000000000..52ba43b570170d880675a48f2fbc0b76a021be40 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00960226556.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5334057227faaecfdcc9d3f20edacacc88653127364d9cc740445a8eede60ae6 +size 139308 diff --git a/datasets/openslr_yoruba/yom_07508_00965345335.wav b/datasets/openslr_yoruba/yom_07508_00965345335.wav new file mode 100644 index 0000000000000000000000000000000000000000..07a8f019639fd148b3b334d2e9843cacc11ab6c8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00965345335.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e21bd0c98bf72ea5209382de6b20874f10b2747c81c4968c5f6a8bcd679cf3 +size 196652 diff --git a/datasets/openslr_yoruba/yom_07508_00977257609.wav b/datasets/openslr_yoruba/yom_07508_00977257609.wav new file mode 100644 index 0000000000000000000000000000000000000000..b88a055c0cfc0056b838926cc58907a34a45059f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00977257609.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38426417ca2d4f55dfc9d7996a68ca9eec7f7a413f1539b43e08d11ed5ccbe1d +size 204844 diff --git a/datasets/openslr_yoruba/yom_07508_00981058538.wav b/datasets/openslr_yoruba/yom_07508_00981058538.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad30956e3b86370c44c2304d176936bee94a29d3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_00981058538.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902853c1dc66e167003400fbacdc4ea0d91c96fe5ff0949699dbb5efb27b9305 +size 229420 diff --git a/datasets/openslr_yoruba/yom_07508_01016747625.wav b/datasets/openslr_yoruba/yom_07508_01016747625.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb4dd433ec07ec31016a4699a4f667c4cb02c26e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01016747625.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dea44d4e90c950266740d5d30cfb35246eba620a61c17b3fe663fd8946d5b0c +size 245804 diff --git a/datasets/openslr_yoruba/yom_07508_01024177992.wav b/datasets/openslr_yoruba/yom_07508_01024177992.wav new file mode 100644 index 0000000000000000000000000000000000000000..20229b0e4fefb26fd0bd80e70a03dd0bc5fd73d8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01024177992.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46f89044654cdea20da08cb2caaa4855f39a1e4abefa4c83a9998f4c9857478 +size 237612 diff --git a/datasets/openslr_yoruba/yom_07508_01040838676.wav b/datasets/openslr_yoruba/yom_07508_01040838676.wav new file mode 100644 index 0000000000000000000000000000000000000000..f130b76c899a33a716af0a3bcede6c19de417b41 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01040838676.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e477ba9ccebc54dc23e1c17afa46c4d6da3db1a3636f61fc34d361d40dee1f9 +size 360492 diff --git a/datasets/openslr_yoruba/yom_07508_01052355386.wav b/datasets/openslr_yoruba/yom_07508_01052355386.wav new file mode 100644 index 0000000000000000000000000000000000000000..cde73c4adec54f3c43cfda3c6b1672cc3e05fbab --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01052355386.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bccbeb4f757d603ae0eeb92272a9ed2b9e75ae90c6dcd376b358d8f44910a56 +size 475180 diff --git a/datasets/openslr_yoruba/yom_07508_01062218695.wav b/datasets/openslr_yoruba/yom_07508_01062218695.wav new file mode 100644 index 0000000000000000000000000000000000000000..bad61872e69aac3e7ed17c9c1475652c6ef38bff --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01062218695.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8370de230ccf4cd328e6ef7447b007ecff72206928ded5e927bc768ffdfee912 +size 188460 diff --git a/datasets/openslr_yoruba/yom_07508_01077551043.wav b/datasets/openslr_yoruba/yom_07508_01077551043.wav new file mode 100644 index 0000000000000000000000000000000000000000..533b46436f2a0d330b3940f3536c718aaf2fceb3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01077551043.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f357e4ebbac1db162b084212dfef6ef15a94cfa2f0ab3f55ddc1ad9a74d35a64 +size 245804 diff --git a/datasets/openslr_yoruba/yom_07508_01087474451.wav b/datasets/openslr_yoruba/yom_07508_01087474451.wav new file mode 100644 index 0000000000000000000000000000000000000000..716f09aece83e8bd13628a36a7b734e2ce8328db --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01087474451.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf50ad1d19a36e254aaff8c3aa973a2828deddda24e6ae519b7a0aada1f32b1 +size 139308 diff --git a/datasets/openslr_yoruba/yom_07508_01126822000.wav b/datasets/openslr_yoruba/yom_07508_01126822000.wav new file mode 100644 index 0000000000000000000000000000000000000000..5fc3cacfe1009e66dcba5705b9bb35409286c9c3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01126822000.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d7d21acd90252b35214d93c6463854e3de31bfc64350bea67b7fe2fcac6e9d +size 475180 diff --git a/datasets/openslr_yoruba/yom_07508_01169314638.wav b/datasets/openslr_yoruba/yom_07508_01169314638.wav new file mode 100644 index 0000000000000000000000000000000000000000..faca6f59498c3b654e4d08083b63ae921f2742cd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01169314638.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b242a2af33eea1ab9bd8d59774974824ea4a8cecefc614dda6fcbe19424b4e7 +size 163884 diff --git a/datasets/openslr_yoruba/yom_07508_01180990019.wav b/datasets/openslr_yoruba/yom_07508_01180990019.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ab2ff47afde96c5b3598c9b81d486b24c72b602 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01180990019.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8318f002e78f784e394144a30e91f577acd144261be2741f1ddce83453bb88ee +size 360492 diff --git a/datasets/openslr_yoruba/yom_07508_01264881795.wav b/datasets/openslr_yoruba/yom_07508_01264881795.wav new file mode 100644 index 0000000000000000000000000000000000000000..04c253637e490cc5bab3b193aef72ab93ceeae68 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01264881795.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719642a74fb3735fcb672de0f333e5699b2e744ea7fea59fd42e52d9aa4f137f +size 180268 diff --git a/datasets/openslr_yoruba/yom_07508_01283773434.wav b/datasets/openslr_yoruba/yom_07508_01283773434.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c02fb59e5adf9f508d3b1ea632feb95aab09a6f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01283773434.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8171dcb95c310dc0b7aa47f2b2fca94479c1e8773f7de6be06bb807e9011d17 +size 475180 diff --git a/datasets/openslr_yoruba/yom_07508_01290286199.wav b/datasets/openslr_yoruba/yom_07508_01290286199.wav new file mode 100644 index 0000000000000000000000000000000000000000..4752e8bf5f0caf5cadb41f5ea6ac37079d885105 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01290286199.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04eee178a58c6fbef1d0fb3a3a7eb01ab6354ec68643b84b3dab326eac23a536 +size 409644 diff --git a/datasets/openslr_yoruba/yom_07508_01340339424.wav b/datasets/openslr_yoruba/yom_07508_01340339424.wav new file mode 100644 index 0000000000000000000000000000000000000000..5172fbcc80ae6095ad33a1d189e2b20f679297d3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01340339424.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e1d0f7aa170363a8cd6b5600e362bedfe2233992c7ab679077fe81c58f596c +size 401452 diff --git a/datasets/openslr_yoruba/yom_07508_01367220977.wav b/datasets/openslr_yoruba/yom_07508_01367220977.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3cdf15978795b160a6e9033632b874f6220e0cd --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01367220977.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244ab3dcf91c6940c7863452f0c144abce7de4f38ecba849914d99e4f5055bd1 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_01439327770.wav b/datasets/openslr_yoruba/yom_07508_01439327770.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1fb44143ac8b976b323f60c476932e41b85ae25 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01439327770.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27964f6b8e96e5fce0d2facbe275cc8f907da94478a7531825791a303e6ae9d6 +size 147500 diff --git a/datasets/openslr_yoruba/yom_07508_01445645895.wav b/datasets/openslr_yoruba/yom_07508_01445645895.wav new file mode 100644 index 0000000000000000000000000000000000000000..510b31d2ae64b6db4cc334fbaf74de22760d273f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01445645895.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2dc97984b98b425e25d2db1d9b7bb00e6ea0b56e9a3ddc6937098a24352a9a +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_01453126064.wav b/datasets/openslr_yoruba/yom_07508_01453126064.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f156bc5d8caa939780751147e349a4944adfe7b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01453126064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1791bd01d17f2906889a559c42ad478ad162894e15b5031c62f0b29a0af14986 +size 155692 diff --git a/datasets/openslr_yoruba/yom_07508_01520693898.wav b/datasets/openslr_yoruba/yom_07508_01520693898.wav new file mode 100644 index 0000000000000000000000000000000000000000..728f1c3a422f5ead746bb1502f11376a8c79e40c --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01520693898.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332833e4ac55d54c56107287cfb72f1e077e86a1308d3f24ef5011b5702ec7a2 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_01538910519.wav b/datasets/openslr_yoruba/yom_07508_01538910519.wav new file mode 100644 index 0000000000000000000000000000000000000000..371f046edfb221e527e927f109240347674dc2ee --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01538910519.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a358a226ced0c300b01c90713c49b04d6d5b7482cff4a7c61c809e4905c7f58 +size 155692 diff --git a/datasets/openslr_yoruba/yom_07508_01571809569.wav b/datasets/openslr_yoruba/yom_07508_01571809569.wav new file mode 100644 index 0000000000000000000000000000000000000000..3483a70d21a8a75cb05b29407c38e6e3d10cea50 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01571809569.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a0722aa702a2eb5e64ab2922d6594770ab52ac2b701d5c3a9970b3daa34c1c +size 155692 diff --git a/datasets/openslr_yoruba/yom_07508_01575138751.wav b/datasets/openslr_yoruba/yom_07508_01575138751.wav new file mode 100644 index 0000000000000000000000000000000000000000..d527d40543db777ed03f4bd10be72dfab94a342a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01575138751.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0f43435cc51ab46abb75c1b75c18e8350bf0a8327ee9699537d7a9f987be16 +size 155692 diff --git a/datasets/openslr_yoruba/yom_07508_01575305546.wav b/datasets/openslr_yoruba/yom_07508_01575305546.wav new file mode 100644 index 0000000000000000000000000000000000000000..35cda8edcb0ae74cade1f1633bc29cff577d3f22 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01575305546.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:009ac0c1b40835f6109d1bbe79c7295b7101751ad3d6d616358096326ec0283f +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_01585466389.wav b/datasets/openslr_yoruba/yom_07508_01585466389.wav new file mode 100644 index 0000000000000000000000000000000000000000..6a56b6c79564edb02a07d7f010f42035738ed14e --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01585466389.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84c51823d31a3213525fd1d166fdd03241d170981c822648047d14995983753a +size 352300 diff --git a/datasets/openslr_yoruba/yom_07508_01590641493.wav b/datasets/openslr_yoruba/yom_07508_01590641493.wav new file mode 100644 index 0000000000000000000000000000000000000000..49e40db8f2cab3c4610070bcc656b88728b58091 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01590641493.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85d8ffdeedaa573fb6bb358ab2078a66ffce34941463427a08a0bfa6d10daf6 +size 262188 diff --git a/datasets/openslr_yoruba/yom_07508_01609673711.wav b/datasets/openslr_yoruba/yom_07508_01609673711.wav new file mode 100644 index 0000000000000000000000000000000000000000..03c091ee6b00b30923572b890ea548b246e54748 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01609673711.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f144a439224808e1aba578bced20bc9003fb567bfb58cde9ae2218859993a6f1 +size 221228 diff --git a/datasets/openslr_yoruba/yom_07508_01661444061.wav b/datasets/openslr_yoruba/yom_07508_01661444061.wav new file mode 100644 index 0000000000000000000000000000000000000000..800618affeef491285b1866b8fa507d938216564 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01661444061.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fb364bc522b48d564855837e39c1601acc0328213b5c746ed0fc31c42f2e4a +size 270380 diff --git a/datasets/openslr_yoruba/yom_07508_01668590473.wav b/datasets/openslr_yoruba/yom_07508_01668590473.wav new file mode 100644 index 0000000000000000000000000000000000000000..490ba3c173ee875584ce723f19453ab590b62048 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01668590473.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d135efde6c9348abb41daaadcb83ae4ccf1ba1c79f3c8be57064180bae8086e0 +size 344108 diff --git a/datasets/openslr_yoruba/yom_07508_01690377335.wav b/datasets/openslr_yoruba/yom_07508_01690377335.wav new file mode 100644 index 0000000000000000000000000000000000000000..e166743333c761984771525269ce2fc577db85a5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01690377335.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807420eb6bc9715cd00d3733eea1443899147cfcd8a5bbf26abaea01a6132480 +size 286764 diff --git a/datasets/openslr_yoruba/yom_07508_01765724710.wav b/datasets/openslr_yoruba/yom_07508_01765724710.wav new file mode 100644 index 0000000000000000000000000000000000000000..160d7192ab670a39bd5edfdb7ee6921321ddb51d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01765724710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e112150f42bccb5ae98e9c911e928ed895bbdc380f02852532fc2853af1da6c +size 401452 diff --git a/datasets/openslr_yoruba/yom_07508_01766470605.wav b/datasets/openslr_yoruba/yom_07508_01766470605.wav new file mode 100644 index 0000000000000000000000000000000000000000..9fceb0cc6441d56e77488fa5d651db76d7c2e94d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01766470605.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44571d1d27f40563d351eac9d8b2100d7d8ab62ab2e123fd0ed7d903fbf231c2 +size 196652 diff --git a/datasets/openslr_yoruba/yom_07508_01768981701.wav b/datasets/openslr_yoruba/yom_07508_01768981701.wav new file mode 100644 index 0000000000000000000000000000000000000000..50aeb653065110f95fb52486db2ded6cfb48ce8f --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01768981701.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf138f8ea5f5b6f8b29314ebed14c332473b79fb0b9b3a2e1393bc075077a1a2 +size 286764 diff --git a/datasets/openslr_yoruba/yom_07508_01781551619.wav b/datasets/openslr_yoruba/yom_07508_01781551619.wav new file mode 100644 index 0000000000000000000000000000000000000000..16767e084302e93f3d68e2e4bcb01102bbf4c2cf --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01781551619.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03aa5c90018af2f452e431eba29f5eba5dbbe71e86ffe23b7745d3c9dedaddb5 +size 294956 diff --git a/datasets/openslr_yoruba/yom_07508_01785489165.wav b/datasets/openslr_yoruba/yom_07508_01785489165.wav new file mode 100644 index 0000000000000000000000000000000000000000..45f0a9d0c6854c6b6c31448c46dde52846c4a6d7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01785489165.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363671fcf268ae87e64d54196786e2ff6af5d85a2426cb91e0e256ee038220ea +size 172076 diff --git a/datasets/openslr_yoruba/yom_07508_01790608095.wav b/datasets/openslr_yoruba/yom_07508_01790608095.wav new file mode 100644 index 0000000000000000000000000000000000000000..b647a3ed08d7cc6f9fd4890e3ac06e5adea5a08a --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01790608095.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed1a917e2a154172d0518d084bcc3a210f96812b9595197433ba7236b134b151 +size 163884 diff --git a/datasets/openslr_yoruba/yom_07508_01795437934.wav b/datasets/openslr_yoruba/yom_07508_01795437934.wav new file mode 100644 index 0000000000000000000000000000000000000000..953204a6bd9cd3a70747f4480c222178f15e83c9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01795437934.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79535ad08a44d83862f1f3c500ee0018e77cb4c2fa70d7a1558ca017db06d123 +size 385068 diff --git a/datasets/openslr_yoruba/yom_07508_01809240756.wav b/datasets/openslr_yoruba/yom_07508_01809240756.wav new file mode 100644 index 0000000000000000000000000000000000000000..e7c0710be9d82d0251b73ad2022856daf347db34 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01809240756.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccfb26159869713196cbc90c959b9777d850cf823b22cf4c84e08aeed151d4f +size 188460 diff --git a/datasets/openslr_yoruba/yom_07508_01827557252.wav b/datasets/openslr_yoruba/yom_07508_01827557252.wav new file mode 100644 index 0000000000000000000000000000000000000000..ba2eb72a1754a0e6e46cd1c5472f0e779fdd489d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01827557252.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc6c81c02e8d481e136b7aad95830e6169f4f64850ba68cbf52fdb4c3ec068d +size 196652 diff --git a/datasets/openslr_yoruba/yom_07508_01862185631.wav b/datasets/openslr_yoruba/yom_07508_01862185631.wav new file mode 100644 index 0000000000000000000000000000000000000000..557d203b7a4da258f5d28c9ea0ad50c3d421e1b7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01862185631.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2a6b102ea40869b176b8149c60cf34ea64b3d90c9f3a62f654d1ee437eac8a +size 229420 diff --git a/datasets/openslr_yoruba/yom_07508_01901526502.wav b/datasets/openslr_yoruba/yom_07508_01901526502.wav new file mode 100644 index 0000000000000000000000000000000000000000..674e3c15cfc1a3a7072425825d8854533a55b98d --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01901526502.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c6b04790e6795e9a5289357ac475acd237eba6245578dd881e8ea70d4aa0db +size 172076 diff --git a/datasets/openslr_yoruba/yom_07508_01906115820.wav b/datasets/openslr_yoruba/yom_07508_01906115820.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc12a373bf6bb0234b222481f0905ef2d43c496b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01906115820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2302da27236f31b3822ae9c195ca05fdc983116377ecfda27ea728cf8f517ec +size 196652 diff --git a/datasets/openslr_yoruba/yom_07508_01933655369.wav b/datasets/openslr_yoruba/yom_07508_01933655369.wav new file mode 100644 index 0000000000000000000000000000000000000000..f6562e985195ca9e874089ba1dea34b9d3041bef --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01933655369.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91316527b37c00a3afcfeded52d9d29ef2ef667193d0ef21255f9aadc47dcfee +size 245804 diff --git a/datasets/openslr_yoruba/yom_07508_01950161981.wav b/datasets/openslr_yoruba/yom_07508_01950161981.wav new file mode 100644 index 0000000000000000000000000000000000000000..2269cb5525c35e45547ef1dbd2ebe79607b24a6b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01950161981.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b7036ecaa8174d4761787af0695f5dd03f3906fb0508525e32d28ffae31cb6e +size 147500 diff --git a/datasets/openslr_yoruba/yom_07508_01963431820.wav b/datasets/openslr_yoruba/yom_07508_01963431820.wav new file mode 100644 index 0000000000000000000000000000000000000000..21d747aa48694605953e2a0d62403e8c7800fc83 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01963431820.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c32bac6af2741c8b7fe1f5593b6cfea9c659216994ba762e693c6adf84346a2 +size 204844 diff --git a/datasets/openslr_yoruba/yom_07508_01969958196.wav b/datasets/openslr_yoruba/yom_07508_01969958196.wav new file mode 100644 index 0000000000000000000000000000000000000000..73cc8912d829d9a9a618dfa458e8d48d1ce70625 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01969958196.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c512c10bbc5ab67b2a94d703e41a609bde71ab1f996a92262782f044877bee8f +size 163884 diff --git a/datasets/openslr_yoruba/yom_07508_01972685591.wav b/datasets/openslr_yoruba/yom_07508_01972685591.wav new file mode 100644 index 0000000000000000000000000000000000000000..b6d6329e57695ea2058daa57878673277558da02 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01972685591.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100648fa14b1e3ca005ebd038a7af38e69a916804ac17ea69a26f570ee19a20c +size 286764 diff --git a/datasets/openslr_yoruba/yom_07508_01974100140.wav b/datasets/openslr_yoruba/yom_07508_01974100140.wav new file mode 100644 index 0000000000000000000000000000000000000000..975b10d9e28e88fcff9c270ca7544a48c47870b0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01974100140.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793688b50e3a1071e34e510f37115c6a2c9a04b330dd00166f99611437e84495 +size 221228 diff --git a/datasets/openslr_yoruba/yom_07508_01976579507.wav b/datasets/openslr_yoruba/yom_07508_01976579507.wav new file mode 100644 index 0000000000000000000000000000000000000000..094db9e38afb9dd94a6b3149b10b7361bb149a49 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_01976579507.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67efaba30171caa30434ab19c4c1eb596598edd87c00163a2c2ba86a6d2daadf +size 139308 diff --git a/datasets/openslr_yoruba/yom_07508_02047227550.wav b/datasets/openslr_yoruba/yom_07508_02047227550.wav new file mode 100644 index 0000000000000000000000000000000000000000..dfc504c03e29993b1330eba2392bfd6096c13f5b --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_02047227550.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1120341138212edf5970e50056ca6117fd3a5112fc7a730fab3f40e4f72ed7 +size 204844 diff --git a/datasets/openslr_yoruba/yom_07508_02066394496.wav b/datasets/openslr_yoruba/yom_07508_02066394496.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f42772c6b6988046b743c3f3af8a235caba23e2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_02066394496.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a289b04e56077929a44c33273d258e74e75996991ff04ccff968ea36fcbdd83 +size 221228 diff --git a/datasets/openslr_yoruba/yom_07508_02088307942.wav b/datasets/openslr_yoruba/yom_07508_02088307942.wav new file mode 100644 index 0000000000000000000000000000000000000000..4f2e2000d75b137cf796e71e907be3750372a7c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_02088307942.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f5b48c1a56e615163ad637a4391238378fe769700535f8689d24f66bc7a7ba +size 262188 diff --git a/datasets/openslr_yoruba/yom_07508_02095438771.wav b/datasets/openslr_yoruba/yom_07508_02095438771.wav new file mode 100644 index 0000000000000000000000000000000000000000..206df447d4dbc65ca8343916e639f7ecc58fada8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_02095438771.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0632e16aed56a59650482e5c7b0a1fe0b97e0fc5736bb3bcb1e6dd4aed4a800f +size 393260 diff --git a/datasets/openslr_yoruba/yom_07508_02113659767.wav b/datasets/openslr_yoruba/yom_07508_02113659767.wav new file mode 100644 index 0000000000000000000000000000000000000000..786a15b8f53faefbc8b97a7ad6ff324d9a980011 --- /dev/null +++ b/datasets/openslr_yoruba/yom_07508_02113659767.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e178f225d226ff0fd761a1ab9e48e927f83892414423d3062be8a890283378a7 +size 221228 diff --git a/datasets/openslr_yoruba/yom_08421_00023894524.wav b/datasets/openslr_yoruba/yom_08421_00023894524.wav new file mode 100644 index 0000000000000000000000000000000000000000..a31f4bfcc3aa9f4c1e55ff3418a7fcd8274746b8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00023894524.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd762585a94ea98eddb3ec9ce47c998b0213dac90da4c4388289ed83866dc246 +size 442412 diff --git a/datasets/openslr_yoruba/yom_08421_00026187240.wav b/datasets/openslr_yoruba/yom_08421_00026187240.wav new file mode 100644 index 0000000000000000000000000000000000000000..93a3b86c32e942f5f8207a8352d1a389e1dfa939 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00026187240.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862ea740c80ab932a70ca79c2ca51d4008ef7e69ac6e0f15a27898f9119e7fec +size 385068 diff --git a/datasets/openslr_yoruba/yom_08421_00044394656.wav b/datasets/openslr_yoruba/yom_08421_00044394656.wav new file mode 100644 index 0000000000000000000000000000000000000000..acda15f398c5e81450d4458b9fa57a1f7fd07844 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00044394656.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9fe5176d0f7ab2cb04984ceeff10ac7446df861c7472dcffcd65d9ece5b248f +size 417836 diff --git a/datasets/openslr_yoruba/yom_08421_00103735777.wav b/datasets/openslr_yoruba/yom_08421_00103735777.wav new file mode 100644 index 0000000000000000000000000000000000000000..6c6dc8d00f9f00e504f267c5f2d314157a0d6f48 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00103735777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56abf8eb6b6f90008fb50a28834a6ddb040882948644d44cfa1973915a28b0a7 +size 491564 diff --git a/datasets/openslr_yoruba/yom_08421_00128576148.wav b/datasets/openslr_yoruba/yom_08421_00128576148.wav new file mode 100644 index 0000000000000000000000000000000000000000..5cb0b309452e38b9d0c51eb6e870501ff6f53be3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00128576148.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbcd4e8c1aa595e9d2417bde229d9fb330bbb1288e2ea3f97e28257037f5bb67 +size 565292 diff --git a/datasets/openslr_yoruba/yom_08421_00131681191.wav b/datasets/openslr_yoruba/yom_08421_00131681191.wav new file mode 100644 index 0000000000000000000000000000000000000000..8742f361d8bf0e5754885f182260ab840344b998 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00131681191.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4408923f139ada0a283762af80503d297abc15c3524e48e73ea9af36a172d7e +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_00139174380.wav b/datasets/openslr_yoruba/yom_08421_00139174380.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6ad1ef81c02ccdded43f7c2f0f34953168db19b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00139174380.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d4a5e4d5c51af415d01d80eaf9a2e3fb87c1ffad1cd6898a0cd3043f41f436a +size 434220 diff --git a/datasets/openslr_yoruba/yom_08421_00211080379.wav b/datasets/openslr_yoruba/yom_08421_00211080379.wav new file mode 100644 index 0000000000000000000000000000000000000000..2312675cbf09802a7964b89b93e2c8e5c5e3e010 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00211080379.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c276e261638355d1d68051f96121e3877c091132cad658ae39e51fdf3a33c3c5 +size 679980 diff --git a/datasets/openslr_yoruba/yom_08421_00242094176.wav b/datasets/openslr_yoruba/yom_08421_00242094176.wav new file mode 100644 index 0000000000000000000000000000000000000000..c879015ab5419c5a6b358ef6d65c32bbc52317d0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00242094176.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b64d5b1c00b4d0a0e9907a933e411fc071bfae9d3e1e8837630e93726b7138 +size 614444 diff --git a/datasets/openslr_yoruba/yom_08421_00298781439.wav b/datasets/openslr_yoruba/yom_08421_00298781439.wav new file mode 100644 index 0000000000000000000000000000000000000000..520d10e6f107b024c7fc21c6a16d0b1b98ef99ad --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00298781439.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be3729688a8885e59fbe334ef4a268e84edcba5f2b25726150b17ac9e85b2f7 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08421_00307169252.wav b/datasets/openslr_yoruba/yom_08421_00307169252.wav new file mode 100644 index 0000000000000000000000000000000000000000..553601dad9917bea703b3ff78b1724406972c270 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00307169252.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c991953419563a6b20cada9dd70e7ce2835c88df1113e503c701f66387a44a2 +size 368684 diff --git a/datasets/openslr_yoruba/yom_08421_00321336704.wav b/datasets/openslr_yoruba/yom_08421_00321336704.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf1c806e52f666e90c26498eac32440b33dd6c7e --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00321336704.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fca8f876b06520676a54e23f0e8e17bdf3e58a9eeb863094c223197c2ddfdbd +size 294956 diff --git a/datasets/openslr_yoruba/yom_08421_00329169601.wav b/datasets/openslr_yoruba/yom_08421_00329169601.wav new file mode 100644 index 0000000000000000000000000000000000000000..877bf68834dc2c76db145c5c1b014be3cdaf12a9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00329169601.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94720d32dce9d5769c1e7746ebbb935448d7256afbe280bcb2ba54d13b0edad1 +size 376876 diff --git a/datasets/openslr_yoruba/yom_08421_00350518548.wav b/datasets/openslr_yoruba/yom_08421_00350518548.wav new file mode 100644 index 0000000000000000000000000000000000000000..37c93f62769389710b092be8e11fa26ca58ec936 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00350518548.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d3a9a0a09f61b48bc21a3b054d7ed5011f1eb039c3a2df7c122b104be6b29b +size 286764 diff --git a/datasets/openslr_yoruba/yom_08421_00373763601.wav b/datasets/openslr_yoruba/yom_08421_00373763601.wav new file mode 100644 index 0000000000000000000000000000000000000000..c37a5ba4147ee9a57c86f9d790cae78344644a81 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00373763601.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f848ad52726df155c076e15265ee15671be38fbdfd8ec2301869a5d3f06a9c9 +size 548908 diff --git a/datasets/openslr_yoruba/yom_08421_00383274940.wav b/datasets/openslr_yoruba/yom_08421_00383274940.wav new file mode 100644 index 0000000000000000000000000000000000000000..9dd1bf555f5d657d3a1495e49a099678b88c0e34 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00383274940.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f1883264cb998941fbf2c771d7ab846cb17d9fe02abdf32e1419aa432a2d42 +size 442412 diff --git a/datasets/openslr_yoruba/yom_08421_00387029447.wav b/datasets/openslr_yoruba/yom_08421_00387029447.wav new file mode 100644 index 0000000000000000000000000000000000000000..678bb32224a408b7ed8559ed29396e92948e7ee6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00387029447.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9dc75e2cfe7d150a9134954a226046f40fe0d7c3f8c194dcfb3c6dbec9b47d4 +size 434220 diff --git a/datasets/openslr_yoruba/yom_08421_00409214249.wav b/datasets/openslr_yoruba/yom_08421_00409214249.wav new file mode 100644 index 0000000000000000000000000000000000000000..ed5ae52b0cd94a19e1c79a9939d0c90421d1ee10 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00409214249.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0bad51f032136057097138aad0e8742ef320069a8273bf5abc90e67afc1b0aa +size 409644 diff --git a/datasets/openslr_yoruba/yom_08421_00418454270.wav b/datasets/openslr_yoruba/yom_08421_00418454270.wav new file mode 100644 index 0000000000000000000000000000000000000000..cbfbae43754b54a02662f77289592929fb0f8d71 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00418454270.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53bba65244eb1c7f2e922d454225b28b6f1b9ec86ca80fe16cef786eaccab063 +size 319532 diff --git a/datasets/openslr_yoruba/yom_08421_00430751064.wav b/datasets/openslr_yoruba/yom_08421_00430751064.wav new file mode 100644 index 0000000000000000000000000000000000000000..abdc7d692c6c83d38af0dc1ebaded5a1385d63dc --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00430751064.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1cef1f4021d4ce37dac670c93c0ca9a59f0d5b3e2c64c06ca59f85495e1585 +size 401452 diff --git a/datasets/openslr_yoruba/yom_08421_00439142911.wav b/datasets/openslr_yoruba/yom_08421_00439142911.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a71a70c34503359a7a2ff272c13448f28ee0fd0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00439142911.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb273f9051eb05ed18bb5feaac9d34a04bc8f9774cc6870520f61a43994a12cf +size 589868 diff --git a/datasets/openslr_yoruba/yom_08421_00439984515.wav b/datasets/openslr_yoruba/yom_08421_00439984515.wav new file mode 100644 index 0000000000000000000000000000000000000000..48781561984cfc96c1ddebef1663a62875006bbc --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00439984515.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579c2cd691732275d2f1cd8779434c2c1c05d01680ff0292e2256d09e30ea787 +size 360492 diff --git a/datasets/openslr_yoruba/yom_08421_00448603685.wav b/datasets/openslr_yoruba/yom_08421_00448603685.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ce840698daa9f1a4a14beab3a52b120a0cfa81c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00448603685.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0ddbf4cde6fe1979f9bf6dbec5f9edb6ace21e7751b7401c2f1e05d527b428 +size 598060 diff --git a/datasets/openslr_yoruba/yom_08421_00452539703.wav b/datasets/openslr_yoruba/yom_08421_00452539703.wav new file mode 100644 index 0000000000000000000000000000000000000000..2827ede48fe8a25dc0107653dc08abd83572a9b0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00452539703.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd7b543977925a3a86edd239f53dc7c543e5847600e855237de24414f00b97b +size 475180 diff --git a/datasets/openslr_yoruba/yom_08421_00493295037.wav b/datasets/openslr_yoruba/yom_08421_00493295037.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5c2a47473541c348ab7dffb301b2eee28099b9c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00493295037.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe9ad293279c11137b2fa5948bf97c34ba25fd5f5588f77b2c7d103ddf9b79d +size 458796 diff --git a/datasets/openslr_yoruba/yom_08421_00500408617.wav b/datasets/openslr_yoruba/yom_08421_00500408617.wav new file mode 100644 index 0000000000000000000000000000000000000000..6666e570bc23023a8c8bcdab533c5ccdfedc14b3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00500408617.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27539e5a4e7af17c2acc8d37df947ae8bb681e2ef772835f56c5ebe8199555db +size 327724 diff --git a/datasets/openslr_yoruba/yom_08421_00502456730.wav b/datasets/openslr_yoruba/yom_08421_00502456730.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ba8075c54a61cc7ee62e53a1300919d8eefe73f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00502456730.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dae1db41c8e8fd626fb0db1b886a40ab01beca19efb43f9ba4506548b68e02d +size 557100 diff --git a/datasets/openslr_yoruba/yom_08421_00546023265.wav b/datasets/openslr_yoruba/yom_08421_00546023265.wav new file mode 100644 index 0000000000000000000000000000000000000000..4e1ad10a855fe87cc3b45eba1e932eda05b468a4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00546023265.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81cb8c911afd1462747797ad3a81b29c9eb1e17596057614e643474f963ff16b +size 442412 diff --git a/datasets/openslr_yoruba/yom_08421_00547836933.wav b/datasets/openslr_yoruba/yom_08421_00547836933.wav new file mode 100644 index 0000000000000000000000000000000000000000..85dc570362a371bba318dcd50d8f316efa753fb2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00547836933.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46019e243e8a93434873e9c8de4a3414d651f37fddf15ba52f6d1d39581032d8 +size 335916 diff --git a/datasets/openslr_yoruba/yom_08421_00588643783.wav b/datasets/openslr_yoruba/yom_08421_00588643783.wav new file mode 100644 index 0000000000000000000000000000000000000000..6c3fcc8215160a5b4ee64acb0803eb36e93025d7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00588643783.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9052085daa71aec95fddecad0a3b0ac9d26b9daf39ec82fa9bc89286418ffb +size 360492 diff --git a/datasets/openslr_yoruba/yom_08421_00603010627.wav b/datasets/openslr_yoruba/yom_08421_00603010627.wav new file mode 100644 index 0000000000000000000000000000000000000000..30bf39ffd4ea99bff6422af80dc7afa654cb1e04 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00603010627.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24adf1471625dee51dfac38cabade0ec1a850b192d5ba412345a1cdbf5276df +size 524332 diff --git a/datasets/openslr_yoruba/yom_08421_00627964110.wav b/datasets/openslr_yoruba/yom_08421_00627964110.wav new file mode 100644 index 0000000000000000000000000000000000000000..7cf5a0a0fd3c07485c3bee4f9b6237861d8e5557 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00627964110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed68bcb0096481839fc9cfff97280a90063f65c0e7a50da65176102de6b5d2d8 +size 557100 diff --git a/datasets/openslr_yoruba/yom_08421_00680851017.wav b/datasets/openslr_yoruba/yom_08421_00680851017.wav new file mode 100644 index 0000000000000000000000000000000000000000..3f12ae2af89802ac4979a6b9e7e5bfc3cd608c93 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00680851017.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728402c752a28ba0ca079b6b2f961012b0f3592d96b329682efdd55bdaf87708 +size 581676 diff --git a/datasets/openslr_yoruba/yom_08421_00705794618.wav b/datasets/openslr_yoruba/yom_08421_00705794618.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb1ea25473bc984bb73e6b241245a64354c54935 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00705794618.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd6f5c28429dc695e2b5dbd85cb54b20b2cc8d575c3ffc0c9fd5fb3fd3a4324 +size 614444 diff --git a/datasets/openslr_yoruba/yom_08421_00732642445.wav b/datasets/openslr_yoruba/yom_08421_00732642445.wav new file mode 100644 index 0000000000000000000000000000000000000000..fc813fddb68239bf1c36e944cf90f6643b7f67ff --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00732642445.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b4312abb7a017f6e427405a63718cb1f4fcc33787738b4243d2a9c739305db +size 688172 diff --git a/datasets/openslr_yoruba/yom_08421_00812246475.wav b/datasets/openslr_yoruba/yom_08421_00812246475.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f442f9c98d0904b616566a50a560a9d4af90b1c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00812246475.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc462bc4bfd3bb2e25065bcaa555a6003679ed97c8ccaefe853bd06bacca900d +size 491564 diff --git a/datasets/openslr_yoruba/yom_08421_00831872975.wav b/datasets/openslr_yoruba/yom_08421_00831872975.wav new file mode 100644 index 0000000000000000000000000000000000000000..7554ace601f8e0ce177b1091d7331d23e170fa1c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00831872975.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7568ccd6eb34f83b305666de630f9465f6154956c44bb393cbe7c94e295f50b7 +size 458796 diff --git a/datasets/openslr_yoruba/yom_08421_00837672219.wav b/datasets/openslr_yoruba/yom_08421_00837672219.wav new file mode 100644 index 0000000000000000000000000000000000000000..5d9f5a21c13b9771b09900ffbb1fa2de897a3510 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00837672219.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2366b5100f7189993dde52df58e3086f889bc076806858b86bc6a4aec63f3334 +size 270380 diff --git a/datasets/openslr_yoruba/yom_08421_00840311012.wav b/datasets/openslr_yoruba/yom_08421_00840311012.wav new file mode 100644 index 0000000000000000000000000000000000000000..c1b4a1e7f1b25e19c7484b1b909827145781c005 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00840311012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d26371e09672ae75af2f5a4044c7a753bf07792bedef1c2d7b38cc286b020f +size 458796 diff --git a/datasets/openslr_yoruba/yom_08421_00848985328.wav b/datasets/openslr_yoruba/yom_08421_00848985328.wav new file mode 100644 index 0000000000000000000000000000000000000000..eb76bc9f9138d1070f104f75697790ccc88eb5a1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00848985328.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bbf39a4d79508720e243fb17c22dc559ecc56b7663dd9d967ebcb0771336c8 +size 475180 diff --git a/datasets/openslr_yoruba/yom_08421_00859421512.wav b/datasets/openslr_yoruba/yom_08421_00859421512.wav new file mode 100644 index 0000000000000000000000000000000000000000..d3bcccf4108e5bf9dee92c0d6730aaaee2839230 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00859421512.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1cf7657c0ce808061dfcc0e45d5ce2d5087d48f9f63325be1b47fe1724f890 +size 532524 diff --git a/datasets/openslr_yoruba/yom_08421_00868622672.wav b/datasets/openslr_yoruba/yom_08421_00868622672.wav new file mode 100644 index 0000000000000000000000000000000000000000..523509f397309483c689375f7a74034769c89a4e --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00868622672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b02994837364236ba4a619b720f25345e88053f5106a5df7bb657e6cdd32551 +size 426028 diff --git a/datasets/openslr_yoruba/yom_08421_00869088347.wav b/datasets/openslr_yoruba/yom_08421_00869088347.wav new file mode 100644 index 0000000000000000000000000000000000000000..999b3f3a834e73f949ebaee1fcd42a9f53600fe3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00869088347.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1cc3ab2be307c0ae2b1600879c2972c5e4ee005eba27bc93a4d9907b4c31667 +size 303148 diff --git a/datasets/openslr_yoruba/yom_08421_00902730074.wav b/datasets/openslr_yoruba/yom_08421_00902730074.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd39f45bb5283d800626d5d539ff540bd7ba622f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00902730074.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c286bc78b9ea132cb2ca945aa08e0feb54bdddd69384b7a842cd481e134b6b12 +size 344108 diff --git a/datasets/openslr_yoruba/yom_08421_00934950855.wav b/datasets/openslr_yoruba/yom_08421_00934950855.wav new file mode 100644 index 0000000000000000000000000000000000000000..835db077fcf294165aa91b68c1ba6e07eb424835 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00934950855.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4858ad9b17d65f3c16159b2ba09d5e72cab45dd372b41d65798652d8f794a685 +size 393260 diff --git a/datasets/openslr_yoruba/yom_08421_00942326564.wav b/datasets/openslr_yoruba/yom_08421_00942326564.wav new file mode 100644 index 0000000000000000000000000000000000000000..89ef7c6bc90315915e259e4c43b4c9f5aadf9d2a --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_00942326564.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95852a4ceb444f1346b8f37d3481686fb72459a820eea6862efe044da19e6679 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08421_01007218935.wav b/datasets/openslr_yoruba/yom_08421_01007218935.wav new file mode 100644 index 0000000000000000000000000000000000000000..01b49164b2af39b50cb26f7646f243ecfc351e71 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01007218935.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caea9ddd813dd16315dbf1f911b0bd3b80dd5236b88faae113a25a8ae53c9958 +size 360492 diff --git a/datasets/openslr_yoruba/yom_08421_01064995519.wav b/datasets/openslr_yoruba/yom_08421_01064995519.wav new file mode 100644 index 0000000000000000000000000000000000000000..ab5b9988bf4b3cc9e0246589c788ec813f72d196 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01064995519.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffca09431e0056cee84430125784e1bf7be33cc4881a787130df9311130876f +size 376876 diff --git a/datasets/openslr_yoruba/yom_08421_01105719994.wav b/datasets/openslr_yoruba/yom_08421_01105719994.wav new file mode 100644 index 0000000000000000000000000000000000000000..94bd0fbef8cf446a33813aba887f3ddd6da612ea --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01105719994.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179538d794e9a8750c8e510ea28f5b0bacb5300a951acb6cf6fc6b65ef88e1d2 +size 360492 diff --git a/datasets/openslr_yoruba/yom_08421_01106977022.wav b/datasets/openslr_yoruba/yom_08421_01106977022.wav new file mode 100644 index 0000000000000000000000000000000000000000..8ed1231548d9d9f974e4cf8a7070d0c01b786b2e --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01106977022.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3c163827679bdf2648c69f5bec78fe23156c19ebaa51c88dc4c2ea29275b39 +size 901164 diff --git a/datasets/openslr_yoruba/yom_08421_01108237170.wav b/datasets/openslr_yoruba/yom_08421_01108237170.wav new file mode 100644 index 0000000000000000000000000000000000000000..c3066a2d8cd1338f8a01157799dcfaec23fa060f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01108237170.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a17f58eee2b86b2bf78377512dce0e135b7a5328382b980d8bdf5fab21cc8b4 +size 434220 diff --git a/datasets/openslr_yoruba/yom_08421_01134010782.wav b/datasets/openslr_yoruba/yom_08421_01134010782.wav new file mode 100644 index 0000000000000000000000000000000000000000..0e2d183b5d0dfa6e10cea90dbd3b992fdac3d492 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01134010782.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0214b3eb1166ade801388528d28a822b5f56ada8a1f4bb68f95bf7cebf48ae2e +size 434220 diff --git a/datasets/openslr_yoruba/yom_08421_01153477805.wav b/datasets/openslr_yoruba/yom_08421_01153477805.wav new file mode 100644 index 0000000000000000000000000000000000000000..a93f23e65bb3b2cdb8cde9ce3192c55523bf5c05 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01153477805.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab928e84d082d37869d411905715c6c1cab2824d305afd2476b590426bffe1f2 +size 688172 diff --git a/datasets/openslr_yoruba/yom_08421_01180079847.wav b/datasets/openslr_yoruba/yom_08421_01180079847.wav new file mode 100644 index 0000000000000000000000000000000000000000..5ef4b700a140f7b1243803e590acb7ef89b5ed5b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01180079847.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e618821893c2c21b182abd54c31199b2cc4fc576cb21b7bc9b2eb661888a5b +size 606252 diff --git a/datasets/openslr_yoruba/yom_08421_01180764639.wav b/datasets/openslr_yoruba/yom_08421_01180764639.wav new file mode 100644 index 0000000000000000000000000000000000000000..8d59af77a7fb7c8baaf56409dd3612b4e1ba9554 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01180764639.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478f126a691f3b719988b6cec96c78251f58c5a386209a722063a0caa831be0b +size 344108 diff --git a/datasets/openslr_yoruba/yom_08421_01191226543.wav b/datasets/openslr_yoruba/yom_08421_01191226543.wav new file mode 100644 index 0000000000000000000000000000000000000000..416f4bb1124edaa5b2f6fe1da137831acf59a66b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01191226543.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86832c8976a1ef6d7307386d2123034d0e2b187edb472c1a20af965f9f3c6fa +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_01200800536.wav b/datasets/openslr_yoruba/yom_08421_01200800536.wav new file mode 100644 index 0000000000000000000000000000000000000000..a55a2dd22bf9301b4442d1d1bdc09d21cf4ce207 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01200800536.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e44b7de1770404d39f754d4393707c7d25ed4ec92d8b22c5a1bdc0a6dc0ffd +size 434220 diff --git a/datasets/openslr_yoruba/yom_08421_01229325486.wav b/datasets/openslr_yoruba/yom_08421_01229325486.wav new file mode 100644 index 0000000000000000000000000000000000000000..696c8e5dd27dc1be353e06607544e40b6234983e --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01229325486.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d764ade31a18e1ae9c88b41256239bfd39cd3266c79882a61a4ea7d13e17c70f +size 335916 diff --git a/datasets/openslr_yoruba/yom_08421_01239481855.wav b/datasets/openslr_yoruba/yom_08421_01239481855.wav new file mode 100644 index 0000000000000000000000000000000000000000..6f04b368cc246380d0e51cfc6053ae6b2fd3fe77 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01239481855.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cdbc1ad309c5e32e505c278649707cb48d2e01a1a2dda6af45de0ca7ce2dd9f +size 278572 diff --git a/datasets/openslr_yoruba/yom_08421_01255874008.wav b/datasets/openslr_yoruba/yom_08421_01255874008.wav new file mode 100644 index 0000000000000000000000000000000000000000..e1305b4cc1758cd442b087a5aaf204b5fe721a58 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01255874008.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d83af5733d208b6774f989ee719620154e945544903ba5138d38d651a79db8e +size 761900 diff --git a/datasets/openslr_yoruba/yom_08421_01265504326.wav b/datasets/openslr_yoruba/yom_08421_01265504326.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e97c1d66282053b8126ebe53447be495019f3e3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01265504326.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465129b1b80590dfc81c3bdb0aea75fa76ce69617fd08bd5104a25e20b7e9fe7 +size 393260 diff --git a/datasets/openslr_yoruba/yom_08421_01266563036.wav b/datasets/openslr_yoruba/yom_08421_01266563036.wav new file mode 100644 index 0000000000000000000000000000000000000000..9fa97e1c2b25a719d608b7c6d96e2d655f2455e0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01266563036.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ae68549598da85ee7fabfe063f25020ea431e7003aba1221b4cc4049cfe0c8 +size 352300 diff --git a/datasets/openslr_yoruba/yom_08421_01269214491.wav b/datasets/openslr_yoruba/yom_08421_01269214491.wav new file mode 100644 index 0000000000000000000000000000000000000000..f572a3ea13ae9d8fa1bacc15c6bf6ebad00179c4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01269214491.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149a22fb7f4249e1fc4011d4d80d8e10fa69220e898b1f88732f98fd3dab0e24 +size 589868 diff --git a/datasets/openslr_yoruba/yom_08421_01276848509.wav b/datasets/openslr_yoruba/yom_08421_01276848509.wav new file mode 100644 index 0000000000000000000000000000000000000000..0738b9faaa2e5af36cd45548a636c6a0b186694b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01276848509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3734a80a2ff94ed5297214e51c60f69bcda96f456032589e8fca51151434d +size 376876 diff --git a/datasets/openslr_yoruba/yom_08421_01276850983.wav b/datasets/openslr_yoruba/yom_08421_01276850983.wav new file mode 100644 index 0000000000000000000000000000000000000000..15334ea0ce1e3d64341d5e35517dd7457be40fba --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01276850983.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f5102afe2c83303ac9d9c80eafb5667795fd6666abf47dfb619feb3890c1151 +size 286764 diff --git a/datasets/openslr_yoruba/yom_08421_01306989105.wav b/datasets/openslr_yoruba/yom_08421_01306989105.wav new file mode 100644 index 0000000000000000000000000000000000000000..d245ece2831cc7ece5ef2c1fcbfc7b76e1d672aa --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01306989105.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0750fc8f4c0476f3dce67f8ea9a5005f02e4e23b0ea4036647d16ae431b411e3 +size 286764 diff --git a/datasets/openslr_yoruba/yom_08421_01357255384.wav b/datasets/openslr_yoruba/yom_08421_01357255384.wav new file mode 100644 index 0000000000000000000000000000000000000000..76ad5fd3f95b702882b9dac789b72a569ca68bb9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01357255384.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c06720eed424ff769002731505d41f5f59daaef20bf049dadb7c98788006dd +size 647212 diff --git a/datasets/openslr_yoruba/yom_08421_01358966129.wav b/datasets/openslr_yoruba/yom_08421_01358966129.wav new file mode 100644 index 0000000000000000000000000000000000000000..0efcb65e19c4864af31f6a7f12707141418eca0c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01358966129.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449d279ed7d9c14df5454aa09de7f006a434f3f3f74a2fa46018e6435e347fc4 +size 319532 diff --git a/datasets/openslr_yoruba/yom_08421_01373096942.wav b/datasets/openslr_yoruba/yom_08421_01373096942.wav new file mode 100644 index 0000000000000000000000000000000000000000..f0a24914bc7082c4aa8e122d85d9bc6de820ebb5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01373096942.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d7757f4e7b140de6c72f756e0304bbdb4644e62907963f358f5808588346ab +size 434220 diff --git a/datasets/openslr_yoruba/yom_08421_01398537785.wav b/datasets/openslr_yoruba/yom_08421_01398537785.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d3828798512c743a96790b26c78e4710b6b3406 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01398537785.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d67be62b1d0fdba2f09af8195eb6997f502bcfca293aa15f33ceb1bf66ce4dc0 +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_01419614822.wav b/datasets/openslr_yoruba/yom_08421_01419614822.wav new file mode 100644 index 0000000000000000000000000000000000000000..cc36a3458706a900824c17c2cf35f9389a3103e3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01419614822.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2987ede9f1de0bb55cbf96cb442c5fdb141bd7f0862e8b5ed0b2580328869f4e +size 417836 diff --git a/datasets/openslr_yoruba/yom_08421_01458559247.wav b/datasets/openslr_yoruba/yom_08421_01458559247.wav new file mode 100644 index 0000000000000000000000000000000000000000..675e469b111f0e3b9c81590cd32d0ecf1d63824e --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01458559247.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc41cba1c0f030ca85da8f71fa9d7aa7784f2e432f76458a79f1a981bd5e6361 +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_01471313862.wav b/datasets/openslr_yoruba/yom_08421_01471313862.wav new file mode 100644 index 0000000000000000000000000000000000000000..a145b5990ed9b0f6c2918a641d75443adf78cec0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01471313862.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:921d378810571a5e129bdbfed5af15043f200307006bce02bfe30cf52e73c29b +size 565292 diff --git a/datasets/openslr_yoruba/yom_08421_01478345402.wav b/datasets/openslr_yoruba/yom_08421_01478345402.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ea693d2d8cd1c5885f488ceb5eba5d61cf9e759 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01478345402.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e184bbcdfe157b81831379ab2a02576f2e776dd384b0b12d56b113e01f8954 +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_01497838425.wav b/datasets/openslr_yoruba/yom_08421_01497838425.wav new file mode 100644 index 0000000000000000000000000000000000000000..f5c2ae25fa15f5f1a57982c091b8e6c46ef883b4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01497838425.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5938294633ecd65ebaffd9e08feb07e213a8357007fe7d8bf0f3fefb6140fe3a +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_01501094045.wav b/datasets/openslr_yoruba/yom_08421_01501094045.wav new file mode 100644 index 0000000000000000000000000000000000000000..0bd26a806594352d76770273cf27c92f9cfcb33b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01501094045.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8a1f89959251e3a21c5a22a7e734bb6abc82a6b3713a9c34556f42ca4cdbec +size 393260 diff --git a/datasets/openslr_yoruba/yom_08421_01509728815.wav b/datasets/openslr_yoruba/yom_08421_01509728815.wav new file mode 100644 index 0000000000000000000000000000000000000000..e4e2b570aa37f49178b077dc359b8d7cb69d1c9f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01509728815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4be53ac86c1022f1e45b1359bddb3e4413527ab5d3613801c647f96b4da68ff1 +size 589868 diff --git a/datasets/openslr_yoruba/yom_08421_01517793806.wav b/datasets/openslr_yoruba/yom_08421_01517793806.wav new file mode 100644 index 0000000000000000000000000000000000000000..4bdc5b9c2212e980528e18e4df8824ccb9128e82 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01517793806.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854d626a93f3c7bc6d0eb961e8683a31fe76cbb10e23c7d8995437fcc76a559c +size 507948 diff --git a/datasets/openslr_yoruba/yom_08421_01567028528.wav b/datasets/openslr_yoruba/yom_08421_01567028528.wav new file mode 100644 index 0000000000000000000000000000000000000000..eba313882ca2a8bdd65c841a0b76f5077af45b3b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01567028528.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6399369e1d8ecef8a0194159557e021b204dd665874734d8c2e3a4c9e389b981 +size 393260 diff --git a/datasets/openslr_yoruba/yom_08421_01678375678.wav b/datasets/openslr_yoruba/yom_08421_01678375678.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ee196dd3eab8830b3c94a1ae85ae0d2d3e2012c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01678375678.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f321aac4622cd4bfa9100a0e77c646813eefa6accc9a3f18a080010815ed2ba +size 720940 diff --git a/datasets/openslr_yoruba/yom_08421_01705164982.wav b/datasets/openslr_yoruba/yom_08421_01705164982.wav new file mode 100644 index 0000000000000000000000000000000000000000..1139ace95716cd77f2d374b2105b1ed6637d77f1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01705164982.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd0d135a7e98d3b7b0a0329d402fce649c55c9a21a86180213c39f3ea16e407 +size 294956 diff --git a/datasets/openslr_yoruba/yom_08421_01708699375.wav b/datasets/openslr_yoruba/yom_08421_01708699375.wav new file mode 100644 index 0000000000000000000000000000000000000000..d84ebf27de5d737f3ae093a42579d6b675e5628f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01708699375.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3324d21f619744d0bc0c58ad81415d4fc62c4d8856d6bfd57f9c5b1b51407d3 +size 335916 diff --git a/datasets/openslr_yoruba/yom_08421_01751112489.wav b/datasets/openslr_yoruba/yom_08421_01751112489.wav new file mode 100644 index 0000000000000000000000000000000000000000..4651cd3b1cfc55b1e96458aeca4d0943ff4dbebe --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01751112489.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d3a91e48efe6d7edcb8ead8b6b01e2941b070f807dc990487cda2bf714b326 +size 368684 diff --git a/datasets/openslr_yoruba/yom_08421_01793284451.wav b/datasets/openslr_yoruba/yom_08421_01793284451.wav new file mode 100644 index 0000000000000000000000000000000000000000..b229e6316313cc8a37976cc0532a0d9ba2a580d4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01793284451.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e7a4deccbc568c62d886373919411cb99d9450a7f963139c8e946c3650da7a +size 360492 diff --git a/datasets/openslr_yoruba/yom_08421_01931321247.wav b/datasets/openslr_yoruba/yom_08421_01931321247.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f1bee791e25249c854b29ce9a0dba3e3959ac47 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01931321247.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53aba09849ffe93875bf0e8451524e12880ca6cc521f1939673c579347e8f344 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08421_01952557156.wav b/datasets/openslr_yoruba/yom_08421_01952557156.wav new file mode 100644 index 0000000000000000000000000000000000000000..b83a9085f6c9534fbec47e8f63141e5802da4d6f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01952557156.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb295543cf4ea0c623f57d789d48fb69010341ec722254d7521bc9b815bf2f4c +size 606252 diff --git a/datasets/openslr_yoruba/yom_08421_01962445886.wav b/datasets/openslr_yoruba/yom_08421_01962445886.wav new file mode 100644 index 0000000000000000000000000000000000000000..71ad8d30509c5613243373057503cb1e4812c6f8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01962445886.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1230fbb3293d014c6d29fd19d426d9c396d30458e05df863dfb0e9f0dc04c7c +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_01980727509.wav b/datasets/openslr_yoruba/yom_08421_01980727509.wav new file mode 100644 index 0000000000000000000000000000000000000000..05780fcbb592a8f206b01e3b7054c9f133a026ec --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01980727509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c15e06d31fa16f782e257446b9490c0b6cc833b7e43e4ed2139715d752a22b +size 294956 diff --git a/datasets/openslr_yoruba/yom_08421_01986900203.wav b/datasets/openslr_yoruba/yom_08421_01986900203.wav new file mode 100644 index 0000000000000000000000000000000000000000..6b8b572222d58b72be5c474c379b6ed107e70e7b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01986900203.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32404a8c0b6b85edd971c643dae8b5cd5391df4b5b8f6871b87d36478bdddff2 +size 426028 diff --git a/datasets/openslr_yoruba/yom_08421_01990905309.wav b/datasets/openslr_yoruba/yom_08421_01990905309.wav new file mode 100644 index 0000000000000000000000000000000000000000..c0bd6ffddd20f3e780f6157c4f86e7248593a0a0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01990905309.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a20dd36d8a649bab4477c0fc9947f83582efe2fe95a895f83b395f9d29dc59 +size 663596 diff --git a/datasets/openslr_yoruba/yom_08421_01993288533.wav b/datasets/openslr_yoruba/yom_08421_01993288533.wav new file mode 100644 index 0000000000000000000000000000000000000000..efb0a8ab7c111ce50034423e1c1969ed74c8688c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_01993288533.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24eb37fee5320bf57d4b2457d60c3e636ce1799641c394edfb28807ad413cc8c +size 540716 diff --git a/datasets/openslr_yoruba/yom_08421_02009201914.wav b/datasets/openslr_yoruba/yom_08421_02009201914.wav new file mode 100644 index 0000000000000000000000000000000000000000..a2b38cff61ecc6f443053660952833a500f6b027 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02009201914.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd47adccb8e50f98cbe9ca364dfdf8e089ffd2238a54be40bc01ec9f5a7286a +size 557100 diff --git a/datasets/openslr_yoruba/yom_08421_02028440715.wav b/datasets/openslr_yoruba/yom_08421_02028440715.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd06ba36ae05082701996d65bacc95c6cf5289ac --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02028440715.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a5e69d928c631a8ed47abd9b9cb547e8b2ca7cb09332591ce0b6d3b992b941 +size 368684 diff --git a/datasets/openslr_yoruba/yom_08421_02028849954.wav b/datasets/openslr_yoruba/yom_08421_02028849954.wav new file mode 100644 index 0000000000000000000000000000000000000000..978fc00521ed19ff653f976dab732719c93c54c1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02028849954.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea00ac26d9d42d6aa33765f0e4d029f405da423cb48e04386ee1a08a20783e0a +size 385068 diff --git a/datasets/openslr_yoruba/yom_08421_02046466727.wav b/datasets/openslr_yoruba/yom_08421_02046466727.wav new file mode 100644 index 0000000000000000000000000000000000000000..770158c035cfb42064b3710161abdaf7ce296cfa --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02046466727.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2ce14eb36484a93093d027a83e7ab4b202ef8d095a39bd5d61b0df715b0f4c +size 466988 diff --git a/datasets/openslr_yoruba/yom_08421_02063753297.wav b/datasets/openslr_yoruba/yom_08421_02063753297.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2bb4e4eb22ff9fe66f33f7f40b82fd00699da30 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02063753297.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb6b54cd23afc566f3206fc8a9edd772ae8074c8428b8cada61f1359d27d3395 +size 663596 diff --git a/datasets/openslr_yoruba/yom_08421_02063846741.wav b/datasets/openslr_yoruba/yom_08421_02063846741.wav new file mode 100644 index 0000000000000000000000000000000000000000..240230972aed3b4fad62859f3ee89a82ece5711d --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02063846741.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f7233b576de71948a1e6e2877304ad7d5c0cab07a29f38daa8a2823a042ffd +size 311340 diff --git a/datasets/openslr_yoruba/yom_08421_02094124628.wav b/datasets/openslr_yoruba/yom_08421_02094124628.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0c3952baefbdf0b7dceb71691a800436a51cfd5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02094124628.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9f0a10f07abca434578c0f6a29ad49ea10f350ad9c341c6961c561d4c1c2b4 +size 475180 diff --git a/datasets/openslr_yoruba/yom_08421_02139408884.wav b/datasets/openslr_yoruba/yom_08421_02139408884.wav new file mode 100644 index 0000000000000000000000000000000000000000..678f0cf400d16c16ffcbb6f9eb970f935c541ae0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08421_02139408884.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75213858743140e59bfc14578c4ce82a3ce251aecb190fccc7bcb2d17b219bf8 +size 442412 diff --git a/datasets/openslr_yoruba/yom_08784_00008811946.wav b/datasets/openslr_yoruba/yom_08784_00008811946.wav new file mode 100644 index 0000000000000000000000000000000000000000..9ec16edc920af0205383ca9d75c6639a036af768 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00008811946.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd6fe7da9bd5b577d6d5b466b5446bd1b492f2e8e0018b7dea3293203be08fb +size 286764 diff --git a/datasets/openslr_yoruba/yom_08784_00039111695.wav b/datasets/openslr_yoruba/yom_08784_00039111695.wav new file mode 100644 index 0000000000000000000000000000000000000000..b95211485c41daff617b08efcd1cede4784d267c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00039111695.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c586f5e8c9094986cadd1618dabc9e453a492de9e5e9e9c28e9b59d6173b42b3 +size 294956 diff --git a/datasets/openslr_yoruba/yom_08784_00080262926.wav b/datasets/openslr_yoruba/yom_08784_00080262926.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e08e3d97430c2db03e16bb70d12f277c5e9b85f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00080262926.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2089c87ec8ea03bab9b5950a4e033bd01ec1d75ff00fae6045ff177d6d1a2759 +size 286764 diff --git a/datasets/openslr_yoruba/yom_08784_00089607710.wav b/datasets/openslr_yoruba/yom_08784_00089607710.wav new file mode 100644 index 0000000000000000000000000000000000000000..a7297754147ab211b274a0c8fa8bfd219dae4085 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00089607710.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e43f451904d39203def553727078ad3ebe446c6851f9d05e6f54fdeae898bff7 +size 294956 diff --git a/datasets/openslr_yoruba/yom_08784_00096882913.wav b/datasets/openslr_yoruba/yom_08784_00096882913.wav new file mode 100644 index 0000000000000000000000000000000000000000..2ae6e67f40bdd797f72933a938080951b9d68634 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00096882913.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff31a6ba5522a54b47ed73ccb24d1160dd83fa302cc62a27edc4ebacff39c48 +size 376876 diff --git a/datasets/openslr_yoruba/yom_08784_00120686302.wav b/datasets/openslr_yoruba/yom_08784_00120686302.wav new file mode 100644 index 0000000000000000000000000000000000000000..39cdc78e7383f90852cfc6ff16d4e9bb5c74c170 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00120686302.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1087f0cab5a43cd89a6f735453a2f484997a05f5a47652383a7d903629fb2e +size 426028 diff --git a/datasets/openslr_yoruba/yom_08784_00122616393.wav b/datasets/openslr_yoruba/yom_08784_00122616393.wav new file mode 100644 index 0000000000000000000000000000000000000000..3d8a94a3b13e87fa94bb09fc80141bbcd7da170f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00122616393.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7053fe2a4fad63f340134f221ce1680ee61a098f1f0d78e3da4783f6efe46a67 +size 655404 diff --git a/datasets/openslr_yoruba/yom_08784_00243107069.wav b/datasets/openslr_yoruba/yom_08784_00243107069.wav new file mode 100644 index 0000000000000000000000000000000000000000..46a927551ad50b444537f8b7c9a6197734eab777 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00243107069.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5312f99a9fdd87920a88b174a98c8b7ddf10161c4d68706ffc796bfd967731 +size 278572 diff --git a/datasets/openslr_yoruba/yom_08784_00259580593.wav b/datasets/openslr_yoruba/yom_08784_00259580593.wav new file mode 100644 index 0000000000000000000000000000000000000000..2cb20b6450d31691e5ea8689205499fb2b19b439 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00259580593.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d432ee394c68a573e78a6befccbb5228c000288fedf6f0e43afda6ac666f122 +size 811052 diff --git a/datasets/openslr_yoruba/yom_08784_00269988761.wav b/datasets/openslr_yoruba/yom_08784_00269988761.wav new file mode 100644 index 0000000000000000000000000000000000000000..763c95598b46d726684f9b286bb39a3804f09e70 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00269988761.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074a7c50b02422d3e8b3dda2247e68762698f1bce0292696179a358e0106d4e0 +size 688172 diff --git a/datasets/openslr_yoruba/yom_08784_00272840736.wav b/datasets/openslr_yoruba/yom_08784_00272840736.wav new file mode 100644 index 0000000000000000000000000000000000000000..ef7ae04aee47cf2cd5eac264de37f0c4827c93fc --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00272840736.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1e9326bb3ccb7d84a8f10622cf9dceef99d7e4d08612d0c9e287bc8b06b52b +size 483372 diff --git a/datasets/openslr_yoruba/yom_08784_00278005388.wav b/datasets/openslr_yoruba/yom_08784_00278005388.wav new file mode 100644 index 0000000000000000000000000000000000000000..ec05ed50340bd8f1410a2ddca969d662f9c86988 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00278005388.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f198e9d6fc5b0b72e906fac3485596e979de87e3963eaed206ffe4b962cc7160 +size 213036 diff --git a/datasets/openslr_yoruba/yom_08784_00278467841.wav b/datasets/openslr_yoruba/yom_08784_00278467841.wav new file mode 100644 index 0000000000000000000000000000000000000000..e0db9df81e83c66465ab7d4554686bc846b0a98f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00278467841.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5b9dded3514de048b60f7f459362da520b81a2b7b8f102ce3bca21f7b1b2e1 +size 507948 diff --git a/datasets/openslr_yoruba/yom_08784_00300967158.wav b/datasets/openslr_yoruba/yom_08784_00300967158.wav new file mode 100644 index 0000000000000000000000000000000000000000..f030960e72f2f65c52b5a86850c9fe5b5a484d1c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00300967158.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf5c138a2326e65b74b278944d94d4055ad602dc170832cfe4520d36899391c +size 286764 diff --git a/datasets/openslr_yoruba/yom_08784_00313470161.wav b/datasets/openslr_yoruba/yom_08784_00313470161.wav new file mode 100644 index 0000000000000000000000000000000000000000..8f7ac24c04d2d14fb909e6193db6e153e41a3b1d --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00313470161.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd1d8cd1edb9a19d3c1877a5172095ea091cf6352c95ec49ab7350e942f1ff0 +size 532524 diff --git a/datasets/openslr_yoruba/yom_08784_00316579548.wav b/datasets/openslr_yoruba/yom_08784_00316579548.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5813bd0d47b9f92ccc6aba5ece038b92d15b543 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00316579548.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86eb63aecb9a89ce68350217eb90a680a287b5aad6a5bd583af9a9628ae8fab8 +size 221228 diff --git a/datasets/openslr_yoruba/yom_08784_00320911436.wav b/datasets/openslr_yoruba/yom_08784_00320911436.wav new file mode 100644 index 0000000000000000000000000000000000000000..49133ef57038b46a31abb21eb2d43979de413b32 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00320911436.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:683451970f39e217df7cb860479be43c0ead068b581399c3df7faf8aaad5a804 +size 401452 diff --git a/datasets/openslr_yoruba/yom_08784_00328061139.wav b/datasets/openslr_yoruba/yom_08784_00328061139.wav new file mode 100644 index 0000000000000000000000000000000000000000..69ce2559fbe29072d59bf19c83d9f9f9bdf3894e --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00328061139.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8619fa110f6d3a26db2049076f0aa8238899d32c65d9dfbdde3c66865520dce +size 262188 diff --git a/datasets/openslr_yoruba/yom_08784_00334093871.wav b/datasets/openslr_yoruba/yom_08784_00334093871.wav new file mode 100644 index 0000000000000000000000000000000000000000..f9e3357d2021c0787b642dce25cae47363bb2eef --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00334093871.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30656bdd3afc76459fc5b0691ab9bc89302982064deb6ab3a9ebcc30c8fcc958 +size 434220 diff --git a/datasets/openslr_yoruba/yom_08784_00334479509.wav b/datasets/openslr_yoruba/yom_08784_00334479509.wav new file mode 100644 index 0000000000000000000000000000000000000000..d5f4cb5fd7531cd46aa9985e47a1c77642f2c256 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00334479509.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebff0478442a2b9ba32325ab70c8f30eb31e5f84f2587ffc7f56422a69c6884f +size 262188 diff --git a/datasets/openslr_yoruba/yom_08784_00339558484.wav b/datasets/openslr_yoruba/yom_08784_00339558484.wav new file mode 100644 index 0000000000000000000000000000000000000000..8061b31cf8d49c9c3e73b6b4b71ea34aefeaf378 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00339558484.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7763b2a603811bb7704444fca60b36b62ef91d80c8e9f6773792d33840a950 +size 237612 diff --git a/datasets/openslr_yoruba/yom_08784_00353698143.wav b/datasets/openslr_yoruba/yom_08784_00353698143.wav new file mode 100644 index 0000000000000000000000000000000000000000..93ad20a1ddc527d99853d0a85999410b8d1744c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00353698143.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab73966c78880c12173ba6d77fff802f909027d56078f9e696adff023eb653b +size 286764 diff --git a/datasets/openslr_yoruba/yom_08784_00378471014.wav b/datasets/openslr_yoruba/yom_08784_00378471014.wav new file mode 100644 index 0000000000000000000000000000000000000000..25b4e74eef0d774945d3533d288b75291981e0ca --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00378471014.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd832b50be38b5923567c6272cf25bc0669cace91fa0d745b26274b9d9e3746 +size 270380 diff --git a/datasets/openslr_yoruba/yom_08784_00383847516.wav b/datasets/openslr_yoruba/yom_08784_00383847516.wav new file mode 100644 index 0000000000000000000000000000000000000000..13e16a3d03184d40c482157ccac7424778655867 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00383847516.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229e120cbf650c9d27640dc14c31e382f3e716955db7a631e2366b84b070820b +size 303148 diff --git a/datasets/openslr_yoruba/yom_08784_00397135975.wav b/datasets/openslr_yoruba/yom_08784_00397135975.wav new file mode 100644 index 0000000000000000000000000000000000000000..2437731b22d4bf7667cfe6117058231d9b414231 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00397135975.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b685f81e193b13a8328b5058c5fbdaf3fbcc26fdcbcd8c79100abc4fa7fcf9f7 +size 450604 diff --git a/datasets/openslr_yoruba/yom_08784_00403277753.wav b/datasets/openslr_yoruba/yom_08784_00403277753.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4b78544f146cd247c06e0df1d83403db70d32f4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00403277753.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c4ce7cbc735f1bdda98a0c0e2aac2defe7233ad3805e27b4ebcb69a0fab7b3c +size 507948 diff --git a/datasets/openslr_yoruba/yom_08784_00466800209.wav b/datasets/openslr_yoruba/yom_08784_00466800209.wav new file mode 100644 index 0000000000000000000000000000000000000000..cdd024b5b3136fda9f562f4647f18a2c9d22f614 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00466800209.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86fb05fc8a9620428a3f9c0f19e51a9c3f9a62461e6f6946aa0d51ca074b29d +size 655404 diff --git a/datasets/openslr_yoruba/yom_08784_00515252578.wav b/datasets/openslr_yoruba/yom_08784_00515252578.wav new file mode 100644 index 0000000000000000000000000000000000000000..5db1d278e918aa7367dc47a6fefed3b29248ffa2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00515252578.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c527d8c09681ee899e64424f73ddf08ea43456eb38724231292f74aed14c57 +size 262188 diff --git a/datasets/openslr_yoruba/yom_08784_00528036130.wav b/datasets/openslr_yoruba/yom_08784_00528036130.wav new file mode 100644 index 0000000000000000000000000000000000000000..d1854c22ca46b4d86722f7bd25366046866608e7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00528036130.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ff4a76754120e8d6622ada1ae6b09907e5cbf5f5bd96981ebf2770941c50df +size 253996 diff --git a/datasets/openslr_yoruba/yom_08784_00540604285.wav b/datasets/openslr_yoruba/yom_08784_00540604285.wav new file mode 100644 index 0000000000000000000000000000000000000000..32b50f5c4fb143c58f2a030d7d2cf711169a1009 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00540604285.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6550f17d800a7f4ad1eff8b8269d55d32399c3435473f731fe4f6765cbc527aa +size 376876 diff --git a/datasets/openslr_yoruba/yom_08784_00557152487.wav b/datasets/openslr_yoruba/yom_08784_00557152487.wav new file mode 100644 index 0000000000000000000000000000000000000000..73a9dc0779fb9ef4a0cb35eb458de7f00f948671 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00557152487.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3074b2ad3f7abdadee0c42fcb1952e807030a51fe86ffef7dc0f0eb2af68954 +size 393260 diff --git a/datasets/openslr_yoruba/yom_08784_00620139062.wav b/datasets/openslr_yoruba/yom_08784_00620139062.wav new file mode 100644 index 0000000000000000000000000000000000000000..880403b7734ef7870e0aa8849740dbb35a3a149f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00620139062.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e5da7f355af2462ca34171165018575a54542d2ad95b48f94ce4a9194539d5 +size 262188 diff --git a/datasets/openslr_yoruba/yom_08784_00647227591.wav b/datasets/openslr_yoruba/yom_08784_00647227591.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b7754c30a56f645495de27419a0ed0a5e656459 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00647227591.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e11eedb3f2e588630082e27b6e1827510b08bce2670b44226606c1706e273a0f +size 376876 diff --git a/datasets/openslr_yoruba/yom_08784_00670686500.wav b/datasets/openslr_yoruba/yom_08784_00670686500.wav new file mode 100644 index 0000000000000000000000000000000000000000..5f0eebcb9c6cea8ac12d788de98c8f5813802946 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00670686500.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3698397b99ccd20c59fa19d20fe0b9d9fa97dc5f17430c326b86d7b44cbd2109 +size 450604 diff --git a/datasets/openslr_yoruba/yom_08784_00674343988.wav b/datasets/openslr_yoruba/yom_08784_00674343988.wav new file mode 100644 index 0000000000000000000000000000000000000000..b42cd9e9528a51746b632cef63fec270a6526277 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00674343988.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c8e23c0d8fbb2b619406410bbd8e04179f103ff5d15c2f5bb832138c15034c +size 770092 diff --git a/datasets/openslr_yoruba/yom_08784_00683982952.wav b/datasets/openslr_yoruba/yom_08784_00683982952.wav new file mode 100644 index 0000000000000000000000000000000000000000..077ddd27d864f6a40dc78a2fcf8dc70a39e02cef --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00683982952.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4d095c74753e1a46ee3a5daec585a1c570c9b86ba3451cc7fac45f0cd5f2a6 +size 278572 diff --git a/datasets/openslr_yoruba/yom_08784_00685000259.wav b/datasets/openslr_yoruba/yom_08784_00685000259.wav new file mode 100644 index 0000000000000000000000000000000000000000..a281e728d301abb6c35ad01dc5af30bb82216e1c --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00685000259.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563f24e6fb0e0f7ba6ebd802abfb3e5af5cc27b9bc094bbf1ba914c329091a1d +size 172076 diff --git a/datasets/openslr_yoruba/yom_08784_00687048590.wav b/datasets/openslr_yoruba/yom_08784_00687048590.wav new file mode 100644 index 0000000000000000000000000000000000000000..afc4d0d71df08d1e2ef5189faade4ad2ee39e4ff --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00687048590.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:557ecb2005488a1bc70644e9194d378e05ce15cb08c1f659c1183307492e285d +size 303148 diff --git a/datasets/openslr_yoruba/yom_08784_00715263258.wav b/datasets/openslr_yoruba/yom_08784_00715263258.wav new file mode 100644 index 0000000000000000000000000000000000000000..eeec680f64b4e37962422392198fc4b55f0adb78 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00715263258.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02646e96ca2a2248c569787a01c962df6b25202c01c2275d274936c59ed6438c +size 335916 diff --git a/datasets/openslr_yoruba/yom_08784_00737495306.wav b/datasets/openslr_yoruba/yom_08784_00737495306.wav new file mode 100644 index 0000000000000000000000000000000000000000..bbe67496da20a1417717b922531bdccc824075a4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00737495306.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4cf311547c567e35577ddab344c57c5b9d9c54462f1864ce613186fed68807d +size 385068 diff --git a/datasets/openslr_yoruba/yom_08784_00818036389.wav b/datasets/openslr_yoruba/yom_08784_00818036389.wav new file mode 100644 index 0000000000000000000000000000000000000000..c13c81663bd871e525df2997ca4792c5c05fb086 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00818036389.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6690af7b306b70a9276dbe42601cb9b56ae82160ca9e063946a4468e91682fa +size 270380 diff --git a/datasets/openslr_yoruba/yom_08784_00821931402.wav b/datasets/openslr_yoruba/yom_08784_00821931402.wav new file mode 100644 index 0000000000000000000000000000000000000000..0642f2de30f5cb084cd2072a9c3fba0255b19088 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00821931402.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e35b03df00454a7cbde7c160336907f4348e6cc1b34dcf20b8291cb209377b +size 245804 diff --git a/datasets/openslr_yoruba/yom_08784_00859217672.wav b/datasets/openslr_yoruba/yom_08784_00859217672.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a3724a28d601749bc078c5e7cec754c06d75c24 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00859217672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fb5daa07e04db2769047cf83e57a3166c39b11565f5a5ad12c28ef9ac93e24 +size 450604 diff --git a/datasets/openslr_yoruba/yom_08784_00872735207.wav b/datasets/openslr_yoruba/yom_08784_00872735207.wav new file mode 100644 index 0000000000000000000000000000000000000000..d92de6e4bb526282966e7cc79b9baa9c9e57125e --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00872735207.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbba4286d5c8542564c7fd9d4b93fdb0b75457bb36ad77b6aa1948f32bedd05a +size 606252 diff --git a/datasets/openslr_yoruba/yom_08784_00890988377.wav b/datasets/openslr_yoruba/yom_08784_00890988377.wav new file mode 100644 index 0000000000000000000000000000000000000000..5d7f633f1722fbd5a8fc5bf2fc6b30a147c48f50 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00890988377.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddc962a0bcd16613a214f6fb4b44e239ebf2878a8cc8cd9d46e4bc0d3d908b3 +size 385068 diff --git a/datasets/openslr_yoruba/yom_08784_00908923873.wav b/datasets/openslr_yoruba/yom_08784_00908923873.wav new file mode 100644 index 0000000000000000000000000000000000000000..a03d8717a5611eced0165ead6593102f5fb0abe7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00908923873.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfddbb6bfc497f42c48e2828e4100a77a70a95ecf03056568c3d2c3d3176a80 +size 426028 diff --git a/datasets/openslr_yoruba/yom_08784_00940513995.wav b/datasets/openslr_yoruba/yom_08784_00940513995.wav new file mode 100644 index 0000000000000000000000000000000000000000..1d8ec974ff0d8d60c94114d3eb4e85c1523821b2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00940513995.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78c0d7f15034773703d2dc9e2147c91cdb1b590dcb0bf8742514e2f58ea2a786 +size 294956 diff --git a/datasets/openslr_yoruba/yom_08784_00946854537.wav b/datasets/openslr_yoruba/yom_08784_00946854537.wav new file mode 100644 index 0000000000000000000000000000000000000000..bd44033c9dff6e279919bbc439d74abc6e08b403 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00946854537.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9db7899feade9cd79bce48ac021856c9a2cd794039a660a7bc50235699ccca +size 450604 diff --git a/datasets/openslr_yoruba/yom_08784_00975824168.wav b/datasets/openslr_yoruba/yom_08784_00975824168.wav new file mode 100644 index 0000000000000000000000000000000000000000..4cc38b4bfb9717665c7b6e2edca0dc293e0f5706 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00975824168.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bfa156c3200088b97608df125894d64eb7fcb64bbc63ec394b16757d3c5535 +size 262188 diff --git a/datasets/openslr_yoruba/yom_08784_00982258662.wav b/datasets/openslr_yoruba/yom_08784_00982258662.wav new file mode 100644 index 0000000000000000000000000000000000000000..769756f3ca9317df8635b3845a8737bdaf84c140 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00982258662.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d2ab30f8086df52e216f7617571015f82f14ccd1405d9f985757c466168757 +size 303148 diff --git a/datasets/openslr_yoruba/yom_08784_00992079469.wav b/datasets/openslr_yoruba/yom_08784_00992079469.wav new file mode 100644 index 0000000000000000000000000000000000000000..f3dae2c3016d29d887a1af5868326dec01e37eda --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_00992079469.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2752c6df6a7375fd562589ada26232da3aaf71a0dbc3742836df17da4f49ecf6 +size 278572 diff --git a/datasets/openslr_yoruba/yom_08784_01039888998.wav b/datasets/openslr_yoruba/yom_08784_01039888998.wav new file mode 100644 index 0000000000000000000000000000000000000000..cf0f186f79d9198f7d45b284275e700b5d530125 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01039888998.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ea378797e8a854550b9a4b122b8757a60c2a7eeda7835a8e1f054ba90cfe63 +size 557100 diff --git a/datasets/openslr_yoruba/yom_08784_01064839292.wav b/datasets/openslr_yoruba/yom_08784_01064839292.wav new file mode 100644 index 0000000000000000000000000000000000000000..7e926ca69f38ca8a84132b7d28506f64c78d5f44 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01064839292.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d008e8bb83535db1783b1f18cdff9016830a704e885965b67b5c8d99a658fa +size 253996 diff --git a/datasets/openslr_yoruba/yom_08784_01068917187.wav b/datasets/openslr_yoruba/yom_08784_01068917187.wav new file mode 100644 index 0000000000000000000000000000000000000000..0b2c38d5975a742c271f411d9199d1a4cb8e2aef --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01068917187.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f739c0d74484f6bbf7cb05964504b451f86af2f9d5626e5590a2926faac83b6 +size 319532 diff --git a/datasets/openslr_yoruba/yom_08784_01087198874.wav b/datasets/openslr_yoruba/yom_08784_01087198874.wav new file mode 100644 index 0000000000000000000000000000000000000000..749ded951089e51bd602b468dcdf3d03007542e4 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01087198874.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1029be3f51af59709a5dd57a38174567f2be2b60b83f42565a8bb2f86a97713 +size 344108 diff --git a/datasets/openslr_yoruba/yom_08784_01106209021.wav b/datasets/openslr_yoruba/yom_08784_01106209021.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a513571978da6ffbedffdb79fd8360269fe3ad5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01106209021.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8103ba63d398daf23c95c6ea1853546c9072fb913eca2c2a7504b6a2a17c16 +size 393260 diff --git a/datasets/openslr_yoruba/yom_08784_01134309283.wav b/datasets/openslr_yoruba/yom_08784_01134309283.wav new file mode 100644 index 0000000000000000000000000000000000000000..5fb8a31e3b67fee6a7279ef5c1ba6b5f34d226d1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01134309283.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728e043fbbf8cad862a1fb46a467083f4329211da1d315e93e0bcc208684a47f +size 376876 diff --git a/datasets/openslr_yoruba/yom_08784_01141316408.wav b/datasets/openslr_yoruba/yom_08784_01141316408.wav new file mode 100644 index 0000000000000000000000000000000000000000..2c267ea7f244a861cb54603d75a7ba9d2d32c626 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01141316408.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457a1edcee6be33cb6e9a13df16b5a995fd57ca23e89ff32bbb71a07033ea125 +size 270380 diff --git a/datasets/openslr_yoruba/yom_08784_01153848160.wav b/datasets/openslr_yoruba/yom_08784_01153848160.wav new file mode 100644 index 0000000000000000000000000000000000000000..b1adb6a91b04a2b1960425b2843ca85ac244b689 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01153848160.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f6fdb6937d6c85ccae60441564e21ebd768293d4445ca8a180ae524e2ae440 +size 270380 diff --git a/datasets/openslr_yoruba/yom_08784_01161043078.wav b/datasets/openslr_yoruba/yom_08784_01161043078.wav new file mode 100644 index 0000000000000000000000000000000000000000..72d4be23bf3422300f0d8cd23301e466500cb53d --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01161043078.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5609153cc77df75b09afca5fa9823db2bb574ec31ea13c7eac9ecfff1fb1d0b +size 213036 diff --git a/datasets/openslr_yoruba/yom_08784_01248746700.wav b/datasets/openslr_yoruba/yom_08784_01248746700.wav new file mode 100644 index 0000000000000000000000000000000000000000..a14c1d6563951f0a934e9894959057acfc5b3d75 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01248746700.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640b28162a0fc97637a4246b66b8df0f797cc86ffa89b204a6fb71de44052251 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08784_01254456400.wav b/datasets/openslr_yoruba/yom_08784_01254456400.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ebb2c2704f203873f44dbc45c64de38f3048fc5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01254456400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a7b2b80c9130a3b184ea0df2407ef8c8cd46fef4efa082ea2d42330448a7bb +size 286764 diff --git a/datasets/openslr_yoruba/yom_08784_01292655400.wav b/datasets/openslr_yoruba/yom_08784_01292655400.wav new file mode 100644 index 0000000000000000000000000000000000000000..3226f2ef7c973b317fb0cf328572c34ddd91105b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01292655400.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1617343d0bb12e8783f29ce2ac26d257a7aa856895b7d7b58f1a7d456b558d44 +size 458796 diff --git a/datasets/openslr_yoruba/yom_08784_01312589667.wav b/datasets/openslr_yoruba/yom_08784_01312589667.wav new file mode 100644 index 0000000000000000000000000000000000000000..bcdef1c9e424503a588ef326ec8291446764332d --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01312589667.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634ebc010366e3e56af9fe1c65145911c1e6e525d5ef5021cad5c254d913d9eb +size 401452 diff --git a/datasets/openslr_yoruba/yom_08784_01322726195.wav b/datasets/openslr_yoruba/yom_08784_01322726195.wav new file mode 100644 index 0000000000000000000000000000000000000000..74d63e1f7017ee82f5b8245059d0baa998aef759 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01322726195.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41169754b323466cd188c64c2f1ce48a310a71208d63980013f10eaddfd7cba1 +size 745516 diff --git a/datasets/openslr_yoruba/yom_08784_01355386777.wav b/datasets/openslr_yoruba/yom_08784_01355386777.wav new file mode 100644 index 0000000000000000000000000000000000000000..01209e7b258fab99f9055211e9f32c729be10ddb --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01355386777.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94645ac56805faab41dc5a1b7f7a1c4fc8b7bdea4947819e429ba265c923ff12 +size 376876 diff --git a/datasets/openslr_yoruba/yom_08784_01368443599.wav b/datasets/openslr_yoruba/yom_08784_01368443599.wav new file mode 100644 index 0000000000000000000000000000000000000000..7cb8ab7e1a9a87b30a06aee002ee3c4883831a57 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01368443599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04163d91596da089fbce22f989bdf38a2de2653ae25e7c9a5793b85e2cc796d +size 303148 diff --git a/datasets/openslr_yoruba/yom_08784_01381441667.wav b/datasets/openslr_yoruba/yom_08784_01381441667.wav new file mode 100644 index 0000000000000000000000000000000000000000..0a46b2be3b78b262efdf175a30f03cfc826b0dc7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01381441667.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e48d120c78805e36e14183e7a9a55b5f21a91b2ea64cd738387f92889924560 +size 376876 diff --git a/datasets/openslr_yoruba/yom_08784_01388354195.wav b/datasets/openslr_yoruba/yom_08784_01388354195.wav new file mode 100644 index 0000000000000000000000000000000000000000..62db626bb58d24a6b0bd706074f77f46faddf337 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01388354195.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15707c4ca1139fc6027808e8d2499ab8509baef50d47c1594c3d554a141ac2c8 +size 1015852 diff --git a/datasets/openslr_yoruba/yom_08784_01415110186.wav b/datasets/openslr_yoruba/yom_08784_01415110186.wav new file mode 100644 index 0000000000000000000000000000000000000000..e6b938cc5e97a9e74452c225426bafbf1d9d7902 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01415110186.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa008e4260500dc450c4eac3abbe9d5168d0c8f7ded6d71941ada4d794edf39b +size 761900 diff --git a/datasets/openslr_yoruba/yom_08784_01448534749.wav b/datasets/openslr_yoruba/yom_08784_01448534749.wav new file mode 100644 index 0000000000000000000000000000000000000000..c28a9af0c69a14fb7b1da9453c8011178000ae33 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01448534749.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c67150bab16ed11f86d05cbda4089a2b2b2165b2017874e49a58233f40fff7 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08784_01485984985.wav b/datasets/openslr_yoruba/yom_08784_01485984985.wav new file mode 100644 index 0000000000000000000000000000000000000000..75bd19ccbcf3a75ed348761ae64578f854a3e4e8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01485984985.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cb903a45c500a0537894e6adda19247f6a1e5abb607ee5516c4df1112340c5c +size 557100 diff --git a/datasets/openslr_yoruba/yom_08784_01487348786.wav b/datasets/openslr_yoruba/yom_08784_01487348786.wav new file mode 100644 index 0000000000000000000000000000000000000000..437086d6485f6505ec97708e79dba2076d22e82a --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01487348786.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cb2bca65e3f759b6a7f6dfe12986b7a14048c45b2154ca8ab2388907fa1d63 +size 294956 diff --git a/datasets/openslr_yoruba/yom_08784_01503898276.wav b/datasets/openslr_yoruba/yom_08784_01503898276.wav new file mode 100644 index 0000000000000000000000000000000000000000..a00fa3dd79af4bbcae668ef292a1c0126b2895b0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01503898276.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb62ed21106e268433e2cc260844400296d278b686cd368f06ef75cd894ac1dd +size 466988 diff --git a/datasets/openslr_yoruba/yom_08784_01532411102.wav b/datasets/openslr_yoruba/yom_08784_01532411102.wav new file mode 100644 index 0000000000000000000000000000000000000000..1dafc5272cbc2806c741d9eb3fdf4f9146cbc547 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01532411102.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb4668beff08ff3122ed8892d62ad16eeb206fdc11bc055a914daa86b9bd8e3 +size 352300 diff --git a/datasets/openslr_yoruba/yom_08784_01544027142.wav b/datasets/openslr_yoruba/yom_08784_01544027142.wav new file mode 100644 index 0000000000000000000000000000000000000000..2aef3de69d22281ed9cc2dff6ab2ad3c49013427 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01544027142.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbe3298ae4b902de98122c1b4f9077d20e309a8bfcaf70ed95ab55c992ccbc4 +size 499756 diff --git a/datasets/openslr_yoruba/yom_08784_01555446232.wav b/datasets/openslr_yoruba/yom_08784_01555446232.wav new file mode 100644 index 0000000000000000000000000000000000000000..77d63810073c4997ae1d9fb23c8c5011249ca793 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01555446232.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff7eebc6c65d359bbbebd6f18bbed6560c9041999e4afb09e1e544f002f9009 +size 294956 diff --git a/datasets/openslr_yoruba/yom_08784_01571599993.wav b/datasets/openslr_yoruba/yom_08784_01571599993.wav new file mode 100644 index 0000000000000000000000000000000000000000..0ba0b1f5137be9c522c4e90d45246e0bc3315769 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01571599993.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cea0f858155e2f598c9f8db8f7d8aae73558fdfd48a22fd9ab8f9491cb03a15 +size 360492 diff --git a/datasets/openslr_yoruba/yom_08784_01592165107.wav b/datasets/openslr_yoruba/yom_08784_01592165107.wav new file mode 100644 index 0000000000000000000000000000000000000000..14cbf2b00d39d05cbc743a11e2e22328e78bf03b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01592165107.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07654ce2f95880cda3fe706f0d4ddfbaa92291b33b439e5e030c7009b78f744 +size 229420 diff --git a/datasets/openslr_yoruba/yom_08784_01603724673.wav b/datasets/openslr_yoruba/yom_08784_01603724673.wav new file mode 100644 index 0000000000000000000000000000000000000000..866eb21e52dfdfcf391239f1b0b7eab70cd3adad --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01603724673.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d3473ce0d493c2c5125c924d2135b1f7dccb04b6b5ffe5f17b9c7f112e8e0c +size 524332 diff --git a/datasets/openslr_yoruba/yom_08784_01657941598.wav b/datasets/openslr_yoruba/yom_08784_01657941598.wav new file mode 100644 index 0000000000000000000000000000000000000000..d2b7965803d1fb59533d75373f07328df46fa34f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01657941598.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93704aafb51270f8a8df09cf9bdbf886f291114f7a593cd1e468e2d39ef9f936 +size 630828 diff --git a/datasets/openslr_yoruba/yom_08784_01716814128.wav b/datasets/openslr_yoruba/yom_08784_01716814128.wav new file mode 100644 index 0000000000000000000000000000000000000000..70f6329d0694185a7d28dac670791a58840737b9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01716814128.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53e7fdb3484bd2b74dabaf8bcf1e8342aa3b6c107ae08683893d87044b2b3c4 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08784_01732153693.wav b/datasets/openslr_yoruba/yom_08784_01732153693.wav new file mode 100644 index 0000000000000000000000000000000000000000..3241345906ced6395643d05c2f7f4a68236694bd --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01732153693.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8662257564e9f9a9ee7294a87cef7c383dad44fbf090a8a199fb0e4b792fe9b +size 368684 diff --git a/datasets/openslr_yoruba/yom_08784_01759450416.wav b/datasets/openslr_yoruba/yom_08784_01759450416.wav new file mode 100644 index 0000000000000000000000000000000000000000..ffc8903572e2c5203bc9486e08d528b90940fc77 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01759450416.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f504898c3debae74d24234ac1b23d77a43516583d8040b5d291a2b7db94caf41 +size 303148 diff --git a/datasets/openslr_yoruba/yom_08784_01760811678.wav b/datasets/openslr_yoruba/yom_08784_01760811678.wav new file mode 100644 index 0000000000000000000000000000000000000000..a103ed44a46e92c00a8853ff665b26a613179c07 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01760811678.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04ca70bd49c2de67dfef88aa35e8da13c5e8d8f8096a062f6554d42e10ff1274 +size 360492 diff --git a/datasets/openslr_yoruba/yom_08784_01782784584.wav b/datasets/openslr_yoruba/yom_08784_01782784584.wav new file mode 100644 index 0000000000000000000000000000000000000000..0281a8f8a625e55a1d75aa625d4b1fc8e82eae1f --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01782784584.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bcae9dfe76b08a27f7ea6f148380a98a7a713d05c2752e2634235e24cd659d +size 344108 diff --git a/datasets/openslr_yoruba/yom_08784_01792196659.wav b/datasets/openslr_yoruba/yom_08784_01792196659.wav new file mode 100644 index 0000000000000000000000000000000000000000..05ae9b289520224b270fb829018874006df37187 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01792196659.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cec27e45f1e1561e4c0abf0ba9c2354a71667261b7c46385c5db5b6ce292137 +size 270380 diff --git a/datasets/openslr_yoruba/yom_08784_01793238062.wav b/datasets/openslr_yoruba/yom_08784_01793238062.wav new file mode 100644 index 0000000000000000000000000000000000000000..ea0545db629e95b11e5c58a6f694575cedfbcf51 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01793238062.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63ca2ad8d026fc76c1fc5d2e7d5f7cf92c86d420d3a0520c12b14892135e958 +size 401452 diff --git a/datasets/openslr_yoruba/yom_08784_01803012405.wav b/datasets/openslr_yoruba/yom_08784_01803012405.wav new file mode 100644 index 0000000000000000000000000000000000000000..a1461dfe3cae6aa51ea3e097c1ccfb183b3dab61 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01803012405.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150985510e1e2fd6b5166d960cbf925df93b36837ac04a62c4ef215b1227e896 +size 565292 diff --git a/datasets/openslr_yoruba/yom_08784_01804526408.wav b/datasets/openslr_yoruba/yom_08784_01804526408.wav new file mode 100644 index 0000000000000000000000000000000000000000..51848b85c2a4e8ac0992a9ccb0631dee73dd3dd5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01804526408.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af645e8e2b8c1cd3a808f06675d23255723ae1d1a6aa0ffe24be50a0286cca25 +size 229420 diff --git a/datasets/openslr_yoruba/yom_08784_01855888561.wav b/datasets/openslr_yoruba/yom_08784_01855888561.wav new file mode 100644 index 0000000000000000000000000000000000000000..b79fdae9b66a0188f433cd6dfba835f2bbfdcf05 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01855888561.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272cb3c345cc103bdd269ba80e8463ed2f1cb2b20d88b17b6e91665c27fa9628 +size 450604 diff --git a/datasets/openslr_yoruba/yom_08784_01928806076.wav b/datasets/openslr_yoruba/yom_08784_01928806076.wav new file mode 100644 index 0000000000000000000000000000000000000000..88d66e383e553a175679935ee96859a3299d48bd --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01928806076.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bd1e39597c041c322b880e932817a19d468addc8b8719d2c939344afff59b0 +size 385068 diff --git a/datasets/openslr_yoruba/yom_08784_01964755890.wav b/datasets/openslr_yoruba/yom_08784_01964755890.wav new file mode 100644 index 0000000000000000000000000000000000000000..715ce098df2b3a0698e9bff7d752c9e0ebca705b --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01964755890.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec42b49f019a7594fd42701073bd6c9607ce9718ecc8e0936ddf39c194389c6a +size 598060 diff --git a/datasets/openslr_yoruba/yom_08784_01965579882.wav b/datasets/openslr_yoruba/yom_08784_01965579882.wav new file mode 100644 index 0000000000000000000000000000000000000000..5161db0ff6643b78e253093a02d2e9c58c23c244 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01965579882.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6856ab7c4cde6eef69fae5af834208c249bd62f2b262f3eece116700445ab4 +size 352300 diff --git a/datasets/openslr_yoruba/yom_08784_01994577354.wav b/datasets/openslr_yoruba/yom_08784_01994577354.wav new file mode 100644 index 0000000000000000000000000000000000000000..ecef300eae15d9fce51b405eece8ec9e44a46439 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_01994577354.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb80df962d40789327db809aea28a60293ef8156498fdcb435f564eb0f68f38 +size 286764 diff --git a/datasets/openslr_yoruba/yom_08784_02001327460.wav b/datasets/openslr_yoruba/yom_08784_02001327460.wav new file mode 100644 index 0000000000000000000000000000000000000000..540f061666840d40c35cea3ad4b125efecc28c36 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_02001327460.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dddf07f5761441644b7cfb3097f36de27c6f617a0556aa5fd7fad75c893da63 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08784_02008752195.wav b/datasets/openslr_yoruba/yom_08784_02008752195.wav new file mode 100644 index 0000000000000000000000000000000000000000..35b56c57c7081483fe95ff35e423b2ee4eff3f05 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_02008752195.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5a602aea28981d7b0f7cf9ddd5186478fdbea5010ce22d05ed0fa15b7da9e6 +size 327724 diff --git a/datasets/openslr_yoruba/yom_08784_02027960426.wav b/datasets/openslr_yoruba/yom_08784_02027960426.wav new file mode 100644 index 0000000000000000000000000000000000000000..2579e8d5e5114294dfd394a2c8ee552f641d0d71 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_02027960426.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5c6281a3843603b8b8998199b05edb519a93f931d8f64b8135506d138628df +size 286764 diff --git a/datasets/openslr_yoruba/yom_08784_02088649450.wav b/datasets/openslr_yoruba/yom_08784_02088649450.wav new file mode 100644 index 0000000000000000000000000000000000000000..1ad07643413a32c67247df5ee0d4badd12abf321 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_02088649450.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0f5cc633cb24bf8b8225d8fbcb6c15e22e0d615b963873ccc2669a65f027aa +size 352300 diff --git a/datasets/openslr_yoruba/yom_08784_02117083096.wav b/datasets/openslr_yoruba/yom_08784_02117083096.wav new file mode 100644 index 0000000000000000000000000000000000000000..762eb104294c5e8f7fc8ab739fd48826640cf1c6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_08784_02117083096.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d53406162a0d931157067d9f9055e1cbd0280d55177b6c01e2c854d96b62a46 +size 270380 diff --git a/datasets/openslr_yoruba/yom_09334_00007045236.wav b/datasets/openslr_yoruba/yom_09334_00007045236.wav new file mode 100644 index 0000000000000000000000000000000000000000..56b2108c2cf7f98cc95df4253db4f6c8c741fd61 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00007045236.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc9ae9dae7fb0a18a586722943d5161be061849f7369e28e42e00c36faea36d +size 385068 diff --git a/datasets/openslr_yoruba/yom_09334_00045442417.wav b/datasets/openslr_yoruba/yom_09334_00045442417.wav new file mode 100644 index 0000000000000000000000000000000000000000..988372ea55c625f84a3799beacf634e39d21c943 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00045442417.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae427dabba8a2d522d8d646ddf652cfb3b677455bcf54670bb7bc5cf4ff59466 +size 417836 diff --git a/datasets/openslr_yoruba/yom_09334_00053208406.wav b/datasets/openslr_yoruba/yom_09334_00053208406.wav new file mode 100644 index 0000000000000000000000000000000000000000..fba45c53464ed691b0f52ba658d04d2dd1431bf6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00053208406.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf048cf0f2a21ca876ac665bc6f78eb3c81796d2981dc0e0c6b97debba4ef77f +size 614444 diff --git a/datasets/openslr_yoruba/yom_09334_00091591408.wav b/datasets/openslr_yoruba/yom_09334_00091591408.wav new file mode 100644 index 0000000000000000000000000000000000000000..cea9e14adb525b0e9b24141c6ad491a6a15398a0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00091591408.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8ecafa206c60a552b764936fe2a5dab05d95482e7806a555c4a66307211b42 +size 294956 diff --git a/datasets/openslr_yoruba/yom_09334_00138039360.wav b/datasets/openslr_yoruba/yom_09334_00138039360.wav new file mode 100644 index 0000000000000000000000000000000000000000..825528340734ed451a22db1047160ea9db033c0a --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00138039360.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3f50161bcb92fe6e656c56d0329c20dee8f51d701bfd282ef464d9dcfe536d +size 483372 diff --git a/datasets/openslr_yoruba/yom_09334_00142792615.wav b/datasets/openslr_yoruba/yom_09334_00142792615.wav new file mode 100644 index 0000000000000000000000000000000000000000..7ef59a517ca89b11024ed8b54ab4aba66f45b3cd --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00142792615.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:873f964f59921179d8bb9d01e6b6d40f67d5e2381385fe84804c9287b3d9756c +size 409644 diff --git a/datasets/openslr_yoruba/yom_09334_00167629780.wav b/datasets/openslr_yoruba/yom_09334_00167629780.wav new file mode 100644 index 0000000000000000000000000000000000000000..d59fded750f05992999e105189f08acc054a88a6 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00167629780.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6dd3a8d187a157f0d51c6881a2c184c5fd4cfcc4cd76c4ef65c9609509f34c3 +size 385068 diff --git a/datasets/openslr_yoruba/yom_09334_00171721525.wav b/datasets/openslr_yoruba/yom_09334_00171721525.wav new file mode 100644 index 0000000000000000000000000000000000000000..c76595c14ef093f40a7e02669c48ec982bab32db --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00171721525.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdef2910ac078cdb01e9fb5f92d2875dd6400f7553cf98d820ef7d995997258a +size 434220 diff --git a/datasets/openslr_yoruba/yom_09334_00181171924.wav b/datasets/openslr_yoruba/yom_09334_00181171924.wav new file mode 100644 index 0000000000000000000000000000000000000000..434cffe8aa76d411a5a50a44ea976e2cc4f4ddb0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00181171924.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205ee616b56a70a01f234aadf346ec807e2ef75f901de279264e626d59d766ec +size 1024044 diff --git a/datasets/openslr_yoruba/yom_09334_00206407521.wav b/datasets/openslr_yoruba/yom_09334_00206407521.wav new file mode 100644 index 0000000000000000000000000000000000000000..2b9fadbe83fbc57df7ebcecd6761b619b6aea354 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00206407521.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7688a8db49f3becd48f08b15ec05cd9422858889bbbb8d56800df2e07c3f281a +size 393260 diff --git a/datasets/openslr_yoruba/yom_09334_00231754677.wav b/datasets/openslr_yoruba/yom_09334_00231754677.wav new file mode 100644 index 0000000000000000000000000000000000000000..b5b9fbc8579d07b60e6a2ab5ca5e3432f5960887 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00231754677.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84df6829069a2d5356a408076e49c149f151b99cc0a46765f6707f7f5a07a7e6 +size 253996 diff --git a/datasets/openslr_yoruba/yom_09334_00237012890.wav b/datasets/openslr_yoruba/yom_09334_00237012890.wav new file mode 100644 index 0000000000000000000000000000000000000000..0f76dc992cd4dbed3f750bfaca336c10242a8034 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00237012890.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3b0c96da43542ab2c4c2544be78e8aa9f94da5f42ab1e6caa2558fdcaf3415 +size 409644 diff --git a/datasets/openslr_yoruba/yom_09334_00254251377.wav b/datasets/openslr_yoruba/yom_09334_00254251377.wav new file mode 100644 index 0000000000000000000000000000000000000000..b221ae94eb667e812ab597c63e1674320cca5e42 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00254251377.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2ec6858198d37a46d2b98c49a9889c4045e49dfe0176b4cfe1cf1a8bb9d75e +size 352300 diff --git a/datasets/openslr_yoruba/yom_09334_00287685875.wav b/datasets/openslr_yoruba/yom_09334_00287685875.wav new file mode 100644 index 0000000000000000000000000000000000000000..68fcc983d95798a0900f5e0d2949c92f3a790e12 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00287685875.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d858d54a59bcb38709b121f32be06cb29b28463881fdd747acdfd404fda2da6 +size 1097772 diff --git a/datasets/openslr_yoruba/yom_09334_00305642474.wav b/datasets/openslr_yoruba/yom_09334_00305642474.wav new file mode 100644 index 0000000000000000000000000000000000000000..2033076e01bf00fe1bcd5c8d848bc4183d51ad6b --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00305642474.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fe6841932c15dade2ccefbe4183c13ef076f0ca24133129aaf37bdd3c7e239 +size 442412 diff --git a/datasets/openslr_yoruba/yom_09334_00334143599.wav b/datasets/openslr_yoruba/yom_09334_00334143599.wav new file mode 100644 index 0000000000000000000000000000000000000000..09cea87854816b4e44f59b6d6dc96984fc7c4aed --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00334143599.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb00605277ae94b2adcf535eff962914a5b5c9bf323016326b5cce4de62dba8 +size 516140 diff --git a/datasets/openslr_yoruba/yom_09334_00390581647.wav b/datasets/openslr_yoruba/yom_09334_00390581647.wav new file mode 100644 index 0000000000000000000000000000000000000000..b600e71778ad46c09961598c4bbef76189941f3e --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00390581647.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46244629f388d640633f5b4cc33a478b3fbe9c73a14386c292f33dc5e692c836 +size 221228 diff --git a/datasets/openslr_yoruba/yom_09334_00416375472.wav b/datasets/openslr_yoruba/yom_09334_00416375472.wav new file mode 100644 index 0000000000000000000000000000000000000000..35e2ed31e091b12f66c2b820a9861927488aa5f1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00416375472.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b044fd2d99d356a2d3ec7ddb62ee7a7d33d6f36590b03daf4a5156679966905e +size 499756 diff --git a/datasets/openslr_yoruba/yom_09334_00430138346.wav b/datasets/openslr_yoruba/yom_09334_00430138346.wav new file mode 100644 index 0000000000000000000000000000000000000000..57d0492988cfcd5640299ac2817f39e2e401e2f2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00430138346.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47df39e30e352b4829588475092dec9254b1a0bb8a140b44d0356f779302cf5 +size 385068 diff --git a/datasets/openslr_yoruba/yom_09334_00444693824.wav b/datasets/openslr_yoruba/yom_09334_00444693824.wav new file mode 100644 index 0000000000000000000000000000000000000000..c47747262e733f6490ed64af4759d0a79c7e5189 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00444693824.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd2a778a40bee1ed63b4dd27094eab66ac736806743134d7c235fd547892627 +size 278572 diff --git a/datasets/openslr_yoruba/yom_09334_00466064750.wav b/datasets/openslr_yoruba/yom_09334_00466064750.wav new file mode 100644 index 0000000000000000000000000000000000000000..f4cde2d4d4960054c9ef16c37034a293e6c38e7b --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00466064750.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2014fdd2ecf38d8f4f48552bc6380496507b6105cb82f1688fc481f0abd43a30 +size 426028 diff --git a/datasets/openslr_yoruba/yom_09334_00479501198.wav b/datasets/openslr_yoruba/yom_09334_00479501198.wav new file mode 100644 index 0000000000000000000000000000000000000000..997f844e6435d709dd3b67ecf92423df1f800310 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00479501198.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e7a6b2eb9fbf186ff9c5124c5dd7529f428b2f16f6fe2efcb2d6273a027358 +size 303148 diff --git a/datasets/openslr_yoruba/yom_09334_00514058743.wav b/datasets/openslr_yoruba/yom_09334_00514058743.wav new file mode 100644 index 0000000000000000000000000000000000000000..b681728f28c436aed2dfc112626deff1554b85a8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00514058743.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273e8abca16384d4360ef57e1da0cdc1f0d0f82614fb6a05d3d7a87cc9386c97 +size 450604 diff --git a/datasets/openslr_yoruba/yom_09334_00633050115.wav b/datasets/openslr_yoruba/yom_09334_00633050115.wav new file mode 100644 index 0000000000000000000000000000000000000000..a0f75d5d28709f0136c236fa0fcc71613559b9bb --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00633050115.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36641e8c38cc5cf9c37c049b11a4605d41619b811be6cc91f3f60045bf51a4c7 +size 409644 diff --git a/datasets/openslr_yoruba/yom_09334_00645040800.wav b/datasets/openslr_yoruba/yom_09334_00645040800.wav new file mode 100644 index 0000000000000000000000000000000000000000..623ec561beedcf31b2beacc23e2ae9d8fa1b97f0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00645040800.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aaa3304118c1353b669e87a8239b2d81f3b6c0d4d35329edc8d4d4edfe2ff9f +size 426028 diff --git a/datasets/openslr_yoruba/yom_09334_00652380149.wav b/datasets/openslr_yoruba/yom_09334_00652380149.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e2a7c0ce4e263ef272a4a1e37ecdcf4c7687368 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00652380149.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fdbbe717426fbe70592b19f218f523aa14000b320bea720440ed704c7ba7211 +size 344108 diff --git a/datasets/openslr_yoruba/yom_09334_00673066578.wav b/datasets/openslr_yoruba/yom_09334_00673066578.wav new file mode 100644 index 0000000000000000000000000000000000000000..7484b9106cca8d0f6666fc9cc7199102328668e8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00673066578.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce7990f203a43728b5f347418bee6e14747bf30107277e8ccd8e4ddaa6fb74b +size 360492 diff --git a/datasets/openslr_yoruba/yom_09334_00720332405.wav b/datasets/openslr_yoruba/yom_09334_00720332405.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a1911a7af263a077c608957cb5e323092ed6df8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00720332405.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9897b8bb1bbec31a205d95028c0b8ac2843465e1c80365fdd691966a8d4269 +size 475180 diff --git a/datasets/openslr_yoruba/yom_09334_00720552665.wav b/datasets/openslr_yoruba/yom_09334_00720552665.wav new file mode 100644 index 0000000000000000000000000000000000000000..6db1d2fad442018cdcdb8674eb48c3a54b30393c --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00720552665.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11daa74e9cf98e56e17088e1192f35b7a373a2c366ce3ad9a5d4e7e4ca8d7cd +size 385068 diff --git a/datasets/openslr_yoruba/yom_09334_00730161997.wav b/datasets/openslr_yoruba/yom_09334_00730161997.wav new file mode 100644 index 0000000000000000000000000000000000000000..7760808d046178a062648d7754f8e903722533e8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00730161997.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f238d97d1eeb34d566dda62ac10d440ede9f28e1e4e62c783740eebc8375619 +size 368684 diff --git a/datasets/openslr_yoruba/yom_09334_00759620162.wav b/datasets/openslr_yoruba/yom_09334_00759620162.wav new file mode 100644 index 0000000000000000000000000000000000000000..ad78187cbe359b85989eb91b8384e936befae694 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00759620162.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047994b9a5327a062b0e3ca2adc24085d0f956ac16dd66679f990d178798283b +size 565292 diff --git a/datasets/openslr_yoruba/yom_09334_00822812376.wav b/datasets/openslr_yoruba/yom_09334_00822812376.wav new file mode 100644 index 0000000000000000000000000000000000000000..e651981f3a0617f552122cd14a074956eae05485 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00822812376.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e3d87a5291866afdaa374d0b504f6ae930c5d64968d8faf2d0f79749c45a53 +size 499756 diff --git a/datasets/openslr_yoruba/yom_09334_00832525318.wav b/datasets/openslr_yoruba/yom_09334_00832525318.wav new file mode 100644 index 0000000000000000000000000000000000000000..1a37acd45ab11818e623a93464f8615d63234827 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00832525318.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a046316368e5fbc49aec9838ed1732a5840b09fd6b2ac1d008b2bd2c68bbe5 +size 360492 diff --git a/datasets/openslr_yoruba/yom_09334_00857266005.wav b/datasets/openslr_yoruba/yom_09334_00857266005.wav new file mode 100644 index 0000000000000000000000000000000000000000..10249b06c215ac26a057a4fcbc6f7cb82612ae5d --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00857266005.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c654d595f2560944eedea75369ac9b1862eeef8b1e9cb266658b9497623cd3 +size 401452 diff --git a/datasets/openslr_yoruba/yom_09334_00861134524.wav b/datasets/openslr_yoruba/yom_09334_00861134524.wav new file mode 100644 index 0000000000000000000000000000000000000000..48a0416c54a1b683af4e778942e1f2a3633cb900 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00861134524.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cbce8c88af21aaaa05ff50b6e378559cf9db519e10477b71b54e81fad541e3c +size 434220 diff --git a/datasets/openslr_yoruba/yom_09334_00893058030.wav b/datasets/openslr_yoruba/yom_09334_00893058030.wav new file mode 100644 index 0000000000000000000000000000000000000000..79a2ebf44b446e2d2723fe072a93852963d574a2 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00893058030.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f6a25b430d998500a29ad56b3269f0f220cb567e299a2a775523b21976a2736 +size 532524 diff --git a/datasets/openslr_yoruba/yom_09334_00904907634.wav b/datasets/openslr_yoruba/yom_09334_00904907634.wav new file mode 100644 index 0000000000000000000000000000000000000000..77b95d8fc418e9afeac2fb8f0c86d4161c00ad6b --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00904907634.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e5708352c8bf0faa5f71ecd42996f9284d36095a3896c9457b374b59577493 +size 614444 diff --git a/datasets/openslr_yoruba/yom_09334_00922149296.wav b/datasets/openslr_yoruba/yom_09334_00922149296.wav new file mode 100644 index 0000000000000000000000000000000000000000..b372e852f2bea09cb9c27b632208681fa4aa07e8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00922149296.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d554632812e83774fce35d020debd5620508f4527d9c98ae10ac67b252dbf41 +size 360492 diff --git a/datasets/openslr_yoruba/yom_09334_00928642807.wav b/datasets/openslr_yoruba/yom_09334_00928642807.wav new file mode 100644 index 0000000000000000000000000000000000000000..fd6e6547021f81d9ac0930f73fb2bb99180fe26a --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00928642807.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a6d9c47f4f60f0b48b6c369833258c80fee591491ab8f95cc0dedb10b2306b +size 548908 diff --git a/datasets/openslr_yoruba/yom_09334_00934868543.wav b/datasets/openslr_yoruba/yom_09334_00934868543.wav new file mode 100644 index 0000000000000000000000000000000000000000..cd96bf4d1f89ade2bb782d3269c018c1a3d0998e --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00934868543.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a3ae7d8d74a686d7201a672d492adf333966baac03a6e818548f15a9e7034e +size 360492 diff --git a/datasets/openslr_yoruba/yom_09334_00936642366.wav b/datasets/openslr_yoruba/yom_09334_00936642366.wav new file mode 100644 index 0000000000000000000000000000000000000000..d798fca316cf9d6d6b764409479a5aa88a6a1e7d --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00936642366.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7753450d389b046aacb146499384976bb12e628fbb10f663ba3c2efe900a214 +size 548908 diff --git a/datasets/openslr_yoruba/yom_09334_00954091592.wav b/datasets/openslr_yoruba/yom_09334_00954091592.wav new file mode 100644 index 0000000000000000000000000000000000000000..57abdfa58b3156b3ed87c7bcff5adc42627f3cc5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00954091592.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab39b7b62975bf4f376d7925fe028887f991b5b2c9069e4c77df1aae1489959 +size 1073196 diff --git a/datasets/openslr_yoruba/yom_09334_00967297963.wav b/datasets/openslr_yoruba/yom_09334_00967297963.wav new file mode 100644 index 0000000000000000000000000000000000000000..a3eddb6f65637b350ae3ef40bf67dc122da9bcc7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_00967297963.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b77a089857fbc69e5836b8c4244750cdb8710a7081c8bd625275d6b457b4bd +size 720940 diff --git a/datasets/openslr_yoruba/yom_09334_01002382004.wav b/datasets/openslr_yoruba/yom_09334_01002382004.wav new file mode 100644 index 0000000000000000000000000000000000000000..9a5bda038c8e1070204bed1e0d42d6815a4998e5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01002382004.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0c6cc0acbc18573068c74ea591baa566237c4cb141b0495e67630fb6b9dfd8 +size 442412 diff --git a/datasets/openslr_yoruba/yom_09334_01075378594.wav b/datasets/openslr_yoruba/yom_09334_01075378594.wav new file mode 100644 index 0000000000000000000000000000000000000000..2a43d42a7f81c087648fa9037896b10a73bcd177 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01075378594.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd9ad778a14c076e4c7195efe1c8da2d5a8f07f8a597ad74db548f5a34c6a34 +size 704556 diff --git a/datasets/openslr_yoruba/yom_09334_01080802520.wav b/datasets/openslr_yoruba/yom_09334_01080802520.wav new file mode 100644 index 0000000000000000000000000000000000000000..724fc9225a2165d74c3cb75b93dec5f8b55c5acd --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01080802520.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c745a40faf01f9dad2a7fe2ea5e327e52dfaab29ba0f6975ea8601cb37f0b663 +size 581676 diff --git a/datasets/openslr_yoruba/yom_09334_01093914595.wav b/datasets/openslr_yoruba/yom_09334_01093914595.wav new file mode 100644 index 0000000000000000000000000000000000000000..8fc9f7aa8c3d0d65d447190add4b420b835610f9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01093914595.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3cc12aae1d5d54f2037d16ffc4712e37455a48fc96fe9fe0703496d33dc389 +size 548908 diff --git a/datasets/openslr_yoruba/yom_09334_01108683012.wav b/datasets/openslr_yoruba/yom_09334_01108683012.wav new file mode 100644 index 0000000000000000000000000000000000000000..f7ba3f65ba3b4abcb6c59a50f0bb2fe554f740fc --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01108683012.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5328b24895bb63ffc57bc23eeaad4babcbdf837bf61555291eda0633339e02 +size 376876 diff --git a/datasets/openslr_yoruba/yom_09334_01126847228.wav b/datasets/openslr_yoruba/yom_09334_01126847228.wav new file mode 100644 index 0000000000000000000000000000000000000000..a97988fc77d64e08b81dc8b7b8e841c0e21e9a00 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01126847228.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e206b432b882c32c16d5405f0e5e390d775be55bb0efaf2b66bcef363fd16c2 +size 1073196 diff --git a/datasets/openslr_yoruba/yom_09334_01127557080.wav b/datasets/openslr_yoruba/yom_09334_01127557080.wav new file mode 100644 index 0000000000000000000000000000000000000000..f93f83083058adf26147b3de115624c304a2ff96 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01127557080.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13cd2a77a3e909067e0c3b3eca7a74b3282257a6e92c7e740320828da54570b7 +size 712748 diff --git a/datasets/openslr_yoruba/yom_09334_01138071764.wav b/datasets/openslr_yoruba/yom_09334_01138071764.wav new file mode 100644 index 0000000000000000000000000000000000000000..899755c8cfb508f5286188e764f12844d7c49c52 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01138071764.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8520bee0bdcbeeaf86f62ced15426c22c4295bae9dc32f6fe895dcbb27bee3 +size 434220 diff --git a/datasets/openslr_yoruba/yom_09334_01196567084.wav b/datasets/openslr_yoruba/yom_09334_01196567084.wav new file mode 100644 index 0000000000000000000000000000000000000000..824c9a6c7f4645315de42f502bc15e29eae99fa8 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01196567084.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8285cdd335ea744a7ac5d32e401b6877c354c138065d10425a27e429fb1abe83 +size 737324 diff --git a/datasets/openslr_yoruba/yom_09334_01240000515.wav b/datasets/openslr_yoruba/yom_09334_01240000515.wav new file mode 100644 index 0000000000000000000000000000000000000000..1477eba60a9c61259db33d81a173cc780558c683 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01240000515.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e24dc45e6c487a82c83bb4d23d29a2aaa384286fd6e75ec4d5ab5bc666c2a548 +size 442412 diff --git a/datasets/openslr_yoruba/yom_09334_01263677076.wav b/datasets/openslr_yoruba/yom_09334_01263677076.wav new file mode 100644 index 0000000000000000000000000000000000000000..d6c90e9d065176bb06abbf004aa753815839896d --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01263677076.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed58791a105f20b315a8a569ca49018e73eb78c1a3e81d4f4fb59d54b2fdf34c +size 532524 diff --git a/datasets/openslr_yoruba/yom_09334_01308506040.wav b/datasets/openslr_yoruba/yom_09334_01308506040.wav new file mode 100644 index 0000000000000000000000000000000000000000..3ad8a6adad6aa9e1bc2e4cf454188d5e7e90c852 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01308506040.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb93eea8402480fdc1c6e3140623b332a46e2acf116ebc45e34048646e1dbef +size 557100 diff --git a/datasets/openslr_yoruba/yom_09334_01361517602.wav b/datasets/openslr_yoruba/yom_09334_01361517602.wav new file mode 100644 index 0000000000000000000000000000000000000000..f24a4b3d6d3921e3cb84a887cd688e95610301fc --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01361517602.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23441fdf9d8ff58555faef52e6b27207bec697454d9d313320384fcf37c027d8 +size 360492 diff --git a/datasets/openslr_yoruba/yom_09334_01369287282.wav b/datasets/openslr_yoruba/yom_09334_01369287282.wav new file mode 100644 index 0000000000000000000000000000000000000000..71b4ccca335644804689dafdb1e647f6477669b5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01369287282.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0814446a5836f8e5648fd10e96e373959bad4306b2ff2e2f38d23b1b89a9f27 +size 294956 diff --git a/datasets/openslr_yoruba/yom_09334_01384291349.wav b/datasets/openslr_yoruba/yom_09334_01384291349.wav new file mode 100644 index 0000000000000000000000000000000000000000..418e40251056447671df5a9960a9236a09950a1c --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01384291349.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be83dda93c6f0679d750897dc984aa78fc28dde3e7b26016c0a554791a5fd32 +size 426028 diff --git a/datasets/openslr_yoruba/yom_09334_01393187332.wav b/datasets/openslr_yoruba/yom_09334_01393187332.wav new file mode 100644 index 0000000000000000000000000000000000000000..9d8f11e111cd4720f363fcdea5f8ea3c5e04910a --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01393187332.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e415fee6460336ff6025ea384171109062c4b39595d845c3c33c143f294a86 +size 450604 diff --git a/datasets/openslr_yoruba/yom_09334_01450090815.wav b/datasets/openslr_yoruba/yom_09334_01450090815.wav new file mode 100644 index 0000000000000000000000000000000000000000..9fcad69a8e0102575d325af52822aa228cbb3a25 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01450090815.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c2bf0d0f445354f53dcb5129a1b4128473ed76cceffc3b7d53e321465584e5 +size 466988 diff --git a/datasets/openslr_yoruba/yom_09334_01477672338.wav b/datasets/openslr_yoruba/yom_09334_01477672338.wav new file mode 100644 index 0000000000000000000000000000000000000000..5e4c975d91d73abaf81fd4704304e8bccff35720 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01477672338.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3cb9929dbaa0712ecdff294d9394ba05a8a1066c5291042c60f7b6d8c06c614 +size 671788 diff --git a/datasets/openslr_yoruba/yom_09334_01492453488.wav b/datasets/openslr_yoruba/yom_09334_01492453488.wav new file mode 100644 index 0000000000000000000000000000000000000000..c4a914a9efd58c22316b89281503ed11ac33e350 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01492453488.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6901665ec480b651b837475ca2a2c9f7828154b8494443e441ab9108f607cb9e +size 352300 diff --git a/datasets/openslr_yoruba/yom_09334_01494947492.wav b/datasets/openslr_yoruba/yom_09334_01494947492.wav new file mode 100644 index 0000000000000000000000000000000000000000..22eb9aff2e8ac52d8716ea90c3907e7330ba3908 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01494947492.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1066cd14145d270a7069748295eb5c89006c91ef67f435e534b3cb4a09e7a993 +size 409644 diff --git a/datasets/openslr_yoruba/yom_09334_01501210047.wav b/datasets/openslr_yoruba/yom_09334_01501210047.wav new file mode 100644 index 0000000000000000000000000000000000000000..e8d48901162b347c9f14bf3c837630f8f57fb674 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01501210047.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4406b35cfbf02d31545d809c754cb4c2fdea694b2b4c67dc730944cc99d663c +size 253996 diff --git a/datasets/openslr_yoruba/yom_09334_01515918722.wav b/datasets/openslr_yoruba/yom_09334_01515918722.wav new file mode 100644 index 0000000000000000000000000000000000000000..d553f1242e8806ef7d450378d0896e0d38c4e251 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01515918722.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c176a33af94ffcddfed46ec60540e2950e377d1cf3333db8af40bb2cee14d613 +size 393260 diff --git a/datasets/openslr_yoruba/yom_09334_01517228476.wav b/datasets/openslr_yoruba/yom_09334_01517228476.wav new file mode 100644 index 0000000000000000000000000000000000000000..6ead7fcc73ae1dc18dc43f8ac2fd9fee142f8033 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01517228476.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29364836c2cf29c70a7e7615961e244abc6b0c014cdfcc548af52815e03bcdc7 +size 303148 diff --git a/datasets/openslr_yoruba/yom_09334_01534537951.wav b/datasets/openslr_yoruba/yom_09334_01534537951.wav new file mode 100644 index 0000000000000000000000000000000000000000..9b5a952f0eaf14fc34f8b2098397e4225c4433f3 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01534537951.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a4abd6815eb401b5e6e357f1c1c18999848bf4192ee522cb40a99b5318d777 +size 393260 diff --git a/datasets/openslr_yoruba/yom_09334_01567489824.wav b/datasets/openslr_yoruba/yom_09334_01567489824.wav new file mode 100644 index 0000000000000000000000000000000000000000..814e52f9c8c6ad2f0780a2b31650e8b84701441b --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01567489824.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1715489b010d84d0569fa29c1644bdc7ce8e4978f1b5c844170dc3f13c857641 +size 327724 diff --git a/datasets/openslr_yoruba/yom_09334_01576800326.wav b/datasets/openslr_yoruba/yom_09334_01576800326.wav new file mode 100644 index 0000000000000000000000000000000000000000..316757ae6e070a8cf3359f3bda6c3dfbab57903e --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01576800326.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f480b1a4a9638d7807bc775a2d20e5ecfe16b943b02bbd76b0da885f7fa3b9 +size 303148 diff --git a/datasets/openslr_yoruba/yom_09334_01576985469.wav b/datasets/openslr_yoruba/yom_09334_01576985469.wav new file mode 100644 index 0000000000000000000000000000000000000000..cb608e6df34f71884bb8d15ebe937e72d55a1caa --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01576985469.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd1b747e04390d09f2d8bc0680797c72924ee9ac79a0cfdc2b48c0fbee592636 +size 360492 diff --git a/datasets/openslr_yoruba/yom_09334_01602376118.wav b/datasets/openslr_yoruba/yom_09334_01602376118.wav new file mode 100644 index 0000000000000000000000000000000000000000..9bfa5e34f6eb32f97332076136ca53ea97d0109e --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01602376118.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b26fd35ead53ea4193628e5ec4e3bd1dce8d490c9b22cff7df9da172cfaed379 +size 729132 diff --git a/datasets/openslr_yoruba/yom_09334_01684902125.wav b/datasets/openslr_yoruba/yom_09334_01684902125.wav new file mode 100644 index 0000000000000000000000000000000000000000..e056690f386ee5755bd24f9b00b65affec425fe5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01684902125.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e54a8595ab888e5c9d3eb4773a76393aa5e154db5e0decb82d0d3bb10d29fbb +size 466988 diff --git a/datasets/openslr_yoruba/yom_09334_01693570278.wav b/datasets/openslr_yoruba/yom_09334_01693570278.wav new file mode 100644 index 0000000000000000000000000000000000000000..b447d49459c1d81a7ad4e7f19fa4eed9082a4f81 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01693570278.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3004fe6084351c303a5106befb73b00738e75f2c98d657e110fceb2e59f43fb +size 442412 diff --git a/datasets/openslr_yoruba/yom_09334_01695578672.wav b/datasets/openslr_yoruba/yom_09334_01695578672.wav new file mode 100644 index 0000000000000000000000000000000000000000..7d24a5f10baea8bc96c24d8c1dab332cb09025c0 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01695578672.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9c2e76e0a185dfee5ed05290e10d061e406456e6f71802aeb7b6e3239a7a72 +size 335916 diff --git a/datasets/openslr_yoruba/yom_09334_01724595781.wav b/datasets/openslr_yoruba/yom_09334_01724595781.wav new file mode 100644 index 0000000000000000000000000000000000000000..ee0e6caeeb8695ab55e253e374b0d1a8aa0d439f --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01724595781.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2cb106940bc905c52cfe84d64f6b64a2c00944045878e59fff0f984d7dc8cf +size 360492 diff --git a/datasets/openslr_yoruba/yom_09334_01740820195.wav b/datasets/openslr_yoruba/yom_09334_01740820195.wav new file mode 100644 index 0000000000000000000000000000000000000000..902f1485f1eff94f00f1a520c28577cb593d21b1 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01740820195.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e724deaf009162171f19f234a5ea54f9254be6eefc2f375642a8ea93050509 +size 434220 diff --git a/datasets/openslr_yoruba/yom_09334_01756999669.wav b/datasets/openslr_yoruba/yom_09334_01756999669.wav new file mode 100644 index 0000000000000000000000000000000000000000..4da1007c2e32299e648a171250bdf6aff48375fc --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01756999669.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a870d9cf138b7b9b561a58cc38326b03fb9c16e3cb93e6a216a9fa2c8663e65 +size 540716 diff --git a/datasets/openslr_yoruba/yom_09334_01759233467.wav b/datasets/openslr_yoruba/yom_09334_01759233467.wav new file mode 100644 index 0000000000000000000000000000000000000000..def3cda945fb6752b9761034fd9ea54ac5052fe7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01759233467.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c48f5314e8b958a69a30e13189b46e735294dc380ef6b643138370e9795b8e +size 417836 diff --git a/datasets/openslr_yoruba/yom_09334_01811232110.wav b/datasets/openslr_yoruba/yom_09334_01811232110.wav new file mode 100644 index 0000000000000000000000000000000000000000..90f71a21dd712e99509989e643759cbc693a0cca --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01811232110.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e15b9ad61026003747c3e45ed3bfbb12cb9cc74dfa1f73237fc9785deb4681e0 +size 466988 diff --git a/datasets/openslr_yoruba/yom_09334_01818834122.wav b/datasets/openslr_yoruba/yom_09334_01818834122.wav new file mode 100644 index 0000000000000000000000000000000000000000..bca6d58fd8afe408106236f466db9804d1c34451 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01818834122.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5655165040431af25a453b204d96ff33975114751f2ae5a5148ec5c4a7816a4 +size 532524 diff --git a/datasets/openslr_yoruba/yom_09334_01820594769.wav b/datasets/openslr_yoruba/yom_09334_01820594769.wav new file mode 100644 index 0000000000000000000000000000000000000000..9918441f60f8a55edccfd991e79a2b6666e5c797 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01820594769.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f1fb99f3758f7f4db2218166205fd66c42e7c82586447bd29efcc13e260440 +size 286764 diff --git a/datasets/openslr_yoruba/yom_09334_01835771974.wav b/datasets/openslr_yoruba/yom_09334_01835771974.wav new file mode 100644 index 0000000000000000000000000000000000000000..81f821c4eeb44ae954beac8812b7ee56e2474df7 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01835771974.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26ee82003ef33a49a73d69b8257655375a75d9b07be0c0a4eda3f58e10a3747d +size 237612 diff --git a/datasets/openslr_yoruba/yom_09334_01868507598.wav b/datasets/openslr_yoruba/yom_09334_01868507598.wav new file mode 100644 index 0000000000000000000000000000000000000000..66081643911885f1cfa3ef59414d40649ab75221 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01868507598.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbd90f2593d276a94c121cec8eb5f0702bf048db7a376c2cdc66c7f40684914 +size 442412 diff --git a/datasets/openslr_yoruba/yom_09334_01870515349.wav b/datasets/openslr_yoruba/yom_09334_01870515349.wav new file mode 100644 index 0000000000000000000000000000000000000000..1c4bd3b5f2d5e2eb750c01f02a85dd7d59415ac9 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01870515349.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06027772514d44136af33e00e8cfa28ba5daa0d845017ce58900a4e2447310e2 +size 409644 diff --git a/datasets/openslr_yoruba/yom_09334_01892073005.wav b/datasets/openslr_yoruba/yom_09334_01892073005.wav new file mode 100644 index 0000000000000000000000000000000000000000..1bfdba26d4e405eaa9f3dd7477ce0c8b3d59d94c --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01892073005.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e62e2eeda15622b305b68d8c6b3ebc38beaccfe8d866f1fb5e0af3cef2ecaab +size 303148 diff --git a/datasets/openslr_yoruba/yom_09334_01929843062.wav b/datasets/openslr_yoruba/yom_09334_01929843062.wav new file mode 100644 index 0000000000000000000000000000000000000000..5a1f1ef373f878b1adbdb61641cfb711dfca7860 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01929843062.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df49484eb3e3a23ee2b97cf65953b2ae7a2bd9cd15c9ef2157ee61d45ce3f961 +size 401452 diff --git a/datasets/openslr_yoruba/yom_09334_01934823276.wav b/datasets/openslr_yoruba/yom_09334_01934823276.wav new file mode 100644 index 0000000000000000000000000000000000000000..fcc331199449822392820e5800dba941657fed27 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01934823276.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bca3f00fbcb0ebbe53c4227550bf741cd11842f6e9c0c29d1de1ce116bb3076 +size 245804 diff --git a/datasets/openslr_yoruba/yom_09334_01962555696.wav b/datasets/openslr_yoruba/yom_09334_01962555696.wav new file mode 100644 index 0000000000000000000000000000000000000000..3dfa7aef4f09320da7262d7908b094fed785123f --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01962555696.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696a675b63f91f61dfc3dfca026d7d47966158b19f7952888a03e546f5777afc +size 770092 diff --git a/datasets/openslr_yoruba/yom_09334_01965207567.wav b/datasets/openslr_yoruba/yom_09334_01965207567.wav new file mode 100644 index 0000000000000000000000000000000000000000..e065d93824dca48364097ded72f52f4dd024600e --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01965207567.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f639e7f48f4b8da3a2bf45b1c22b25e5cf915ca29d02981c9c2cdc4f88ddda0e +size 475180 diff --git a/datasets/openslr_yoruba/yom_09334_01968339391.wav b/datasets/openslr_yoruba/yom_09334_01968339391.wav new file mode 100644 index 0000000000000000000000000000000000000000..53e89319d376054b636f0c5f4cb1f11a2162bbdb --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01968339391.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f22a579b934fd57ce10d6c135e22add243abd027147ded9374f28819a170a6 +size 409644 diff --git a/datasets/openslr_yoruba/yom_09334_01973795918.wav b/datasets/openslr_yoruba/yom_09334_01973795918.wav new file mode 100644 index 0000000000000000000000000000000000000000..e70fd5382dea5496d06d2ae29b6f3a7a018b15a5 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01973795918.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78edc0cfb683d0d28c51b1fe56486b41ce5c2763c898102056cb313f65097290 +size 286764 diff --git a/datasets/openslr_yoruba/yom_09334_01974111425.wav b/datasets/openslr_yoruba/yom_09334_01974111425.wav new file mode 100644 index 0000000000000000000000000000000000000000..79a6232143f9e51feb4e62b369d77b51b56d3aaa --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01974111425.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e032dc93a162feee719dc09aac2c0edde60deb4d96dc0f3b158ab79e5b2da605 +size 294956 diff --git a/datasets/openslr_yoruba/yom_09334_01977117935.wav b/datasets/openslr_yoruba/yom_09334_01977117935.wav new file mode 100644 index 0000000000000000000000000000000000000000..3398a58cc3790042befb9918b5a24def9b7a27de --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01977117935.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bb8bfb3488d93698ea2a65803541e8c0b4b60b2c1b1bf9a858a73a6ca556fe +size 327724 diff --git a/datasets/openslr_yoruba/yom_09334_01981832140.wav b/datasets/openslr_yoruba/yom_09334_01981832140.wav new file mode 100644 index 0000000000000000000000000000000000000000..4c88b25e53f71607d3398dac35ec20b93c83fb41 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01981832140.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7806b9b70f92d0f7e27e1f166a5f67c825f0b34fd8c37f5e930bcb3af316798e +size 491564 diff --git a/datasets/openslr_yoruba/yom_09334_01998666685.wav b/datasets/openslr_yoruba/yom_09334_01998666685.wav new file mode 100644 index 0000000000000000000000000000000000000000..af947c1146e085a32f001434f55b8935bc3ddfaa --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_01998666685.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe1f98daf362ed1ecc0f1e83e880c80e9ff945faf76fa132fbb048ae23c1f59 +size 622636 diff --git a/datasets/openslr_yoruba/yom_09334_02067295485.wav b/datasets/openslr_yoruba/yom_09334_02067295485.wav new file mode 100644 index 0000000000000000000000000000000000000000..27921ef8289663e935cc510c31108c72a6aaf29e --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_02067295485.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b362689105f11ac845bf13daa9cec2ebd64738fc033c92792aa352f23df9b1 +size 639020 diff --git a/datasets/openslr_yoruba/yom_09334_02069558960.wav b/datasets/openslr_yoruba/yom_09334_02069558960.wav new file mode 100644 index 0000000000000000000000000000000000000000..1081c2d02accb60930781cc38b1becfb0adbf583 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_02069558960.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476b0a990cb1224c5c227cc1d307a0b41e257513d63d7b272de3380194d59aa1 +size 483372 diff --git a/datasets/openslr_yoruba/yom_09334_02086205435.wav b/datasets/openslr_yoruba/yom_09334_02086205435.wav new file mode 100644 index 0000000000000000000000000000000000000000..1e02e35d204e79b9eaeb19db646d0fe2334ed895 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_02086205435.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f64248ebb1d50dd3504b362e6a7b6ca084890f716f26ca52314dc493183daa24 +size 376876 diff --git a/datasets/openslr_yoruba/yom_09334_02096435129.wav b/datasets/openslr_yoruba/yom_09334_02096435129.wav new file mode 100644 index 0000000000000000000000000000000000000000..5c268b80954b51f526385834e390411bd575bcdf --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_02096435129.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574738e2f40319bd6e965bf440d4c0fc7a52849b6d953203ca1003bb92d29c9c +size 221228 diff --git a/datasets/openslr_yoruba/yom_09334_02107500029.wav b/datasets/openslr_yoruba/yom_09334_02107500029.wav new file mode 100644 index 0000000000000000000000000000000000000000..92f1080da53ea2433e26bf70b26c8018787e2033 --- /dev/null +++ b/datasets/openslr_yoruba/yom_09334_02107500029.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85806a2e7d6537ee3cdead307c32bedee9e43bd66ed5a9f26c24871e2e4c5ea5 +size 426028 diff --git a/datasets/yo_ng_female.zip b/datasets/yo_ng_female.zip new file mode 100644 index 0000000000000000000000000000000000000000..87c97dc7ece3be45001ffbb0f534abf37432e020 --- /dev/null +++ b/datasets/yo_ng_female.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8875ebc839e57a3318ba1ce37d98c35da46d4f99f9f777f83fcf074257804060 +size 462033045 diff --git a/datasets/yo_ng_male.zip b/datasets/yo_ng_male.zip new file mode 100644 index 0000000000000000000000000000000000000000..3b4a914ffe2707e71994dbb739ba4d1b9d466e21 --- /dev/null +++ b/datasets/yo_ng_male.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58519b27f6954c446d0e7221b227a6f342b9c5ea66bf02af40c1616e086afc4c +size 445032517 diff --git a/prepared_data/hausa/manifest.json b/prepared_data/hausa/manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..93050f469e017af6e97c84fdc050ebb451f1ad82 --- /dev/null +++ b/prepared_data/hausa/manifest.json @@ -0,0 +1,3002 @@ +[ + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00000.mp3", + "text": "Bude kofar. Na san kina ciki.", + "language": "hausa", + "speaker": "user_000" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00001.mp3", + "text": "Na ga wani aikin dabba mai ban mamaki a circus.", + "language": "hausa", + "speaker": "user_099" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00002.mp3", + "text": "Shin kun yarda ko baku yarda ba?", + "language": "hausa", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00003.mp3", + "text": "Kun ce zaku taimaka musu.", + "language": "hausa", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00004.mp3", + "text": "Sun dauki fim din a ainihin sahara.", + "language": "hausa", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00005.mp3", + "text": "Ina da musamman haske fata da bai taba yi ba.", + "language": "hausa", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00006.mp3", + "text": "Ya aiko mana da waƙa mai shiga jiki.", + "language": "hausa", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00007.mp3", + "text": "A ce wannan yayi kama da gwanjo to an cuci gwanjo.", + "language": "hausa", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00008.mp3", + "text": "Shin kana so ka ci wannan?", + "language": "hausa", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00009.mp3", + "text": "Ta yi ihun jin daɗi har ta fita hayyacinta.", + "language": "hausa", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00010.mp3", + "text": "Mustapha yace yana shirin yin haka ranan Litinin.", + "language": "hausa", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00011.mp3", + "text": "Mun karɓi dukkan ayyukan dai-dai.", + "language": "hausa", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00012.mp3", + "text": "Magana ko gargaɗi ƙalilan ya ishi mai hankali.", + "language": "hausa", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00013.mp3", + "text": "Kamar Musa bai bata rai iri na Jummai.", + "language": "hausa", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00014.mp3", + "text": "Jami zai iya taimakawa.", + "language": "hausa", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00015.mp3", + "text": "A aji biyu, ana tsammani dalibai su na ilimin karatu da rubutu.", + "language": "hausa", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00016.mp3", + "text": "Sun sace dabbobi da dawakai.", + "language": "hausa", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00017.mp3", + "text": "Ya yi aiki na awanni.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00018.mp3", + "text": "Lokacin bazara a ƙasar Italiya, rana bata faɗuwa sai wajen ƙarfe tara na dare.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00019.mp3", + "text": "Tsaya kusa.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00020.mp3", + "text": "Miji nagari shi ke samar da mata tagari.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00021.mp3", + "text": "Muna goyon bayan: Masu neman zaman lafiya da tsaro.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00022.mp3", + "text": "Mista White ya ce saboda taron nan, babu dakin da akoi.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00023.mp3", + "text": "Ina da saurin tsorata.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00024.mp3", + "text": "Har yaushe kuka bar Aliko kadai?", + "language": "hausa", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00025.mp3", + "text": "Na duba sau biyu domin tabbatar bamu yi kowani kurakurai ba.", + "language": "hausa", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00026.mp3", + "text": "Babangida yasan inda Jummai zata je.", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00027.mp3", + "text": "Na san Hassan na son Hamsatu ta yi hakan sabida Hassan.", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00028.mp3", + "text": "yanzu na tura maku hoto", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00029.mp3", + "text": "Idan ka hau wannan dutsen, zaku isa dakin Lab.", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00030.mp3", + "text": "Kin sanya janbaki?", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00031.mp3", + "text": "Har yanzu kina shirin sayen sabuwar kwamfuta?", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00032.mp3", + "text": "Dukkansu sun aminta da Mista Babangida ɗan kasuwa ne.", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00033.mp3", + "text": "Wadannan kalmomini da aka yi amfani da su basu dace ba.", + "language": "hausa", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00034.mp3", + "text": "Aliyu da Zainabtu sun ce suna son koyar da faransanci.", + "language": "hausa", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00035.mp3", + "text": "Wasu mutane ba su da aiki sai sanya wasu cikin tashin hankali.", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00036.mp3", + "text": "Oliva da Khalifat sun ce suna son na sai musu hoton zane.", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00037.mp3", + "text": "Idan ka bani dama zan yi bayani.", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00038.mp3", + "text": "Kun ga hoton?", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00039.mp3", + "text": "Babangida ya nuna kamar bana wasa, nima.", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00040.mp3", + "text": "Sun gana da ƴan jarida.", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00041.mp3", + "text": "Asabe ta nuna kamar tana cikin damuwa.", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00042.mp3", + "text": "Ban san yadda ake sarrafa tayan keke ba.", + "language": "hausa", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00043.mp3", + "text": "Soyayyar yanar gizo na iya zama haɗari.", + "language": "hausa", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00044.mp3", + "text": "Na yi mamakin da ka kasa tunawa.", + "language": "hausa", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00045.mp3", + "text": "Na so in san daga ina ne nike jin muryan.", + "language": "hausa", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00046.mp3", + "text": "Ya kashe fitila domin tattalin makamashin lantarki.", + "language": "hausa", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00047.mp3", + "text": "Ba za ka bar Ishaku ya yi wannan ba, ko ba haka ba?", + "language": "hausa", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00048.mp3", + "text": "Ana iya aiwatar da matakan kariya da ragewar cutan a lokaci guda.", + "language": "hausa", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00049.mp3", + "text": "Ba ina son sarrafa ka bane.", + "language": "hausa", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00050.mp3", + "text": "Mustapha ya koyi cewa bai kamata yayi haka ba daga iyayen shi.", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00051.mp3", + "text": "Za mu daina zaɓuɓɓuka.", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00052.mp3", + "text": "An shawarci wanke hannaye domin kiyaye yaduwar cutar.", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00053.mp3", + "text": "Kuna da tabbacin haka?", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00054.mp3", + "text": "Ban iya rawa ba lokacin da nake matashi.", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00055.mp3", + "text": "Kada ka zama wawa mana.", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00056.mp3", + "text": "Wutar ta rage ƙauyen dukka da toka.", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00057.mp3", + "text": "Ibrahim ya cakawa Asabe wuƙa.", + "language": "hausa", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00058.mp3", + "text": "Tawul din sam ba shi da amfani.", + "language": "hausa", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00059.mp3", + "text": "Bankunan Jamani na daga cikin bankunan Europe masu matsala.", + "language": "hausa", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00060.mp3", + "text": "Akwai rabin kwalbar giya cikin firji.", + "language": "hausa", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00061.mp3", + "text": "Gaba ɗaya ya lalata martabar kasar.", + "language": "hausa", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00062.mp3", + "text": "Chalie ya duba injin ba da amsa don ganin sakonni.", + "language": "hausa", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00063.mp3", + "text": "Bana tsammanin Aliko zai yi amfani da wannan.", + "language": "hausa", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00064.mp3", + "text": "Mun cancanci zaɓe tun daga shekaru ashirin.", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00065.mp3", + "text": "Kina da ƙarfi.", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00066.mp3", + "text": "Kin gano yadda zaki yi haka?", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00067.mp3", + "text": "Mijinta ya kusa mutuwa.", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00068.mp3", + "text": "Ina da niyan chin abinci a yau.", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00069.mp3", + "text": "Menene illolin aikin kiwon lafiyar jama'a?", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00070.mp3", + "text": "Jalal bata da gaskiya?", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00071.mp3", + "text": "Abdullahi ya ce yana ƙarfi na asali.", + "language": "hausa", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00072.mp3", + "text": "Na yi tsammani wannan irin sanyi ne.", + "language": "hausa", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00073.mp3", + "text": "Ina fatan Mustapha baya bukatar yin hakan.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00074.mp3", + "text": "Waɗannan waɗanne irin marasa hankali ne.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00075.mp3", + "text": "Amma gaskiya ko yaushe ina fada muku irin kalubalen da muke fuskanta.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00076.mp3", + "text": "Elvis ya bar ginin.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00077.mp3", + "text": "Wane lokaci Aliyu ke cin abinci?", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00078.mp3", + "text": "Wannan labarin zama cikin talaucin, mafarkin wautar wata mata ne.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00079.mp3", + "text": "Ɗalibai shaɗaya ne suka karɓi kyauta.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00080.mp3", + "text": "Na ajiyeta a wancan filin, amma ba ta cim ma ba.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00081.mp3", + "text": "Babangida wataƙila ba zai zama mai wayo kamar yadda kake tsammani ba.", + "language": "hausa", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00082.mp3", + "text": "Wannan gaskiyane musamman gameda iyaye masu karancin Ilimi da madogara.", + "language": "hausa", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00083.mp3", + "text": "Gobarar da ta tashi daga gabaci, ta lalata tsakiyar birnin.", + "language": "hausa", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00084.mp3", + "text": "Wannan Injin zai haƙa dogon rami.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00085.mp3", + "text": "Za ka kalli Jami da Aisha?", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00086.mp3", + "text": "Ban sa ran zan halarci taron ba.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00087.mp3", + "text": "Ya san abin da ya kamata ya yi.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00088.mp3", + "text": "Mun tattauna wasu batutuwan kasuwanci.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00089.mp3", + "text": "Ban taɓa sabunta tsarin aikina ba.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00090.mp3", + "text": "Ba wani tsakani cikin waɗannan zaɓin guda biyu.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00091.mp3", + "text": "Ya musanta cewar yana daga cikin masu laifin.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00092.mp3", + "text": "Ban sanya kwat ba.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00093.mp3", + "text": "Asabe ta roke ni in bari ta shiga.", + "language": "hausa", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00094.mp3", + "text": "An yi mini tayin kofi ko shayi.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00095.mp3", + "text": "Bani adireshin Hassan.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00096.mp3", + "text": "Kai kwararre ne sosai.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00097.mp3", + "text": "Zan ci tabbatar Aliko ba ya zuwa nan kan lokaci.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00098.mp3", + "text": "Zai taimaka mana idan kuna kiyaye otal mai zuwa yayin taron mu.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00099.mp3", + "text": "Beth ta ƙi yarda Chris ya sumbace ta, sabida ƙazantarsa.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00100.mp3", + "text": "Raguwa yanzu ba zai cutar ba nan gaba.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00101.mp3", + "text": "Da yake kara girma, ya koyi sanya komai inda ya dace.", + "language": "hausa", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00102.mp3", + "text": "Mun sumbaci juna.", + "language": "hausa", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00103.mp3", + "text": "Baccin awa guda kafin shabiyun dare ya fi na awa biyu bayan nan.", + "language": "hausa", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00104.mp3", + "text": "Ba ku da wata jaka da za a bincika?", + "language": "hausa", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00105.mp3", + "text": "Injin na aiki sosai.", + "language": "hausa", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00106.mp3", + "text": "Ku faɗa min idan wani baƙon abu ya faru.", + "language": "hausa", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00107.mp3", + "text": "Yana da shafin yanar gizo domin kasuwancinsa.", + "language": "hausa", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00108.mp3", + "text": "Sabuwar gaɗa na jirgin ƙasa za'a gina tsakanin garuruwa guda biyu.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00109.mp3", + "text": "Na sayi mudu biyar na masana'anta a cikin shagon.", + "language": "hausa", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00110.mp3", + "text": "Tun da dadewa na tsane ka.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00111.mp3", + "text": "Na kasa gane kan gadon lakcar darasin motsa jikin da ta yi mana.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00112.mp3", + "text": "Sakaliya ce.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00113.mp3", + "text": "Iyakar abinda za mu yi yanzu ke nan.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00114.mp3", + "text": "An karanta bayani kan ƙin tsarin shirin zamantakewa.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00115.mp3", + "text": "Ta yaya za mu yi haka?", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00116.mp3", + "text": "Na san Ishaku da Hamsatu sun sani.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00117.mp3", + "text": "Zan tsaya a Moscow tsahon kwanaki shida.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00118.mp3", + "text": "Wannan bishiyar ta tsaya tsawan shekera biyar data gabata.", + "language": "hausa", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00119.mp3", + "text": "Da ya je ya jefa kanshi a rahaman kotu.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00120.mp3", + "text": "Rana ce mai kyau.", + "language": "hausa", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00121.mp3", + "text": "Irin wannan jin daɗin da nake samu ya wuce ni.", + "language": "hausa", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00122.mp3", + "text": "Na ɗan kula da ra'ayinsa.", + "language": "hausa", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00123.mp3", + "text": "Habibu ya taimakawa mahaifiyarsa dafa abincin dare.", + "language": "hausa", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00124.mp3", + "text": "Samar da lantarki daga hasken rana bai da barazana ga muhalli.", + "language": "hausa", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00125.mp3", + "text": "Abin na matuƙar damun Yusuf bayan ya dena shan tabar turkey.", + "language": "hausa", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00126.mp3", + "text": "Na sumbaci ƙarƙashin ƙafarka.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00127.mp3", + "text": "Ina ta yiwa Jauroa dariya.", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00128.mp3", + "text": "Me ya sa ka yi kuka?", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00129.mp3", + "text": "Abu mai kaushi na yi wa lallausar fatar yaro rauni.", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00130.mp3", + "text": "Shin Yusuf na da damar yin haka yanzu?", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00131.mp3", + "text": "Manomi na sayar da biredin manoma a kasuwa.", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00132.mp3", + "text": "Musa ya ce bai kamata Rifkatu ta yi hakan ba.", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00133.mp3", + "text": "Me ya sa aka bar yaron shi kaɗai? Ina mahaifiyarsa?", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00134.mp3", + "text": "Ciniki ya hau cikin sauri a makon da ya wuce, a maganar kakakin woolworth.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00135.mp3", + "text": "Ina Melissa?", + "language": "hausa", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00136.mp3", + "text": "Bincikar kowande irin cuta kamar haka:", + "language": "hausa", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00137.mp3", + "text": "Bana tsammanin akwai bukatar na ci gaba da zama anan.", + "language": "hausa", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00138.mp3", + "text": "An kashe Ibrahim ta hanyar rataya bisa laifin kisan da bai aikata ba.", + "language": "hausa", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00139.mp3", + "text": "Kar ka taba kwatanta matar ka da wata matar.", + "language": "hausa", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00140.mp3", + "text": "Musa na da katon gida.", + "language": "hausa", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00141.mp3", + "text": "Kungiyar masana kimiyya sun tsaya, sun shirya don fara gwajin.", + "language": "hausa", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00142.mp3", + "text": "Kamar tafiya a kan wata.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00143.mp3", + "text": "Mr. Tijjani ya yi wauta da ya amince da shawarar.", + "language": "hausa", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00144.mp3", + "text": "Japan na buƙatar hulɗa da ƙasashen yamma.", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00145.mp3", + "text": "Shi ya sa Ishaku da Zainab suke nan.", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00146.mp3", + "text": "Akwai kyakkyawar dangantakar soyayya tsakanin su.", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00147.mp3", + "text": "Tarin fasaha ya fi yawa a zane-zanen ƙwararrun Dutch.", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00148.mp3", + "text": "Zaka iya ranta mini kudi?", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00149.mp3", + "text": "Abdullahi zai je Boston a mako mai zuwa.", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00150.mp3", + "text": "Yusuf ya bani scotch.", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00151.mp3", + "text": "Zaʻa samu ƙarin bayani game da tsarin a cikin wannan sashin.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00152.mp3", + "text": "Ko za ku tafi tare da ni?", + "language": "hausa", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00153.mp3", + "text": "Babangida ya sayi dokin sa a wajen gwanjo.", + "language": "hausa", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00154.mp3", + "text": "Jami ya ɓoye kuɗinsa cikin durowar ofis ɗin.", + "language": "hausa", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00155.mp3", + "text": "Akwai karancin abin Sanya Kariyar Fuska na asibiti a duniya.", + "language": "hausa", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00156.mp3", + "text": "Bani da wani korafi.", + "language": "hausa", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00157.mp3", + "text": "Zan taimaki ɗan uwana wanke kwanuka bayan cin abinci.", + "language": "hausa", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00158.mp3", + "text": "Za mu ci gaba da tuna ta har abada.", + "language": "hausa", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00159.mp3", + "text": "Habibu ya ji daɗi sosai game da abin da ya faru.", + "language": "hausa", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00160.mp3", + "text": "Zan ba ku wata damar sake yin hakan.", + "language": "hausa", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00161.mp3", + "text": "Shagon siyar da kyautukan na hawa na biyu.", + "language": "hausa", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00162.mp3", + "text": "Kowane hali ka tsinci kan ka, to akwai mafita.", + "language": "hausa", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00163.mp3", + "text": "Aliko ya ce baya jin yunwa.", + "language": "hausa", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00164.mp3", + "text": "Aliyu da Hauwa sun faɗa min ba su ji tsoro ba.", + "language": "hausa", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00165.mp3", + "text": "Jami ya faɗawa kowa yana jin sanyi.", + "language": "hausa", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00166.mp3", + "text": "An harbi mayen da harsashin azurfa.", + "language": "hausa", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00167.mp3", + "text": "Ba wani daga cikin iyalaina da zai yi haka.", + "language": "hausa", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00168.mp3", + "text": "Me zan rubuta a nan?", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00169.mp3", + "text": "Shin kun sanar da Jalal?", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00170.mp3", + "text": "Ko waye zai jagoranci ɓangaren su, ku kula da shi yadda ya kamata.", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00171.mp3", + "text": "Ci gaban halin kirki da girma a bayyane suke cikin samartaka.", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00172.mp3", + "text": "Wataƙila an hana ku canza wuraren zama a jirgin.", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00173.mp3", + "text": "Lokacin da Jauro ya je makaranta firamare, an bashi mukamin mataimakin mai koyarwa.", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00174.mp3", + "text": "Sun ce ba su samu ba.", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00175.mp3", + "text": "Ya nemi taimako daga abokinsa.", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00176.mp3", + "text": "ka ji kamar kirjin ka ya ɗaure", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00177.mp3", + "text": "Ba shine ainihin abinda na ke soba, amma kuma na siya.", + "language": "hausa", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00178.mp3", + "text": "Ana amfani dashi wajen tabbatar da ciwo wanda aka gano ko kuma yake ayanzu.", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00179.mp3", + "text": "Abdullahi bai saba a yi watsi da shi ba.", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00180.mp3", + "text": "Bana jin tsoron su kuma.", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00181.mp3", + "text": "Abun da zaka yi kawai shine bude baƙi da ci abinci.", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00182.mp3", + "text": "Yanzu, don Allah - ku wanke hannuwanku kuma kada ku taɓa fuskarku!", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00183.mp3", + "text": "Yana gama aikinsa.", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00184.mp3", + "text": "Na ji dadi da ba a yi ni mace na.", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00185.mp3", + "text": "Hadiza na son yin barci cikin farin ciki.", + "language": "hausa", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00186.mp3", + "text": "Mustapha ya ce tabbas ya san za ka yi hakan.", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00187.mp3", + "text": "Ina cikin brass band.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00188.mp3", + "text": "Yaron ya damu da keke.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00189.mp3", + "text": "Na je wannan kwabon cikin walet dina domin ya bani sa'a.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00190.mp3", + "text": "Ya ce ya yi fushi.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00191.mp3", + "text": "Ina da labarin da mujallar matafiya ta amince da shi.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00192.mp3", + "text": "Na yadda da ita.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00193.mp3", + "text": "Galibi sun fi rayuwa da madara.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00194.mp3", + "text": "Kamar Aliyua zai yi wannan yanzun nan.", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00195.mp3", + "text": "Ina son ganin abin da ke cikin durowar.", + "language": "hausa", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00196.mp3", + "text": "Khalifat ta faɗa min ya kamata ta tafi.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00197.mp3", + "text": "Ta sanya kayan wanki cikin injin wanki.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00198.mp3", + "text": "Tayar ta fara lalacewa.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00199.mp3", + "text": "Na tsani dangantaka.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00200.mp3", + "text": "Ina godiya da taimakon da za ka yi min.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00201.mp3", + "text": "Ya shiga wajen shaƙatawar jiya.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00202.mp3", + "text": "Idan ka ci gaba da yi mini ihu ba za mu iya magana ba.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00203.mp3", + "text": "Thomas ya sanya kayansa cikin kwandon kayan wanki.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00204.mp3", + "text": "Japan suna dogara akan wasu kasashe ma mai.", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00205.mp3", + "text": "Nasan ya kamata na yi haka, amma ban yi ba.", + "language": "hausa", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00206.mp3", + "text": "Akwai casu fa.", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00207.mp3", + "text": "Yana da wahala Bitrusa ya daidaita fuskarsa.", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00208.mp3", + "text": "Daya daga waɗannan mutanen na iya kasancewa ita ce.", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00209.mp3", + "text": "Kuna magana da Ishaku kuwa tun da ya tafi?", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00210.mp3", + "text": "Na rantse ban san komai ba.", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00211.mp3", + "text": "Wannan na da daraja?", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00212.mp3", + "text": "Na ga Adrea na barin gida.", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00213.mp3", + "text": "Ta yi karatu a kasar Amurka.", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00214.mp3", + "text": "Amy ta yi aiki a farfajiyar Asabar ɗin da ta gabata.", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00215.mp3", + "text": "Na san Ibrahim ya kware kan haka.", + "language": "hausa", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00216.mp3", + "text": "Asabeam ta bar jaket dinta a motar ta.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00217.mp3", + "text": "Bayan komowa daga yaƙi yawancin sojojin sun nuna alamar gajiya da rauni.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00218.mp3", + "text": "Shin kun san yadda ake zuwa wurin mu?", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00219.mp3", + "text": "Ta fara nuna min tsana a hankali.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00220.mp3", + "text": "An yiwa ƙasan wajen koren fanti, jikin bangon kuma ruwan ɗorawa.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00221.mp3", + "text": "Wannan rashin adalci ne.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00222.mp3", + "text": "A lokutan rashin lafiya, samun isasshen bacci shine mafi kyawun magani.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00223.mp3", + "text": "Gaskiya ina so in sumbace ka.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00224.mp3", + "text": "Habibu ta ce ta yi tunanin Aliko na zargi.", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00225.mp3", + "text": "Iskar ta kwashe rufin ginin da muke.", + "language": "hausa", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00226.mp3", + "text": "Musa da Jummaiamu sun hori yaransu.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00227.mp3", + "text": "Tsaya inda kuka kasance har sai na baku wata alama.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00228.mp3", + "text": "Lokaci na wucewa, kuma yana juya rayuwa kamar yadda ruwa ke juya mill.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00229.mp3", + "text": "Na fi son kifi fiye da nama.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00230.mp3", + "text": "Yaron na da ƙaton tabo a kansa. Shi ya sa ya yi ta kuka!", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00231.mp3", + "text": "Sarauniyar mayu ta mutu.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00232.mp3", + "text": "Zan amshi amintakar sa.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00233.mp3", + "text": "Duk da dai gwamnati ta ki yarda, tattalin arzikinta na cikin matsala.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00234.mp3", + "text": "Bai sa mu ba kawai.", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00235.mp3", + "text": "A can tafi sanduna ruwan bula goma sha biyu.", + "language": "hausa", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00236.mp3", + "text": "Za ku iya fita ku yi wasa idan iyakar ku filin gidan nan kawai.", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00237.mp3", + "text": "mary yanzu kamar kwanaki nawa kike da alamun ciwon", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00238.mp3", + "text": "Ka faɗa masa abinda zai yi?", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00239.mp3", + "text": "Ina jin kana yin daidai.", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00240.mp3", + "text": "Ba wanda ya yi magana a kanmu.", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00241.mp3", + "text": "Aliyu ya ce ya gaji da yin hakan.", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00242.mp3", + "text": "Komai ya faru, bana canza shawara.", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00243.mp3", + "text": "Ya raba dala miliyon tsakanin yaran mazan shi biyar.", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00244.mp3", + "text": "Mr Hawk mutumin ƙwarai ne.", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00245.mp3", + "text": "Aliko ya ce karen Hadizatu ya cije shi a hannu.", + "language": "hausa", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00246.mp3", + "text": "Bazan ki yin hakan idan nine Kai.", + "language": "hausa", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00247.mp3", + "text": "Meyasa kika damu da Aliyu?", + "language": "hausa", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00248.mp3", + "text": "Ina da banbanci ko yaushe.", + "language": "hausa", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00249.mp3", + "text": "Ina bukatar taimakon Haryy game da haka.", + "language": "hausa", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00250.mp3", + "text": "Idan baku da shawara, da kun fadi.", + "language": "hausa", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00251.mp3", + "text": "Ishaku bai cire malafanshi ba.", + "language": "hausa", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00252.mp3", + "text": "Shin kana ganin za samu shigab jamiya Harvard haryanzu?", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00253.mp3", + "text": "Kai, bar ni na huta.", + "language": "hausa", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00254.mp3", + "text": "Tana busa yawan busa kahonta.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00255.mp3", + "text": "A Boston Aliyu ya sayo wannan lemar.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00256.mp3", + "text": "Shafa wurare masun tauri, kuma idan wurin zama na fata zaku iya shafe wancan.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00257.mp3", + "text": "Mustapha mai yiwuwa ba zai yi dariya ba.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00258.mp3", + "text": "Ni da Babangida mun yi aure shekaru uku da suka wuce.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00259.mp3", + "text": "Ƙwaƙwalwata ta yarda, amma zuciyata ta ƙi amincewa.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00260.mp3", + "text": "Na ji cewa Mr. Collins ya ce ka aure shi.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00261.mp3", + "text": "Yi hakuri game da abinda ya faru jiya.", + "language": "hausa", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00262.mp3", + "text": "Zafi da sanyi, hasken rana mai ban sha'awa, Kyakkyawan yanayin zafi!", + "language": "hausa", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00263.mp3", + "text": "A yanzu haka masana'antar ta zama abin misali lokutan damuwa.", + "language": "hausa", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00264.mp3", + "text": "Akwai hanyoyi da yawa da yawa a cikin wannan ɗakin.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00265.mp3", + "text": "Na so na sayi babbar bear a shagon Ken, ashe ba ta siyarwa bace.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00266.mp3", + "text": "Gungun mutanen da suka fusata sun jefa makami mai linzami ga 'yan sanda.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00267.mp3", + "text": "Sun gano wani fasihin ɗan wasa lokacin kakar bada horo.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00268.mp3", + "text": "Angon ya kamu da rashin lafiya mintuna kaɗan kafin bikin.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00269.mp3", + "text": "Ina ganin kamar shi dogo ne.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00270.mp3", + "text": "Ba wani abu da muke alfahari da shi ni da Hassan.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00271.mp3", + "text": "Abinda na sani dai, ba su da yara.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00272.mp3", + "text": "Aliyu ya fice daga motar.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00273.mp3", + "text": "Zaka iya kasancewa tare da mu idan kana so.", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00274.mp3", + "text": "Ba na son yin magana da kowa.", + "language": "hausa", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00275.mp3", + "text": "Ba ni da tabbacin ko zan sami nasara.", + "language": "hausa", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00276.mp3", + "text": "Daga ƙarshe dai an biya piper.", + "language": "hausa", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00277.mp3", + "text": "kusan tsawon lokacin ne waɗannan alamun ke gudana?", + "language": "hausa", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00278.mp3", + "text": "Zan fi son kada na sani.", + "language": "hausa", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00279.mp3", + "text": "Yakan yi fito yayin da yake tafiya zuwa aiki.", + "language": "hausa", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00280.mp3", + "text": "Ya aikin sojin ruwan United Stated.", + "language": "hausa", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00281.mp3", + "text": "Akwai wanda ya sake karantawa?", + "language": "hausa", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00282.mp3", + "text": "Na tuna masa ganawar da za su yi da shugaban kasa.", + "language": "hausa", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00283.mp3", + "text": "Mustapha ya ce bai shirya tafiya ba.", + "language": "hausa", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00284.mp3", + "text": "Laifin joe ne.", + "language": "hausa", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00285.mp3", + "text": "Jibi Bitrus zai dawo.", + "language": "hausa", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00286.mp3", + "text": "kamar dama a tsakiyar kirji", + "language": "hausa", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00287.mp3", + "text": "Canza tsohon daga yayi zuwa sabo.", + "language": "hausa", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00288.mp3", + "text": "Na dau lokaci ban sumbaci Aliyu ba.", + "language": "hausa", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00289.mp3", + "text": "Kana ƙaunar Francis?", + "language": "hausa", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00290.mp3", + "text": "Yayin da bishiyoyin nan ke girma, suna hana ciyawa samun haske.", + "language": "hausa", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00291.mp3", + "text": "Na sami nauyi kuma waɗannan wando suna da ɗaure sosai.", + "language": "hausa", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00292.mp3", + "text": "Muryar ba daɗi ko kaɗan.", + "language": "hausa", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00293.mp3", + "text": "Firayim Minista yayi magana da taron manema labarai.", + "language": "hausa", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00294.mp3", + "text": "Hamsatu ta sami kyakkyawar dangantaka tare da Habibu bayan sun kammala karatu.", + "language": "hausa", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00295.mp3", + "text": "Margret ba ta san abinda ta yi ba dai-dai ba ne.", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00296.mp3", + "text": "Ban kuma ganin Karen ba tunda muka rabu da juna watan da ya gabata.", + "language": "hausa", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00297.mp3", + "text": "Abdullahi ya ce ba wanda yake son taimakon Falmata.", + "language": "hausa", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00298.mp3", + "text": "Habibu ya sauka kasan bene.", + "language": "hausa", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00299.mp3", + "text": "Jalal ya shirya teburin da za'a ci abincin dare, Hamsatu kuma ta girka.", + "language": "hausa", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00300.mp3", + "text": "Sojojin Rasha sun fara janyewa daga Afghanistan.", + "language": "hausa", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00301.mp3", + "text": "Shin akwai finafinai masu kyau a wannan satin?", + "language": "hausa", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00302.mp3", + "text": "Babangida yace yasan cewa Hauwa zata yi hakan a ranan ashirin ga wata Oktoba.", + "language": "hausa", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00303.mp3", + "text": "Kwararrun marubutan ba su da kudin shiga na yau da kullun.", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00304.mp3", + "text": "Yusuf yana saurara.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00305.mp3", + "text": "Menene baza ka iya yi ba?", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00306.mp3", + "text": "Kawai ku yi abinda na saku.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00307.mp3", + "text": "Ibrahim da Hafsat sun ce za su dawo nan da nan.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00308.mp3", + "text": "Nasan cewa kana da basira.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00309.mp3", + "text": "Idan na ja numfashi sosai, ciwo kan sauka ta bangaren dama a bayana.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00310.mp3", + "text": "Hassan zai tsaya a Austarlia zuwa wani satin.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00311.mp3", + "text": "Ba za a iya kwatanta kyawun da kogin ke da shi ba.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00312.mp3", + "text": "Ya ajiye littafin a kan tebur.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00313.mp3", + "text": "Salmon ya hau kogin kuma ya sanya ƙoshinsu a cikin yashi.", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00314.mp3", + "text": "Gaskiya ban bugu ba kamar wancan lokacin da ka ganni.", + "language": "hausa", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00315.mp3", + "text": "Zan ji daɗi idan ka bashi wasu bayanan yanayin wajen da muke.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00316.mp3", + "text": "Yusuf ba zai tsaya yanzu ba.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00317.mp3", + "text": "Shin akwai wasu magungunan da ke rage mutuwa?", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00318.mp3", + "text": "Kowane lokaci shashasha na neman hanyar da zai burge.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00319.mp3", + "text": "Kwayoyin cuta kuma na iya kama mutum ta hanyar idanu.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00320.mp3", + "text": "Kowani Talata babban yatsu su na sama kamar tsuntsu sama da kasan mukullin wakan.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00321.mp3", + "text": "Habibu, Hamsatu da Hassan sun kwashe ranar Asabar suna gwajin nuna gwaninta.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00322.mp3", + "text": "Talabijin din tana kara.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00323.mp3", + "text": "Yawan kifin da akan kama a wannan kohin yayi kadan.", + "language": "hausa", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00324.mp3", + "text": "Ba na so in zauna a can.", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00325.mp3", + "text": "Wakar ta tuna min da wani jarumi fina-finai.", + "language": "hausa", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00326.mp3", + "text": "Ya kamata mu tafi yanzu.", + "language": "hausa", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00327.mp3", + "text": "Yana da wahala a gano.", + "language": "hausa", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00328.mp3", + "text": "Shin abokiya ce?", + "language": "hausa", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00329.mp3", + "text": "Ta shiga turai ta United States.", + "language": "hausa", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00330.mp3", + "text": "Yanayin mijina da ban ne.", + "language": "hausa", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00331.mp3", + "text": "Ta yaya za ka jure zama da su?", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00332.mp3", + "text": "Ina tsammanin zaka so Australia.", + "language": "hausa", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00333.mp3", + "text": "Yunwa wani abu ne da jiki kan nuna yayin da yake buƙatar abinci.", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00334.mp3", + "text": "Aliyu bai faɗi lokacin da zai dawo ba.", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00335.mp3", + "text": "kuma ina tsammanin ina da zazzaɓi kaɗan", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00336.mp3", + "text": "Yafi muhimmanci ku tattauna abinda ya shafe ku kai tsaye tare da abokiyar zamanka.", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00337.mp3", + "text": "Alikoa ya ce yana tunanin Zainab ba zai yi nasara ba.", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00338.mp3", + "text": "Aliyu da Khalifat na son abincin Thailand.", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00339.mp3", + "text": "Tana numfarfashi daga wasan kwallon kwando.", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00340.mp3", + "text": "Jirgin London express ya nufo tashar cikin ƙugi.", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00341.mp3", + "text": "Aliyu baya mun magana.", + "language": "hausa", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00342.mp3", + "text": "Tijjani da Falmata sun ce suna fatan za ka kuma yin irin haka.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00343.mp3", + "text": "Wannan ba batun kuɗi bane ko kuma ƙarfi. Magana ce ta gado.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00344.mp3", + "text": "Jami ya dawo daga Boston saboda Kirsimeti.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00345.mp3", + "text": "Ya buɗe ƙofar.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00346.mp3", + "text": "daidai yake a tsakiyar kirji na", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00347.mp3", + "text": "Na san Aliyu ya san cewa ba lallai ne ya yi hakan ba.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00348.mp3", + "text": "Abar wannan matsalar zuwa gobe.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00349.mp3", + "text": "Sun son juna.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00350.mp3", + "text": "Ina fatan wannan ya isa haka.", + "language": "hausa", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00351.mp3", + "text": "Bana ganin dacewar yara su sha giya.", + "language": "hausa", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00352.mp3", + "text": "Hassan ya sanya hannu kan alƙawarin.", + "language": "hausa", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00353.mp3", + "text": "Ban fada maka Aliyu ba zai so haka ba?", + "language": "hausa", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00354.mp3", + "text": "Anan, kuskure shine ruhin sasantawa.", + "language": "hausa", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00355.mp3", + "text": "Ƙanƙara na rufe kogin lokacin sanyi.", + "language": "hausa", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00356.mp3", + "text": "Tijjani na ƙaunar Zainabt fiye da tunaninsa, yadda ba zai iya jure rashinta ba.", + "language": "hausa", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00357.mp3", + "text": "Remdesivir ya bayyana a matsayin mafi cikawa.", + "language": "hausa", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00358.mp3", + "text": "Wane ne kuma ya zo wurin bikin?", + "language": "hausa", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00359.mp3", + "text": "Rayuwar ta yiwa Mustapha wahala.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00360.mp3", + "text": "Alamar na nuni da ƙarfi da kuma jarumta.", + "language": "hausa", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00361.mp3", + "text": "Aliko ne ya saka Hadiza ta gamsu ta koyawa Hassan tukin mota.", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00362.mp3", + "text": "An rataye fitilar kan tebur.", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00363.mp3", + "text": "Hauwa baza ta iya da kanta ba, sai mun bukaci wani ya taimaka mata.", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00364.mp3", + "text": "Idan ba ki damu ba za ki iya ƙara faɗar haka sau ɗaya?", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00365.mp3", + "text": "Ta ce a shirye ta ke ta yi hakan.", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00366.mp3", + "text": "Tana zaune ne a wani bangare na duniya.", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00367.mp3", + "text": "Ya kamata mu taimaka ma Hassan da biyan wancan?", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00368.mp3", + "text": "Azaban yasa ya furta laifukan da bai yi ba.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00369.mp3", + "text": "Mace ce ke son ganin ka; yaron ya amsa, ya nuna shagon.", + "language": "hausa", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00370.mp3", + "text": "An sanyalokacin fara sauraren ƙarar Willi'am zuwa watan Nuwamba.", + "language": "hausa", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00371.mp3", + "text": "sana'oi, ayuka, dama kalle-kallle an rufe.", + "language": "hausa", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00372.mp3", + "text": "Wannan wurin cike yake da barayi da masu kisan kai.", + "language": "hausa", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00373.mp3", + "text": "Yanzu muka haɗa ido da Yusufn!", + "language": "hausa", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00374.mp3", + "text": "Yawancin ɗaliban kwaleji suna amfani da kwamfutoci musamman don rubuta takardu.", + "language": "hausa", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00375.mp3", + "text": "Wataƙila ya ɓace jirgin.", + "language": "hausa", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00376.mp3", + "text": "Gwamnati ta azabtar da ɗan ƙasa don ta sa shi ya furta.", + "language": "hausa", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00377.mp3", + "text": "Ta yi mugun sabo da karatun littafan Jauro Potter.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00378.mp3", + "text": "Ba za ki faɗawa iyayena ba, ko?", + "language": "hausa", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00379.mp3", + "text": "Mustapha bai yi magana akai ba.", + "language": "hausa", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00380.mp3", + "text": "Na yanke shawarar zan yi hakan.", + "language": "hausa", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00381.mp3", + "text": "Hassan na ɗakinsa yana bacci, ko ba haka ba?", + "language": "hausa", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00382.mp3", + "text": "Tijjani ya ce ba shi da tabbacin ko Lami za ta iya haka.", + "language": "hausa", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00383.mp3", + "text": "Na yanke shawarar tsayawa a soyayyar. Ba za a a iya jure tsana ba.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00384.mp3", + "text": "Tijjani ya gayawa mai kula da wajen Hassan na shirin guduwa.", + "language": "hausa", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00385.mp3", + "text": "zan turo muku da hoton cikin allon ku", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00386.mp3", + "text": "Aliyu na san kammalawa kan lokaci.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00387.mp3", + "text": "Idan ka ɗauki rayuwa cikin sauƙi za ta zo maka da sauƙi.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00388.mp3", + "text": "A Turai, ana fara karatu a Satumba.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00389.mp3", + "text": "Zuciya ke rarraba jini a jikin ɗan adam.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00390.mp3", + "text": "Gulbin ya bushe tun bara.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00391.mp3", + "text": "Lallai ba daidai ba ne idan kun faɗi haka.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00392.mp3", + "text": "Bari mu dauka, sabida musun da muka yi, ka yi daidai.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00393.mp3", + "text": "Tsuntsaye biyu sun gina sheƙa ba tare da neman izini ba.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00394.mp3", + "text": "Mun koyi ci gaba da rayuwa sosai daga rayuwar kananan dabbobi.", + "language": "hausa", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00395.mp3", + "text": "kana fama da gajeren nufanshi tafiya da wan can?", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00396.mp3", + "text": "Mun amince za mu zo ko ta wane hali.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00397.mp3", + "text": "Ƙungiyar ɗaliban sun buɗe mashaya a harabar makarantar.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00398.mp3", + "text": "Dole ne mu jira anan sabida Abdullahi.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00399.mp3", + "text": "United State ƙasar ƴan ta'addace.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00400.mp3", + "text": "Rufe makarantu na iya tasiri idan an kafa dokokin da kyau.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00401.mp3", + "text": "Ba zati ba tsammani Jauro ya gama da zurfin ciki.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00402.mp3", + "text": "Hatasarin ya ja masa matsalar ƙwaƙwalwa.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00403.mp3", + "text": "Suna samun kudin kashewa ne ta hanyar karɓa da sayar da tsohuwar jarida.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00404.mp3", + "text": "An ba mu gatar kamun kifi a wannan gabar ruwa.", + "language": "hausa", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00405.mp3", + "text": "Kowane lokaci jaridu kan yi ƙoƙarin bayyana mana abubuwan da ke faruwa a duniya.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00406.mp3", + "text": "Shirun da aka yi a cikin dakin karatun ya dame shi sakamakon kiran waya.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00407.mp3", + "text": "An dakatar da Jonathan sakamokn yin faɗa da ɗan wasan ɗaya ƙungiyar.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00408.mp3", + "text": "Kada ka yi musu da matar nan lokacin da ta gaji.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00409.mp3", + "text": "Ina so in yi wata shahararrun shafuka a Landan gobe.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00410.mp3", + "text": "Jalal da Lamiam sun ce basa son zama tare da mu.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00411.mp3", + "text": "Ta kan ziyarce ni lokaci zuwa lokaci.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00412.mp3", + "text": "faɗawa Jami yadda aka yi kasan shi ya yi hakan.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00413.mp3", + "text": "Har yanzu ban kusa gama wannan ba.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00414.mp3", + "text": "Yakubu ya mika sanarwa a banki kuma ya lalata wani aiki mai kayatarwa.", + "language": "hausa", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00415.mp3", + "text": "Ta manta bata wanke hannun ta ba.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00416.mp3", + "text": "Na samu karin biya mai kyau.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00417.mp3", + "text": "Bashin bashinmu ya kai daloli dubu goma.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00418.mp3", + "text": "Gidan ajiyar namun daji mafi girma a duniya shine na Berlin, a ƙasar Germany.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00419.mp3", + "text": "Na harbe dokin saboda matsalar wahala numfashi.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00420.mp3", + "text": "Na yarda kin damu.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00421.mp3", + "text": "Samun ruwan sama yayi ƙasa.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00422.mp3", + "text": "Tijjani ya shiga lifta ya latsa madannin zuwa bene na uku.", + "language": "hausa", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00423.mp3", + "text": "Don ba shi mamaki a ranar haihuwarsa, Na shirya kyakkyawan keken.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00424.mp3", + "text": "Yau na lalata komai.", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00425.mp3", + "text": "Kuma yaya ne zafin zazzabin yake?", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00426.mp3", + "text": "Ba wani sirri bane cewa ra'ayin Mustapha ya sha bamban da naku.", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00427.mp3", + "text": "Sabida haka muka girma.", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00428.mp3", + "text": "Za mu yi aure a watan Oktoba.", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00429.mp3", + "text": "Musa ya iya kirkirar abu, ko ba haka ba?", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00430.mp3", + "text": "Ba Bitrus ne mutumin da ya dace da ke ba.", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00431.mp3", + "text": "Aikin na da wahala, amma duk da haka Bitrus na son ya yi.", + "language": "hausa", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00432.mp3", + "text": "ana bada izinin fita waje sau ɗaya kowace rana biyu don samun kayayyaki", + "language": "hausa", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00433.mp3", + "text": "Musa ya faɗa mini ya yi hakan.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00434.mp3", + "text": "Aliko ya ce Lare ta ce ta san zai iya sake yi sau uku.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00435.mp3", + "text": "An gina fadar akan tsauni.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00436.mp3", + "text": "Bitrus ya yi ƙoƙarin ya tserewa daga aikinsa.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00437.mp3", + "text": "Muryar baƙon ta amsa,“Sir Ibrahim na nan lafiya.”", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00438.mp3", + "text": "An bawa wanda ya yi nasara a wasan ƙarshe kyautar kofin gwal.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00439.mp3", + "text": "Mutanen da ke son mulki ke samar da mugayen shugabanni.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00440.mp3", + "text": "Na kammala da makaranta tun da rana.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00441.mp3", + "text": "Lokacin sanyi baki ɗayan ganyayen bishiya sai su zube a ƙasa.", + "language": "hausa", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00442.mp3", + "text": "An sanya yanki na ƙarshe a cikin wuyar warwarewa.", + "language": "hausa", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00443.mp3", + "text": "Faɗa min dalilin da ya sa kuka makara zuwa makaranta.", + "language": "hausa", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00444.mp3", + "text": "Wannan shi ne yanayi mara dadi, na sani.", + "language": "hausa", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00445.mp3", + "text": "Yaran na nuna kamar sun wanke haƙoransu.", + "language": "hausa", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00446.mp3", + "text": "Ishaku baya shakkar ko zai iya yin haka.", + "language": "hausa", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00447.mp3", + "text": "Coronaviruses manyan cututtukan pleomorphic spherical ne da babban sinkayen farfajiya.", + "language": "hausa", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00448.mp3", + "text": "Muna da abin sha da yawa da za mu sha.", + "language": "hausa", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00449.mp3", + "text": "Abun ya burge Ibrahimu.", + "language": "hausa", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00450.mp3", + "text": "Bamu da karfi amma har yanzu muna da kuzarin kare kanmu.", + "language": "hausa", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00451.mp3", + "text": "buda ko kula da bibini na iya samun yammacin.", + "language": "hausa", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00452.mp3", + "text": "A wurare da yawa ana buƙatar waɗannan matakan.", + "language": "hausa", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00453.mp3", + "text": "Ke ce mata ta.", + "language": "hausa", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00454.mp3", + "text": "Har yanzu jikin Mona akwai zafi dole ne ta zauna a gida.", + "language": "hausa", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00455.mp3", + "text": "Dabbobin suna ta aikin cin abinci.", + "language": "hausa", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00456.mp3", + "text": "Ina matuƙar kewarka.", + "language": "hausa", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00457.mp3", + "text": "A yi addu'a ga yarinya mai tsarki.", + "language": "hausa", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00458.mp3", + "text": "Gwamnatin Amurka ta nakasa dan ta'adda mafi girma.", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00459.mp3", + "text": "Za ka bani dama kan haka?", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00460.mp3", + "text": "Shin kana da abun da muke buƙata?", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00461.mp3", + "text": "Ba a tura shi koyon yaƙin ba.", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00462.mp3", + "text": "Ƴan sanda na binciken sanadin haɗarin da ya faru a lokacin.", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00463.mp3", + "text": "Za ka iya tura min hoto?", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00464.mp3", + "text": "Wannan wane fina-finan Jamusanci ne masu kyau?", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00465.mp3", + "text": "Ni fa ban yi fushi ba kamar yadda kowa ke tunani.", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00466.mp3", + "text": "Na san Hassan bai san ina son yin haka ba.", + "language": "hausa", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00467.mp3", + "text": "Ina buƙatar zama a Australia fiye da yadda na yi tsammani.", + "language": "hausa", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00468.mp3", + "text": "Tijjania ya zargi komai a kaina.", + "language": "hausa", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00469.mp3", + "text": "Kwantar da hankalinka!", + "language": "hausa", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00470.mp3", + "text": "Aliyu kamar bai so taron shakatawan sosai.", + "language": "hausa", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00471.mp3", + "text": "Ban samu na je na ga Tijjani ba.", + "language": "hausa", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00472.mp3", + "text": "Ina alfahari da gaske da Babangida.", + "language": "hausa", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00473.mp3", + "text": "Ibrahim bai da ƙwarin gwiwar harba bindigar.", + "language": "hausa", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00474.mp3", + "text": "Idan kuna son yin wannan, sai kun tsallake takobi tare dani.", + "language": "hausa", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00475.mp3", + "text": "Mun san juna lokaci mai tsawo.", + "language": "hausa", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00476.mp3", + "text": "Ibrahim zai iya zama ya matsu.", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00477.mp3", + "text": "Yanke shawarar na da wahala.", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00478.mp3", + "text": "Yi murnan tunawa da ranan juyin hali!", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00479.mp3", + "text": "Jaririn yana wasa da kansa da wutsiyar cat.", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00480.mp3", + "text": "Tafiyar mil dubu yana farawa da mataki guda.", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00481.mp3", + "text": "Na yi zargin haka.", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00482.mp3", + "text": "Akwai wasu ƙa'idoji da sarkin ke da su.", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00483.mp3", + "text": "Canza-canzan mulki nada babban tasiri akan tattalin arzikin siyasa na kasa da kasa.", + "language": "hausa", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00484.mp3", + "text": "Ta shiga matuƙar tashin hankali bayan jin rasuwar mahaifinta a ba-za-ta.", + "language": "hausa", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00485.mp3", + "text": "Harshe mai iya magana yafi wuƙa mai kaifi haɗari.", + "language": "hausa", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00486.mp3", + "text": "Yusuf ya ce Hauwa ba ta yi fushi ba.", + "language": "hausa", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00487.mp3", + "text": "Ya kamata ku kwantar da hankalinku.", + "language": "hausa", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00488.mp3", + "text": "Na gama duk abinda Ishaku ya ce na yi.", + "language": "hausa", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00489.mp3", + "text": "Shin dadi tafiya da jirgi ruwa?", + "language": "hausa", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00490.mp3", + "text": "Jirgin ruwa zai dauki hanyar Hong Kong gobe a daidai karfe uku na rana.", + "language": "hausa", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00491.mp3", + "text": "Za ku amince da waɗannan sharuɗɗan?", + "language": "hausa", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00492.mp3", + "text": "Ka kara wannan shafin na lambobi.", + "language": "hausa", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00493.mp3", + "text": "Ishaku da Hadizatu sun amince su biya diyya domin a saki ʻyarsu.", + "language": "hausa", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00494.mp3", + "text": "Ni da Sheila tsoffin ƙawaye ne.", + "language": "hausa", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00495.mp3", + "text": "Wannan ne ƙauyen inda aka haife shi.", + "language": "hausa", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00496.mp3", + "text": "Jeff yana tunanin bazai faɗi cikin ƙauna ba.", + "language": "hausa", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00497.mp3", + "text": "kuma tare da zazzaɓi", + "language": "hausa", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00498.mp3", + "text": "Wannan bas din na iya daukar fasinjoji hamsin.", + "language": "hausa", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/hausa/wavs/hausa_train_00499.mp3", + "text": "Ko kun san lokacin da Habibu zai zo?", + "language": "hausa", + "speaker": "user_157" + } +] \ No newline at end of file diff --git a/prepared_data/hausa/wavs/hausa_train_00000.mp3 b/prepared_data/hausa/wavs/hausa_train_00000.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..61a706d611254c5984dcbef9e38c57f7797892aa --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00000.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15493965e69898a3e7064d7f260f12db54f6a497f651b7bf24a0aad53e2d3980 +size 34173 diff --git a/prepared_data/hausa/wavs/hausa_train_00001.mp3 b/prepared_data/hausa/wavs/hausa_train_00001.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e59cb428223879b3e95e989a9c736ef0c0971791 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00001.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48702166c69fd6911ca732301ee7f0c392b30e6a0cf74307b953c70d51ab4270 +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00002.mp3 b/prepared_data/hausa/wavs/hausa_train_00002.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c69b078a11303b1d227848d0f6b65d56b386e416 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00002.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7be2583c15d38914c32d937ebb513affbea84d578e19d2d285f37231ef5936d +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00003.mp3 b/prepared_data/hausa/wavs/hausa_train_00003.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e0b3d95c49897bf6e380ae9404dade2a73d47654 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00003.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da1fb4031730f2f54f43cf9d056c5637b577bf9b12026fa47450d15eba6c0c3 +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00004.mp3 b/prepared_data/hausa/wavs/hausa_train_00004.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..01cfec69e0357a0f7b40261b0ef995e7b6ea06a3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00004.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b43d20597323779c3ab93e509267a9fae0991d118ac02b3a4bfc6627e666674 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00005.mp3 b/prepared_data/hausa/wavs/hausa_train_00005.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a3b631e110da03f34786649c749a58c554c6259c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00005.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b023c6e874f886dc5a4a30f2d92ce1cc209b351166ab63805106af9bed53202e +size 30933 diff --git a/prepared_data/hausa/wavs/hausa_train_00006.mp3 b/prepared_data/hausa/wavs/hausa_train_00006.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..68a18b85b0999a5ef528a986f5a88d0d117af6f6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00006.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4ccb45c3774563823d1d893290b6fb280137c8123b00244125f6f7f32d6997 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00007.mp3 b/prepared_data/hausa/wavs/hausa_train_00007.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..edf16e0000b6b1f185a7678db29857db999d4c63 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00007.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e8afdacd236fb31a0dbec0cd0360da762f6c7c832eb6f90a2f24b6c7afab77 +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00008.mp3 b/prepared_data/hausa/wavs/hausa_train_00008.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5ed96e9b5aec076dad34559e2614ba7815a0ba18 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00008.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552313a74b4690fc878338d80d8123e1f0f77677f8ff6bcf50502e0ed4f785c2 +size 17325 diff --git a/prepared_data/hausa/wavs/hausa_train_00009.mp3 b/prepared_data/hausa/wavs/hausa_train_00009.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4e9bc288c9692bc8a6559f3620edf779d824d4eb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00009.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364baf934b51e3dab66adbac4f226826fea3bbbfe02265f02ef2fe06683314e2 +size 32013 diff --git a/prepared_data/hausa/wavs/hausa_train_00010.mp3 b/prepared_data/hausa/wavs/hausa_train_00010.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..91ba50fd0e59e5a35a8985b2cf2b00206b69cf0a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00010.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8c289d6e75153b6328ceb5d3d3f4e04c8bc0ffa09e2c3d1607252b4bc7d834 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00011.mp3 b/prepared_data/hausa/wavs/hausa_train_00011.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3167eb9889b6c732c42fe46dd5b44bdb411746c4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00011.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63e6cc674580527a30f2c09a47cc99fe63ae788de51ce80e049fc7055bd5763 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00012.mp3 b/prepared_data/hausa/wavs/hausa_train_00012.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1155f500bf6dfe963131886b33724059c85d7345 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00012.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b638c187352c7b01616b6cbb7efb8c0cf4c0d8696064b0a2466ddf8305a847c +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00013.mp3 b/prepared_data/hausa/wavs/hausa_train_00013.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..78508d83f13dc2eb9d3c1334f92a649074421bb8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00013.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:107426fe7cf59f572f9e3ad44174b16b74d269252aea33f22da6fd110581e90a +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00014.mp3 b/prepared_data/hausa/wavs/hausa_train_00014.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6ac2a044f7133a290ad2d4ef891783530feb293d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00014.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968af13161bc5f4aa8ac3b01b61d65b475f5526929b8de1c8c881c1074a8858f +size 16245 diff --git a/prepared_data/hausa/wavs/hausa_train_00015.mp3 b/prepared_data/hausa/wavs/hausa_train_00015.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5cb85c8920e6074462d15cfc4e4087eb4087a6b6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00015.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724c005b1b58cd4d3eb7e0c332bfc548f726acbc436a4be95e5d2c92ff78a9e5 +size 38925 diff --git a/prepared_data/hausa/wavs/hausa_train_00016.mp3 b/prepared_data/hausa/wavs/hausa_train_00016.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2ecb93d278719d96be5acda9b6e65dcae6f2348b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00016.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:335f4dc0dc81385fa2f8b2fe70b3d4fdb4b9c405373a7b1cf521eb73a0109c01 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00017.mp3 b/prepared_data/hausa/wavs/hausa_train_00017.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..75a1a81b3798007f2fb63c68ef68fe0135e6f7b2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00017.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b242f46f91e5a9a367b5c14af5580d879312d311f90bc58ced2bfa93aac580f7 +size 15813 diff --git a/prepared_data/hausa/wavs/hausa_train_00018.mp3 b/prepared_data/hausa/wavs/hausa_train_00018.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..709e9ee7c0c62c9fd6aa732dc346f506eb2abfe9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00018.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d02306beacc53838c1d22d1fa187edfcaa4c164d85fce00df4ef151e2aaef1be +size 35685 diff --git a/prepared_data/hausa/wavs/hausa_train_00019.mp3 b/prepared_data/hausa/wavs/hausa_train_00019.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..54779137cbccdc1a63502a2d2816e8b8e01ed42d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00019.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a554ba5db552d04c96e792446fc3b2c41af5898439c45cb4c0c9bf99348057b0 +size 13221 diff --git a/prepared_data/hausa/wavs/hausa_train_00020.mp3 b/prepared_data/hausa/wavs/hausa_train_00020.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d4a1245927f61b85d8f4dba933572ee3afd439e0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00020.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7b7363e4f0745ac4463673fd2451dbaa436ed308dad5fc1de4fd2a0ab9f4f5 +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00021.mp3 b/prepared_data/hausa/wavs/hausa_train_00021.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e1b9df4deb51a9e5bf1de3a6fb654249ee313d2d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00021.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ee323eac575ee77c228cdbafd4ddd3dcafdc14b0c9972af2cc61b31e1d9eee +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00022.mp3 b/prepared_data/hausa/wavs/hausa_train_00022.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9584b6956b6dffda3e1afd7a2ae76f35345fa5b6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00022.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed0076dfc150431423d33fe2f51ccf9d24262710714b74e93634f137c18a05d +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00023.mp3 b/prepared_data/hausa/wavs/hausa_train_00023.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..960a199bbea2e80d59a94d32e919b678b18307d3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00023.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:904d15dd8b4545acf1fe9cc8492fb03ae5d30ffd443f6c4dd1e538c7f3e06182 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00024.mp3 b/prepared_data/hausa/wavs/hausa_train_00024.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3ec660d810e2815524f18b391425e277d45ce0f3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00024.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9361825d66de8cf08def6643a990412dc059be5b0f0888b02b51cdd28f2ba452 +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00025.mp3 b/prepared_data/hausa/wavs/hausa_train_00025.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..44bf2c2af7744734378f0399f21b633b07563f55 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00025.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4896750d059d8a51d354e8947dfe7744011750ae756609be2773345e2e39cac +size 34605 diff --git a/prepared_data/hausa/wavs/hausa_train_00026.mp3 b/prepared_data/hausa/wavs/hausa_train_00026.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8943db086378860bf973ca05900911b8e467dcc --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00026.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8521b5fb523397de91f5515e19b2e1b3831919ce7b6285681b9812e7178d0377 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00027.mp3 b/prepared_data/hausa/wavs/hausa_train_00027.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f916628ca7eeedffbdf9fff6b82ada2af5e9eccf --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00027.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5eb0c546ebc4cfc764571ac091f27c7669790c7a03c6574e7b3a5292717d977 +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00028.mp3 b/prepared_data/hausa/wavs/hausa_train_00028.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b2767868a702e90fa1db2d2278a01364f38b37c4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00028.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb71733469bd777a3a787bc847728e00790ece07ce657aefabbec88b95576e4a +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00029.mp3 b/prepared_data/hausa/wavs/hausa_train_00029.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cf98028dd3261e685c9009fb760315340cc93adf --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00029.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3565dcda675e663c7ef1f7030fe6968d0cd5128c464e65201cae68bba54f41a9 +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00030.mp3 b/prepared_data/hausa/wavs/hausa_train_00030.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5cd920b5401aede4c29d1472e6b87bd85a00fea9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00030.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4f0167aadc73c76e9e1c07bf3b24c728e523136319a6f417dea48669c1de98 +size 16461 diff --git a/prepared_data/hausa/wavs/hausa_train_00031.mp3 b/prepared_data/hausa/wavs/hausa_train_00031.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0565ccedd93bd10313396e0d612f2641d692d3bd --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00031.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62719c2d2760d6d729a5b8c165ed2c097b005230607ade70a0f86e8fe6b59a2 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00032.mp3 b/prepared_data/hausa/wavs/hausa_train_00032.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..953edd11fe76f98deab63bc7b51e100a794aa8b5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00032.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f55c9a737fc217dd897dc96220f3f8e71ebfb92623dd90e629b347a3e1e9974 +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00033.mp3 b/prepared_data/hausa/wavs/hausa_train_00033.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9bc72e9c61d75d687259c3b6a51c7165346c3fbc --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00033.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33849e373d0595fca946349b67debfacc17e981985317a3c4d036c04fb4074f2 +size 33741 diff --git a/prepared_data/hausa/wavs/hausa_train_00034.mp3 b/prepared_data/hausa/wavs/hausa_train_00034.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6487fc3210ce7b071e8d9089a08b5ad1adbd3e32 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00034.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c59f3472de54f524b794cc60cf43d036dbda94134f435f6fbd00e552238ea40 +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00035.mp3 b/prepared_data/hausa/wavs/hausa_train_00035.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fb9bad39331e147de2376e684bc222847ef6136e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00035.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e076fa671a0735b44893be6dfb7fa26f361532367775cea272361b13b9fa9385 +size 32445 diff --git a/prepared_data/hausa/wavs/hausa_train_00036.mp3 b/prepared_data/hausa/wavs/hausa_train_00036.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6ef549aa4166dde1e5dc2375375090971bc47dd9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00036.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d4e75fe9bea1514c08649d776c375d0197a23143ec3e4ae76b61d3f9bf24df +size 33525 diff --git a/prepared_data/hausa/wavs/hausa_train_00037.mp3 b/prepared_data/hausa/wavs/hausa_train_00037.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b9848378d2be42625215a882674bc805d0407eb1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00037.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32793aa0f910be9b7d412be20a5f5b07f8e33cdadb153891a1f9cdb01e9ccda1 +size 22941 diff --git a/prepared_data/hausa/wavs/hausa_train_00038.mp3 b/prepared_data/hausa/wavs/hausa_train_00038.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4375e4740199285b1ea8772e364b994812aa3651 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00038.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589e2d1456ab5b2fccc61b5a8167446c9648a75a931850dab2e8ef0164529ab3 +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00039.mp3 b/prepared_data/hausa/wavs/hausa_train_00039.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9e0dc64d10048c18d16f22671b326ffcf66477bf --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00039.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d61e831f2796b9a9e83998259a3a3dfda37ba4da13d52ef5b2e35c13223562 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00040.mp3 b/prepared_data/hausa/wavs/hausa_train_00040.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..850928898e26f9f3628d9338786497a7e0b5688a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00040.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac5f7d06862733047f4465967248041b544957317bbf828fa1996d1463ffe61 +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00041.mp3 b/prepared_data/hausa/wavs/hausa_train_00041.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8a706e3916b5daec65a0c419a0b9293e23605ef8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00041.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43bcf8d54ed5ddb2e7bc2da511e054952a93dffb7a099fd98d2263e88d8fa92a +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00042.mp3 b/prepared_data/hausa/wavs/hausa_train_00042.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2006119f4182ef977c5758b840a4994492ee1a4f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00042.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71aedd89e4dd6e1d5baa6db2bb83f1cff430f2df54410dda7419083ca44e3b44 +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00043.mp3 b/prepared_data/hausa/wavs/hausa_train_00043.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..314131918addaa268dce6ae1d1a34324f46b5876 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00043.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8e9e29ddbd136fc26ee6bc86b747238f7d6affb1e320ba917a6890802439a2 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00044.mp3 b/prepared_data/hausa/wavs/hausa_train_00044.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..533480430161fa6c16237d613a81492636247feb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00044.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce7c2a75a8d66fa30b19680f41a87d1637c01d6fb5fd9a24446bb893afb06ae +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00045.mp3 b/prepared_data/hausa/wavs/hausa_train_00045.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d7f25c49aaba77c359c06e5d4671ec3f9e326fba --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00045.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd37e825b82ca59ed3de0784bb5d4ae3b147c2eefddb749bc6e60d8b9a24d56 +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00046.mp3 b/prepared_data/hausa/wavs/hausa_train_00046.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e674c89c0821fac4f7f654771efa793e2851fec --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00046.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d0da1860c5980b9152c181032507b948bbee0c8e2429ea9beb339c7be1245e +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00047.mp3 b/prepared_data/hausa/wavs/hausa_train_00047.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e7b3b5b7693c219b51e17ba38db03f123afbce6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00047.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03cf8112d514fc9bf339504292f88384119ed419c80872a9219506896ad7711 +size 28125 diff --git a/prepared_data/hausa/wavs/hausa_train_00048.mp3 b/prepared_data/hausa/wavs/hausa_train_00048.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..92ea84ce7f6a31c785e3ffbebfa9efe3e5d6060f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00048.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fffcd7b4e74a4043fd1a689a9ee92bd12f2b2b600993d3022b471cc1be5ad2e +size 38925 diff --git a/prepared_data/hausa/wavs/hausa_train_00049.mp3 b/prepared_data/hausa/wavs/hausa_train_00049.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..44b5f1028f5f13c0ca1844e6a0634617d43aa7b2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00049.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4b8820d4d7688508b24dcaffcf1fd08ec195f31f7aef796a495637c676aa65 +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00050.mp3 b/prepared_data/hausa/wavs/hausa_train_00050.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..36dfcbf8e08617e588512f15537fb95bc8ff3ab4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00050.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d990826c23aad88cfb5071f1ca73d80290a4acaa0269dc4da1516970980d6df +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00051.mp3 b/prepared_data/hausa/wavs/hausa_train_00051.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..db4ecb72a9af8cf795b0007b34d055ba450c0e4d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00051.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3e6c7dcfc2c41b37bc9e95d30927122d0afa56166fab593dde790bd7477ee4 +size 14733 diff --git a/prepared_data/hausa/wavs/hausa_train_00052.mp3 b/prepared_data/hausa/wavs/hausa_train_00052.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ba27cfa2fb5b50d5c4e3d2e956cdfa0321a66643 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00052.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc3ce54537b46f852418ecf2e70fcbf759fe5b9cb3d767bf29453f4716c1391 +size 25101 diff --git a/prepared_data/hausa/wavs/hausa_train_00053.mp3 b/prepared_data/hausa/wavs/hausa_train_00053.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f01eac501b500261a6bcfbe070ada3a05e10a575 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00053.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4cca3e32466981a965aa1e9dd90d8beb792c8bfe9ee3e1cb9af22e4ff764f1f +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00054.mp3 b/prepared_data/hausa/wavs/hausa_train_00054.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bc3bce829fabc18cbb6fcd35374805a201e9aaf2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00054.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b504f3eac903e052d8fa0942ec91a9785f432c693e1adec2c9acb5690b138f +size 22941 diff --git a/prepared_data/hausa/wavs/hausa_train_00055.mp3 b/prepared_data/hausa/wavs/hausa_train_00055.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f2986b323a6506f4f54c589db948ea03eee262d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00055.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c2395be74c114404ff2546111e544c81b97848282533e05f1fefb6bd44a25c +size 14085 diff --git a/prepared_data/hausa/wavs/hausa_train_00056.mp3 b/prepared_data/hausa/wavs/hausa_train_00056.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2628accb5d36c5e08420432979f5e51c78ee50ed --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00056.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c710711c948042fe66462e23b5022b4f9fe130b77cce0ba5bcba96fbce967b7c +size 22941 diff --git a/prepared_data/hausa/wavs/hausa_train_00057.mp3 b/prepared_data/hausa/wavs/hausa_train_00057.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ea95f5dc864193883c0cfbbfce87265451be1571 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00057.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ebf60c4066997d2d0d66f74a4e3ac87c84786840b0aa9b5ae0cdfe21d12b79 +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00058.mp3 b/prepared_data/hausa/wavs/hausa_train_00058.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..037140fe98567097df3bbde856c424c6bf608fce --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00058.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627d0bcdb43f37758d7b9d5551313b5d7f186bb8117561c6ece1099846b90299 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00059.mp3 b/prepared_data/hausa/wavs/hausa_train_00059.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c86561e2d6743db590c617f09b7c868a4f040836 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00059.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b5e7dd0307745e4c319ec93fed2d168da6eb31a994e906a01c52837b4ba953 +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00060.mp3 b/prepared_data/hausa/wavs/hausa_train_00060.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..02a3056b40e8d46f63278b9082b66c3dae2678fe --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00060.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6008e3c3e285075216878681a0bea646271922e7aa94479152a7c73882aba5e +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00061.mp3 b/prepared_data/hausa/wavs/hausa_train_00061.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..79642bbd05f92474200ea75919f31866e35b9e9b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00061.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42204251f803859a6b3a82e2c8182b42f2afa7748139362ed958c5f4eca9b48f +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00062.mp3 b/prepared_data/hausa/wavs/hausa_train_00062.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..16d7f9ac2be5b751055a411f2a6dc25906f881ff --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00062.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:243000c8126bf5dc365cbf2feaed922540f7ff24039d68e2115f9e8853475b4c +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00063.mp3 b/prepared_data/hausa/wavs/hausa_train_00063.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..348c22d4712cb0a24094f4ba639269612c615bd9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00063.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ff1e75e5ebfee97c6aa700ee3104734a572accca09ebc25f9099dff3438d77 +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00064.mp3 b/prepared_data/hausa/wavs/hausa_train_00064.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5263e3aec955015dc9ec688b0aedbc581ecdc480 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00064.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6931eee8246a0df9e627d7c4399fd63211def49411ad81b846c817bcc04c576 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00065.mp3 b/prepared_data/hausa/wavs/hausa_train_00065.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2909d61f00cff168c351506f6c949b5d1f2b42fd --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00065.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3828c8a41fb7ae995bd210eb4ee0563fd5b7c6596c2b5201e0992334a45442c +size 12141 diff --git a/prepared_data/hausa/wavs/hausa_train_00066.mp3 b/prepared_data/hausa/wavs/hausa_train_00066.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..078aa79b603cb2205888f15e1c9402add079da64 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00066.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0940c440ddeb98658ab1a85fb9939bcc5d653013cba28ee1fe14207cd6d0cbf4 +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00067.mp3 b/prepared_data/hausa/wavs/hausa_train_00067.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5ec8df38266f9e7a4e11954f08a5201c4b9c0424 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00067.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4bed8f07728569776f6ccec876a33980542c65dd75d6fe7a0e75f4fd4e0f45e +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00068.mp3 b/prepared_data/hausa/wavs/hausa_train_00068.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..94ccc12015e58a811d585d8ca3e89b468039f973 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00068.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23ca705591d9e6a7d5c4cf3dd254b2de2db7770c16f8d9b1bbe7a3d4836d317b +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00069.mp3 b/prepared_data/hausa/wavs/hausa_train_00069.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f3e88513f5e957b5287f2658e5b61970e18fd67d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00069.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad6567a505b6e7e92de08c558c8433908752077f1d19fdd75bee545fa6cb200 +size 23805 diff --git a/prepared_data/hausa/wavs/hausa_train_00070.mp3 b/prepared_data/hausa/wavs/hausa_train_00070.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6f287aa5aed2805eae8185ea0f36e48d60f33651 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00070.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5356f80b860cd0c2019aff0840527625c3fafd6a3b2e9ad5bafd7f5aafd1906f +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00071.mp3 b/prepared_data/hausa/wavs/hausa_train_00071.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a226915b89319e69b28ab24a184ec1d2952422c3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00071.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89ba36a2ab77fed7490ab1540a2d80267775e25a126b13c0468e8b543056be2 +size 29853 diff --git a/prepared_data/hausa/wavs/hausa_train_00072.mp3 b/prepared_data/hausa/wavs/hausa_train_00072.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f2d2d70c1ae95f696736fde59f75d11007024605 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00072.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f6df02c97eaa7a0403c60d9839a88d69ad0e6bf8f44620f7309d545d7bc5c3 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00073.mp3 b/prepared_data/hausa/wavs/hausa_train_00073.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..99e2018acbcf40dc424034af9f7b5cd7316bfdce --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00073.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d10a5bc7887ff3e57a39d6921731eeb97c9820df583499b443e0f5142d5d79 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00074.mp3 b/prepared_data/hausa/wavs/hausa_train_00074.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..20b996f18431356f447d91dde796fa9ca62e312f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00074.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5b7c81cd113b1442352534ee870daa9c867f2c089dc6c24efc181c6adcba5a +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00075.mp3 b/prepared_data/hausa/wavs/hausa_train_00075.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a66be2ee30a47d1b8aa3aa981272167d5704716b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00075.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c86ae84c0256438dc503cb5b5d0e7ae155e0db94da35576add7a23bb7247cc6 +size 32013 diff --git a/prepared_data/hausa/wavs/hausa_train_00076.mp3 b/prepared_data/hausa/wavs/hausa_train_00076.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8f326b1fa916818cd6ddf88455d9a6f8482a1047 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00076.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ab1ae3de51139fb41816c6b2bd6aa47ab9283b495c83e3f835a500ce95eacd +size 15381 diff --git a/prepared_data/hausa/wavs/hausa_train_00077.mp3 b/prepared_data/hausa/wavs/hausa_train_00077.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..77d821e4006d09a828260fb90a296a1b544760a1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00077.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a48c794e6befa466cfaf92e3005597261e458d77d316962543ff5d02a48715af +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00078.mp3 b/prepared_data/hausa/wavs/hausa_train_00078.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..977ed1e6f5d834387fe61f920c3b642034c01043 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00078.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999c1f6cb954dd6b283bd5004f606886a115dfc4b78bd88b94a04927f8f05a81 +size 31365 diff --git a/prepared_data/hausa/wavs/hausa_train_00079.mp3 b/prepared_data/hausa/wavs/hausa_train_00079.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6856f37f5f0b49c3b842c7af6b191d19fd770823 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00079.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4f9f7830cf7f18a5188a84f0085fcb6d43cb8f27fc4f4b4646481bd75c5cea +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00080.mp3 b/prepared_data/hausa/wavs/hausa_train_00080.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b78225c1d3ab3bacbbab9f031dac79429c6a0896 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00080.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:236b91df6218ee938b1236fbd7710f81e5d7367df162cff68fdc10f2b3ca3ee6 +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00081.mp3 b/prepared_data/hausa/wavs/hausa_train_00081.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..98998310b9cfef6d47c28b46da02044d90942a68 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00081.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e6cb57dc7cac3423125c4f02a92ff4a76575eb02a929ab76330513faa398461 +size 39141 diff --git a/prepared_data/hausa/wavs/hausa_train_00082.mp3 b/prepared_data/hausa/wavs/hausa_train_00082.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..78c4fcf8dd3d1911edcd463c0713ac8871ee65e2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00082.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc5b8c17985965bdb347f63f679b888b8908681d57060aaac4ab5aed5851494 +size 41301 diff --git a/prepared_data/hausa/wavs/hausa_train_00083.mp3 b/prepared_data/hausa/wavs/hausa_train_00083.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8ae6f7d167907edcb3c522c9688aa57b47bfad7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00083.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381ed04cb70029a9af3a2403596a9a3a99eab43af51288295d629a072034f602 +size 29853 diff --git a/prepared_data/hausa/wavs/hausa_train_00084.mp3 b/prepared_data/hausa/wavs/hausa_train_00084.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..db331bf3135a803e1cbdeeb5f67f7eea1bac8539 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00084.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b79833bdc1f394c351f0bce54a5edc8118fe574a5dc23d27c556cf6889452bf3 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00085.mp3 b/prepared_data/hausa/wavs/hausa_train_00085.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0580042d329d511abf3acaffc2dc4209451de041 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00085.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0f27e91577764f9274e2b224083496fa6222be33243c0e81ee53964a0f427b +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00086.mp3 b/prepared_data/hausa/wavs/hausa_train_00086.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..882a759e439e01b98cf5e5a10033bcb22af95fa0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00086.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5f787a0965ff62495196dc9ceb9e622547f20ee36e8db68dc576add098faec +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00087.mp3 b/prepared_data/hausa/wavs/hausa_train_00087.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8427df694198379020dedc3b332012e1757a1210 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00087.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9a33f2490c34b6721968022d3684fd3830702ca941b91fb417b742fff1d573 +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00088.mp3 b/prepared_data/hausa/wavs/hausa_train_00088.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eb1e68dfd020f770bce6c650a8a3762676957a6b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00088.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19634c6eb690002323880d3158cd10ff6cee0e5a3ef174adb924f09e447ee046 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00089.mp3 b/prepared_data/hausa/wavs/hausa_train_00089.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4634863c647f39aef52d08ea2ac6586b6624b466 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00089.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ba614eca013a33fc7bf04535f7a88a6d194686f4b1520fe787c753f41363898 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00090.mp3 b/prepared_data/hausa/wavs/hausa_train_00090.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d6545724d4798dd29e6b57ba05444c53ec2fabb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00090.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585592ef1f5e9b824e380ef2019fc35bca1961ea6f8fb13e76062ade2d0377d8 +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00091.mp3 b/prepared_data/hausa/wavs/hausa_train_00091.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7faec942c060d3aa877fe634eb3a34ebf8f65c6b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00091.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5d63a53a747f6e6e372747b60ec8e725f3b5bebf18e96cbcce28cf373acb16 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00092.mp3 b/prepared_data/hausa/wavs/hausa_train_00092.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ffc8f27faa1c70e06b01f5d5a3f93902b7929220 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00092.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b7511db2e5d76370fc546a7b408f4ee7ce1831766ca5ec01294c7a77b0a6f9 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00093.mp3 b/prepared_data/hausa/wavs/hausa_train_00093.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3487b27f6178ac217cfc8e46ccc78063f6a82aa7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00093.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139b0880055ee2556fa0ac269856cbd8e62c5abfab86555fd20cf2d7f910149a +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00094.mp3 b/prepared_data/hausa/wavs/hausa_train_00094.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3bfbb6a9856635c7140558439c2a0aec4b383069 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00094.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047cf399c43e5d90742b678cced55ac49d9108a00bf6efe747f185b01d26085b +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00095.mp3 b/prepared_data/hausa/wavs/hausa_train_00095.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0814c3068b5e15b1114d0488e8f987775673bd51 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00095.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50cbcc6c48536b6dce0a794a68eee28427d9441b9ed5515723d21acfeefa23fd +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00096.mp3 b/prepared_data/hausa/wavs/hausa_train_00096.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b7c4b736b67f37495b59ca65b19a6f30df69455 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00096.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a5b74f59a3fbaa99cfa3d46d8d1bc7b102f7f0dd60050b0f74b746e6c69b64 +size 16245 diff --git a/prepared_data/hausa/wavs/hausa_train_00097.mp3 b/prepared_data/hausa/wavs/hausa_train_00097.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4076f0ad919f7bbe84b63611d90b967128fc2e37 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00097.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a946888a3c25105c4724f2c50c6a781094f3bd10286d6bf35de2b0e0bcfffaa7 +size 31365 diff --git a/prepared_data/hausa/wavs/hausa_train_00098.mp3 b/prepared_data/hausa/wavs/hausa_train_00098.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2375695948feae5bacb1c02486c34c21de94b3af --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00098.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f4645ddeea4ef97e7b022b242d859176088ea1aaf989958fcb6eb501b10da1b +size 34821 diff --git a/prepared_data/hausa/wavs/hausa_train_00099.mp3 b/prepared_data/hausa/wavs/hausa_train_00099.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b0934afbea0000497613b818be642de99cf94f22 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00099.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd7e1144f9135cd4abbf2a874aada1555e4f175992b4a529c0fb3f398bb6b932 +size 35253 diff --git a/prepared_data/hausa/wavs/hausa_train_00100.mp3 b/prepared_data/hausa/wavs/hausa_train_00100.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2b55fccefc28a94d6812ecea962978f047c2046b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00100.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7181165b36bb1c4e9c4e44a04d55b91bfd69c148feb6d9177982f19e5a36be34 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00101.mp3 b/prepared_data/hausa/wavs/hausa_train_00101.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a81ddb6a2c88f5d9ade6bc8de970ffc3bd0a3a22 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00101.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb622e834d25430920b16e3f4ca0b05c8d5cbaf4b8d4ff6310c9256adbc3705e +size 30285 diff --git a/prepared_data/hausa/wavs/hausa_train_00102.mp3 b/prepared_data/hausa/wavs/hausa_train_00102.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5a1d5e6e71ae33c9aed874dfeb94723368612824 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00102.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d1e714510c15f1de1c729eee93d3e4f8b728b87f579b4109dc73abfb66e244 +size 15165 diff --git a/prepared_data/hausa/wavs/hausa_train_00103.mp3 b/prepared_data/hausa/wavs/hausa_train_00103.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..14524b9432b0632ff714d1a0238571c40e244818 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00103.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9268ec51e6206a1e7568f04d4550f1a4617dfef573028ad142417e28ddb90a0b +size 33525 diff --git a/prepared_data/hausa/wavs/hausa_train_00104.mp3 b/prepared_data/hausa/wavs/hausa_train_00104.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..26b7e27d85657630aa6e31d6a6c356d6d12ca145 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00104.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f6e465c708edd5766ebd5f684cb3fd22918c060adb61146784323ab9a7abaf4 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00105.mp3 b/prepared_data/hausa/wavs/hausa_train_00105.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..13bb218bc221b56892a223e98a1a5d67e462885b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00105.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2d09ca877fed18528b061c7ff102fd4f0df214f07655c348fe580bb1453941 +size 16245 diff --git a/prepared_data/hausa/wavs/hausa_train_00106.mp3 b/prepared_data/hausa/wavs/hausa_train_00106.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..968e4bc32655160de62effa0dd096daf25436ea8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00106.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96948613b7ef7b5daf9040f8b2cd7bbb379b697f4fb80fe445f8107b0d99ca30 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00107.mp3 b/prepared_data/hausa/wavs/hausa_train_00107.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..aa41e40ba1710730d0689588afc2e0a2591f3773 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00107.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477dbaf90b4336cc21453ca2458d08bf5cfc33063868d1064e98e52698618319 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00108.mp3 b/prepared_data/hausa/wavs/hausa_train_00108.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b143f7b714197c63792104552308ebda8ba98f86 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00108.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a207edf7c3cf2213101ec0f9318f1d91393026839ce10e7384632eb71fd560 +size 37413 diff --git a/prepared_data/hausa/wavs/hausa_train_00109.mp3 b/prepared_data/hausa/wavs/hausa_train_00109.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6b0a10ead1cb59d0d6b5b2fae2866eae0c517603 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00109.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76caf89c060f02f9c4af03625a69db877b2662e2df74e143a0d95f3e802a0bd +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00110.mp3 b/prepared_data/hausa/wavs/hausa_train_00110.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..565a42295279d7e3db48a76046ed80a5eb07e0ce --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00110.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54819037904d6534128c3b2af37c7d213221e0df339adab7f3357d1b3778718 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00111.mp3 b/prepared_data/hausa/wavs/hausa_train_00111.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..492e2a07e8492982393a7afc27a71814b2b26f99 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00111.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da6e20b7ec9d496c2e5d08256628ad3d4d5912e3e00828b79a802a30837ee42 +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00112.mp3 b/prepared_data/hausa/wavs/hausa_train_00112.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..222c130123c692dd911478cdd6ed9024bcd77d25 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00112.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c658679e5119606fd95fe970ab7c7eedc6a711bbdc0dff1cbc89581c9c4675 +size 13653 diff --git a/prepared_data/hausa/wavs/hausa_train_00113.mp3 b/prepared_data/hausa/wavs/hausa_train_00113.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ec498c52f865996eef48ebcfba011a18c307f9e1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00113.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838700108f395181bf18ba3a76f14d27fa2c2202869a9e445130cd4948bc3369 +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00114.mp3 b/prepared_data/hausa/wavs/hausa_train_00114.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1de8ee2a49afc597913f8914d64c822c38567f47 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00114.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddae7849cc5b2f52aaa831ff8b92bcd0b5c25f5c1e0632d9156057e3730bf9d +size 29421 diff --git a/prepared_data/hausa/wavs/hausa_train_00115.mp3 b/prepared_data/hausa/wavs/hausa_train_00115.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..760975efdb6b6713a02e7e339df9e46f5eef09df --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00115.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:125854662a2577c1252c6f87c2e884a681d488e2561bb24450d63346df7655d4 +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00116.mp3 b/prepared_data/hausa/wavs/hausa_train_00116.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e78a180d169ae9aba27c068046cdbd79cc2e7a48 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00116.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45466b943369ba61ffd9ee6acc12da82848de76a14da45bb45f5d3ab55fcd811 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00117.mp3 b/prepared_data/hausa/wavs/hausa_train_00117.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a74bb6460d8881617881a3453da9da7b9d56806a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00117.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5efb2b7683e536036b9d141daf6ab5f4079d4a4ae718311f73afc6b16ea1e312 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00118.mp3 b/prepared_data/hausa/wavs/hausa_train_00118.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fdc42bfc3bcc66d574303e0aab4d9b8da058c52d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00118.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e3a06bb17f367a3b859b3350780f8ea7b9563794f243d89cfdfa4f9500d792 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00119.mp3 b/prepared_data/hausa/wavs/hausa_train_00119.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..42b3d4cc4ddd0ecf0cfbebe42def9b94690522a3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00119.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0365453a4dcf38777cfc0035fe5a6aee6e4f75066e887160ac345b9eec0aa8 +size 30933 diff --git a/prepared_data/hausa/wavs/hausa_train_00120.mp3 b/prepared_data/hausa/wavs/hausa_train_00120.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a8d70df6c503ddecb01456c1ff7736d59e850176 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00120.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17664f715c80b966203b6a8c383aa0e5807c66b4cb13b6bb73d19eec19bdd690 +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00121.mp3 b/prepared_data/hausa/wavs/hausa_train_00121.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f94531a5a84db11a99bd714c6564a64a6754318a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00121.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cc7262244007c87f62ea0779cd1b01b17b8df1b9cb0908b13561b5cace6982f +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00122.mp3 b/prepared_data/hausa/wavs/hausa_train_00122.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..aa2960904a0b76803c1bc37ebb08f379e3770ef0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00122.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a059fa98b9df9a0c4c3fd0f61d8e507f9c6e7c218c9a404886b85bb6ec968295 +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00123.mp3 b/prepared_data/hausa/wavs/hausa_train_00123.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8f51614132be77cc1a6de035259784587f920eef --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00123.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ac2dab401ae251db1da8592c8ceff4df97c78dc4c7f5e6bf9510952f89ff69 +size 25101 diff --git a/prepared_data/hausa/wavs/hausa_train_00124.mp3 b/prepared_data/hausa/wavs/hausa_train_00124.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..580dab2a1c28732561abca5a535cda4fee98607b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00124.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2dd9ecb089581def840b7e09f2a7ac9989d3dde57b4bd6ae0aa58ed23c0e8e4 +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00125.mp3 b/prepared_data/hausa/wavs/hausa_train_00125.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e6e90f9e7100fd5151a64b701203d10d2e8b894f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00125.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d6d3d608db2c324e882c0993df19fcbe6da78343446bf506ccb570f500b179d +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00126.mp3 b/prepared_data/hausa/wavs/hausa_train_00126.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5df2d8bc45c3e508a7bde1aef10ca7c2c947beb1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00126.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a8cecd45ca662dafcd92e105d132a892c027538bb4519251b84411c7e3e938 +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00127.mp3 b/prepared_data/hausa/wavs/hausa_train_00127.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b3079cb676bc09a2039ff1e8c822276c01a5f6a8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00127.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1bfcb8f7faa78593b154a41011b1e9cb156983901cb85260bc923d63d063a28 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00128.mp3 b/prepared_data/hausa/wavs/hausa_train_00128.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9e5bb38d02e101aeb6af1bcfcf7e1920be44f90e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00128.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dffb5bcf68c40d7f52924eb957840e210d87c4aedd700fd1b802f12ba52bb362 +size 15165 diff --git a/prepared_data/hausa/wavs/hausa_train_00129.mp3 b/prepared_data/hausa/wavs/hausa_train_00129.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c9917a8aae1228a0b1f4455ae212cb297d690255 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00129.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b807d4027cbcae95ccd14bb636720564429cba3d037f88d446a5fde21ac431 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00130.mp3 b/prepared_data/hausa/wavs/hausa_train_00130.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bc155b27a2c526be95eb22c91c1fc5763413dd78 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00130.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35eb177df6ba9cf477995ff47199a50208d1ba1c3c3925cbefc922fb8d810e0 +size 23805 diff --git a/prepared_data/hausa/wavs/hausa_train_00131.mp3 b/prepared_data/hausa/wavs/hausa_train_00131.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dfef8c62608365b88dd8c16c12921b9b14dd0b64 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00131.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d011d0fc4caf4448f050324d51dfc161ec7ddcf6d8cab37fa836faba8252c6 +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00132.mp3 b/prepared_data/hausa/wavs/hausa_train_00132.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..88684139fb05a2b6a30598ba13a3e4346c25bd45 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00132.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df61e46cba68f39df01d3756e13bcb5fa59b8026f77eab0f3e026c5fe21509f +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00133.mp3 b/prepared_data/hausa/wavs/hausa_train_00133.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..39bd71564e1056d13af81d7c3a68f54ed6d639b5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00133.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab023f40d55693edb59b9843c6164bbc9f5ff7011547ae61a11611e3057d326c +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00134.mp3 b/prepared_data/hausa/wavs/hausa_train_00134.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4004f0ab3572dd7af8a4711e05a5ee7b4b6c7d6f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00134.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4ab098c2b5d25e888fe364fcb97f4e1dbf193e06397086146f6d4aad0e602a +size 48861 diff --git a/prepared_data/hausa/wavs/hausa_train_00135.mp3 b/prepared_data/hausa/wavs/hausa_train_00135.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..aa730dec865ed0b71ef23ac6aa8a014d4ecba063 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00135.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43e9392041afb215708593721072c4c744875f9d07d1427ac237dc1dea1e46b +size 15381 diff --git a/prepared_data/hausa/wavs/hausa_train_00136.mp3 b/prepared_data/hausa/wavs/hausa_train_00136.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5e04b064b46ccaefc760c6eb1905e95f3ab1272f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00136.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:854cc4888f5aa34fb4c0ff04b22e018e0cd322fc9ffe73d8a51c0e148d92f269 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00137.mp3 b/prepared_data/hausa/wavs/hausa_train_00137.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a86bdf6a4a93561aa9ca7404b90ba0a409d2bb41 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00137.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d2e75dc8819d4e61c5f33c6e38474cbc095a1e6247c68fceb1b4c5c64bc0c3 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00138.mp3 b/prepared_data/hausa/wavs/hausa_train_00138.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..56418a90aedd392b937f263a2c2525edc78c0abb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00138.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037ff344ca86f095adfe439e96edc2782ec246b01f02b5376f5821d91b387b6b +size 31581 diff --git a/prepared_data/hausa/wavs/hausa_train_00139.mp3 b/prepared_data/hausa/wavs/hausa_train_00139.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4f585d9b2a8fa8e0cbbbb0063f1aae21e2015c9e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00139.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4b7d36ff7d6a26cc463a1a9057d5e9f85917b070086ed43710313043ec08a8 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00140.mp3 b/prepared_data/hausa/wavs/hausa_train_00140.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..be8e895884c0ee54faf6404ad4c5a0ae44c5a925 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00140.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd011c6f89822968c6b147a09eabe209d07aa6c9710ce32b2ec2a9cdd62a565 +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00141.mp3 b/prepared_data/hausa/wavs/hausa_train_00141.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fa1c0972b69cc6bc1354c01a65e150c2147fb9e3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00141.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8b5d2ba531b9985614949299ed92ff7c4672a30ce49e57a6be2f0985768394 +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00142.mp3 b/prepared_data/hausa/wavs/hausa_train_00142.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4934da096a0d08a3563b60c2b1dd1134a4962f9a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00142.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5771a2190750c7f62cbf415c68b0ebfdae8a4f6750a86962bc6263cd911b5cb +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00143.mp3 b/prepared_data/hausa/wavs/hausa_train_00143.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5fb0f1131af34666f023bba5cf4c808104312fd4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00143.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f94c2439748746d063c24d4e72dbf889891c588e5812f152a3f9560ce8279c +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00144.mp3 b/prepared_data/hausa/wavs/hausa_train_00144.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5fc29306f2256d794137b3c32a4a27ba76639976 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00144.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8736a0753c4d39f95e0eaf9c2a36736a89b260782ea0825589c7dde1cfe247f +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00145.mp3 b/prepared_data/hausa/wavs/hausa_train_00145.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dccb3a2f512b031dacf8e18e970346f3dffffa07 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00145.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaa0e0c5a815b131aa2e9a086589d7ff67caa426aec6ad0fd6b4c7258f731ee2 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00146.mp3 b/prepared_data/hausa/wavs/hausa_train_00146.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9093a7254393931214d4238f1eb6ac1bedad2b42 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00146.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41bbfca67f1c387ac2db55b1d9a2de01916bade8e98b2637d3dd4c6e8400aa24 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00147.mp3 b/prepared_data/hausa/wavs/hausa_train_00147.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f84bf242b2aa69a84a6b1c76a67c4a0a973710fc --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00147.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fee8c98c2f5001ceaa12523a63dd61d56432b2ab8357de7cedac1f7f3f8c184 +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00148.mp3 b/prepared_data/hausa/wavs/hausa_train_00148.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b2360b1105777ffb3b63f500c85fa6d4a4ed04e4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00148.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c902051bcde19998e4163d25d992cb454f361db2e4c96e6e60e1f386e8aa6950 +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00149.mp3 b/prepared_data/hausa/wavs/hausa_train_00149.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..71a0f6a480c275daee5f01eb7237092cb381afbe --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00149.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d79193236980e737409c52c19e37f1a71eccdd9dc6485d0cf7869d3d998f2d +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00150.mp3 b/prepared_data/hausa/wavs/hausa_train_00150.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..143a9c442634a8f91e45bf23d6f3a89990835443 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00150.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d0abfc4103fb760b1f684ebc7558ab0baa585eebd2493433eac7143d2a18b6 +size 14733 diff --git a/prepared_data/hausa/wavs/hausa_train_00151.mp3 b/prepared_data/hausa/wavs/hausa_train_00151.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a120aba39952fffc4ba296c5871bf511e8b5c799 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00151.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2a867b5fe57d369ed48970ebf8a86718caf9f4f6ff50eb350d4f92a5760e22 +size 39573 diff --git a/prepared_data/hausa/wavs/hausa_train_00152.mp3 b/prepared_data/hausa/wavs/hausa_train_00152.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7559f039d83b63f18e3a26dae5a081881edfbaef --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00152.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642e57bc3b0280e8c4913393b8a6df7447ba3a4f9852eb063f7462c6d11a6603 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00153.mp3 b/prepared_data/hausa/wavs/hausa_train_00153.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c6d4ddafc57457aa297f3b0e103d0bec5e40ed77 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00153.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c4557e536df01250dfb07977ada92eb8d5bbf4ea7ec68f2065140d4aa2d778 +size 25101 diff --git a/prepared_data/hausa/wavs/hausa_train_00154.mp3 b/prepared_data/hausa/wavs/hausa_train_00154.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b3e6bc90267222b3c116500a3a61288666ae1cdc --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00154.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e10556eed606bc5faa699fbfc95189cc757b1c30bc1b0ce56e0a0f741983cb7 +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00155.mp3 b/prepared_data/hausa/wavs/hausa_train_00155.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..790139f241cb57769504941fb8bc96ddf2903547 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00155.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c9b9cf1b1d49566ef54d998b92e1d05bbef5ab38fc66970637c4e0fa1473a04 +size 34605 diff --git a/prepared_data/hausa/wavs/hausa_train_00156.mp3 b/prepared_data/hausa/wavs/hausa_train_00156.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..87b34ae0be0b5c2e1c18b01a04f0f8a5df5d3a9c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00156.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911c9b33e653199b4ccfdc8a9fa2c8d80b889c19bca75a1268d2d0f6590f4c78 +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00157.mp3 b/prepared_data/hausa/wavs/hausa_train_00157.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..80289eb8fa06bb476730fd05eefbef764e53af84 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00157.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741a889f5532cb9b9ca21374a509f9878915e6602aa4479f5137fa70b6e0a24f +size 31365 diff --git a/prepared_data/hausa/wavs/hausa_train_00158.mp3 b/prepared_data/hausa/wavs/hausa_train_00158.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..88b30fe530fcf726d7086c0311f223e10fef2623 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00158.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af21f06746fff408f0a83b8eed0e51ca7e704ba1759aee06902fcb4fa886479 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00159.mp3 b/prepared_data/hausa/wavs/hausa_train_00159.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f50607d60eedbff3fbe4f0cd0d4733fb9e2ede8b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00159.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2c43dfd4c52e356295d20574d9e03776cf08fd5c9545440937f1ea0fc3e514 +size 30285 diff --git a/prepared_data/hausa/wavs/hausa_train_00160.mp3 b/prepared_data/hausa/wavs/hausa_train_00160.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ce43fd47340dad20048c62604cdcda44b817a5f2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00160.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a060515dfcfc28f9ebebc289ae20e50cc90b12680422f78aa3b912bfe2f06b1b +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00161.mp3 b/prepared_data/hausa/wavs/hausa_train_00161.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0e12a996b1a3fd27ce8d766808e66ec2ca314468 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00161.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:186fa0f8df5fcd9b88db8a0b8f716798553dd7e78275e792e1aa950d1075cb1a +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00162.mp3 b/prepared_data/hausa/wavs/hausa_train_00162.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..47d16141b2213da55fd0cfc7ee13dd86af315045 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00162.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353b897549dfb9cc7d3582bd4d17f71c537d0122ab87f16ef8b57d250d456f06 +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00163.mp3 b/prepared_data/hausa/wavs/hausa_train_00163.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..975821cdb8c966aa8cd2f04c9f98f570c92da4ec --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00163.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13d224d1512184c2068d472494e2518bda51108d5a004f71aaa98303e818bbb3 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00164.mp3 b/prepared_data/hausa/wavs/hausa_train_00164.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fbab7cf8aa89e70fb8735f6e309a23804af6048a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00164.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8fac4635c26e4e163534f0fd1913c3d8b99a6f95530bc0293758a4d5b2ea1ac +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00165.mp3 b/prepared_data/hausa/wavs/hausa_train_00165.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cd4e2e893981b9040f51e7a57d6cc3baf859c817 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00165.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469b7b6a877af924825f56b04889a21c373785b2142360bbd96c1353875a174d +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00166.mp3 b/prepared_data/hausa/wavs/hausa_train_00166.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..02efe898769d938e5e2d8880ae441cff2c56e377 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00166.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe1194e23b15ebbc57c88a940566fddbf627a66e8d2784745c5740c06b4bddf +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00167.mp3 b/prepared_data/hausa/wavs/hausa_train_00167.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f455f4bf86715c4abc45d57e4e022cc7b4de3cca --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00167.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323edc96f38043e0a6a603ecb185c1549e55f28270e6af67a1072e754c57c8c4 +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00168.mp3 b/prepared_data/hausa/wavs/hausa_train_00168.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3ad34aa0c3c097e024656eb56d4b61ba469875f3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00168.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaedf7cfd488d179be3c2d6705a5ce69f17ec08a89a6fef1c5990efeffd006b0 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00169.mp3 b/prepared_data/hausa/wavs/hausa_train_00169.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5106034c679b9fa4ecbf895055df030d97b5f19b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00169.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813ec0dcfb5918cc4e539b667d26cb2f392c007f7e3f11589e0185754ac0ee9d +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00170.mp3 b/prepared_data/hausa/wavs/hausa_train_00170.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..58f33bd758a8e389110495f0ea1c36d07a00f2b5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00170.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41559fe9e22153c2f3630e8c2aa95f229c5bc5e515681ec7e92a9ddc6b5e3a10 +size 35901 diff --git a/prepared_data/hausa/wavs/hausa_train_00171.mp3 b/prepared_data/hausa/wavs/hausa_train_00171.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de053c038b7ac91803a36e5c0d10afe8436be73f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00171.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:011060aad06faadb1fd3bc7394f5244cffa39e5bebb54c1cf2d575482263b8c2 +size 35253 diff --git a/prepared_data/hausa/wavs/hausa_train_00172.mp3 b/prepared_data/hausa/wavs/hausa_train_00172.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..070cfcc2378c2c2c480988b6498ac49f2c75af5e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00172.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b48f16e30339faa0a15ce30bf436a9a3bd3ea1cb5f8c52cdb1d50e74abe208 +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00173.mp3 b/prepared_data/hausa/wavs/hausa_train_00173.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..afa969577a5b39e899b6e0000d93111606f340b2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00173.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e092e43e92982819b85c17c3de594f285a6294766a172da57aa4356095df9f4 +size 40005 diff --git a/prepared_data/hausa/wavs/hausa_train_00174.mp3 b/prepared_data/hausa/wavs/hausa_train_00174.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fd19d6f928370f497fd9454471de363b63b46900 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00174.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9716e86f114c353ec46c0a014e7a21160f4cf55f923c8c839a188e3e6deb3758 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00175.mp3 b/prepared_data/hausa/wavs/hausa_train_00175.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..779b03e3c41678ab39164f01fc204df587270ae0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00175.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9335625bd671b1e88e3964cab8540666268484580d7df5cfa067719c2cd1ae3e +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00176.mp3 b/prepared_data/hausa/wavs/hausa_train_00176.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9b6be0aa030107801f9113df159f087e46369234 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00176.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6298ce9d5779418b6edd8e06d42585148068595cacc84d130e89e47af4f14ade +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00177.mp3 b/prepared_data/hausa/wavs/hausa_train_00177.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4feed124353ad57b8f82085d4747fa5ae85477f4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00177.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb003640375b68a745a881f96ddf100c0205dfa7f7828342f1e9c09bed674786 +size 37413 diff --git a/prepared_data/hausa/wavs/hausa_train_00178.mp3 b/prepared_data/hausa/wavs/hausa_train_00178.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..60d3b327e031591dfe58f8b91b3987c14795ad4d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00178.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af316817e42829a4245164ced6efac65693888e9c22f37474b7df6efc0480940 +size 37845 diff --git a/prepared_data/hausa/wavs/hausa_train_00179.mp3 b/prepared_data/hausa/wavs/hausa_train_00179.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fa813205421c67a7209f938eabaecab2818f3390 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00179.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed66ac5506ca097a07b7e3037d6f6b480d26e501a593395257ddd74fff4d5544 +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00180.mp3 b/prepared_data/hausa/wavs/hausa_train_00180.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3965c6dc94c3a00b0cd727afc023ef82245d3aef --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00180.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f6327d3345222e4393d004d72a412183f636f49ca04240534214292e67e39f +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00181.mp3 b/prepared_data/hausa/wavs/hausa_train_00181.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..141eb0a55e62c79aeadc265863b8f89a8119de1d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00181.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f755f96103da0c54419c35ae078a651a72b25a59b49cac9e88afd6d30adbb81 +size 32661 diff --git a/prepared_data/hausa/wavs/hausa_train_00182.mp3 b/prepared_data/hausa/wavs/hausa_train_00182.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f6c4850a55ada1a74fb4c2d500aac2e3c1091ae6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00182.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca397b86f4a1666bc3b0cdd99df8b7250518a15baee9fdb00f115e2924d17a1 +size 40221 diff --git a/prepared_data/hausa/wavs/hausa_train_00183.mp3 b/prepared_data/hausa/wavs/hausa_train_00183.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..832d78c0751e089bf8061d90cb3b3efb50e720ea --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00183.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f518ec9aed4b1440a6507ddf8d45a1278a240bb020c96f118b3150ba0ab7e3 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00184.mp3 b/prepared_data/hausa/wavs/hausa_train_00184.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2f482ea5e96014facd1878c88cf5232ffa3559ef --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00184.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e28fdd78beee6fe32f25fa2e1b99961d987cba48f06be138462da27fdee2462 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00185.mp3 b/prepared_data/hausa/wavs/hausa_train_00185.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d170b92a2d0ed6861cd5b37a33ebe51f4116dbda --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00185.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a836885e57ba0b28d4dfec69842e2559fb72d394aa740bab110314b6e5b09de2 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00186.mp3 b/prepared_data/hausa/wavs/hausa_train_00186.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c5c60021afdd9ea09ead21a849579466912e015f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00186.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40aa26008bc8e00a66035707075120f04a39426e3792307f0fc3c8e6be9c9869 +size 32013 diff --git a/prepared_data/hausa/wavs/hausa_train_00187.mp3 b/prepared_data/hausa/wavs/hausa_train_00187.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8ee1f3a516b11257b7ac437ff3827ffd88e760b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00187.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d229626cb3080392e20f835d23a2db79a0450bd99b0ff5275df2c0349498dc +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00188.mp3 b/prepared_data/hausa/wavs/hausa_train_00188.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..734ff61b0fcb2dff1da5fef9f93f2a7392d3a43b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00188.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b7edabebf37a79743a29d8d0a21e3d7ebbb2055239f91b84847c572f2d7979 +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00189.mp3 b/prepared_data/hausa/wavs/hausa_train_00189.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eb370f2e3955e91e0d7f65d599a0616597a3eb05 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00189.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ddce0b05571d9c9b681f5ebfb23d718b5602d62decfd8e8d7c48daaed05a772 +size 31365 diff --git a/prepared_data/hausa/wavs/hausa_train_00190.mp3 b/prepared_data/hausa/wavs/hausa_train_00190.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c5de0075bb6fddb6391ffef48f4c9786c517630b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00190.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d3b6bcb2d4f12f5a211025fe3d2390c5a794300427e6132f15ae75ee41facb +size 16245 diff --git a/prepared_data/hausa/wavs/hausa_train_00191.mp3 b/prepared_data/hausa/wavs/hausa_train_00191.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..11d2113f6480c281963f703747051a17822ab471 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00191.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42f55c425dfc3dd71de23b7a1939e5dcf840fd5cdcd4ec4d78cd5d289d7ba32 +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00192.mp3 b/prepared_data/hausa/wavs/hausa_train_00192.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..17425383e8930a1fafa422f10d61cd290a9621fd --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00192.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0cb81ffcd371ed73f9cc3072cbd8ea62975cfa69aaaf7e2c994cea601cef52 +size 15813 diff --git a/prepared_data/hausa/wavs/hausa_train_00193.mp3 b/prepared_data/hausa/wavs/hausa_train_00193.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a55d7e3c02084d5736b2d932f1e2574295024f64 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00193.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa161df05af3c3e169ba3400c0050e9e1a3dbf9ed6775588196a833e3b060beb +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00194.mp3 b/prepared_data/hausa/wavs/hausa_train_00194.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e967a85434c56176f8a83daff475d2f3586ffa29 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00194.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee76aa863eac6100f15c52e62bf68e1beff6b5152e0cc83a98e5115aa59efaa3 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00195.mp3 b/prepared_data/hausa/wavs/hausa_train_00195.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..98979bd54af03c70f0055ac1999f2b83e135c0de --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00195.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab1b1b6d6faa95606533c71427486a635e7ed4179939b933cd9bfe2bcf278db +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00196.mp3 b/prepared_data/hausa/wavs/hausa_train_00196.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7ca2290f3fdb8f3c67c0ce021df792c8ad87f5df --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00196.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914b3e617ffc4e484ce11b1d86f31eed67ce639fa3d75c6a70aed1aaa7f5c755 +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00197.mp3 b/prepared_data/hausa/wavs/hausa_train_00197.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ade398207ac0ce0871438aba35995ab942c82b25 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00197.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4d4c1dd540c152dca731aa58b255180d0644291ba69c88f1db26c40fb27a7f1 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00198.mp3 b/prepared_data/hausa/wavs/hausa_train_00198.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a424ce6f5dd6ac2df6d31f96116c58bdb3658ef2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00198.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5e7da228c71a9978e5e47c1f82f4038c132b6e33660ab53e661fad477edfa9 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00199.mp3 b/prepared_data/hausa/wavs/hausa_train_00199.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4dfcad140c46c92dfa6414aa3e12d555e5237e8f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00199.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc6b5f008a012c3262dbc678730175052cc9a3c361ae6fc01dadb82d6470b4a +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00200.mp3 b/prepared_data/hausa/wavs/hausa_train_00200.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e39bf384d806bd55dcfaaf66a57fb1a04ec2db79 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00200.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f7de72d7b37c5fff8f1dbdb55ec7ca6cd2bd691804aa92260d78759e14d3d2 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00201.mp3 b/prepared_data/hausa/wavs/hausa_train_00201.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4b72106e4c79f4b8b11463503b6552d35a9095de --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00201.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924b518559894f48916d301e6397369d77e3a55c17092523e495f73179d8a0b1 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00202.mp3 b/prepared_data/hausa/wavs/hausa_train_00202.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ce690ae11b7fc21f379862700ce6c331dfd8fb91 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00202.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3eaa8d3210f2f3cc48cab6a2fdab1b0b82082e3a4fc8f742c0d6707b020108 +size 30933 diff --git a/prepared_data/hausa/wavs/hausa_train_00203.mp3 b/prepared_data/hausa/wavs/hausa_train_00203.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..51931c320cf124c5fe0feff4bdce8ebed6e1a59a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00203.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5182c91037e027883f57e96711eb4da2000a20f66e2103f8c01859113bcd5d3b +size 28125 diff --git a/prepared_data/hausa/wavs/hausa_train_00204.mp3 b/prepared_data/hausa/wavs/hausa_train_00204.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3c0aaab9041e9b923ad44a41d20c8ee4ea2c4c49 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00204.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18d4755143aa670fd5de0bfdff95a24886cd8c49a88d30a028cd5f83b749673 +size 31581 diff --git a/prepared_data/hausa/wavs/hausa_train_00205.mp3 b/prepared_data/hausa/wavs/hausa_train_00205.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b3d6aa7782b25b47305716b9d8988e269ee96b1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00205.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e1f801870bc2ce042647e648de46d967c3fe64e0a82dd9c161789d14e0c664 +size 28125 diff --git a/prepared_data/hausa/wavs/hausa_train_00206.mp3 b/prepared_data/hausa/wavs/hausa_train_00206.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2c85682e4abf0ad8fa9c03dbea197fd9a1c8d409 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00206.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e322715d9ffd93a3882d4b904ffa3dda268bb42441bc5f1cc6ee3e7ec6176230 +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00207.mp3 b/prepared_data/hausa/wavs/hausa_train_00207.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ff4cdde8c568daa3ca07b97bd2ddc1170739158b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00207.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f2804e38ca8844fbb3bc01bf9ecb5902a51d79cdea932bef28800758dd7c4ec +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00208.mp3 b/prepared_data/hausa/wavs/hausa_train_00208.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c1f4467a693e0ca9e63ccf4ca5caa0ce61bf21cf --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00208.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86e4d86e5a4fc62033f491568c9c6dd9fcf1cf02919b4a85ea9409f64a5c1a3 +size 30285 diff --git a/prepared_data/hausa/wavs/hausa_train_00209.mp3 b/prepared_data/hausa/wavs/hausa_train_00209.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5acc7a4e53a09f70a7528ba7f1c7a9fa4c73cd1c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00209.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ccfa95319f031013ee86a37d866d6db92ea27daf337ecdb4c1efccd170bf244 +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00210.mp3 b/prepared_data/hausa/wavs/hausa_train_00210.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9d75be2e4275580c4ef22718e0edcad29eeb0212 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00210.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635fe8fd26f738b1790812277b0a093ff08753ace95ff1f9fc664a1eb93fb65c +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00211.mp3 b/prepared_data/hausa/wavs/hausa_train_00211.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9b62648d578c32dee443b619291dc22b4bae1ca6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00211.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:656517124a55b4cf48d00386a371ea5955213a3f18569cff904fca34dd83ed74 +size 14733 diff --git a/prepared_data/hausa/wavs/hausa_train_00212.mp3 b/prepared_data/hausa/wavs/hausa_train_00212.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e5db264051908d5a5184d6d54834094f0a1dbe9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00212.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b217ccb733b18eedce471ec3e49c1adc05c614c6daecd1b857f8638e2a9bd7 +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00213.mp3 b/prepared_data/hausa/wavs/hausa_train_00213.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d33dd6868abb419e485530eaafaf539e806474d5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00213.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6246b67fca5a5cc18d8d0af460618a60bb6cd0e6b04d889ac49ec74153328f4e +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00214.mp3 b/prepared_data/hausa/wavs/hausa_train_00214.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8ff90615da7ec274aeaebe1b5e7294fb092cf892 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00214.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2daa97ebe2d9f3811fd64b27f2c6f900ca65ce269544e248a20bcc1e0b7dc872 +size 37413 diff --git a/prepared_data/hausa/wavs/hausa_train_00215.mp3 b/prepared_data/hausa/wavs/hausa_train_00215.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b5811d74f2f755879df92b5901d0a35a6d71665d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00215.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8869e108723e1fc177c77cf9da96e57ade616df7e56567a009c7f50ed10b7108 +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00216.mp3 b/prepared_data/hausa/wavs/hausa_train_00216.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fae902f4619eaf8fd0efd97ef0698e2b4d88cc0e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00216.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2106f79e110e0d2b9dd0c6957679bce099ee7df7f0cd31b0ad86fcacef5c2e2d +size 23805 diff --git a/prepared_data/hausa/wavs/hausa_train_00217.mp3 b/prepared_data/hausa/wavs/hausa_train_00217.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..effdfd8b5fbb32058ed7363341233007be1b54ce --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00217.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c975118d2ad11ce8db56b8374ee17cc43ee6e78f5569449151e111ccc82e9c4 +size 35253 diff --git a/prepared_data/hausa/wavs/hausa_train_00218.mp3 b/prepared_data/hausa/wavs/hausa_train_00218.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3beae41cadc3cdcd4fd190e32f451cde4bca9660 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00218.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8edf718028bcce6cb75e71524e1d983dd733568c016ad1838e68c10623089f3b +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00219.mp3 b/prepared_data/hausa/wavs/hausa_train_00219.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..696135115d73a2d6f8fd20e07c85fef97434f5e0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00219.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620e9c376f22a2e888c04347e2fc4a2371d026ddd5366fb2906c1c09fa44a650 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00220.mp3 b/prepared_data/hausa/wavs/hausa_train_00220.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de44a62c5aa64760349385ed6743f397e9d369db --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00220.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b227db569c5cea11466cd2a02aa263c73a3448a68cf8762c001d3addcda25d63 +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00221.mp3 b/prepared_data/hausa/wavs/hausa_train_00221.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6fa74e382f245ab166b01d5b08513ecfbaeb1f88 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00221.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a5a2cb3dfddb0370a79fe665c3b5b1db7ec82aa6fd0cdff24051f9e6a5677e0 +size 17325 diff --git a/prepared_data/hausa/wavs/hausa_train_00222.mp3 b/prepared_data/hausa/wavs/hausa_train_00222.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..82ac7586a880ae2ad3ea8eba079e4408cc9da0aa --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00222.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8607d1a6ae92f3132a1302b045326696d44b54d49a3dcdefc1c3122218f17e85 +size 36765 diff --git a/prepared_data/hausa/wavs/hausa_train_00223.mp3 b/prepared_data/hausa/wavs/hausa_train_00223.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6e2107cfb4abe2ca7063a834249eaf86712218d1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00223.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f952cc46fa9d68725d1568b0866b5eef404dda8bda6f60bd654f89e686b62ee +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00224.mp3 b/prepared_data/hausa/wavs/hausa_train_00224.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4a5a9465732825e245d4cd0114d544f8a0b6868f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00224.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb2fadcb392a4d30cb819ba174741029664c4765ef529024ae5eef77a0a3bce +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00225.mp3 b/prepared_data/hausa/wavs/hausa_train_00225.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ad93a21b21f6d311e2cc6be76c2f132f111e9210 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00225.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065d7ca17e0f7a5586aa3491cc8705da3bd3109fb24489c08a92ad570d56b319 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00226.mp3 b/prepared_data/hausa/wavs/hausa_train_00226.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..97fb898ba9013995fdb7459865e8d40f0db6f02c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00226.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c98c2e2f4066575758f6e73606a79061bb5dd3ff53d18575a2e75dd55133edf +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00227.mp3 b/prepared_data/hausa/wavs/hausa_train_00227.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8c546cdf4b38500501d152e00c19a56fe98d7821 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00227.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ac6698245992c8b9d6fff6cc25dfd677367775a480e25809f565c7f518adb4 +size 27261 diff --git a/prepared_data/hausa/wavs/hausa_train_00228.mp3 b/prepared_data/hausa/wavs/hausa_train_00228.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f270d662bd50919883dcd0ec24f64139707ea9ac --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00228.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6984d7b061431c8c5c96ced25e1a082dc03d1d119c7fba4c2d4bb0e7cf66b36a +size 38493 diff --git a/prepared_data/hausa/wavs/hausa_train_00229.mp3 b/prepared_data/hausa/wavs/hausa_train_00229.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2295f0643e9bdf253e8ad3fee399ee3870ad7779 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00229.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8dcb022ed3c572bab702e1fd9e416a7ce52e6ffc4f744213c581bb3df1c8f6 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00230.mp3 b/prepared_data/hausa/wavs/hausa_train_00230.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f6c9833b6e4936fd1c9c3ea43cacd865a6f4e633 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00230.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:761be108f57db40156f30451363b0f5b1f6c459c7e2ffd7106bd8e81815da155 +size 31581 diff --git a/prepared_data/hausa/wavs/hausa_train_00231.mp3 b/prepared_data/hausa/wavs/hausa_train_00231.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a722f4366bd27cee27b52a5d3e012608c7da4b68 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00231.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b39826ea85b55f6caca474c803d2ab2bf3e8a330d1e61ccf012788c5b5705f05 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00232.mp3 b/prepared_data/hausa/wavs/hausa_train_00232.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e59915c7f93c3a5544449a649226e1e9d0b3cfd2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00232.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9201fb1bc57fb810a61d5e177210781f0d4480f760a3a15a6a82321cdd84ca63 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00233.mp3 b/prepared_data/hausa/wavs/hausa_train_00233.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..047707175e8d2415d91291273d129d43747d810f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00233.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e609a088252d70a6aecc7578d6b36f49dbaf96e9c089b5c8cc90d1e0db6a7046 +size 33741 diff --git a/prepared_data/hausa/wavs/hausa_train_00234.mp3 b/prepared_data/hausa/wavs/hausa_train_00234.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8916ee730c4986dffaa0f84176391cdfe390f2b0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00234.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfbe55877c1305d06d7d623c3d972b5d016c6d4ae0b8b5a453c361eafa990691 +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00235.mp3 b/prepared_data/hausa/wavs/hausa_train_00235.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f8ab52eb949c4b84597777a8e65b2f7b8e626132 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00235.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c33015f0d93a3fc7f85a0c0d292daa71bbd192d4e794c8b0225bed9ba5f70a +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00236.mp3 b/prepared_data/hausa/wavs/hausa_train_00236.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..202ce0a61837114dfb5dd783a22d22aa53ae1987 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00236.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7314160caf5f9c0853e47b284f8c24f8c0a3842d77dc820e76298ac43460b89a +size 32013 diff --git a/prepared_data/hausa/wavs/hausa_train_00237.mp3 b/prepared_data/hausa/wavs/hausa_train_00237.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a6bd9700e15a3bb7155ec430137cbee3a1709f56 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00237.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7d2d795f55a9df0a837d5be32a2e4ffabcb653fb337ab07df17fabaac662f4 +size 32445 diff --git a/prepared_data/hausa/wavs/hausa_train_00238.mp3 b/prepared_data/hausa/wavs/hausa_train_00238.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2850a5503310e630c3a70364be52fb544b0f9dcb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00238.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f15e407ed19726086562953b35dfbc98e71a3534693ea0cb35a74dd50e713987 +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00239.mp3 b/prepared_data/hausa/wavs/hausa_train_00239.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..02fea6719a70314fbb4d93c7caee581b0e33fd66 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00239.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0472b0aee60ed8e32c1c1bac66e7f8ae83d0724e81ae5890150ceda2e7ec1b7 +size 17325 diff --git a/prepared_data/hausa/wavs/hausa_train_00240.mp3 b/prepared_data/hausa/wavs/hausa_train_00240.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1db38e0eca8a7bd1ed04bac26c3992631370cdfb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00240.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:015d74045208201194292094ceabf3c4b0e2c7a8d834d2839a592e842cbb84b6 +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00241.mp3 b/prepared_data/hausa/wavs/hausa_train_00241.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fcb9bad1e840dd6aac27622df00bc6e33ea7352e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00241.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ef901beb9f1cd5a2344eb499eb6a063f05ae7c8461d73af46fca38f0621211 +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00242.mp3 b/prepared_data/hausa/wavs/hausa_train_00242.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d14c2926bd2855b4a78aa03f8e35637958f81379 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00242.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724445e67bf2c2eed6e5448031401b194876839595f83f044f7000167a14e48d +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00243.mp3 b/prepared_data/hausa/wavs/hausa_train_00243.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0d4c692c13ebbd60f537320669da18b0fa2605f7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00243.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee607cb90c9613c0bed3a6720f51c7a7aac2bccb3ccf2d3a921e1cd1a806109 +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00244.mp3 b/prepared_data/hausa/wavs/hausa_train_00244.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d256b26a33853b5ed318956544381de41e28d1c0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00244.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058067f45776b3480fe9a4704aba67f0d6652f7be028c87dc74204a300314775 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00245.mp3 b/prepared_data/hausa/wavs/hausa_train_00245.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..864fb0d7e5f7b5c279979a67692a138337fb87e8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00245.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4ec93ed89f15f6a81ec486471739202561bd748481316f6237f8ff52432162 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00246.mp3 b/prepared_data/hausa/wavs/hausa_train_00246.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0da416d42d868d066b6359c0b894bfe887c172d3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00246.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e1a959795edfee5f658f0bd3c51a4e35f335ea3d7fe2ac89948a45cd7b2588 +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00247.mp3 b/prepared_data/hausa/wavs/hausa_train_00247.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8bc456ea2613c1e0f8eb5ec2d76bca592324e59 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00247.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279ac1501e4f9afd32dacffc67f50b54b9be6774215d9588be9ca47b6c82c36d +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00248.mp3 b/prepared_data/hausa/wavs/hausa_train_00248.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6f26c39d8d0ac6e520774fc0e6fdb907ba31b547 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00248.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a7ab081a8eb755da4c91d936100e28a41b178ddcee1fa7fd40d0673bd6ff5a +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00249.mp3 b/prepared_data/hausa/wavs/hausa_train_00249.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e529525f5a62879aae47edd1b7600f402912149b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00249.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d18c36d54266204dfe17a81d20b6390667974555c433ceaddb03038a1e2dbe +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00250.mp3 b/prepared_data/hausa/wavs/hausa_train_00250.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5b428c5738fa5af2e25646eb1db74df5f0ec5c76 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00250.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086395cd82f42f0f83b362f1160cf6c5dd13cc9acfe7cb01fefb0baa1140d104 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00251.mp3 b/prepared_data/hausa/wavs/hausa_train_00251.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7efe2df088a79bcba82f33c6b5246e0ca8cc36b1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00251.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c665e81b2f5694c8f10a07aff01027227acfa1cbb750c8b9ef54a37ef19c2d8 +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00252.mp3 b/prepared_data/hausa/wavs/hausa_train_00252.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c4c58529c00f884de6333f74937c0318a43c7280 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00252.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf9bfd51c2dbfacb51572f449a3c179711a825924ba287f5978fc704e98674d +size 33525 diff --git a/prepared_data/hausa/wavs/hausa_train_00253.mp3 b/prepared_data/hausa/wavs/hausa_train_00253.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5bf3cd8d712f7e0059b8956b999222a7cd443c4b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00253.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e627ad7a334fd6ae6cc74296959985b28958c5c1e581d4d5fdd816986eb591 +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00254.mp3 b/prepared_data/hausa/wavs/hausa_train_00254.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a4700da3b86a7f03d471d460f8cba6dddfa39d73 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00254.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db61cb5726cd5d0b049e49e91dabe68850be596499c244f9c8cca1296a1fefb +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00255.mp3 b/prepared_data/hausa/wavs/hausa_train_00255.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5acfe65173b891be15057a9fd8c64210dfa29b81 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00255.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b57ad9895abfa9852568d04eba353c8542da7f13f27f60b03b237a0ad85028 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00256.mp3 b/prepared_data/hausa/wavs/hausa_train_00256.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4a3cbcc3ebbf7ab0ad308d88fac1023b54e35c1c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00256.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e06152c221ebb75a6cc9e5386188c51cffe85b8d344db3ecc19b99de5cddc70b +size 42165 diff --git a/prepared_data/hausa/wavs/hausa_train_00257.mp3 b/prepared_data/hausa/wavs/hausa_train_00257.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..82aef5ee28173ce44815d4a273144a82f1383322 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00257.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f5f75154a651658f4a9a97c1ff4e6e242630dd2bf6e9ddb577143545923634 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00258.mp3 b/prepared_data/hausa/wavs/hausa_train_00258.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e766f3ddc692bf751b0982dafa3edff4de1f4329 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00258.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:779bf018ea4d7a01293a4499a4fc22653048acfc7c1ccc1ae3830fa9b25668fc +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00259.mp3 b/prepared_data/hausa/wavs/hausa_train_00259.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d818270162463ba45f47611eeff1ec663dc8f1d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00259.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d2ac850fabf2fe0b54867406bd692a28851ecd6afe974d26eafa42d39a0aa0 +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00260.mp3 b/prepared_data/hausa/wavs/hausa_train_00260.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1494b6c5d88d2e55d89bfa8d66db34598e86bd2f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00260.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1173709edb407d65e955dcd733d6af6e989d5879fbea501bb9eb43571d1b7768 +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00261.mp3 b/prepared_data/hausa/wavs/hausa_train_00261.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e3d1ff3567d93b8899c5648ed5b7b32c69b5e382 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00261.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93f3360e83dbc4b4a238c486083135f69314f0a8af224ffc8ab3e451fcfad903 +size 29421 diff --git a/prepared_data/hausa/wavs/hausa_train_00262.mp3 b/prepared_data/hausa/wavs/hausa_train_00262.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3969c825152b4be5abc5ee90d3dc62a10f052d19 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00262.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07472dd36c56fbf85ada03c4d71ed97258f1a992368cf04a8cb06df6afa56ca8 +size 43245 diff --git a/prepared_data/hausa/wavs/hausa_train_00263.mp3 b/prepared_data/hausa/wavs/hausa_train_00263.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e968a4c18c38285f3b6d34074a0f83a9927afff7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00263.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb0b29993bf611dc0acc92a0097de9018e029172e1faaeabddcc65b589ebfd5 +size 29421 diff --git a/prepared_data/hausa/wavs/hausa_train_00264.mp3 b/prepared_data/hausa/wavs/hausa_train_00264.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..09f04c84931b9ce6c2164b8f9a46615d38ff3e56 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00264.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf712758b57738885c087c1fceba7af46c67a557c18ed28ae17a248aca6173a +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00265.mp3 b/prepared_data/hausa/wavs/hausa_train_00265.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..aa23b86574dbddedb2a06437bbbe141e0eba5700 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00265.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d934ca093d5f88d77a87adfa4bf9857efe472e99882c357ce654219aac099f +size 33093 diff --git a/prepared_data/hausa/wavs/hausa_train_00266.mp3 b/prepared_data/hausa/wavs/hausa_train_00266.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5c86d33e9e768843cc9efcd25e6b096aed24ade0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00266.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce8b028e922c4911933bf79c8683d5648cf1239e8f0eb7c91dac2a91657241f +size 34821 diff --git a/prepared_data/hausa/wavs/hausa_train_00267.mp3 b/prepared_data/hausa/wavs/hausa_train_00267.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b4ce3c0694b6df8780c68aba35619de94e1d4c4b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00267.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1448a3fe9ffc514e97fd3f01fa1c742e42b3170f9dac53937d5ece36e78ec0f +size 29853 diff --git a/prepared_data/hausa/wavs/hausa_train_00268.mp3 b/prepared_data/hausa/wavs/hausa_train_00268.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4b9d3ade8d66d5bb11705c3488bdbb53968fc080 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00268.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17decf55ef52a15b9dd3b9a50fc54ba3144cce8783bf441bb17c1a049c641d3a +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00269.mp3 b/prepared_data/hausa/wavs/hausa_train_00269.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..53f95c39cd8b91c6a945a9053261079be5021579 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00269.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0332720db2b93bc2f25c6962ad01914170be0df606cfbfe23bd2b12955d4b073 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00270.mp3 b/prepared_data/hausa/wavs/hausa_train_00270.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..931fed6f7116ce14e05110dcd2ab139e9467241f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00270.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:472d142ae58e05726430b92147eab512796d2a2bdd67d0b7ca06ab7cffaf84af +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00271.mp3 b/prepared_data/hausa/wavs/hausa_train_00271.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c6e47cc0e21df5a60bc73eff827b6487a91ea490 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00271.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820bafe8f5d4b41a7156285058192d95f74c8d767999e3cf0cb6a0cc9a774f89 +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00272.mp3 b/prepared_data/hausa/wavs/hausa_train_00272.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..04c4d78dbc79183dc2dd28210b56589e72716196 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00272.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272b2e6e6247d0ca634af146fa5d23ee82df03d6a093e7b56f11110950c54193 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00273.mp3 b/prepared_data/hausa/wavs/hausa_train_00273.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ce863083fbb3ae94ec596b7f34e347d006f68e34 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00273.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80124591057d32c66a123675860bbeeb4a0830417ad61b4a8a8bc9157f73c454 +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00274.mp3 b/prepared_data/hausa/wavs/hausa_train_00274.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f3a35844990c2197b80a4e5e6c89b19658ec4161 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00274.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b2f9f7b1ddc481b76a5f0b7a69af593045ee8ac7a9af9064284d7f0afca6a5 +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00275.mp3 b/prepared_data/hausa/wavs/hausa_train_00275.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b2d8a56da5f5e62d82229b109e2536a836df252d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00275.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9276cb4621b30fd6149bc37b2dedd7909cf03625a21bc97b49ddbd0d4b29f50b +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00276.mp3 b/prepared_data/hausa/wavs/hausa_train_00276.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..af960ff30e8748e9b7d64936b6f97751c606bd98 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00276.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab159f67ca0539628ca87c6554b49f9d2ca2de843f75628127c0a73c1b924ed +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00277.mp3 b/prepared_data/hausa/wavs/hausa_train_00277.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b3c6b4ffdf62a9cf6236a3590e3c37f9ed89e8a0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00277.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e243da34be08f2014ac0f38c036b3a0c21eaa1fad74626b22c613c9920f3d6 +size 31581 diff --git a/prepared_data/hausa/wavs/hausa_train_00278.mp3 b/prepared_data/hausa/wavs/hausa_train_00278.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..66225dc8c69a9cf125a7a3f698aa6d59a60607bb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00278.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464ab7f374eea285395c546dba21c362f96eec6ac2352dc0122a680d61e6b34d +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00279.mp3 b/prepared_data/hausa/wavs/hausa_train_00279.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0e94486e49462310ceea00e470760ce39795281b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00279.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfd6d31208e49a22193433b2ca7199e9ab7716b6a2ea68346f8b1cb3fb5bb25e +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00280.mp3 b/prepared_data/hausa/wavs/hausa_train_00280.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6db00e23d636732362cbb6829088d8926beaec10 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00280.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bfc7fb254ae571357c2bb95190c11333a473af099b93710202333a6e31e3708 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00281.mp3 b/prepared_data/hausa/wavs/hausa_train_00281.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fc0ade08ee4077b18fd8324c01fc6b49e6c40250 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00281.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09d1b9da285ec194c3c64ada1272dcc3abfb29c9d10c319c09f9bb7f74bdd3c +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00282.mp3 b/prepared_data/hausa/wavs/hausa_train_00282.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..094af0c024dd68c3f441987e6d874521028bfde4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00282.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ec5bada24376d20ed5f431f4c3aa537f30f6c170e93133cee73ff3d69eb143 +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00283.mp3 b/prepared_data/hausa/wavs/hausa_train_00283.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e294083cec116c1269cc04909106e338275f9b96 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00283.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b80333be1bfe0a864200e35c744ef089b7bb8455d923cfa8f994ec9542eab8 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00284.mp3 b/prepared_data/hausa/wavs/hausa_train_00284.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4db11fa456dca3b211f6d49141a3045fddea285d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00284.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22385eebe652fe099b16f7234ebdcf32fcd6fdea4390902399188bc43cbbbadf +size 15165 diff --git a/prepared_data/hausa/wavs/hausa_train_00285.mp3 b/prepared_data/hausa/wavs/hausa_train_00285.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6a18048c9b34180bc31fef0f9a6c38312340cb15 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00285.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86cd10297b8787d702fd76f3f89bec7337b2f45eeaa34ebd39fc9dea68bb92f +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00286.mp3 b/prepared_data/hausa/wavs/hausa_train_00286.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c36ccddea98f4389b47d367bdd65a823c3349357 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00286.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02522cdbdcd7e715398c92d07043bb24abbb897783f656038f4476cc69d6dd4 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00287.mp3 b/prepared_data/hausa/wavs/hausa_train_00287.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e55b07efa7c14a9cacf07f769648e82f927a46d7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00287.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf53476756ce529fef7074cffcf5f4604fee7cb450682edbca0aa2a323620c2 +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00288.mp3 b/prepared_data/hausa/wavs/hausa_train_00288.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..583e852a3109f6ceffbecf71870168fcdb94a3df --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00288.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73713a3aaf3229cfa7e99c6ddda1047df2b90f4f9fc82e79633bc8e8f216ba74 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00289.mp3 b/prepared_data/hausa/wavs/hausa_train_00289.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..730c938dc705a626d48fc85037e8c8010c41e334 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00289.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7c07dc7f827211ee63a1d1858147bcce67a03c516684f6a9662a2eba561a99 +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00290.mp3 b/prepared_data/hausa/wavs/hausa_train_00290.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c9f3c628778c93d6bf0af930ca1022a6dd0e8cf1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00290.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832785b9856b460afef7ba675440fec916a9ada6a84db39e9198f0cc6ec603e5 +size 31365 diff --git a/prepared_data/hausa/wavs/hausa_train_00291.mp3 b/prepared_data/hausa/wavs/hausa_train_00291.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dd8fdfb2e65863a730800db6e4886827631e64a6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00291.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be5e2ed36934010973168589150db0852c16a4bac08ede55960a24f1dd03b1a +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00292.mp3 b/prepared_data/hausa/wavs/hausa_train_00292.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9e76b07d20ce169fcb2f1268ee65c88fb0ab563b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00292.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a7b2cbfcd23d73f53a5fb6d9d982ebe5a196698916d46c4edf6e0babda5aac +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00293.mp3 b/prepared_data/hausa/wavs/hausa_train_00293.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..59c7afdde8f362957605129b7543c130daa01420 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00293.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aa38009c0aab6458c0fd95805eb774c9ebb4ee8968810b25ba7cfbf22b7153c +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00294.mp3 b/prepared_data/hausa/wavs/hausa_train_00294.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..800da9b21c275347c77b59517be9c875ef7b80a4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00294.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6fb481488524c0fac8ef665f50db04f2d10c27ba4d1d98396a1953adf11bae +size 34821 diff --git a/prepared_data/hausa/wavs/hausa_train_00295.mp3 b/prepared_data/hausa/wavs/hausa_train_00295.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5a6bea28aced0692851f0ca84189faf3be668b44 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00295.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85055ea7e1097b1eea5a1b73be976687e50659029309acaed01b48e76087a828 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00296.mp3 b/prepared_data/hausa/wavs/hausa_train_00296.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7bc30e629d82ed7b6ed07bdadc9d678a60eee85b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00296.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5033e158a01e2ad902a9b9eacbba4b4d1af6cbbbbf7ff4a7517445ae697db02f +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00297.mp3 b/prepared_data/hausa/wavs/hausa_train_00297.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..41dd0ae0339d5cd4b4529aa8a2b3ede1688c2c78 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00297.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42c97539d8333edf9fef6fbacc746f2ffc88ed28330f8464fb33ce4bfc84418 +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00298.mp3 b/prepared_data/hausa/wavs/hausa_train_00298.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..09b6474ef742439cad6d9e7165b441dae51788ed --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00298.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b9f66aa9c7be679da304d84a1acff94c7fd401e9c0dff41a4c175679e10cb7 +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00299.mp3 b/prepared_data/hausa/wavs/hausa_train_00299.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2ad40f32e3f7ee58a34c3ae0c42e90d9fdd9767a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00299.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b75c21fdb81c285ed59629e9d0f6286ea3fd19869966b36ae5bf67afd9e462c +size 35253 diff --git a/prepared_data/hausa/wavs/hausa_train_00300.mp3 b/prepared_data/hausa/wavs/hausa_train_00300.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a1bee300280d867bae3d166f9f6daec74e1aa9ac --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00300.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e260a55b4914a2e72d1f371e935ca4ddf51fa2523c6521126fd2b7bb73aaa7 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00301.mp3 b/prepared_data/hausa/wavs/hausa_train_00301.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e117c9e543ccc74ad2b11c42b632f80ab8e3798c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00301.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445d65d6f85a5c04f8df71a26bf76771eece5420a2b104f874617dd328884589 +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00302.mp3 b/prepared_data/hausa/wavs/hausa_train_00302.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bea2d4cf7cb5d50bea6a806c3a00da7244e7a7d9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00302.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1a9486973470c56900aa06ca421de49b62e340b79b042c51cd6879415e3f77e +size 40653 diff --git a/prepared_data/hausa/wavs/hausa_train_00303.mp3 b/prepared_data/hausa/wavs/hausa_train_00303.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..45fd8297063665491f75edba08129304e966c978 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00303.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3233227ddd941da5ed9a15209c2bb05514d800760a9131423d1bc3b304eca5de +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00304.mp3 b/prepared_data/hausa/wavs/hausa_train_00304.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..95f18d1f8ff879097d7eb9030301b8fbb1605236 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00304.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e193d639a61f7f180998314e5fb7b844abb5ab022f3270521fcf6427e888a453 +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00305.mp3 b/prepared_data/hausa/wavs/hausa_train_00305.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..87d2409d96babcbe7c9700142584bd0268118e27 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00305.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc2acdf9a7466f3785d20514be00e9c0b293256560af30d8252e85934c5de8e +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00306.mp3 b/prepared_data/hausa/wavs/hausa_train_00306.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fa4188ea6b706b0a0599305ce5fbed5f41a056ba --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00306.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d98a464e43dcd354987ac708aaa395454babe21033522182630a9976bf263e +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00307.mp3 b/prepared_data/hausa/wavs/hausa_train_00307.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..09671bbc9bd6baad737b8500382825fcf9614260 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00307.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:742cf0e7fa9151b1b593619f522b67d3a26a134015d06ab0d9be4aa87347950c +size 30285 diff --git a/prepared_data/hausa/wavs/hausa_train_00308.mp3 b/prepared_data/hausa/wavs/hausa_train_00308.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e565b661311e4ff2db78ff9e781f002c05cb2ba5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00308.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea93aed9032c8d93dc5e7bd82d1c13e4998ba6cfa6a6991e13c51b2825a7e89 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00309.mp3 b/prepared_data/hausa/wavs/hausa_train_00309.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..55459577bdbf9593a83a3cdbbed4421827daf2e7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00309.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73057f13f69a1326b7481fe42a35d0eb31e6b0b85f4344081bdb38a653c151d1 +size 37413 diff --git a/prepared_data/hausa/wavs/hausa_train_00310.mp3 b/prepared_data/hausa/wavs/hausa_train_00310.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3baf04d456f513e71cc66485f67a06b57c4960f3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00310.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edbcde66015971a7e693d6fbe49d12c388f6a71eabbd268c68b2017e40d4dcb +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00311.mp3 b/prepared_data/hausa/wavs/hausa_train_00311.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ee44e0518c9a5137e383034ee1717cc62a5c3729 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00311.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153bbdf34da68333e335ed155b23dc3b3e9b8e868ddcfcf7f4fdd5eaccc33c5c +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00312.mp3 b/prepared_data/hausa/wavs/hausa_train_00312.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..be7c711e3ca6d5f80f01648aa862946eeeb3898a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00312.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b8d05606ef8697c8f8c3193bd17b4d75b9eba399c170a95a9c98a534502f82 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00313.mp3 b/prepared_data/hausa/wavs/hausa_train_00313.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bf602700f70376e50abca873a9d494285c345d9d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00313.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e0ad4385c734bed8f1ed48f7b9c9a5f99e6c7975925a02b5f1462bb3edde85 +size 38925 diff --git a/prepared_data/hausa/wavs/hausa_train_00314.mp3 b/prepared_data/hausa/wavs/hausa_train_00314.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6bc3dced707412d049ca5d9d787564c66d8bb862 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00314.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d076d8c014c3a97ae07fa188ee3a2de77df704219a17db3e344efbe74f626ab +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00315.mp3 b/prepared_data/hausa/wavs/hausa_train_00315.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d385d0091de9c43a60098e1d25efd8e291e43ca3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00315.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c135c2904d81a74d1a6ff26946afdfa072390e143ab89d30c1e2b1c5f6b4e9 +size 29853 diff --git a/prepared_data/hausa/wavs/hausa_train_00316.mp3 b/prepared_data/hausa/wavs/hausa_train_00316.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5ab006b01f2a57c91c33faa9b5ea3dea23e23330 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00316.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3385ee7bb388c60fc50b86507523c6ca9900c21b42f0e4829dafe3892c4ff1a7 +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00317.mp3 b/prepared_data/hausa/wavs/hausa_train_00317.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f95037bd23dce4621350071a263e3b6cb379a713 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00317.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e94af7ce74728f61525f96b18566b82e665c08f44743f655a97ba8c338d6e2 +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00318.mp3 b/prepared_data/hausa/wavs/hausa_train_00318.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..82df32c03a3ba55e56b11e529f49bdae2e429524 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00318.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5c7fa6b27982d1bc16b9634e4ab6a518be01da4abaee1b62cc3f86ec1b84d8 +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00319.mp3 b/prepared_data/hausa/wavs/hausa_train_00319.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..888c41581fef8eb841d3e893a874a6e84eb2d591 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00319.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7c242b765b87776563a98b828dac4196ac01199ce9f3d32235d2b46e4ce84b +size 29421 diff --git a/prepared_data/hausa/wavs/hausa_train_00320.mp3 b/prepared_data/hausa/wavs/hausa_train_00320.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d9ca840f3e889d327888f5793e50d0ad36b17b9a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00320.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990e0986439dc4ee615368f3664c0dcae5e8b7f893d2cff1941cd461ae39fc02 +size 46053 diff --git a/prepared_data/hausa/wavs/hausa_train_00321.mp3 b/prepared_data/hausa/wavs/hausa_train_00321.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d917e54ec55e461223fa1883911937a82ebc32b9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00321.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df33e83f52b53e88b7bf5d766dd419477c6737524d5d254f16931b07ebafd65 +size 37845 diff --git a/prepared_data/hausa/wavs/hausa_train_00322.mp3 b/prepared_data/hausa/wavs/hausa_train_00322.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5fb8ca2685ea4aa7914dc185c6cd22483e188b24 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00322.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6bc9da8f7c9301c0c99f64dfd279fa7c80672657070e0b44defc006be8e2edf +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00323.mp3 b/prepared_data/hausa/wavs/hausa_train_00323.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1d7ee21cfc7e55a5c518ffd0317bc5be4fd1fd57 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00323.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25828a4ceacedcfd08a44f91f6439efd25d3aaae3f02864b233b19c40d12b5b +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00324.mp3 b/prepared_data/hausa/wavs/hausa_train_00324.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eff6c8278bd77c47e2112b9437b557528619704f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00324.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3ac561cbc3bc14ffe165811f30b728611d8ccee5af06c1f3466d2775eb4916 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00325.mp3 b/prepared_data/hausa/wavs/hausa_train_00325.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..63232d7a2dae1273a07974a1bc2752dfcd7d9464 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00325.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffee99a89d8a12660129613085f6de95b88f8132b4417e84f35ed2735812a045 +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00326.mp3 b/prepared_data/hausa/wavs/hausa_train_00326.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7f27e43a9911310f3636d32a0abb693fa2780cac --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00326.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d63611188156fb93b68ce69b51aef393f8818d10d3f4b6c3dde3a94c12a365 +size 16245 diff --git a/prepared_data/hausa/wavs/hausa_train_00327.mp3 b/prepared_data/hausa/wavs/hausa_train_00327.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d59a658efecfbadaf2d9032bf0cc17496dfb8a71 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00327.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b741b5f325e6bdfdc0c669fcf2fe59e888a62dacad2f84800633a3a899939f3c +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00328.mp3 b/prepared_data/hausa/wavs/hausa_train_00328.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b14605dff1f6bd1a793a81cb17aad8f62d66b036 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00328.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d3171a2fc731d77eb0c41c10baab6f1dfce7f4c208ecd0c080a84cd9f858a5 +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00329.mp3 b/prepared_data/hausa/wavs/hausa_train_00329.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..076fc67d14561e3595cadf07097570f5999fbec5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00329.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3bea615060669b55a722dce49efdbbe4100cd829add5cea5c5e3bafbfafe06d +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00330.mp3 b/prepared_data/hausa/wavs/hausa_train_00330.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..13dd8e1bfcb03b0602b1bf2c5829ee34d22c4b17 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00330.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07e0701a3d5f3db9b0dc60f29b6bd1781a9e0635a0c1332c7732f722061fc25 +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00331.mp3 b/prepared_data/hausa/wavs/hausa_train_00331.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d5977cd3b727f1ae843d12bd2093e4600134f03 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00331.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b337166c7c9cb7b052abbea9f1e0a30a55771b081f73ffe01b0b095b20d0a6 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00332.mp3 b/prepared_data/hausa/wavs/hausa_train_00332.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8c37c61cfe7f93732906f84cbdb897738e655597 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00332.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1944507bc3aef8bfe7f24d6e9922b7959b43b87a1981053255ad66264f3046 +size 25101 diff --git a/prepared_data/hausa/wavs/hausa_train_00333.mp3 b/prepared_data/hausa/wavs/hausa_train_00333.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a1d123965627886d9343a4957aa96249774c4a5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00333.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978b7742a317d1db423eb988dbd19c40826f0cd8ab1afe9c7d746e3c90513f6e +size 33093 diff --git a/prepared_data/hausa/wavs/hausa_train_00334.mp3 b/prepared_data/hausa/wavs/hausa_train_00334.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f7517b93a7bf3e5e442ecdf18cb520a7a0c88f7f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00334.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c13100567d517cd1bac4b5812311f40cf2a08d7e6b174d18a2d445008b099ac +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00335.mp3 b/prepared_data/hausa/wavs/hausa_train_00335.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..76b65f83f1d92648adad83df52612ef5ba598e9a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00335.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa173d63aea1ac25db66cadd8dbcfcf52651dca5919af62e96f031fb8749e743 +size 23805 diff --git a/prepared_data/hausa/wavs/hausa_train_00336.mp3 b/prepared_data/hausa/wavs/hausa_train_00336.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3cf2655f790ba69d3a0e8337fede6cb38b46a48d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00336.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e0db2004f02d555794be21e8f36ac126a424a90a86dcffc40d03373a5a4f35 +size 40221 diff --git a/prepared_data/hausa/wavs/hausa_train_00337.mp3 b/prepared_data/hausa/wavs/hausa_train_00337.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cda489f8d5f7b2eef3772f068c6ee63a3691fea9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00337.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d154b0b0c40c6ec61d79efe52611e031341ee238320bdf27b050893b64727d94 +size 27261 diff --git a/prepared_data/hausa/wavs/hausa_train_00338.mp3 b/prepared_data/hausa/wavs/hausa_train_00338.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..76369cb2ad266b8ada48bd1ddff953c7b9dcfa9f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00338.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2b7cf66211c7682752d8c62cdae0efaee3e80031931591640ce5498e45d3d8 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00339.mp3 b/prepared_data/hausa/wavs/hausa_train_00339.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..91a553fe9b317ca62253a1d10832c9779ac8efe3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00339.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce7b2f61eea21529c85acbc37720b9efcc361c4dd5a3300092aba57125b585b +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00340.mp3 b/prepared_data/hausa/wavs/hausa_train_00340.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fe0942adf5b8916d9bc0cb0e1c92bb3a559e53d4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00340.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c86dac9d22de97b7c6ad147bbcd037dc9cb209aba168c3c32af932ddf80c46 +size 32445 diff --git a/prepared_data/hausa/wavs/hausa_train_00341.mp3 b/prepared_data/hausa/wavs/hausa_train_00341.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f8428e75d9b7f06f1da13970a4368f18c276b162 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00341.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a172b79219625009b842c34243675a536224356a6657072494ae4a6ba102c41e +size 15381 diff --git a/prepared_data/hausa/wavs/hausa_train_00342.mp3 b/prepared_data/hausa/wavs/hausa_train_00342.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0d92f4b84d74faa9853cf3d80225a765e624857a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00342.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6efb1fc26e136c9cb67a4629f09cb921f281649b9bfa404d7ca6b2a58ba6747 +size 29421 diff --git a/prepared_data/hausa/wavs/hausa_train_00343.mp3 b/prepared_data/hausa/wavs/hausa_train_00343.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..92a0c238db4f4f862e6a42bcbd5d57cca8535b58 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00343.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f38cd208fb4a86b70643ea7db9434e843817997c49759acd3f222ca3064f2ae +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00344.mp3 b/prepared_data/hausa/wavs/hausa_train_00344.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9fc86db45f7dd8a771cf77ae97be9656b8c140e8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00344.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8aeabb01164d867ecae56e0ecb753ffccb10db40cb12550aa72de5bcd08637 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00345.mp3 b/prepared_data/hausa/wavs/hausa_train_00345.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eaef704aafd5e91a89a87a3e8051798b5322d8b5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00345.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475f2c3ff6a7b081486c95dfa206684c8462dc99421e67dd51ffc2bae0c33259 +size 14733 diff --git a/prepared_data/hausa/wavs/hausa_train_00346.mp3 b/prepared_data/hausa/wavs/hausa_train_00346.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e996c027f08a3846f1d5d78c55451ec9ce28af2f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00346.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8f94195a5a1b36cf0ac3517b0f18b3ec0a1e301cc160170f3b0e5376a26c03 +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00347.mp3 b/prepared_data/hausa/wavs/hausa_train_00347.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..958cf63b1d233b659464e544e8db3d4dd007078e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00347.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb3ee71671a254a74515aceb20a810d5ec2ae39c59f40466c54a1ef03941479 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00348.mp3 b/prepared_data/hausa/wavs/hausa_train_00348.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c6c6fcd020ecb79a4ee838ab46e372dd75f71152 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00348.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33289dd76701d28de1dfc393ba1ff3e0db40a38eb575b7171d2b6f5cce0f6b1 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00349.mp3 b/prepared_data/hausa/wavs/hausa_train_00349.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f0d1a3ccf883962fbcd9f77c6759f79cdd7bfb98 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00349.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906eddf8c3c24eb8d2aaacd9678a7f575994652d430ae0cdf53f05fe6f085454 +size 16461 diff --git a/prepared_data/hausa/wavs/hausa_train_00350.mp3 b/prepared_data/hausa/wavs/hausa_train_00350.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cacc2e0c1251ac6695366b60eb8d6f2303bccd19 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00350.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d961d31bbad1c33e4bc269c0d9f94870ea3cd0b30c9a2ce9b81d1f130a9342 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00351.mp3 b/prepared_data/hausa/wavs/hausa_train_00351.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8828262c922f9ce65ee2362c3b3ccd9680805cec --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00351.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6e29d719afa7435d433b0896262b2a1a753d13431de4479a429014f3322595 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00352.mp3 b/prepared_data/hausa/wavs/hausa_train_00352.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..90ae8ec3d1535e06d3d672568897a81fbab87d76 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00352.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43811d0623c12e3b22b3aff2ed7acc4f3c69ab5e0aa6182d013b97232b19c2ca +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00353.mp3 b/prepared_data/hausa/wavs/hausa_train_00353.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9727994096cd41cbae9b1df358e3223eff998f9d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00353.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65bcc165c9c060acef9e0b9ec9f271b103ae556b5e0ea52ac02409a76ee6d14 +size 25101 diff --git a/prepared_data/hausa/wavs/hausa_train_00354.mp3 b/prepared_data/hausa/wavs/hausa_train_00354.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fd7f466e1029d1817d3b72a1238e67de8b6034e9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00354.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55a5c61cc8e826385f30cd3b8f95c337679f020d6a6fb765906164e2c2db9db +size 32013 diff --git a/prepared_data/hausa/wavs/hausa_train_00355.mp3 b/prepared_data/hausa/wavs/hausa_train_00355.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..78f88360d1c2efcb0cb1c48132113d92f60d88e9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00355.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c58b0083604e183e8e571086b8c126f08d3c5ce8cecdf1d4af6c8eafb05cc2 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00356.mp3 b/prepared_data/hausa/wavs/hausa_train_00356.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f99e709963c45d3d1eeab57854a4c239ad0c31c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00356.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a1170d7d7a745e9d19cf4fd1ea682930188923af30db1e4569a1c06d8374e5 +size 35253 diff --git a/prepared_data/hausa/wavs/hausa_train_00357.mp3 b/prepared_data/hausa/wavs/hausa_train_00357.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..215e0b1dbacdcb6468e7724e8fca266a2de9f26e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00357.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f694896726daa10092296324fe3db6dd5554ec6b1038d1ac3baca85b4c737f8 +size 27261 diff --git a/prepared_data/hausa/wavs/hausa_train_00358.mp3 b/prepared_data/hausa/wavs/hausa_train_00358.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2d9b381bd9d2d5d513f1154f6fabfdc01fa7f175 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00358.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389cb49b1753bf718fdcaf38300687cec4a7f2ac19faab663e4c933ce2ad440d +size 18405 diff --git a/prepared_data/hausa/wavs/hausa_train_00359.mp3 b/prepared_data/hausa/wavs/hausa_train_00359.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a8b418f9107a0040e239514a03fe36b4f9b5d87 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00359.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5787eb4c56977a62a7c58e6142d96a0cf62da6824eab4325a8dd02784262c82e +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00360.mp3 b/prepared_data/hausa/wavs/hausa_train_00360.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..230ae967e5c6118ab4a567bc0102dc2314ad1c70 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00360.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c2d2ca4def2174fc17d4d9cb5240a2de2ed6693d9269b01075c2127e335e4d +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00361.mp3 b/prepared_data/hausa/wavs/hausa_train_00361.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5fcce55ff93e266724beca10914dd475f6dda8e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00361.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbeb1dc3010210e83817db10fb20faa3ac0d13e2a86b737b94b902294f98b43 +size 30933 diff --git a/prepared_data/hausa/wavs/hausa_train_00362.mp3 b/prepared_data/hausa/wavs/hausa_train_00362.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1791d403bb47a31650ec4d5f6ee04df269765a68 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00362.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696543da9225e90ec1cd203bbb34a718193d6c77d6e4b4149be32e6aa5aea80e +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00363.mp3 b/prepared_data/hausa/wavs/hausa_train_00363.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..535e1d90692622a82eec4dd7c6578e11e205cba4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00363.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:201833dbc53645b93bdccd7146b55c61c5b4f4d75d9fdff544b28b9bfed2b309 +size 31365 diff --git a/prepared_data/hausa/wavs/hausa_train_00364.mp3 b/prepared_data/hausa/wavs/hausa_train_00364.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..131785874c557e5155254e7399a0c0bef8aa74ef --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00364.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f24197c7cad6ad0691ecb34dbeb388ef90709b15ee9b2392b1ef02a5fdd2cd8 +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00365.mp3 b/prepared_data/hausa/wavs/hausa_train_00365.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e456b4f79f9ddc61f68114d1e55792adec3239da --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00365.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7f58d8a610a71b7c4c64ab2ffaf76f1acf3cacf1169177a33a1244c342d728 +size 16461 diff --git a/prepared_data/hausa/wavs/hausa_train_00366.mp3 b/prepared_data/hausa/wavs/hausa_train_00366.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ebd25e567b84a1ea5708f165c96b24b4ebc809c0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00366.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65fcdcc2c088f4c614fb9efd4ccbc22576b6ea9e4c6d1c7725d57625ad517755 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00367.mp3 b/prepared_data/hausa/wavs/hausa_train_00367.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0fb7e473f3b9a67643491a9f0ae2ea2f7d45635c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00367.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bccf07bef7e96f3a8c8e5b27bc4aa2dc85cc5d752a3bd5b0fbf509471d966ab +size 27261 diff --git a/prepared_data/hausa/wavs/hausa_train_00368.mp3 b/prepared_data/hausa/wavs/hausa_train_00368.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ac4a4784ef21d2284b4329e64f77caf5c8870511 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00368.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77bccde4cbd5bef7ea5ac93e12b2d1562c863c7b73a717c39c57d4e128a21bbd +size 28125 diff --git a/prepared_data/hausa/wavs/hausa_train_00369.mp3 b/prepared_data/hausa/wavs/hausa_train_00369.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eb6c8bb3cea0228237e8c244835dbe316bb536f9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00369.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:177f55390966a1f037de8ca67f87b9c2ee482ab918bb3c0aebbea91f45707781 +size 30933 diff --git a/prepared_data/hausa/wavs/hausa_train_00370.mp3 b/prepared_data/hausa/wavs/hausa_train_00370.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..726af48baf227b4937033c44fa49e219dbd2b48d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00370.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cc82b20948a9501ce2753a7bd3a4507222d8559b19a1045d460cf018bd4d45 +size 30285 diff --git a/prepared_data/hausa/wavs/hausa_train_00371.mp3 b/prepared_data/hausa/wavs/hausa_train_00371.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3e8263232be3f9ffcfa48252e333b62e00774a52 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00371.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e47ce0f83c1be04483b081deb53d214dbe4e50e2ac4589084cd4a9a794403fa +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00372.mp3 b/prepared_data/hausa/wavs/hausa_train_00372.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4b2d282999893393cfc3aebd047c5661a7b8720b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00372.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b58c287ddeddffaca798694fe6a835d702045656a54002a1caf56cfe937cb9 +size 23805 diff --git a/prepared_data/hausa/wavs/hausa_train_00373.mp3 b/prepared_data/hausa/wavs/hausa_train_00373.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..df45873a63cc1d509c6b27c195bb748bfd2d0566 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00373.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499fe217f4d245ca81c66842e73ed99604bb3004bef7f89b73713576cf8b0c4a +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00374.mp3 b/prepared_data/hausa/wavs/hausa_train_00374.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fabd90a0187d740575eb3bc5379fa559f7bc5ff4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00374.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46992792b31458981d1524b3818b7da217cf59da1f9cc845eb3430d6995594a3 +size 36981 diff --git a/prepared_data/hausa/wavs/hausa_train_00375.mp3 b/prepared_data/hausa/wavs/hausa_train_00375.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..825bb73c782d9533c6a3587c942b7cee7148c3e0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00375.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd5c4f0428aa118fe5a166d1c716cc93b0e20968885142efba1f8d304d8ecc91 +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00376.mp3 b/prepared_data/hausa/wavs/hausa_train_00376.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f96d07b52e217dd2e7fb5be765547f0b81812ab3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00376.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d85e306e84c06bed8613ae88d49b86cc90f7d6c3b175f3dcab21c95b4a3f3e8 +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00377.mp3 b/prepared_data/hausa/wavs/hausa_train_00377.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..edd474bfeb9ed780b0403730779bd6193051cedd --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00377.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba516d0821f1af2e5aae4c9199b04735a91263c79ba856b0db4412cf0e949c94 +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00378.mp3 b/prepared_data/hausa/wavs/hausa_train_00378.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..14aaca8ad217c8c80ea7aea0db897c8badb0ae21 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00378.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be9ccf2f5837964e6ed0bb4a84244e0b987ee357c146afa74348be188f2e41e +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00379.mp3 b/prepared_data/hausa/wavs/hausa_train_00379.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3be4fff7080ca53b3b17eb962f34bf5098831800 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00379.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60000d2cd8b44adfc347d0dc5dfd52c7b055b03dbfef3b9fb346ea0d4e5b1a69 +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00380.mp3 b/prepared_data/hausa/wavs/hausa_train_00380.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cd4e654d3863dbaf6f7b6d0f3cf0a54a041bacc0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00380.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64414be5eb7fa225d8a05747cc5f8dde997f1c446d4321e5efb8fe1ba7a44ec9 +size 16245 diff --git a/prepared_data/hausa/wavs/hausa_train_00381.mp3 b/prepared_data/hausa/wavs/hausa_train_00381.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..497f131812a63dda5f4b0553e8da6b2234e987da --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00381.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d821209568d4f32e9717b07b320aa1b78b96c59af45628e31bd345dba64bffff +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00382.mp3 b/prepared_data/hausa/wavs/hausa_train_00382.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b97fec3c6ba79083db9ad0f87d2f47c9326cce05 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00382.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ed0b806fc611a704a9f46fe67f3ec455629b48bc10083b8592dca4a0a48807 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00383.mp3 b/prepared_data/hausa/wavs/hausa_train_00383.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8bf534010c78107917b2e8a7850c6b76cddcdd48 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00383.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b05a513a2c70e0bfe0511e5b83e3e8606635d9f2930fa105cef8a9ced8009a +size 42165 diff --git a/prepared_data/hausa/wavs/hausa_train_00384.mp3 b/prepared_data/hausa/wavs/hausa_train_00384.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..684c75a9b13f8440bd4dd3951660908e317e9b98 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00384.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f805f023e260bc724dc65870c71d370d1ae4ea664a6fb5cf9962f4b931cad753 +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00385.mp3 b/prepared_data/hausa/wavs/hausa_train_00385.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..33a5174aef2ca8904b00a54dc70cc13af8b3fea8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00385.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9379b5735741174b0e0577e1ce5c08b058ffc730c572e38a08cb848cfc15de4a +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00386.mp3 b/prepared_data/hausa/wavs/hausa_train_00386.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..930bae8c285fc122dbac9962f7a15574f461f428 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00386.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf8fb9a10b0b6cb25c89e1ee102ac66ce8387c68b027442501a8679c2970a60 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00387.mp3 b/prepared_data/hausa/wavs/hausa_train_00387.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3de5a7e0c65f9387e420cfcdb1fab3149288c6cd --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00387.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac79952deb5ea23b3be5f13d02a0800ebcce62589a46c674bcf34f6d55be525a +size 27261 diff --git a/prepared_data/hausa/wavs/hausa_train_00388.mp3 b/prepared_data/hausa/wavs/hausa_train_00388.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e5b65b1892e229a4775a7ac3e3e2698503b1f52f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00388.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc16e77714bf653823ee2b0b2993cb881a967e5c17453276f00b1379f0a0528 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00389.mp3 b/prepared_data/hausa/wavs/hausa_train_00389.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8d8560caf70995a7700081ba584be82f004624c1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00389.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a95a2bd2933bfd61ae28222dd7d363f94f4c72e051f1d6015660f141b3fb3a +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00390.mp3 b/prepared_data/hausa/wavs/hausa_train_00390.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3ca623f7e0f25e7308c3a55c5a9883febde0f339 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00390.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8175f9a3564b7ecde2c29c91c33d7f01252849effb3eb7a842c630b16d474918 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00391.mp3 b/prepared_data/hausa/wavs/hausa_train_00391.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7596f415cb706ee2d0b497e27352c160109d6109 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00391.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75f2e093bab3da85916eecac2773816c7d667f4749bf6a75ae690745a5ad410 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00392.mp3 b/prepared_data/hausa/wavs/hausa_train_00392.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..98b149a30076987270f3ad0c16e3fc1849fe9695 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00392.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d27e02b785a263a9e19ec82821ec7136b9509deb08e0c854c031df8ffcc33dde +size 27693 diff --git a/prepared_data/hausa/wavs/hausa_train_00393.mp3 b/prepared_data/hausa/wavs/hausa_train_00393.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..949914f8cafc02228fb8bf754b0132c516aaccf2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00393.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48018bce7080d1a5f35dcd83abe6904d0b7f581584fef1eb48aaff71938e8408 +size 33093 diff --git a/prepared_data/hausa/wavs/hausa_train_00394.mp3 b/prepared_data/hausa/wavs/hausa_train_00394.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a66aad655198b3823cec65cdf43fc442090e2ad0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00394.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8e9c78910356f8c9db3d1774e9b75cc8d8638632f99cf9234d705481a7cacb +size 33093 diff --git a/prepared_data/hausa/wavs/hausa_train_00395.mp3 b/prepared_data/hausa/wavs/hausa_train_00395.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c71fa159c720d106bce9ce1f81ee0b531c28dcac --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00395.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4416aa09cf903139baacd1f43e35a15c51c417975872b0fb98742f59708cb53 +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00396.mp3 b/prepared_data/hausa/wavs/hausa_train_00396.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..379f3313c1cf180e0813f88e1f8888c264f9e7bb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00396.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9785a19e45335cf5d8d147c53b2fc926675aff1e308757c3b17639316b313360 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00397.mp3 b/prepared_data/hausa/wavs/hausa_train_00397.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7ad2527644ca1c5d678b48346f273d3456b363ed --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00397.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b6db0b3294949d572e91f2abe42a77b310f98605b719c69fb6c4b79a215165 +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00398.mp3 b/prepared_data/hausa/wavs/hausa_train_00398.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8b5fd6a092445900c3e1a9c4263bfdc972791cf --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00398.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e479eab7f181223f07a5ae3cdcd7b0d4d9da71a57f21edc86623b6266ea84d86 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00399.mp3 b/prepared_data/hausa/wavs/hausa_train_00399.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..39dcc5f9aa35b249b0d73c87b91f0782eac26ae8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00399.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788334967a9a8e10d3cea2e54d45e9c97a2f3f5e936b2b8517564c0b56c637bc +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00400.mp3 b/prepared_data/hausa/wavs/hausa_train_00400.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..79874e633b23784216c4c0c1d96c67bfe3c141d2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00400.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c65c1309f7f117b3b47a5e4d538b6405813eff29ba3426e132213cb1d9f6c5 +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00401.mp3 b/prepared_data/hausa/wavs/hausa_train_00401.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cb96d6e8db884ead68946735287eed05dff1d3b2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00401.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330894e9a5b04abf343963c04b483a57ff4957e5f4eb66fafb9d3ee1b41ee7ac +size 28341 diff --git a/prepared_data/hausa/wavs/hausa_train_00402.mp3 b/prepared_data/hausa/wavs/hausa_train_00402.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ffa41f10b9fae39e3c68c8971cec3ca29f0a88b7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00402.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8f96d4c402155a629c91023f71e9e54212dca37644e1ffe6d37b8fa9ab5bc0 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00403.mp3 b/prepared_data/hausa/wavs/hausa_train_00403.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b45f3ad7583062e97cb74d5fa08daa88b0e89193 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00403.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11deca2380dec2c2c4c4e57c9a22fea5f9f525cc3323ee6edc1279a65c077b4a +size 43245 diff --git a/prepared_data/hausa/wavs/hausa_train_00404.mp3 b/prepared_data/hausa/wavs/hausa_train_00404.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b9b8b52e4127169f563f2780bd57cc32ac0ff4c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00404.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d11a1eeb728fd1ab9b8e7add6f0c2b9c8af1b9b9a88fa5f3c529b7f99279f560 +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00405.mp3 b/prepared_data/hausa/wavs/hausa_train_00405.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..66340abf6cd204edb2634d8a668ec344e06611a6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00405.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae979bf33dbeffeea5a2394dcb98a3c3bda14ef034043ab64739e3ab051a43a9 +size 35901 diff --git a/prepared_data/hausa/wavs/hausa_train_00406.mp3 b/prepared_data/hausa/wavs/hausa_train_00406.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..998d325f8d9b0a0e79da5d6a2598a8b4638ef70c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00406.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3bd9eb30d7fda5056cb5b6d3ad62db966eb14c69389b7159ca98f0fa82e42e5 +size 36981 diff --git a/prepared_data/hausa/wavs/hausa_train_00407.mp3 b/prepared_data/hausa/wavs/hausa_train_00407.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e381393d59922b0495ea9a0a7c2e9e74a3dcbf27 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00407.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6903a1955ee11bfa5363edfd8abf28d31307c280859f216631d98bdc9b0a022d +size 33093 diff --git a/prepared_data/hausa/wavs/hausa_train_00408.mp3 b/prepared_data/hausa/wavs/hausa_train_00408.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..149b1bc78ed526e96f66b2ea195d6b49305c3146 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00408.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a74c7d2fdc4328cc06db13c6e8ae9a9b78e4e002f49ca5722ecba8ee4196acf +size 25101 diff --git a/prepared_data/hausa/wavs/hausa_train_00409.mp3 b/prepared_data/hausa/wavs/hausa_train_00409.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..302c4e92351b3ef49ee637957c1d6a104aa6e6eb --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00409.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56e5bfc502f445738ac3d52d3047fcab59e5e0e8e03f70c3eaa627ba13b2301 +size 29421 diff --git a/prepared_data/hausa/wavs/hausa_train_00410.mp3 b/prepared_data/hausa/wavs/hausa_train_00410.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6a701c1bb42794fa257d18654467c63c655c0133 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00410.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126b4aaf826158c25ff2edcc6b7c35ea880f3244d0f7f3c9c7dfd6bad92aeb67 +size 30933 diff --git a/prepared_data/hausa/wavs/hausa_train_00411.mp3 b/prepared_data/hausa/wavs/hausa_train_00411.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..13297ddeb0d67dae352b9f2106933f5cd25435dc --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00411.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593088cbb2e26b3f884fa3f3734a99691bad01a0474c652d80d67789ee522c90 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00412.mp3 b/prepared_data/hausa/wavs/hausa_train_00412.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..424c32d19a79672c4e31c46cb5afcf331f64c83a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00412.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090bad98904050b4701cc8f98a6f61114f0d11e8757775360df6de1b5769c398 +size 24885 diff --git a/prepared_data/hausa/wavs/hausa_train_00413.mp3 b/prepared_data/hausa/wavs/hausa_train_00413.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a11d394372caa1568407d5190e43bb554175362b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00413.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2706991a9d054daf9952c6d7f0cd3bca123afccc11eb89082c68053232674fd +size 25101 diff --git a/prepared_data/hausa/wavs/hausa_train_00414.mp3 b/prepared_data/hausa/wavs/hausa_train_00414.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eee77a0e453499a86c70684af9ac33bc5a71b0ba --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00414.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5455b1522925b380033161769b5c4db08e0580fdd049a50db44b172f4ba6048 +size 36765 diff --git a/prepared_data/hausa/wavs/hausa_train_00415.mp3 b/prepared_data/hausa/wavs/hausa_train_00415.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f911015faf8f2919f58b0f2e9f1daef4138d93df --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00415.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f91e31b44ba0ffff055ee0546b2f94a8824515ad335955ff7a575dcb4494c36 +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00416.mp3 b/prepared_data/hausa/wavs/hausa_train_00416.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8b028cc2258604694c6027b34d445ae04c1f485d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00416.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcc3d9ee0423b22af737c7e15947086b4e532867f71fc003a5ec18ef155b748 +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00417.mp3 b/prepared_data/hausa/wavs/hausa_train_00417.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c922b68496967296d7f361f6b513cb7dc0e90232 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00417.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53f1efbc51aef45a1d0952fa801e9b68831e75ca07607e8aa0f373280d19e4e +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00418.mp3 b/prepared_data/hausa/wavs/hausa_train_00418.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..17b3b6938f0d0bd68bf2603b2148c2a3b52bd7d4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00418.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a472cdec25854735e2df07a24c2b990992f29b270a12498f79ba8b9ebb4631 +size 38925 diff --git a/prepared_data/hausa/wavs/hausa_train_00419.mp3 b/prepared_data/hausa/wavs/hausa_train_00419.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4db6e7cbea94c4c8d4622a36ab2660ef744efcbe --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00419.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc07ddc37c8910a3933fd653b758bdbee12e1af5586acc0e04468b600852dd57 +size 29421 diff --git a/prepared_data/hausa/wavs/hausa_train_00420.mp3 b/prepared_data/hausa/wavs/hausa_train_00420.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b22121744224ce7de6b7b7274d7e2e7def7192a4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00420.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4305eb43af238d03495c93ea4e0a27481a18461368354141d75269130966dde +size 15813 diff --git a/prepared_data/hausa/wavs/hausa_train_00421.mp3 b/prepared_data/hausa/wavs/hausa_train_00421.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..435a338c827ab4ee49f1bece39e8f44f27a5aeb8 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00421.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23bf15465f071c5f091405bed5371b761a19b2ec90d601d5abb2e1a2e9a0f0de +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00422.mp3 b/prepared_data/hausa/wavs/hausa_train_00422.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f6ad1224f38b17e399b8b6794ddf7eec8d54ec79 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00422.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43af29177d3e3956a6b15d6c6cb90aba0d25be46701e59570e85127bdbe14332 +size 29205 diff --git a/prepared_data/hausa/wavs/hausa_train_00423.mp3 b/prepared_data/hausa/wavs/hausa_train_00423.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..becbf03b8cca843ec833f560acdb653d196251d7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00423.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7565d02c0a6d1f86f590ec935e94ac3abe66c0b63d3b6dcab05a444ab27af68a +size 42813 diff --git a/prepared_data/hausa/wavs/hausa_train_00424.mp3 b/prepared_data/hausa/wavs/hausa_train_00424.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b851fb9f7c90fe8328eaa5ea646236fa42826e4e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00424.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caad38fe6d711e559b89070817dd9e9a86835a9ac097e719eee97e9f34067383 +size 20565 diff --git a/prepared_data/hausa/wavs/hausa_train_00425.mp3 b/prepared_data/hausa/wavs/hausa_train_00425.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bc316a01b41aa379b7d050ace82d5b3837251045 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00425.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb73112f97da76b909d2b8d148227f805488b1f753cd92b03f13a60ca7922a8b +size 22941 diff --git a/prepared_data/hausa/wavs/hausa_train_00426.mp3 b/prepared_data/hausa/wavs/hausa_train_00426.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..227aa9152c288b4cc12099472d07e5d785db0b40 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00426.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3caae084ceda92560e539ba714c24df5f9f4ede9104b523830a2ea3af23d6f0b +size 32013 diff --git a/prepared_data/hausa/wavs/hausa_train_00427.mp3 b/prepared_data/hausa/wavs/hausa_train_00427.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cb59f0794b2355e0cf3edea7df8833f236a41c9f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00427.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3358a065a7f1972a729f5193bdfb2920272ae4f8e42695253e2c1ba63d14e779 +size 15813 diff --git a/prepared_data/hausa/wavs/hausa_train_00428.mp3 b/prepared_data/hausa/wavs/hausa_train_00428.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2a95aae3e714039e28cb94faa21911eabbc2c062 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00428.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a18f62876b7dc8ca9ec86212770881c67c85735b48209b26fb96261448c762d +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00429.mp3 b/prepared_data/hausa/wavs/hausa_train_00429.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..72f38621385ff59085d2b4231610fdd260268d66 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00429.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30bf71013dec1b49ec29bca960a3dcbf1daa638e30261f26946143ec3ffa8c3e +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00430.mp3 b/prepared_data/hausa/wavs/hausa_train_00430.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..87a58ba31976a7fc87ce1df3afb03dbcbd4decf6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00430.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8510e83213ced91a54d012877f14c73b19eb846d35ad919f2719221b957f434 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00431.mp3 b/prepared_data/hausa/wavs/hausa_train_00431.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f52da2e49b65bcd3f424429fdb54725209aa800 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00431.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cd9ea74e71538ffc6e982dddd72658bd4daae545d8856b163d5fe6295459fc +size 36981 diff --git a/prepared_data/hausa/wavs/hausa_train_00432.mp3 b/prepared_data/hausa/wavs/hausa_train_00432.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..97a0549d052c905456b510c7cb4f7452c3925b91 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00432.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4946de57edb75d7fb738912fee688f075c7236afb36a21418d88f80a24eac8 +size 38925 diff --git a/prepared_data/hausa/wavs/hausa_train_00433.mp3 b/prepared_data/hausa/wavs/hausa_train_00433.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..578bb0fc1374fc6a0e24f425aa5880b4de6b35e7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00433.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f55da5c351df3a88a329efd2fce15089a676312ef1ab2f762ee1e015ba49f131 +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00434.mp3 b/prepared_data/hausa/wavs/hausa_train_00434.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..abcb1f48267e43d6f5a6a9f318d8fb51cb1c9104 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00434.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a5256e67df430f204a6cc31c9290f7e62bb4f2f01be2f519d9c4d3d66bfd0c +size 33093 diff --git a/prepared_data/hausa/wavs/hausa_train_00435.mp3 b/prepared_data/hausa/wavs/hausa_train_00435.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..da2b9d58c82c46942292b3b146c4f54b881d4261 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00435.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49fcc09ba8bc8458c397d8eadee0f2a10c17ba652d98e59a088ea8263a9831cc +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00436.mp3 b/prepared_data/hausa/wavs/hausa_train_00436.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cb6de13264cc0b037a7c4d1168df507310d959f0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00436.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8b2e369fc145c47152235a2cc3343b39dad1c31911e85fc44545e0baa20797 +size 27261 diff --git a/prepared_data/hausa/wavs/hausa_train_00437.mp3 b/prepared_data/hausa/wavs/hausa_train_00437.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f065df979f2fc4a0d8e1f14a9219d256653961b6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00437.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4d384d3b2cfdf6e236819a42999b1489af382ba0717fa2354783c41e9b9272 +size 34821 diff --git a/prepared_data/hausa/wavs/hausa_train_00438.mp3 b/prepared_data/hausa/wavs/hausa_train_00438.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d71088664c2dbd6b6eba5bbf696bdde3c3e46d5a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00438.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08224cf2c6244e9eab76591171bcbc488ceb84776fefa32bb6ab56f209848f55 +size 29853 diff --git a/prepared_data/hausa/wavs/hausa_train_00439.mp3 b/prepared_data/hausa/wavs/hausa_train_00439.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..981af48a20c7bb196b01b978c98b4a5015b98998 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00439.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2133328bdbc0b38c6ba69f1713b86c6d5ea5e3f80572e031a9b33f0cd7cb6242 +size 29853 diff --git a/prepared_data/hausa/wavs/hausa_train_00440.mp3 b/prepared_data/hausa/wavs/hausa_train_00440.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..198fc5d94e3962e8619bff50fc93d7fae32f0e4a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00440.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c778fd746a9a51c7dd79c1298763da52d7e36e130b4813dba0630b3bb63d81 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00441.mp3 b/prepared_data/hausa/wavs/hausa_train_00441.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4019b5bf41be546a824bf313dd7137a818aa3198 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00441.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e8e7716e0e91f1b5ac6dda62a31ddbb41b8bfbe496aeb5580830ca5dd2335bc +size 32661 diff --git a/prepared_data/hausa/wavs/hausa_train_00442.mp3 b/prepared_data/hausa/wavs/hausa_train_00442.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..529f414aa464ff4123e466b319f4458f465c725f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00442.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be21b525fb6c0683350a438222561efd620c3144e1ab1c8e17c4e7101904bedc +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00443.mp3 b/prepared_data/hausa/wavs/hausa_train_00443.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f9f6f20f9ea5d3c51ad90a73eac97db3d49b4c48 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00443.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e55d50db941f16ccbc97f4a4425e48ee41a532daaa8ed88430edb45d437b21 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00444.mp3 b/prepared_data/hausa/wavs/hausa_train_00444.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..78360537309281ae01d74af608af61a41479048a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00444.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a69534e97406010400cc462a1631e4885574aaf0bd72478a35443120667a18 +size 24453 diff --git a/prepared_data/hausa/wavs/hausa_train_00445.mp3 b/prepared_data/hausa/wavs/hausa_train_00445.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5fa69d9b625dee0606789c674154d882b2b50d4 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00445.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e5ba2e5fc1389ecc6d2db595c833ae896b4f01d5d3b5d96eda17b94000fd4e +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00446.mp3 b/prepared_data/hausa/wavs/hausa_train_00446.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e200a933412387feaac67d944ee110ad557472a1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00446.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53eeff42d2146fabb86691aaab00f34264f04b5ddab7cda93af1063872c0df9e +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00447.mp3 b/prepared_data/hausa/wavs/hausa_train_00447.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b9bf6a78dae58289538c53f8f6520745603d9087 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00447.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07095c9db28143ca6537c155f8266794d73b637544eceeeb14f4de5e7501466a +size 43245 diff --git a/prepared_data/hausa/wavs/hausa_train_00448.mp3 b/prepared_data/hausa/wavs/hausa_train_00448.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6a1c7b78b96512550d613644269e24d20b7bee2d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00448.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e8d1546e0103cf706a3ab5a1632dd0bf2be2790d3630436a2bc824f7c70b3b +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00449.mp3 b/prepared_data/hausa/wavs/hausa_train_00449.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5e68f64aad7784d3964ddfd96f276ab2a1aa188 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00449.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2af9df5b7cb6b3c9b78e1ccd7a73a843c52b960823c3b9b2de8487c4d92c366 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00450.mp3 b/prepared_data/hausa/wavs/hausa_train_00450.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..58b00d319e0256f9b7d32d5d347708977605795e --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00450.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938e9d46dde17fe234d42e23fd00de232f2f6d57e2081d199038b847ca1b4812 +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00451.mp3 b/prepared_data/hausa/wavs/hausa_train_00451.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6b67cac3114bf2e714b489ba3bd97d96da473a1f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00451.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea39b6122149eaf907d6a1ef21a7f70c5e10f87eb2a6ac4c17d64947f01bc3a5 +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00452.mp3 b/prepared_data/hausa/wavs/hausa_train_00452.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..85c43243f1faf9dd5207a80900e451d3de07bc72 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00452.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd4356a86d3579bff1013ef9b6be6c1c772ccd6472750427f39d3a5e2dad115 +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00453.mp3 b/prepared_data/hausa/wavs/hausa_train_00453.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6413fd72feb2978e561315b0472c971aa2446f4d --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00453.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c53d330f654139d9e82b18f93398c693fa582c359cdaec0f9f33446abd49e3 +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00454.mp3 b/prepared_data/hausa/wavs/hausa_train_00454.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2106720aba235021a071b2d0d9db4b8a7155c2b6 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00454.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75e72fc2718dee59ff3c3a6748ab6e968cd0b29886da57048d37e6cdadc6ff3 +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00455.mp3 b/prepared_data/hausa/wavs/hausa_train_00455.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2fd67e628132743977a2e037dd8217a7853ac513 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00455.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a83b72065ff0d1410cdceedfc8db2ac4c56c95f102571dc954a259b9f11f9bd +size 22293 diff --git a/prepared_data/hausa/wavs/hausa_train_00456.mp3 b/prepared_data/hausa/wavs/hausa_train_00456.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..174548d6db7269c7068ec411151a226b28c45472 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00456.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d11fe14cf10e70c6b37bc3e561e80cac0f13801fc211aa6b4f5b13b6c0e77af +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00457.mp3 b/prepared_data/hausa/wavs/hausa_train_00457.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5426b12624e978b4d7e7fad4acf1c363bbd4d985 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00457.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffd02b00aeda10178896b5523e94707e13cf1fb42b3c1437525fb7d9f3061b6 +size 21213 diff --git a/prepared_data/hausa/wavs/hausa_train_00458.mp3 b/prepared_data/hausa/wavs/hausa_train_00458.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..48fccb18e1f981aac99bb1001a9a905e4be910ac --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00458.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abff47f306ea986e038a84d885fb1eb556aba01d7d23afba7fc9b7561fd59edb +size 26613 diff --git a/prepared_data/hausa/wavs/hausa_train_00459.mp3 b/prepared_data/hausa/wavs/hausa_train_00459.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6a7724a07d3cf759ec67e390bb06af429975b99a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00459.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42af085b3ca1a725400005b11e5f46fa1195149f8d2e21722a1b22ba3aca8d3 +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00460.mp3 b/prepared_data/hausa/wavs/hausa_train_00460.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ec4d01063dda39c7666e4ae39ccad101f62f0242 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00460.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c315379ae8e248c87c0a1d22ff7121fad7d1083a353c61b71ae7b54075686ae +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00461.mp3 b/prepared_data/hausa/wavs/hausa_train_00461.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3bcf5419b23edfd73984dd3f08cc2a181b600a92 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00461.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ccd5538608d6dc7bfa7b06f4d814a3c03172023f1721449a196d9261fb170a3 +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00462.mp3 b/prepared_data/hausa/wavs/hausa_train_00462.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c241605a2332c1ac4ca3a9fa2f7e74f823ce44db --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00462.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08c22b9c02052f92f0ec3efda2d2cc125311c7135f7a10df4d75fb48b4ef8709 +size 27045 diff --git a/prepared_data/hausa/wavs/hausa_train_00463.mp3 b/prepared_data/hausa/wavs/hausa_train_00463.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..70aa97b25c2a360762e3d5491a7b94d10034f93c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00463.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b39be157a122a3a3d92ec9924c0e8a79dc422f95b5071feebb727898ec172993 +size 17541 diff --git a/prepared_data/hausa/wavs/hausa_train_00464.mp3 b/prepared_data/hausa/wavs/hausa_train_00464.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2f4535ae12f2baeda668e559dbd7799c40574623 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00464.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb243642ebb593851efbbbb4b27a22a3074f14e183c8e8e3561f052a2c397d0 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00465.mp3 b/prepared_data/hausa/wavs/hausa_train_00465.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4e389c6230caff7720177a0fc2528e2414ea6632 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00465.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee85a711acc3ea8b697e5daacb731b98373e73b25bd25d07a183d9fd94b64699 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00466.mp3 b/prepared_data/hausa/wavs/hausa_train_00466.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..79592e5b9b010eb0264833349be69f9131bdc5e9 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00466.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a18410054ab9751a26283085d75813213208555aa06394620d6418b5a69c181b +size 26181 diff --git a/prepared_data/hausa/wavs/hausa_train_00467.mp3 b/prepared_data/hausa/wavs/hausa_train_00467.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..11d0aa08086b3f5228c30a19cce56c840dc6b972 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00467.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6fa152358cf0ac8c4f647de77d405fda720e0dffe7e182fb0f188d5ce5c038 +size 28773 diff --git a/prepared_data/hausa/wavs/hausa_train_00468.mp3 b/prepared_data/hausa/wavs/hausa_train_00468.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c40740ab3a5c2238e2140ce19e08730154fee9cf --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00468.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7226fc2a0d8ef365e7e32af5bec695de1228fff8ddf7a3c03a89c1d67f3f055 +size 19701 diff --git a/prepared_data/hausa/wavs/hausa_train_00469.mp3 b/prepared_data/hausa/wavs/hausa_train_00469.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1de0396e076b0928a6540c36c19539719152b7f2 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00469.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50777bd0e5949f12103fe6a86524291fcdd97810a7211b2768b50a75a4a38476 +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00470.mp3 b/prepared_data/hausa/wavs/hausa_train_00470.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..660b6c05012c5b815dd891eabe69214449c63517 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00470.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c533ac85aca254b240846e3b4d38e262f52592294903df30777208dc5399b4de +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00471.mp3 b/prepared_data/hausa/wavs/hausa_train_00471.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f702cab9d4331e7881c4f2843f208843c3b4abd1 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00471.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e204979a79a868ec2812897881155942d898b020fdaa3bb418ceb4457308a71 +size 22941 diff --git a/prepared_data/hausa/wavs/hausa_train_00472.mp3 b/prepared_data/hausa/wavs/hausa_train_00472.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1b83a52d5cd810fdd9fec67e6bbd7bafe5975c19 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00472.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b82284601ff924a788adb22c9bc5c02dedcf395775ca2050649e86aeae8bd8 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00473.mp3 b/prepared_data/hausa/wavs/hausa_train_00473.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..232f3e4aaf047a52b74de20c61121cae3c8f8d4b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00473.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19cdcd7d88cf848c5d36e4d8406cd0a2e3be2024d24ce41b7989ef85fea154c +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00474.mp3 b/prepared_data/hausa/wavs/hausa_train_00474.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a19053e49612d081f94308a2f20a9a4f99703c74 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00474.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe597cf12f7cedf80e999999fdd1df6cd2173d50ecda6ac302262d34803dea9 +size 38925 diff --git a/prepared_data/hausa/wavs/hausa_train_00475.mp3 b/prepared_data/hausa/wavs/hausa_train_00475.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cdd55cd4cfc9afc3137537e1bc27bc424470bb56 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00475.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ddfe41a4b144824aa1b32816b7e10537ef6c66f16b8fa739a4b0ab8d57de89 +size 21645 diff --git a/prepared_data/hausa/wavs/hausa_train_00476.mp3 b/prepared_data/hausa/wavs/hausa_train_00476.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9fc0b439333e5df4c703ef80c5a8a0bdd6364f14 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00476.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23973e2e1da9daac6df19e6e72e9a9f7462c56b32e29cc66cac399fcad32f652 +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00477.mp3 b/prepared_data/hausa/wavs/hausa_train_00477.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9369304804fd4d8b437cbfe14b4688541f16043f --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00477.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620956c8fc557c122586a5697dd502f74715e6c17c81c82cf942a10b9f366f1c +size 17973 diff --git a/prepared_data/hausa/wavs/hausa_train_00478.mp3 b/prepared_data/hausa/wavs/hausa_train_00478.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1be6edeb0b49e2eaf5b44c9532634878837350d7 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00478.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb40fa7280393380b80b9cf455e5c397454b4bd6bcb0ecccc5202784842df4b7 +size 23373 diff --git a/prepared_data/hausa/wavs/hausa_train_00479.mp3 b/prepared_data/hausa/wavs/hausa_train_00479.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..24161f8f59b3bd1d2284c96ca52ae50b9c9bf891 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00479.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e62d77cfc6941547379a6f1acbe0ff608cf1ea4b2021b44a6582fd0e28ddda +size 23805 diff --git a/prepared_data/hausa/wavs/hausa_train_00480.mp3 b/prepared_data/hausa/wavs/hausa_train_00480.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a53036231d569cbe4f1da0b03846b56e846d339 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00480.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f1d08e683b8749d074b86e581e01f1634405ce5bccb7dcb285245b86ea30a8 +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00481.mp3 b/prepared_data/hausa/wavs/hausa_train_00481.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..28a5a98a3cf134ea52df6ba0cb3c6526a90535e5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00481.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadafb44b02d5db837ef841e6de67a6f67aa7877621cdbf8e19f54d70b6b3025 +size 18621 diff --git a/prepared_data/hausa/wavs/hausa_train_00482.mp3 b/prepared_data/hausa/wavs/hausa_train_00482.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dc06b4918547ec5b5dbf8b8ee501cfffb7a824d5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00482.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3254f70a8b02eb5ab4d6bae3de8eb2ed187214918a0508d444edc9cfbeb686 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00483.mp3 b/prepared_data/hausa/wavs/hausa_train_00483.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ecf4ea7585e2e0e3d13acc56e98ae08327937674 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00483.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec8a55b2ea80c0f6e6fab57e2e51e880ddf09e62aa7d2566fa7c43bee102233 +size 52533 diff --git a/prepared_data/hausa/wavs/hausa_train_00484.mp3 b/prepared_data/hausa/wavs/hausa_train_00484.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5ebdb90eb97a1284f5067361130d0626dbac3b93 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00484.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0c1c2f1d413e7e1cd4ced7cb58059440dc6139e6e8bb0c2612cf8240b8750f0 +size 33093 diff --git a/prepared_data/hausa/wavs/hausa_train_00485.mp3 b/prepared_data/hausa/wavs/hausa_train_00485.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5067e52d0d7e54d437f7df9edb5ee9eee6b52d12 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00485.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772bbc28b73598df41bd8221334dc9c5411227bb9db080b762ab48c2f4f0b342 +size 25965 diff --git a/prepared_data/hausa/wavs/hausa_train_00486.mp3 b/prepared_data/hausa/wavs/hausa_train_00486.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3e0e8b69e219e80eb7b5f0442dd1d165d9d05e1a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00486.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0bc6594396c66504aa28b75f378016579e75f6b2c16c3c4ebc0c76d12e736f +size 24021 diff --git a/prepared_data/hausa/wavs/hausa_train_00487.mp3 b/prepared_data/hausa/wavs/hausa_train_00487.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..88efad25622a620a02dacd6a775a6091181997e3 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00487.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5a0476edfa4f1d52f47148dff4df6c145c21bd6a87144c3d9d3f0213b1da88 +size 20781 diff --git a/prepared_data/hausa/wavs/hausa_train_00488.mp3 b/prepared_data/hausa/wavs/hausa_train_00488.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a9e3e0ccc82e84c32e8b3c552acd701884c19031 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00488.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e192ffe6e50aae085fa6b3fbefaf814f284ec4791653805822b8ec389cd422 +size 21861 diff --git a/prepared_data/hausa/wavs/hausa_train_00489.mp3 b/prepared_data/hausa/wavs/hausa_train_00489.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..37fa42283707690bfd656db34af4e52c601c249b --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00489.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6cabe49bfe22a563c80e29285dfb158c9cd41f4d6474d5ce0f673984ae3f76b +size 19485 diff --git a/prepared_data/hausa/wavs/hausa_train_00490.mp3 b/prepared_data/hausa/wavs/hausa_train_00490.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..25c1bf1ab2c3cf1240af4acc95d2ada86361d51c --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00490.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c161b39a30af5ff47f81d54feb4564ba7a38dbef83cdbf64e6e4e8030b6844f3 +size 30501 diff --git a/prepared_data/hausa/wavs/hausa_train_00491.mp3 b/prepared_data/hausa/wavs/hausa_train_00491.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..08027bffdbe317e97e7c87fa90a2a6eecc7695f5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00491.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06dc0fe1d80c7531a489413cc1740a10cd2da2db6f0427781f4acbd19ef28ce3 +size 22725 diff --git a/prepared_data/hausa/wavs/hausa_train_00492.mp3 b/prepared_data/hausa/wavs/hausa_train_00492.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0c97d1e3f69a8e82a51415d69ea46be9b6507ae5 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00492.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d6e04c1dfab239ae55bb97c1acdc65b9ac0ce30da833b575f616c972002cab +size 20133 diff --git a/prepared_data/hausa/wavs/hausa_train_00493.mp3 b/prepared_data/hausa/wavs/hausa_train_00493.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..01198a566715cf7af12f06387070ed88cfc5947a --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00493.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd1bc9536cb5b9dc5929b20abe9b2d6aaca7c86848c1a4380a64dd790a840b4 +size 32013 diff --git a/prepared_data/hausa/wavs/hausa_train_00494.mp3 b/prepared_data/hausa/wavs/hausa_train_00494.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6f61463bd8b8279c353f3589ceb61f3a4dfd1796 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00494.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8791dab75e9c9faa06014ec605fbe31bdfe69a096b2569b5cf86bf408fc8abbe +size 23805 diff --git a/prepared_data/hausa/wavs/hausa_train_00495.mp3 b/prepared_data/hausa/wavs/hausa_train_00495.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..294b4b7c63087a8839b47eec36c863216b255b37 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00495.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d5ac175b7b468ccc42c33944088b48ecd6f4953290662288d0362a0afdb21a +size 19053 diff --git a/prepared_data/hausa/wavs/hausa_train_00496.mp3 b/prepared_data/hausa/wavs/hausa_train_00496.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4a277abdd22ea37e3d899fcd78c811b536cb31f0 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00496.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a163eae17722133204221b41bd34efc4312076cdd590732791df1c3a53ca44 +size 25533 diff --git a/prepared_data/hausa/wavs/hausa_train_00497.mp3 b/prepared_data/hausa/wavs/hausa_train_00497.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..91b3f937a2720e2cff547a333b0c78881d78c102 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00497.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebaf87df4d9f3881a1541a0192f007a5e3fbc3383f23cd4a450c6708c18d79a1 +size 16893 diff --git a/prepared_data/hausa/wavs/hausa_train_00498.mp3 b/prepared_data/hausa/wavs/hausa_train_00498.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1eefb130a5298d0bb195168271b88cb291904a27 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00498.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b7e29c81bb5d40f4c6ffdb4a3f50a4ea6dd784711d46fed7b418a33a08eb5e +size 31581 diff --git a/prepared_data/hausa/wavs/hausa_train_00499.mp3 b/prepared_data/hausa/wavs/hausa_train_00499.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2db905d1b665f3da3d66e3efdc01959938455722 --- /dev/null +++ b/prepared_data/hausa/wavs/hausa_train_00499.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd3b5570086f785ea97e485463aa812ee4b2a606abe605a76edd5e33133ccd4d +size 21861 diff --git a/prepared_data/igbo/manifest.json b/prepared_data/igbo/manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..21eec7d4ea2bfc9e624720c2da863089334a7f29 --- /dev/null +++ b/prepared_data/igbo/manifest.json @@ -0,0 +1,3002 @@ +[ + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00000.mp3", + "text": "Odeakwụkwọ ọkpụtọrọkpụ ụlọọrụ na-ahụ maka ọrụ ngo na steeti Anambra", + "language": "igbo", + "speaker": "user_000" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00001.mp3", + "text": "ka ha wee sonye na ya bụ ụzọ ọgbara ọhụụ", + "language": "igbo", + "speaker": "user_000" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00002.mp3", + "text": "nwee igwè na-enye ọkụ", + "language": "igbo", + "speaker": "user_009" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00003.mp3", + "text": "Kwashiọkọ bụ afọ ime ya", + "language": "igbo", + "speaker": "user_099" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00004.mp3", + "text": "mbize kwesiri ka e lebàra ya anya mgwamgwa ugbua", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00005.mp3", + "text": "Obama mere Romney ihu aja aja", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00006.mp3", + "text": "O sonyekwara na ihe nkiri \"Jezebel\", \"Twist of Fate\", \"Living Ghost\", \"Amazon na\" ndị ọzọ.", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00007.mp3", + "text": "O kwukwara na ọ bụ ịgba oke ọsọ kpatara ihe mberede okporoụzọ ahụ.", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00008.mp3", + "text": "n'ihi afọ di ya bèwàrà ya", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00009.mp3", + "text": "ma sịkwa na gọọmenti kpachara anya wee tinye uchu na mpaghara ahụ", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00010.mp3", + "text": "na ọ bụkwa ihe onye kpọrọ nwa nkịnta ya ka ọ na-aza", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00011.mp3", + "text": "Arunma Oteh bụ nwere ikikere nke diri onye obodo Naijiriya na Britain.", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00012.mp3", + "text": "ka ọ gachaara nkeji olenaole o siri na steeti Lagos wee felie.", + "language": "igbo", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00013.mp3", + "text": "Amụrụ ya na Jos, steetị Naijiria.", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00014.mp3", + "text": "Ọ gbara afọ iri anọ n’abụọ", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00015.mp3", + "text": "wee gbarikọọ ọtụtụ ihe.", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00016.mp3", + "text": "Chika Nvene", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00017.mp3", + "text": "ruo mgbe a chụrụ ha niile ọsọ ụkwụ erughị ala na ya bụ steeti.", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00018.mp3", + "text": "ma kọwakwa na ọ na-enyekwa ha nkwàdo", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00019.mp3", + "text": "Oku a bụ nke a kpọrọ site n'ọnụ onyeisi ọchịchị òbodo ahụ", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00020.mp3", + "text": "ka ọ ga-abụ o nwee nke anyị kwuru adabàghị adabà", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00021.mp3", + "text": "Obianọ Ekelee Chineke Maka Ndụ Kọmishọna Ezenwanne, Tòó Ndị Ọrụ Nchekwa", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00022.mp3", + "text": "N'okwu ya oge ọ na-eme omenala ịwa ji ahụ kpọmkwem", + "language": "igbo", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00023.mp3", + "text": "ma rụọ agidigba ụlọ elu ọhụụ ebe ahụ", + "language": "igbo", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00024.mp3", + "text": "ebe a kpọrọ Nigerian House na bekee.", + "language": "igbo", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00025.mp3", + "text": "Ervebo", + "language": "igbo", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00026.mp3", + "text": "onye kwuru na a kụchaala gbamgbam n'ụlọ ezumeezu ahụ", + "language": "igbo", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00027.mp3", + "text": "Ya èbụ ogigè nwèkwàra mmiri a gbapuru agbapu", + "language": "igbo", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00028.mp3", + "text": "chịchaa", + "language": "igbo", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00029.mp3", + "text": "ma ọ bụ ịlụ di", + "language": "igbo", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00030.mp3", + "text": "ntọrị mmadụ", + "language": "igbo", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00031.mp3", + "text": "Andy nwere nnukwu nkụda mmụọ ma rịọ ndị òtù nzuzo nke ekwensu ahụ maka enyemaka.", + "language": "igbo", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00032.mp3", + "text": "maka na ọkụkọ sị na ya na-ajụwu ajụwu tupu ribe.", + "language": "igbo", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00033.mp3", + "text": "O jikwazịrị ohere ahụ wee dụọ ndị ntorobịa òkù ka ha sepụ aka n'isunye ọgbaaghara", + "language": "igbo", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00034.mp3", + "text": "Emezigharịrị ya mgbe agha obodo gachara ụlọ ebe obibi maka ịnabata ndị egwuregwu.", + "language": "igbo", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00035.mp3", + "text": "ma kpọọ òkù ka e mee ihe banyere nke ahụ", + "language": "igbo", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00036.mp3", + "text": "Kumapayi dọrọ ndị na-anyà ụgbọala aka na ntị ka ha na-akpachapụ anya oge niile", + "language": "igbo", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00037.mp3", + "text": "kụziere ha ọrụ aka", + "language": "igbo", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00038.mp3", + "text": "Omogho", + "language": "igbo", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00039.mp3", + "text": "ebe ụfọdụ na-eresisi ihe a gara eji zụpụta ndị dị ndụ", + "language": "igbo", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00040.mp3", + "text": "mana ọ gaghị eje mmemme ọbụla", + "language": "igbo", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00041.mp3", + "text": "Nwaanyị Otu Ụkwụ Ahụ Na-Ebugharịbụ Mmiri Na Lagos Egoola Ụlọelu Ọhụrụ", + "language": "igbo", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00042.mp3", + "text": "Agwụ na-awa n'afa", + "language": "igbo", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00043.mp3", + "text": "Agụkwu", + "language": "igbo", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00044.mp3", + "text": "Ehi Igbo.", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00045.mp3", + "text": "Ndị omekome jere lie mgbọ ogbunigwe abụọ n’ogige ebe e mere maka ịkwụsị ọsọ", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00046.mp3", + "text": "Ncheta Chukwuma Nzeọgwụ na Ụmụnakwe Agụiyi-Irọnsị -- Mbido Igbo", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00047.mp3", + "text": "Maazị Alen Onyema ga-ebu ụgbọelu Air Peace ya wee wụchaa n'ọdụ ụgbọelu ọhụrụ ahụ", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00048.mp3", + "text": "Dịka o siri kwu", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00049.mp3", + "text": "Oge a na-agba ha ajụjụọnụ", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00050.mp3", + "text": "Ọ dụrụ ha ọdụ ka ha jisie ike n'ọrụ", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00051.mp3", + "text": "nke mere anyị ji agbasi mbọ ike ịkwàlitè ya", + "language": "igbo", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00052.mp3", + "text": "Oke udumiri nke Sokoto bų ǫnwa juun rue septemba.", + "language": "igbo", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00053.mp3", + "text": "Ị mààrà nà Obianọ gụrụ akwụkwọ sekọndịrị ya n'ụlọ akwụkwọ 'Christ The King College'", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00054.mp3", + "text": "Àgbà nke egbe buru ọ laa nke asọmpi ahụ bụ nke weere ọnọdụ n'ụlọụka 'St", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00055.mp3", + "text": "iji mara ka ọnọdụ siri gbata kwụrụ n'ebe ahụ.", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00056.mp3", + "text": "N’ihi na ndị ọzọ na-agbakwa ọsọ", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00057.mp3", + "text": "Site n'ihe ndị a niile m kọọrọ gị", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00058.mp3", + "text": "Ọkammụta Soludo kelere ndị obodo ahụ", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00059.mp3", + "text": "Dịka ya bụ ozi siri kọwaa", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00060.mp3", + "text": "nke onye nọchitere anya ya na mmemme ahụ bụ odeakwụkwọ izugbe steeti Anambra", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00061.mp3", + "text": "ndị omebe iwu steeti ahụ", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00062.mp3", + "text": "Maka ndị na-ezugide zuo ma mmanụ akụ chi nyere", + "language": "igbo", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00063.mp3", + "text": "E mechaziere dọnye ozu nwa amadi ahụ n'ụlọ nchekwa ozu dị n'ụlọọgwụ ahụ.", + "language": "igbo", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00064.mp3", + "text": "Ndị Detroit Pistons sokwa na azụmahịa.", + "language": "igbo", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00065.mp3", + "text": "Nwoke ahụ gburu onwe ya", + "language": "igbo", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00066.mp3", + "text": "ya bụ nwa amadi bụ isi a hụrụ kwaba okpu na mmemme ahụ", + "language": "igbo", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00067.mp3", + "text": "onyeisi òtù 'Asaba Development Union Worldwide'", + "language": "igbo", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00068.mp3", + "text": "Dịka ọ na-ekpe ka Chineke nabata ma nye mkpụrụobi Cyril Igwe ezumike udo", + "language": "igbo", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00069.mp3", + "text": "Mohammed Idris Alkali sitere na Potiskum, Ȯra Yobe, Naịjirịa.", + "language": "igbo", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00070.mp3", + "text": "O kwuru na o kpebiri ịrụrụ ha mmiri ahụ iji gosipụta ezi nzọpụụkwụ", + "language": "igbo", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00071.mp3", + "text": "ụmụntakịrị na ndị ọzọ na-anata ọgwụgwọ n'ebe ahụ na-agabiga.", + "language": "igbo", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00072.mp3", + "text": "ma kwàlitekwa ezi ọchịchị.", + "language": "igbo", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00073.mp3", + "text": "Mgbe ahụ ka o dere ma nyere aka meputa ihe nkiri nke Jezebel.", + "language": "igbo", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00074.mp3", + "text": "emezi maọbụ atụgharị edemede na Wikipedia Igbo abịla n'isi njedobe", + "language": "igbo", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00075.mp3", + "text": "Idu obì bụ otu n'ime ihe zuru Igbo ọnụ", + "language": "igbo", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00076.mp3", + "text": "kwa ụbọchị", + "language": "igbo", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00077.mp3", + "text": "Amụrụ Adụba na Obodo Boston nke di na Massachusetts.", + "language": "igbo", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00078.mp3", + "text": "n'ihi ọtụtụ uru dị iche iche nke ahụ ga-ewètara onye ahụ", + "language": "igbo", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00079.mp3", + "text": "ga-abụ onye gọọmenti ga-anwụchikọ", + "language": "igbo", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00080.mp3", + "text": "nke onye nọchitere anya ya bụ onyeisi ọrụ oyibo na steeti ahụ", + "language": "igbo", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00081.mp3", + "text": "Obodo ọbụna nwere omenaala ha na-eme", + "language": "igbo", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00082.mp3", + "text": "Gọọmenti Anambra Ekwenwòóla Nkwà Ezi Ọnọdụ Maka Ndị Ji Ego Achụ Ego", + "language": "igbo", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00083.mp3", + "text": "Onye nwoke amuru na ala bekee dere ya.", + "language": "igbo", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00084.mp3", + "text": "wee jiri egbe wakpò otu nwoke", + "language": "igbo", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00085.mp3", + "text": "A mụrụ Tu, ọ gụọ akwụkwọ ma mee nyocha ya naanị na China.", + "language": "igbo", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00086.mp3", + "text": "Henry Piyo", + "language": "igbo", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00087.mp3", + "text": "na onye chọpụtaa ya", + "language": "igbo", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00088.mp3", + "text": "ebe naanị ụmụaka ga na-agụ akwụkwọ.", + "language": "igbo", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00089.mp3", + "text": "Ọ bụ gọvanọ mbụ mere ka ọkànọnụọgụgụ ndị ọrụ ya bụrụ ndị ntorobịa n'ala Nigeria", + "language": "igbo", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00090.mp3", + "text": "tupuu mmiri amalitekwa izò nnukwu ọzọ.", + "language": "igbo", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00091.mp3", + "text": "ọbara wee jupụta ebe niile.", + "language": "igbo", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00092.mp3", + "text": "iji nwụchikọọ ha.", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00093.mp3", + "text": "ndị ọnọdụ dịịrị añaa", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00094.mp3", + "text": "n’isi obodo ahụ bụ Ottawa.", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00095.mp3", + "text": "ma kwazie arịrị na ọtụtụ ndị nne na nna anaghị asụrụ ụmụ ha asụsụ Igbo", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00096.mp3", + "text": "o kwebe n'isi", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00097.mp3", + "text": "mana ka ọ dị ugbu a ụkwara ahụ ekwezighị akwụsị akwụsị", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00098.mp3", + "text": "ma gbasàwanyekwuo ya", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00099.mp3", + "text": "Njem mkpọtụrụ ahụ bụ nke Gọvanọ Obianọ gara oge ọ na-aga mmemme n'otu ebe", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00100.mp3", + "text": "iji wee nwete mkpokọta ọnụọgụgụ vootu niile a tụrụ", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00101.mp3", + "text": "ma sịkwa na ha edeela akwụkwọ banyere ya bụ mbize", + "language": "igbo", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00102.mp3", + "text": "E bujere ya n’ụlọ ọgwụ na Boston.", + "language": "igbo", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00103.mp3", + "text": "Ọ bụkwa naanị n'ala nkịtị maọbụ n'ute ka ọ ga na-anọ", + "language": "igbo", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00104.mp3", + "text": "Igbo sị na ọ na-abụ onye e nyere mara jikwaa", + "language": "igbo", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00105.mp3", + "text": "Ọ kpọpụtasịrị ihe dị iche iche nna ya mepụtara mgbe ọ dị ndụ", + "language": "igbo", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00106.mp3", + "text": "Agụụ anaghị asọ anya", + "language": "igbo", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00107.mp3", + "text": "mee ka asụsụ ahụ na-ewu èwù n'ala Nigeria na n'ogoogo mba ụwa", + "language": "igbo", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00108.mp3", + "text": "Maazị Chisom Onugha nyefèrè ya n'aha ndị òtù ahụ", + "language": "igbo", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00109.mp3", + "text": "Oguru economics na University nor na Manchester.", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00110.mp3", + "text": "Maazị Celestine Chukwumalu kọwàrà nna ya dịka onye udo na nwoke obiọma jupụtara n'amamihe.", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00111.mp3", + "text": "O mekwàzịrị ka a mara na oge ha kwàchàrà mgbọ ahụ", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00112.mp3", + "text": "N’otu aka ahụkwa", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00113.mp3", + "text": "ọgwụ iwe na ọgwụ ike ọgwụgwụ", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00114.mp3", + "text": "Gọvanọ Obianọ kọwàrà mkpà 'Akụ Ruo Ụlọ' dị na mmepe obodo", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00115.mp3", + "text": "Ọ bụ nke a kpatara asụsụ Igbo jiri dị ka ọ na-alaghachi azụ.\"", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00116.mp3", + "text": "Ọ bụrụ na ihe ndị a gachazie", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00117.mp3", + "text": "Nke a juru ndị mmadụ anya n’ihi na ha amaghị onye nwagbọghọ ahụ bụ", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00118.mp3", + "text": "Mmadụ abụọ anwụọla n’okwu ala n’Izii nke Ebonyi", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00119.mp3", + "text": "nke mmadụ iri mejupụtara", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00120.mp3", + "text": "nke onye nọchitere anya ya bụ onyeisi ụlọọrụ na-ahụ maka nkwàlite egwuregwu na steeti ahụ", + "language": "igbo", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00121.mp3", + "text": "Ụfọdụ ndị ọzọ kwuru okwu na mmemme ahụ", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00122.mp3", + "text": "O si taa dị mma", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00123.mp3", + "text": "Trump kọwapụtara otu okwe siri gbaa", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00124.mp3", + "text": "ma na-achọkwa igbu nwa ya nwoke nke ọzọ gbara afọ ise.", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00125.mp3", + "text": "O binyere aka na ụlọ ọrụ mba atọ maka ibubata teknụzụ na nri.", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00126.mp3", + "text": "mana anyị ga-achọ inwe ya", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00127.mp3", + "text": "Ụlọ ọrụ a di na Lagos nke Nigeria.", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00128.mp3", + "text": "nke na agaghị m echetanwuzị maọbụ gụpụtanwuo ha niile n'ótù n'ótù.", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00129.mp3", + "text": "wee ruo ụbọchị ahụ e dùzịrị ya n'iyi ọrụ kpọnkwem.", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00130.mp3", + "text": "na ihe ọ ga-ezèré ime", + "language": "igbo", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00131.mp3", + "text": "Abuja branchi", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00132.mp3", + "text": "ma bụrụkwa nke were ọnọdụ na be ya dị n'Agụ Ukwu Nri", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00133.mp3", + "text": "mgbọ égbè anọ", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00134.mp3", + "text": "Maazị Ọnụzulike kpọkukwàrà ndị ndu n'ogoogo dị iche iche n'ala Nigeria", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00135.mp3", + "text": "Odibo bụ mmadụ ịhapụ ụlọ ya gaa biri be mmadụ", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00136.mp3", + "text": "n'okwu ya na nsonso a banyere ọdụ ụgbọelu ahụ", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00137.mp3", + "text": "maka ụkọ nke ihe ndị ahụ e ji akwalite ọnọdụ adịmọcha.", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00138.mp3", + "text": "ebe mmadụ atọ ndị ọzọ kètàkwàrà òkè ihe mmerụahụ dị iche iche.", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00139.mp3", + "text": "Asher bụ nwanne nwaanyị onye nke na-emepụta ihe nkiri Egwuregwu na mba America.", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00140.mp3", + "text": "ndịisi ọchịchị steeti ahụ", + "language": "igbo", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00141.mp3", + "text": "nsogbu ịzọ ókè ala", + "language": "igbo", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00142.mp3", + "text": "o wee na-emezị onye ọgbatumtum ọbụla gbatara ebe ahụ", + "language": "igbo", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00143.mp3", + "text": "ma hụkwa na ihe niile zùrù òkè ma na-arụkwa ọrụ etu o kwesiri", + "language": "igbo", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00144.mp3", + "text": "dịka eze ọdịnala obodo ahụ", + "language": "igbo", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00145.mp3", + "text": "ọhaneze na ndị ọrụ nchekwa", + "language": "igbo", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00146.mp3", + "text": "na-akwàlite ma na-emesi omenala Igbo ike.", + "language": "igbo", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00147.mp3", + "text": "Ana m esi Awka gaa Onitsha gota ọka", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00148.mp3", + "text": "Inwe ezi nlezianya nye nwaanyị mgbe odị ime n’enyeaka mgbe nwaanyị dị ime.", + "language": "igbo", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00149.mp3", + "text": "tinyere onyeisi ndị Fụlani na steeti ahụ", + "language": "igbo", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00150.mp3", + "text": "aja eju onye ọbụla anya.", + "language": "igbo", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00151.mp3", + "text": "n'ime mkpokọta ọnụọgụgụ mmadụ iri ise na-efu èfù na mpaghara Henan.", + "language": "igbo", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00152.mp3", + "text": "Mazị Maku kwuru n’ala Nigeria nweburu iwu megidere ịtụ mgbere mmadụ", + "language": "igbo", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00153.mp3", + "text": "mana ha abụghị otu ihe", + "language": "igbo", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00154.mp3", + "text": "a ma ama maka ịgụ egwu", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00155.mp3", + "text": "tinyere ọtụtụ uru ndị ọzọ dị iche iche mmemme ahụ na-ewètara ndị ntorobịa.", + "language": "igbo", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00156.mp3", + "text": "ma merụọkwa ọtụtụ mmadụ ahụ.", + "language": "igbo", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00157.mp3", + "text": "ma na-achọkwa ịbà na mmemme ekeresimeesi koọmkwem.", + "language": "igbo", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00158.mp3", + "text": "o mebìghị ya emebì", + "language": "igbo", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00159.mp3", + "text": "ha wee bidokọzie ha abụọ ọnụ otu ụbọchị", + "language": "igbo", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00160.mp3", + "text": "ma weghachitekwa ezi ọnọdụ nchekwa tọrọ àtọ na steeti ahụ.", + "language": "igbo", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00161.mp3", + "text": "Ụbọchị ahụ", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00162.mp3", + "text": "dịka ndị ndu obodo ha bụ", + "language": "igbo", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00163.mp3", + "text": "izuụka asaa n'ọnwa", + "language": "igbo", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00164.mp3", + "text": "Obi adịghị Adedeji mma maka akwụkwọ ụmụaka maka na ha anaghị egosi omenaala ndị Africa.", + "language": "igbo", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00165.mp3", + "text": "ma kpọkuzie onye ọbụla ka o tinye aka n'ọrụ", + "language": "igbo", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00166.mp3", + "text": "rịọ ya ka ọ ghara ịda mbà n'ọrụ ọma ahụ ọ na-abàgide", + "language": "igbo", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00167.mp3", + "text": "Ọ gwakwara ha ka ha were ịhụnanya wee jeere Chineke ozi", + "language": "igbo", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00168.mp3", + "text": "ma na-achọkwa ịbà na mmemme ekeresimeesi koọmkwem.", + "language": "igbo", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00169.mp3", + "text": "Dayọsiisi Awka Echenwòóla Ndị Nne n'Ihu Chineke, Dogharịa Ha Nsọ", + "language": "igbo", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00170.mp3", + "text": "Ndị otu ahụ", + "language": "igbo", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00171.mp3", + "text": "maọbụ mmụta n'efu site na mpaghara ebe ọbụla n'ụwa gbaa gburugburu", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00172.mp3", + "text": "ma bụrụ onye obodo Aguobu Owa", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00173.mp3", + "text": "iji nweta mmeri n'agha ahụ ọ na-ebu megide ya bụ ọrịa.", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00174.mp3", + "text": "Ige ndị a bụcha ihe a na-ahụta n'oge gboo.", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00175.mp3", + "text": "Azị gba.", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00176.mp3", + "text": "Mana oge ugbua", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00177.mp3", + "text": "Ọ kọwara nwaanyị ahụ dịka onye biri ezi ndụ", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00178.mp3", + "text": "ma kpee ka ndị nke nwetara mmerụahụ gbakere n'oge adịghị anya.", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00179.mp3", + "text": "Tupu ọ nwụọ", + "language": "igbo", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00180.mp3", + "text": "Peng na Xi Jinping alụọla dị na nwunye ihe karịrị afọ iri atọ.", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00181.mp3", + "text": "Arụ na Nsọala bụ ụmụnne abụọ yiri onwe ha", + "language": "igbo", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00182.mp3", + "text": "Mmiri ozuzo dị mma", + "language": "igbo", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00183.mp3", + "text": "Akwaeze", + "language": "igbo", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00184.mp3", + "text": "Na àkpàkwùrù amụ ndị bụ óké", + "language": "igbo", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00185.mp3", + "text": "maka na a naghị esi ofe ọgbọnọ n'ejighị ọgbọnọ", + "language": "igbo", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00186.mp3", + "text": "ya bụ onye uwe ojii", + "language": "igbo", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00187.mp3", + "text": "Gọvanọ Obianọ mere ka a mara na nchekwa bụ ọrụ dịịrị onye ọbụla", + "language": "igbo", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00188.mp3", + "text": "Ọkaiwu Agbasiere", + "language": "igbo", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00189.mp3", + "text": "Enyi ọha", + "language": "igbo", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00190.mp3", + "text": "mana ha abụghị otu ihe", + "language": "igbo", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00191.mp3", + "text": "mezịrị o jiri rụọrọ nwata nwaanyị ahụ ụlọ ọhụụ ahụ", + "language": "igbo", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00192.mp3", + "text": "Maka m na-egbute ọka n’ugbo m", + "language": "igbo", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00193.mp3", + "text": "iji wee mee karịa ya.", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00194.mp3", + "text": "N’ambido ọgụ a", + "language": "igbo", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00195.mp3", + "text": "N'iji belata mmetụta nke ọrịa nje korona n'ahụ ụmụ mmadụ", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00196.mp3", + "text": "ma rịọkwa enyemaka gọọmenti n'ogoogo dị iche iche", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00197.mp3", + "text": "Maazị Obi Nweke", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00198.mp3", + "text": "onye nọgodi n'ọkwa dịka eze ọdịnala Igboukwu", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00199.mp3", + "text": "ka o kwuo uche ya banyere ya.", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00200.mp3", + "text": "N'okwu ya oge ọ na-enyefè ihe ndị ahụ n'aka ògìgè ahụ", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00201.mp3", + "text": "bibie ọtụtụ ihe", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00202.mp3", + "text": "Ihe mezịrịnụ bụ", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00203.mp3", + "text": "Igwe Ezinato mere mmemme Awam Ji Ọhụrụ nke afọ a na obi ya.", + "language": "igbo", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00204.mp3", + "text": "O nwekwara ọtụtụ ndị odibo ga-enyere ya aka.", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00205.mp3", + "text": "Chijindu Samuel", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00206.mp3", + "text": "nke o ji abụ mmemme alụmdinanwunye", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00207.mp3", + "text": "oge ọ na-akpụgharị ya bụ nwa amadi", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00208.mp3", + "text": "Ha tinyere Harry Johnston n'ọkwá ahu.", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00209.mp3", + "text": "naanị na ekwensu batazịrị n'ime ya", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00210.mp3", + "text": "ebe ụfọdụ na-ezutekwa ọnwụ ha n’ụzọ dị iche iche", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00211.mp3", + "text": "ya na otu ụgbọ òlòkó na-ebu mmadụ ọkụ", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00212.mp3", + "text": "nke sitere n'aka ndi nna nna anyị ha wee rute anyị aka", + "language": "igbo", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00213.mp3", + "text": "Ha haziri ije Kiev na ije izizi maka ịha nhatanha.", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00214.mp3", + "text": "n'ihi na ụgwọ ọrụ ezi ọrụ bụ ọrụ ka elu", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00215.mp3", + "text": "guzobekwa òtù ọrụ pụrụ iche maka ime nnyocha banyere ya bụ ọkụ", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00216.mp3", + "text": "nke gụnyere Gọvanọ Willie Obianọ nke steeti Anambra", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00217.mp3", + "text": "nà ihe dị iche iche na-eso ya", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00218.mp3", + "text": "Ọ nyere goolu atọ na matchị izizi ya.", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00219.mp3", + "text": "a mara na ọ bụghị ya gburu di ya", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00220.mp3", + "text": "Oge ọ na-enye nkuzi ya na mmemme ahụ", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00221.mp3", + "text": "ma bụrụkwazie ndị a ga-akpụpụ ụlọ ikpe ma e mechaa nnyocha bànyere okwu ha.", + "language": "igbo", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00222.mp3", + "text": "isi obodo ala Nigeria.", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00223.mp3", + "text": "na steeti Ebonyi", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00224.mp3", + "text": "ọ gwakwàrà ụmụakwụkwọ ahụ na ọba akwụkwọ bụ maka onye ọbụla", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00225.mp3", + "text": "na ọtụtụ ebe ndị ọzọ.", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00226.mp3", + "text": "iji mee ndị mmadụ obi ụtọ", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00227.mp3", + "text": "imepụta mmanụ a na-ete n'ahụ na ihe e ji achọ mma", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00228.mp3", + "text": "ebe ndị òtù ahụ nọrọ wee bunye gọọmentị igwè kọmputa ruru iri anọ n'ọnụọgụgụ", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00229.mp3", + "text": "ọkachasị n'ime oge a a bànyègoro n'ọnwa Mba.", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00230.mp3", + "text": "ma na-agbàzi onye ahụ.", + "language": "igbo", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00231.mp3", + "text": "maka na onye ji ya ruru abụọ ga-egwuru.", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00232.mp3", + "text": "Akụkọ kọkwàrà na ndị omekoome ahụ gakwàrà ịwakpò ògige ndị uweojii dịkwa nso n'ebe ahụ", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00233.mp3", + "text": "E nwekwara ekele oge ụbọchị", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00234.mp3", + "text": "ndị uweojii ahụ nwetazịrị akpa simenti iri ise na otu site n'aka ndị ohi ahụ", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00235.mp3", + "text": "dee ha uri", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00236.mp3", + "text": "Abacha' dụrụ ụmụafọ obodo ahụ ọdụ ka ha nye aka n'ịkwàlite udo", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00237.mp3", + "text": "n'ihi na ya ababeghị n'ogige ndị uwe ojii mbụ.", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00238.mp3", + "text": "Ụmuchu", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00239.mp3", + "text": "iji nyere ya aka ịkwụrụkwa chịm ọzọ n'ịzụ anụ ya", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00240.mp3", + "text": "Tunji-Ojo kwuru na dịka onye omeiwu Ụlọomeiwu Gọọmenti-Etiti", + "language": "igbo", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00241.mp3", + "text": "Onye isi ala mba Venezuela", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00242.mp3", + "text": "Ọ bụ nwa ikpeazụ nwere ụmụnne abụọ.", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00243.mp3", + "text": "onyeisi otu na-ahụ maka ịhọpụtagharị gọvanọ Obianọ nke ugboro abụọ", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00244.mp3", + "text": "e wee buru ya gaa ụlọọgwụ maka ime nnyocha.", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00245.mp3", + "text": "odeakwụkwọ ukwu steeti Anambra", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00246.mp3", + "text": "ndị bukọsị ụdị àpà mgbọ dị iche iche n'ahụ", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00247.mp3", + "text": "nwụọrọ onwe ya", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00248.mp3", + "text": "Ụbọchị ahịa ndị a na-eso onwe ha dika kalenda Igbo si di.", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00249.mp3", + "text": "nkàtà na ụfọdụ ihe ndị ọzọ ka ha hụtara n'ime ọdụ ahịa ahụ.", + "language": "igbo", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00250.mp3", + "text": "Obodo ukwu ahu di na abwo: ana-kpo ebe elu ya, \"North Amerika\".", + "language": "igbo", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00251.mp3", + "text": "ya bụ ihe mberede okporoụzọ dapụtàrà na mpaghara Nteje", + "language": "igbo", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00252.mp3", + "text": "Nke a bụ maka na Netanyahu na onye isi ndị Demokrat", + "language": "igbo", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00253.mp3", + "text": "o wee jiri ọsọ kụtuo ma kụgbuo otu nwoke mmadụ ji ụkwụ agara onwe ya.", + "language": "igbo", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00254.mp3", + "text": "A na-ekwe egwu ekwe", + "language": "igbo", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00255.mp3", + "text": "wee kpọrìkọọ ụmụ mmadụ nọgasị n'ime ha.", + "language": "igbo", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00256.mp3", + "text": "site n'ozi ọ kụpụụrụ ndị ntaakụkọ ụbọchị Tuzdee.", + "language": "igbo", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00257.mp3", + "text": "ịtọrọ mmadụ", + "language": "igbo", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00258.mp3", + "text": "Minista Ahmed kwuru n'eziokwu na ihe ọ hụrụ n'ebe ahụ tụrụ ya n'anya", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00259.mp3", + "text": "na onye ọrụ ọba akwụkwọ bụkwa onye nkuzi na mahadum", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00260.mp3", + "text": "Ndị otu Demokrat kwadosiri ya ike", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00261.mp3", + "text": "ọchịchị", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00262.mp3", + "text": "odeakwụkwọ ukwu steeti Anambra", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00263.mp3", + "text": "onye duru ndị eze ọdịnala ndị ọzọ wee bịa", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00264.mp3", + "text": "ma dịkwa ndụ wetekwa ihe ubi n'uju", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00265.mp3", + "text": "Nibo", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00266.mp3", + "text": "Ọ zụọla ndị ntorobịa karịrị puku abụọ n'ọrụ aka ma nye ha ego nkwàdo", + "language": "igbo", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00267.mp3", + "text": "Dike Ìfè n'Ụga", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00268.mp3", + "text": "Aha ọzọ ejiri mara Agbalanze bụ Nze na Ọzọ.", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00269.mp3", + "text": "maka na ha bì n'akụkụ mmiri", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00270.mp3", + "text": "ị hụ ụdịrị añụrị anyị nwere ụbọchị ahụ èé", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00271.mp3", + "text": "onye mere mmemme ncheta ọgbụgbà ahọ abụọ ya n'ọkwa ahụ na nsonso a", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00272.mp3", + "text": "otu nwoke", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00273.mp3", + "text": "N'okwu ya oge ọ na-eguzobe ndị òtù ahụ", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00274.mp3", + "text": "Ndị ọ hapụrụ na-eru uju ọnwụ ya gụnyere: nwunye ya", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00275.mp3", + "text": "Nwoke", + "language": "igbo", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00276.mp3", + "text": "n'ihi mbize na-eme mkpamkpa na mpaghara ahụ", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00277.mp3", + "text": "Agụlụzigbo", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00278.mp3", + "text": "Enwere ike ịhụ ọnya mgbe ọlachisiri.", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00279.mp3", + "text": "N'ala Igbo n'oge gboo", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00280.mp3", + "text": "Gọọmentị Anambra Eguzobela Òtù Pụrụ Iche Maka Nsogbu Ókè Ala Agụleri Na Ụmụeri", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00281.mp3", + "text": "ma n'ala Nigeria ma na mba ofesi", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00282.mp3", + "text": "ka Tambuwal kwuru.", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00283.mp3", + "text": "Iwu Ikwubuzo", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00284.mp3", + "text": "ótù n'ime mberede okporo ụzọ ahụ bụ nke mere n'Ichida", + "language": "igbo", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00285.mp3", + "text": "kama na ọ na-ezukwa ụmụnwaanyị ahụ ohi", + "language": "igbo", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00286.mp3", + "text": "ha na ndị ọrụ nchekwa", + "language": "igbo", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00287.mp3", + "text": "biri na mpaghara Okpoko", + "language": "igbo", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00288.mp3", + "text": "mana ugbua", + "language": "igbo", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00289.mp3", + "text": "Mmiri dọrọ nʻeju dọọrọ nwankịta.\"", + "language": "igbo", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00290.mp3", + "text": "Ọ bụbu onye mgbasa ozi telivishọn nke \"Sound City\", ụlọ ọrụ ntụrụndụ na Naijiria.", + "language": "igbo", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00291.mp3", + "text": "ime ihe etu o kwesiri", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00292.mp3", + "text": "n'okwu ha n'otu n'otu", + "language": "igbo", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00293.mp3", + "text": "nke ndị uwe ojii na-eme n'okporo ụzọ Ifitè Awka", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00294.mp3", + "text": "Uche Nwamba dere edemede a", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00295.mp3", + "text": "O kelekwazịrị ụlọọrụ ahụ maka imepụtasị ụdị ụgbọala bụ ọpụrụiche na ejiamaatụ", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00296.mp3", + "text": "Alex Ekwueme", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00297.mp3", + "text": "N'agbanyèghị ọnwa ole nwaanyị ga-eru uju di ya", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00298.mp3", + "text": "ọkụ ọgbụgba ahụ mebisiri ọtụtụ ihe ụmụakwụkwọ ahụ jiri biri n'ụlọ ahụ", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00299.mp3", + "text": "bịara n'ogige ndị uwe ojii ebe ahụ a kpọchiri ha", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00300.mp3", + "text": "ọ bụrụ omenala", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00301.mp3", + "text": "Ndị ọnọmgbeomere na-akọwa na ọ bụ igwe na-enye ọkụ", + "language": "igbo", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00302.mp3", + "text": "nke gụnyere enweghị ebe obibi ndị Dọkịta", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00303.mp3", + "text": "oge nnukwu ihe mberede ọzọ dapụtàrà na mpaghara ebe ahụ.", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00304.mp3", + "text": "E gosipụtara ihe nkiri a n'obodo Nigeria niile..", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00305.mp3", + "text": "Maazị Tunde Osinubi mèrè ka a mara na ya bụ ihe mbigbo dapụtàrà n'ezie", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00306.mp3", + "text": "ndị ha na ha na-arụkọ ọrụ ọnụ.", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00307.mp3", + "text": "Papa Chukwumalụ", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00308.mp3", + "text": "na steeti Borno", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00309.mp3", + "text": "Agụụ.", + "language": "igbo", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00310.mp3", + "text": "The event", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00311.mp3", + "text": "gaa debe ha n'ebe ọ gaghị na-ahụ ha anya", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00312.mp3", + "text": "ikpoko akpụ", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00313.mp3", + "text": "Kọmishọna na-ahụ maka ọdịmma ọhaneze na ihe metụtara ụmụnwaanyị na ụmụaka", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00314.mp3", + "text": "O kelekwazịrị ụlọọrụ ahụ maka imepụtasị ụdị ụgbọala bụ ọpụrụiche na ejiamaatụ", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00315.mp3", + "text": "Nsogbu enwere mgbe a na-ewepụ afọ ime anaghị akpata nsogbu isi mgbaka maọbụ nke nkịtị.", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00316.mp3", + "text": "Maazị Emmanuel Nwankwo", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00317.mp3", + "text": "Maazị Tunde Osinubi mèrè ka a mara na ya bụ ihe mbigbo dapụtàrà n'ezie", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00318.mp3", + "text": "ọtụtụ ezinaụlọ bụzịkwa ọkụ", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00319.mp3", + "text": "ọbụladị akwụkwọ nri na tomato were siere ụmụ ha nri", + "language": "igbo", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00320.mp3", + "text": "mana ugbua", + "language": "igbo", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00321.mp3", + "text": "na Oriakụ Victoria Nwoye kèlere ọkaikpe ukwu steeti ahụ", + "language": "igbo", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00322.mp3", + "text": "Dika Wikipedia, Jimmy Wales bula otu madu bidoro ya, ha na Larry Sanger.", + "language": "igbo", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00323.mp3", + "text": "maka ezi nnyocha.", + "language": "igbo", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00324.mp3", + "text": "E gosipụtara ihe nkiri a n'obodo Nigeria niile..", + "language": "igbo", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00325.mp3", + "text": "n'ilegara anya nà mpụtara ya n'ebe o mètụtàrà mgbasàwanye nke ikpe nkwụmọtọ", + "language": "igbo", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00326.mp3", + "text": "Uzochukwu nyère obere nkọwa bànyere etu ngalaba ahụ siri wee màlite", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00327.mp3", + "text": "isi ụlọọrụ steeti ahụ.", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00328.mp3", + "text": "n'emeghị ya ihe ọbụla.", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00329.mp3", + "text": "na ha ga-eji oche eze ha wee rụọ ọrụ nke ọma", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00330.mp3", + "text": "were chọpụta na ha anwụgo", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00331.mp3", + "text": "onye bụ nwa afọ Ojoto ma bụrụkwa onye na-azụ ahịa a mà àma", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00332.mp3", + "text": "ịdịnotu", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00333.mp3", + "text": "mana oge na-adịghị anya", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00334.mp3", + "text": "site n'aka ndị enyị", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00335.mp3", + "text": "anyike", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00336.mp3", + "text": "maka mgbe ọ ga-enwetachaa nturuugo", + "language": "igbo", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00337.mp3", + "text": "nwata nwaagbọghọ ahụ mụrụ ma tụfuo nwa ọhụụ n'Oko.", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00338.mp3", + "text": "n’ụlọ ọgwụ John Hopkins", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00339.mp3", + "text": "Ọ mụrụ otú e si anya ụgbọala otu ụbọchị tupu ajụjụ ọnụ ahụ.", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00340.mp3", + "text": "na mgbeye amagbukwaghị ya", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00341.mp3", + "text": "onye ọñụ jupụtara n'obi", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00342.mp3", + "text": "nụ ebe ha nọkwàzịrị wee malite ịbịara Isiana mgbaru nà iburu ya ìhù", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00343.mp3", + "text": "site n'aka 'National Tuberculosis and Leprosy Control Program' na njikọaka 'Breakthrough Action'.", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00344.mp3", + "text": "o were ree ha ụmụaka nwaanyị abụọ ahụ", + "language": "igbo", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00345.mp3", + "text": "Ha abụọ bikwà na mpaghara Umusiome dị na Nkpor", + "language": "igbo", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00346.mp3", + "text": "O nweela ihe nkiri karịrị iri abụọ.", + "language": "igbo", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00347.mp3", + "text": "iji wee kèta òkè n'alaeze eluigwe n'ụbọchị ikpeazụ", + "language": "igbo", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00348.mp3", + "text": "ma bụrụkwa nke dọtara ọtụtụ ndị e ji okwu ha agba ìzù", + "language": "igbo", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00349.mp3", + "text": "A mụrụ Asinugo na United Kingdom.", + "language": "igbo", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00350.mp3", + "text": "O kwuru na ngwangwa mmiri zochara n'ebe ahụ", + "language": "igbo", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00351.mp3", + "text": "N'okwu ọ gwara ndị nta akụkọ oge ọ wụchara n'ọdụ ụgbọelu ahụ", + "language": "igbo", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00352.mp3", + "text": "Ọ na-adịkwa mma onye a gwara agwa ma ọ nụghị anụ", + "language": "igbo", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00353.mp3", + "text": "kechie ha n'ime àkpà", + "language": "igbo", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00354.mp3", + "text": "na ọtụtụ ndị ọzọ selitere isi na ngalaba dị iche iche sonyekwara na mmemme ahụ.", + "language": "igbo", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00355.mp3", + "text": "ma bụrụkwa nke a gbapegidere ya na ụlọ mposi na ogige ebe a na-asa ahụ.", + "language": "igbo", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00356.mp3", + "text": "wee kpọrikọọ ụgbọala ya ma kpọrikọkwa onwe ya.", + "language": "igbo", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00357.mp3", + "text": "ha wee kọọ", + "language": "igbo", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00358.mp3", + "text": "Mgba na- ewetakwa obi añụrị n’obodo ọ kachasị mgbe onye nke ha meriri.", + "language": "igbo", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00359.mp3", + "text": "nke bụ ụzụ akwa wee tụọ.", + "language": "igbo", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00360.mp3", + "text": "N'ime \"Zuo Zhuan\", \"onye edemede jiri taotie\" gosi na ọ bụ \"onye oke nri\".", + "language": "igbo", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00361.mp3", + "text": "ebe ụgbọala na-agba n'elu", + "language": "igbo", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00362.mp3", + "text": "maọbụ onye agwụ na-egosipụta na ndụ ya", + "language": "igbo", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00363.mp3", + "text": "The Tales of Eve", + "language": "igbo", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00364.mp3", + "text": "òtù a maara dịka 'Association of Professional Women Engineers Nigeria", + "language": "igbo", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00365.mp3", + "text": "ya na ikwu nke bụ eziokwu", + "language": "igbo", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00366.mp3", + "text": "Ya bụ okporoụzọ eruola óhú kwùrú óhú ahọ e jiri gbahapụ ya", + "language": "igbo", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00367.mp3", + "text": "Imegbu nwaanyị ajadụ bụ ihe ọjọọ na imegbu mmadụ ọbụla bụ ihe ọjọọ", + "language": "igbo", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00368.mp3", + "text": "n'abalị ụbọchị Wednezdee.", + "language": "igbo", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00369.mp3", + "text": "O mere ka a mara na e nwetere ótù nsụnsụ egbe n'aka ndị ahụ", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00370.mp3", + "text": "na ha zitèkwaara ya ozi ọzọ", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00371.mp3", + "text": "Aare Amuogun Ado-Ekiti", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00372.mp3", + "text": "ọ na-agbakpu ọhịa ga-emechakwanụ mara na ọhịa abụghị ebe obibi.", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00373.mp3", + "text": "A mụrụ ya na St", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00374.mp3", + "text": "Mgbe mmezigharị nke otu narị ụbọchị gasịrị, mmegide maka ijikọ ụkwụ kwụsịrị.", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00375.mp3", + "text": "Oriakụ Aremu bụ nwaanyị mbu Naịjirịa ritere ola n'ihe emume egwuruegwu Judo.", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00376.mp3", + "text": "'Operation Kpochapụ' Nke Abụọ Ga-Echighata n'Anambra -- Obianọ", + "language": "igbo", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00377.mp3", + "text": "ihe nkwàdo na ihe enyemaka dị icheiche nyegara ọtụtụ ndị ụwa na-atụ n'ọnụ", + "language": "igbo", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00378.mp3", + "text": "na-asi ha jisie ike", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00379.mp3", + "text": "Dịka mkpesa ha nwètàrà siri dị", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00380.mp3", + "text": "ọ dị ka ọ bụ ahụhụ na arịrị ka a rụụrụ", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00381.mp3", + "text": "Maazị Uche Ajulu-Okeke", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00382.mp3", + "text": "Ọ na-eme nnyocha ya iji dozie nsogbu ndị metụtara gburugburu ebe obibi nke Naịjirịa.", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00383.mp3", + "text": "tinyere ndị ọzọ so n'isi ọchịchị steeti ahụ.", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00384.mp3", + "text": "E wee zibezịe ndị ikwu na ibe.", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00385.mp3", + "text": "'Most Revd' Peter Okpalaeke", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00386.mp3", + "text": "nwee ọtụtụ ohèrè maka ndị ịdọba ụgbọala", + "language": "igbo", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00387.mp3", + "text": "Colonel” na armị ndị Biafra zutere ọnwụ ya na Nsụka", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00388.mp3", + "text": "tinyere ụmụaka abụọ ndị nke ọzọ ọ mụtaara nwoke ọzọ.", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00389.mp3", + "text": "gaba n'ụlọọrụ ha.", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00390.mp3", + "text": "ma kpọpụta ha n'okporo ụzọ ebe ha nọ.", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00391.mp3", + "text": "Ụfọdụ ndị ọzọ sonyere na mmemme ahụ", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00392.mp3", + "text": "site n'ilebàgàsị anya n'ọtụtụ okwu dị iche iche dị bànyere ndị nọ ebe ahụ.", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00393.mp3", + "text": "nke ndị gụnyere ndị òtù 'Awka Chamber of Commerce", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00394.mp3", + "text": "wee kpee ha ikpe ma kwụọ ha ụgwọ dịka ọrụ ha siri dị.", + "language": "igbo", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00395.mp3", + "text": "nke a pụghị ịgụta ọnụ.", + "language": "igbo", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00396.mp3", + "text": "anyị ga-agbadokwa ya ebe a ugbua n'ihe gbasaara Arụ", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00397.mp3", + "text": "onye ụkọchukwu nke ụlọ ụka ahụ", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00398.mp3", + "text": "Egwu ya nke mbụ akpọrọ \"Holiday\", ewepụtara ya n'okpuru akara ahụ.", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00399.mp3", + "text": "kọwàkwara na a ka na-eme nnyocha banyere ndị ahụ a nwụchikọrọ", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00400.mp3", + "text": "Ọkaokwu ụlọ omeiwu steeti Anambra", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00401.mp3", + "text": "Bọọdụ Mba Agụmakwụkwọ Nka nabatara Polytechnic, nke gọọmentị steeti na-ahụ maka ya.", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00402.mp3", + "text": "ma wèrekwa akwụkwọ nsọ hiri isi ogologo ndụ ha niile", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00403.mp3", + "text": "ma kọwaa nke ahụ dịka óké ihe ọdachi dị mwute.", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00404.mp3", + "text": "na imekwa ka ihe a kọrọ n'ubi mepụta ihe nke ọma.", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00405.mp3", + "text": "ọ kachasị site n'ịmụta usoro nzikọrịta ozi ọgbara ọhụụ.", + "language": "igbo", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00406.mp3", + "text": "ịdị ngwangwa", + "language": "igbo", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00407.mp3", + "text": "Mana afọ ekweghị eju ya", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00408.mp3", + "text": "onyeisi mahadum Nnamdị Azikiwe dị n'Awka", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00409.mp3", + "text": "site na njikọaka ha na ụlọọrụ nchekwa ndị ọzọ", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00410.mp3", + "text": "Maazị Sule Momodu", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00411.mp3", + "text": "o wee kpọrikọọ onwe ya", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00412.mp3", + "text": "ọ kachasị ugbu a oge mmemme ekeresimeesi na-akpụdòbe nso.", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00413.mp3", + "text": "onyeisioche ndị òtù ahụ n'Awka", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00414.mp3", + "text": "dịka otu n'ime ụzọ a pụrụ isi dozie obodo", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00415.mp3", + "text": "Injinia Oluchi Okoli", + "language": "igbo", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00416.mp3", + "text": "n'ebughị n'obi itinyekwu ego n'ụtụ isi n'ime ahọ na-abịa abịa.", + "language": "igbo", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00417.mp3", + "text": "Ụdị nke mbụ a ekwesịghị ka agbaa ya ụmụntakịrị mgbe ha gaferela afọ isii.", + "language": "igbo", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00418.mp3", + "text": "ọ kachasị n'ebe e nwere nsogbu", + "language": "igbo", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00419.mp3", + "text": "'Nnokwa Civic Centre'.", + "language": "igbo", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00420.mp3", + "text": "Ọ na-eme kwa n", + "language": "igbo", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00421.mp3", + "text": "ebe ọ nọrọ wee tuuru ùgò n'asọmpi edemede nke John F", + "language": "igbo", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00422.mp3", + "text": "Obodo dị iche iche", + "language": "igbo", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00423.mp3", + "text": "onyeisi mahadum Unizik", + "language": "igbo", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00424.mp3", + "text": "O kwuru na e debànyechaa aha ụlọọrụ maọbụ ọdụ ahịa ọbụla", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00425.mp3", + "text": "n'ebe isi ihe oriri dị", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00426.mp3", + "text": "onye e mere mmemme akwamozu ya n'abalị iteghete nke ọnwa Ọktooba ahọ gara aga", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00427.mp3", + "text": "O mechara kwuo na a gọnahụ ya ọchịchị ahụ.", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00428.mp3", + "text": "Mana Jonathan azaghị ya ọfụma.", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00429.mp3", + "text": "ebe ha nọ agbara oringo ma na-ekporikwa ndụ.", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00430.mp3", + "text": "Mana afọ ekweghị eju ya", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00431.mp3", + "text": "ebe ndị Igbo kwùrù na ọ na-abụ a gbakọọ aka ọnụ wee buo ozu enyi", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00432.mp3", + "text": "Maazị Marcel Ifejiofor nà ògbò ya nke na-ahụ maka ewumewu ụlọ", + "language": "igbo", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00433.mp3", + "text": "Ọ dị ka ịma mmụọnwụ", + "language": "igbo", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00434.mp3", + "text": "Ihe mberede okporoụzọ ahụ bụ nke mere ụbọchị Mọnde ma bụrụkwa nke dapụtara n'Uli", + "language": "igbo", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00435.mp3", + "text": "nke ọ kọwara dịka nke nwere ike ibute ọgbaaghara n'ọtụtụ ụzọ dị iche iche", + "language": "igbo", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00436.mp3", + "text": "wee rukwazie ugbua", + "language": "igbo", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00437.mp3", + "text": "ọkachasị etu e si arụ ya ọsọọsọ", + "language": "igbo", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00438.mp3", + "text": "ma kpọpụtasịakwa ihe dị iche iche ụlọọrụ ya mepụtagoro", + "language": "igbo", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00439.mp3", + "text": "keere maọbụ nye onye ọbụla n'ime ha ala ebe ọ ga arụ ụlọ nke ya", + "language": "igbo", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00440.mp3", + "text": "Nwata nwoke ahụ ọ kụgburu bụ onye a ma ama na mpaghara ebe ahụ", + "language": "igbo", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00441.mp3", + "text": "A nyụkọ amịrị ọnụ ọ gbọ ụfụfụ", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00442.mp3", + "text": "n'ihi ọtụtụ úrù dị iche iche dị na nke ahụ.", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00443.mp3", + "text": "maka na anyị ka mụ anya", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00444.mp3", + "text": "ya nọrọ n'ụlọ taba nri", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00445.mp3", + "text": "na ọnọdụ akụnụba steeti ahụ n'ozuzuokè.", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00446.mp3", + "text": "Ákíkó mbu ogẹ nso nke Yukrain jịrị Owuwa anyanwu Slavs bídó.", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00447.mp3", + "text": "Ọ gara n’ihu kwuo sị na ka ọ dị ugbua", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00448.mp3", + "text": "maọbụ ndụ ụmụnna", + "language": "igbo", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00449.mp3", + "text": "kọwàrà ọba akwụkwọ dịka ụlọọrụ dị oke mkpà n'obodo ọbụla", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00450.mp3", + "text": "Dịka a sị na ọ na-abụ e kwòghị ìrùrò na gboo", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00451.mp3", + "text": "Mama Nguhian Gwaza", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00452.mp3", + "text": "Ọkammụta Charles Esimone", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00453.mp3", + "text": "ma na mba ụwa n'izùgbe.", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00454.mp3", + "text": "ma na ngalaba dị iche iche.", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00455.mp3", + "text": "Ebere Amaraizu", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00456.mp3", + "text": "usoro nzikọrịta ozi ọgbaa ọhụrụ bara nnukwu uru n’ụwa taa", + "language": "igbo", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00457.mp3", + "text": "A mụrụ Chinasa ma zụlite ya na Naijiria.", + "language": "igbo", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00458.mp3", + "text": "O weghị oge onye isi ọchịchị mba Spen", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00459.mp3", + "text": "kọwàrà mmemme iri ji ọhụrụ dịka oke omenala n'ala Igbo", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00460.mp3", + "text": "obere obodo dị n’ekiti Miami na Fort Lauderdale.", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00461.mp3", + "text": "nke ụfọdụ n'ime ya bụ ndị adịgboloja.", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00462.mp3", + "text": "Igwe Emmanuel Onyeneka", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00463.mp3", + "text": "Nke ahụ", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00464.mp3", + "text": "N'okwuchukwu ya n'òfùfè nrò ahụ", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00465.mp3", + "text": "ha malitere mebe nnyòcha ozigbo banyere nke ahụ", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00466.mp3", + "text": "otu n’ime ndị na-eso ụzọ Baghdadi", + "language": "igbo", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00467.mp3", + "text": "enweghị mmiri ọñụñụ", + "language": "igbo", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00468.mp3", + "text": "ebe ndị nke ọzọ búkwàzịrị àpà mgbọ n'ụdị dị icheiche wee rie mbọmbọ ọsọ.", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00469.mp3", + "text": "ma nyekwa ọtụtụ ndị mmadụ mmerụahụ.", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00470.mp3", + "text": "nke butere njem aga aga", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00471.mp3", + "text": "nke Awka South", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00472.mp3", + "text": "ndị uwe ojii kwuru na", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00473.mp3", + "text": "ma jirikwa oke ọsọ ahụ makpuo n'ime ụlọ dị n'akụkụ ebe ahụ", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00474.mp3", + "text": "onyeisi òtù ọrụ na-ahụ maka ewumewu n'ụlọomeiwu steeti ahụ", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00475.mp3", + "text": "maka na a na-esi n'ụlọ mara mma wee pụba ezi.", + "language": "igbo", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00476.mp3", + "text": "anyammiri tàsịsịkwàrà ụbọchị Tuzdee na steeti Anambra", + "language": "igbo", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00477.mp3", + "text": "Ọkaiwu Innocent Nwanosike nà nne onye ahụ nyere onyinye ahụ", + "language": "igbo", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00478.mp3", + "text": "ma bụrụkwa nke a chịkọbara site n'aka òtù Nzuko Ime-obi Idemili", + "language": "igbo", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00479.mp3", + "text": "ma bụrụkwa nke weere ọnọdụ n'Abagana", + "language": "igbo", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00480.mp3", + "text": "ndị na-ahụ maka ichekwa na ịkwàlite ikike dịịrị mmadụ", + "language": "igbo", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00481.mp3", + "text": "nke mezịrị na ọnọdụ mmepe", + "language": "igbo", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00482.mp3", + "text": "Gọvanọ Willie Obianọ na be ya dị n'Agụleri", + "language": "igbo", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00483.mp3", + "text": "Ozugbo eze hụrụ nwagbọghọ a", + "language": "igbo", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00484.mp3", + "text": "Ndị omebe iwu nke ala Nigeria eweputego akwụkwọ iwu ọhụrụ", + "language": "igbo", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00485.mp3", + "text": "iji nwụchikọọ ndị obikpọnkụ ahụ kpara ya bụ arụ", + "language": "igbo", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00486.mp3", + "text": "ozi nkasi obi", + "language": "igbo", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00487.mp3", + "text": "Ka Igwe wachaara ji ahụ mpewa anọ", + "language": "igbo", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00488.mp3", + "text": "Nnewi na Ọnịtsha", + "language": "igbo", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00489.mp3", + "text": "Onye emegbukwala nwaanyị ajadụ", + "language": "igbo", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00490.mp3", + "text": "ebe Muhendo Peter nọrọ dịka onye ji ikpe ahụ", + "language": "igbo", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00491.mp3", + "text": "chịkọbara ọgbakọ ekpere pụrụ ichè", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00492.mp3", + "text": "maka na ọ bụ ya bụ ọnụ na-elo ụtara ma ụdị okpoko ọ chọrọ.", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00493.mp3", + "text": "Ọ nọrọ n'ebe ahụ wee gbapee ògìgè a rụgharịrị ọhụrụ", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00494.mp3", + "text": "ụlọọrụ nsọnyụ ọkụ steeti ahụ maọbụ ụlọọrụ nchekwa ọbụla banyere ya bụ ọkụ ọgbụgba.", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00495.mp3", + "text": "ọkachasị n'asụsụ Igbo.", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00496.mp3", + "text": "ọ bụ gọọmentị nwere ikike ime nke anyị agaghị emenwu", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00497.mp3", + "text": "mmadụ iri nọkwara na nsonso a ghọrịa ọnwụ", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00498.mp3", + "text": "a na-eme ya ka omenala nke bụ ịga mgba nwadiala.", + "language": "igbo", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/igbo/wavs/igbo_train_00499.mp3", + "text": "ndeewo", + "language": "igbo", + "speaker": "user_157" + } +] \ No newline at end of file diff --git a/prepared_data/igbo/wavs/igbo_train_00000.mp3 b/prepared_data/igbo/wavs/igbo_train_00000.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0be5f1f81ce5030e9b29ceecbc819b08abf50f31 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00000.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5638a460d18299524b61657f6da8ed58b2e0cefefa53a4a2927e72650a536238 +size 38925 diff --git a/prepared_data/igbo/wavs/igbo_train_00001.mp3 b/prepared_data/igbo/wavs/igbo_train_00001.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4562085ed399912d9b45412c1ce18fcdcf6c10dd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00001.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d301782184165cd3dd14954d92aa7f3388707ef86baf9978bf579fcd41f1baa +size 29853 diff --git a/prepared_data/igbo/wavs/igbo_train_00002.mp3 b/prepared_data/igbo/wavs/igbo_train_00002.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8b5e85b55459589b1329db8494c893d712ec4c4c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00002.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddd269874b835be4a97b9c87b9ecb3c6b155b2d67f80e4da4b07970a58c1ac7 +size 20133 diff --git a/prepared_data/igbo/wavs/igbo_train_00003.mp3 b/prepared_data/igbo/wavs/igbo_train_00003.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..41d2c96de90e053fbcce10706e87ad4e54fa8ea7 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00003.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd283ef34e4783437beb7b6bc77268bb33e37de88115677f7cf69bd353c2000f +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00004.mp3 b/prepared_data/igbo/wavs/igbo_train_00004.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3931239fe8294efcff3e3e8c7dff15b0bc143bda --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00004.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ef9c08d6487591711c033d454e6806faa29a96c8d8c8d67bf1490a2ccfd334 +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00005.mp3 b/prepared_data/igbo/wavs/igbo_train_00005.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a7b3a09737884f5b9be4ba9bec226a47e3731006 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00005.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f8677dce8953af367d22d63d9ac275c2cef7c7e67fbbf2f8485e038626e893e +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00006.mp3 b/prepared_data/igbo/wavs/igbo_train_00006.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..117173e83314b45dcd3da45dc121fba893592ccb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00006.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e707dbef792394c58cdd9e56c5749c406e5b446bc546856f8e14c52013fb3b7 +size 60525 diff --git a/prepared_data/igbo/wavs/igbo_train_00007.mp3 b/prepared_data/igbo/wavs/igbo_train_00007.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..30410d17fe2a6728b0ed494cae9583fb46528064 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00007.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9b0079e67fb51682740edb647cd820ee9962dd4d0196630c17ffe3abe71830 +size 38925 diff --git a/prepared_data/igbo/wavs/igbo_train_00008.mp3 b/prepared_data/igbo/wavs/igbo_train_00008.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4b4100699492ae5332a6c1ab25f66acb314acea9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00008.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ade57c2f753c32102c2ca59aeb144756c79a392cfd0487e6d0709eb64219317 +size 22725 diff --git a/prepared_data/igbo/wavs/igbo_train_00009.mp3 b/prepared_data/igbo/wavs/igbo_train_00009.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a195783e8d916d6ab19a48c27a4e7e58a0887349 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00009.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466987df82f431066feef14cfeef08960ee02039bab2f066fe5120e33b510fc8 +size 41733 diff --git a/prepared_data/igbo/wavs/igbo_train_00010.mp3 b/prepared_data/igbo/wavs/igbo_train_00010.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..46b37cda9bfc7796e93f5b7d3a2e775659b0f28f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00010.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac1f44e55f56926eca267ce6635dc80e23984ad872c9d45f689758631f27697d +size 24453 diff --git a/prepared_data/igbo/wavs/igbo_train_00011.mp3 b/prepared_data/igbo/wavs/igbo_train_00011.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..487148430ee70344fc9976dff9e858a0e232af0b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00011.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9b77a7a4b59d102e625d0375fdff97bd98d40f53ec7dea4b6f17f32a0a5ab4 +size 53181 diff --git a/prepared_data/igbo/wavs/igbo_train_00012.mp3 b/prepared_data/igbo/wavs/igbo_train_00012.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a3d2b0fe291909af0a3560e41713e9b0d06d307a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00012.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f246401455062241cf102e3ad6396f52e4459fca5015fabb315953ddda41a6a +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00013.mp3 b/prepared_data/igbo/wavs/igbo_train_00013.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..064d603328f8ca6264ba8fbd98d3e7fb7df7d72d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00013.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4329e108fd0384ec85387929564667c2cfab4c452118f09baaf86e06a18660d3 +size 29421 diff --git a/prepared_data/igbo/wavs/igbo_train_00014.mp3 b/prepared_data/igbo/wavs/igbo_train_00014.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9cb1615243c1da1f6762186907d96c34bf96d56f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00014.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e464ae06724e653636a583ae1cae9eb0d95336e4f57c6c5bec573d1eb2013f9 +size 28773 diff --git a/prepared_data/igbo/wavs/igbo_train_00015.mp3 b/prepared_data/igbo/wavs/igbo_train_00015.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3eaa1c5833b6df7eda65433ede6a7950eafa104e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00015.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e886316866601ba4dc8be02279b216ddbca2cae3312ecff30019dbe56c88580 +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00016.mp3 b/prepared_data/igbo/wavs/igbo_train_00016.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ccfbbad5d71d510c6a4a8b0cb317b097dd115c4d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00016.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695ccd698dc41e42029b2339fadd3befc9b502cfe7d17920a9180b19ce85af7b +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00017.mp3 b/prepared_data/igbo/wavs/igbo_train_00017.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..43915aac92238682f6f2f49c7504d090f66e657c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00017.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2366841c885e67ac366f88ba19161f18866bfb635054e3a56c0487fd296567ba +size 38925 diff --git a/prepared_data/igbo/wavs/igbo_train_00018.mp3 b/prepared_data/igbo/wavs/igbo_train_00018.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a7cf81c1491d0b0ea06c291d2c4aa84e9aa5e37c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00018.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ec76bd323e1f7a936e6a5894a985a7b56495903cb14a00ac0e1e410678f58d +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00019.mp3 b/prepared_data/igbo/wavs/igbo_train_00019.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fdfacba5b068686fc0362b0935e64d29b7d690b8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00019.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13f5336fd420579f9756d94dc49f9370614edbc32f8b6c2382798de272bc88c +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00020.mp3 b/prepared_data/igbo/wavs/igbo_train_00020.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e97a96aa1744db75dbe81afeb02442b29b732ada --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00020.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03e3e05b6f56bf175d3e6f4492331a734ef36c517f0dcd42aa5ce103697db46 +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00021.mp3 b/prepared_data/igbo/wavs/igbo_train_00021.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..02442fa5022cee4f36d2e55b12e696544f8aeb02 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00021.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7862bf1391e1439295052011a79ce9d6dd06151dae70744919f8b029785d01a6 +size 55773 diff --git a/prepared_data/igbo/wavs/igbo_train_00022.mp3 b/prepared_data/igbo/wavs/igbo_train_00022.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..405b5f598ef835076004b24cd85cc403c3ae02db --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00022.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a005e618022560db6dab013586b4821c26578021c203322931cddc34a353fee +size 35253 diff --git a/prepared_data/igbo/wavs/igbo_train_00023.mp3 b/prepared_data/igbo/wavs/igbo_train_00023.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c90144c92bfbb6fbda9b4d4ed21d2d684a4242a8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00023.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4326a65e873538407336a4e5a96b251979af0683df396b5827cba6c975b8950f +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00024.mp3 b/prepared_data/igbo/wavs/igbo_train_00024.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..594be59bcf4271231ae7d446bff94efedf80d4e5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00024.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d24f3477f05a8dee11340261e2736093fcc888a52774bb241247afba9592ef0 +size 25101 diff --git a/prepared_data/igbo/wavs/igbo_train_00025.mp3 b/prepared_data/igbo/wavs/igbo_train_00025.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..34cde54740b233690d0da3eb118cb24acfe95127 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00025.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299031d73f7200f66303b16addbbcee92616d670cd5445e9a9c3d9fe848c9f6e +size 13221 diff --git a/prepared_data/igbo/wavs/igbo_train_00026.mp3 b/prepared_data/igbo/wavs/igbo_train_00026.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..69e98c25feb0345bea0c98253e1e1982b3fd567b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00026.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed25bfe33a2be93d148d3bd51897fdf24b0271af942f7f642b0821034cdb6171 +size 41301 diff --git a/prepared_data/igbo/wavs/igbo_train_00027.mp3 b/prepared_data/igbo/wavs/igbo_train_00027.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6deab5b50b4cbc7f9dcd081bbd1893bf0cf3bac2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00027.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c9ac881925934a9f51b5844423891f1630cc02a4fcc2853d7e02b61a066c5f +size 33093 diff --git a/prepared_data/igbo/wavs/igbo_train_00028.mp3 b/prepared_data/igbo/wavs/igbo_train_00028.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ab9131211a9d6bf7dc2f1ce1b0550786897ac4ac --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00028.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0576d5afb3c96c23960e920336b05b064612c8713ff3fce0cf1436ea9d2f8d51 +size 20133 diff --git a/prepared_data/igbo/wavs/igbo_train_00029.mp3 b/prepared_data/igbo/wavs/igbo_train_00029.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..70a87e521d51900cbd0ad3926e8b6ec72f040f5e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00029.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19be17a79c95b7f153b11161cf90bfed5bb0e579446f3df2a6fe1508f53b2b4 +size 25101 diff --git a/prepared_data/igbo/wavs/igbo_train_00030.mp3 b/prepared_data/igbo/wavs/igbo_train_00030.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..77842cd2ad71ffb0f7e29bace30c70fc9c61e968 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00030.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7f9730953fd4ecc7f4681d39182b3d81edf29528e2e2a302ae787556ac8986 +size 45405 diff --git a/prepared_data/igbo/wavs/igbo_train_00031.mp3 b/prepared_data/igbo/wavs/igbo_train_00031.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4fc1c27d2d3afd86156a32134ade8b2e4141d55a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00031.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145a8dcba5dfd271904f4d40d199a03e96b9f7c2dc7caf5205a08204e3a64f43 +size 42381 diff --git a/prepared_data/igbo/wavs/igbo_train_00032.mp3 b/prepared_data/igbo/wavs/igbo_train_00032.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e79eb82f62dc153919ac38e4e33eb042e215482f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00032.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58cf99cd5ea2e4369486dfce1492d109bef3ba0265684143cdb107fd927070d +size 58365 diff --git a/prepared_data/igbo/wavs/igbo_train_00033.mp3 b/prepared_data/igbo/wavs/igbo_train_00033.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..af71b47312d1d7f727c5e8ddd7ce043b007d66f7 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00033.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d8b885025c5916b2f33b0c513e8c7e56566649dce320a3896fba878c32d82e +size 52101 diff --git a/prepared_data/igbo/wavs/igbo_train_00034.mp3 b/prepared_data/igbo/wavs/igbo_train_00034.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7e3daab1481c7b6605e1764ca3e75626cf1681ef --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00034.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b38e73bbbe42128c27ec7eaa4f302b79693282137a205add027da019364f2ce +size 54045 diff --git a/prepared_data/igbo/wavs/igbo_train_00035.mp3 b/prepared_data/igbo/wavs/igbo_train_00035.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d1a22c2b4ceb07da82aec36fe7d36f15e9f13986 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00035.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f710e9601c13b609c38ebcb291706f53ec9f0b9cd276bfc66894c2d4781d882a +size 46053 diff --git a/prepared_data/igbo/wavs/igbo_train_00036.mp3 b/prepared_data/igbo/wavs/igbo_train_00036.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5e2d3700562a920081c76996e4fb6717d895ef71 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00036.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0ad2d7e4eff3eb3281547eb550b0ee7537e6e2af89d69e4d27469d458358d9 +size 62253 diff --git a/prepared_data/igbo/wavs/igbo_train_00037.mp3 b/prepared_data/igbo/wavs/igbo_train_00037.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f7567d30ea87be5e01b2f7f5304af0aca99812e2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00037.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56eb0ab48cbba04cb94f9b1e2f62007091c5b99961daf126a77ac5272ae8d885 +size 39573 diff --git a/prepared_data/igbo/wavs/igbo_train_00038.mp3 b/prepared_data/igbo/wavs/igbo_train_00038.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..608e42290050e997c7f95139d73eee71f4b0ae54 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00038.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876a67383416d50167c1c9151ea88f228b7964e3457b4808387fa96484af649b +size 50805 diff --git a/prepared_data/igbo/wavs/igbo_train_00039.mp3 b/prepared_data/igbo/wavs/igbo_train_00039.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8796478a822e8d2936a8273cd76c3633c2ac9e4b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00039.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ee0aa5449237c32db528a315a4329d083efd9cc21ce90e92ce2c238bda3be7 +size 45621 diff --git a/prepared_data/igbo/wavs/igbo_train_00040.mp3 b/prepared_data/igbo/wavs/igbo_train_00040.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c209068c10568dffb83c5b9fc8931e5389c24c00 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00040.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c94082bbd19521be3e1f52cc95e7df4ec0a334aa61eaa018a5f3147f5e6167 +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00041.mp3 b/prepared_data/igbo/wavs/igbo_train_00041.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3349e33486a55539d08b131c1af2b42bcc541756 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00041.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100fe6f759fc6234929961295734c6925c3e7e971ce57f5589e1839ea2650d69 +size 49725 diff --git a/prepared_data/igbo/wavs/igbo_train_00042.mp3 b/prepared_data/igbo/wavs/igbo_train_00042.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..48d9720866ff2cb7ab34244ba186ccce45072e2f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00042.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c38b8e6f0c1a853d548046ba99e543ac5e1c82f0ab5d4a87260ef058ab40efb8 +size 46053 diff --git a/prepared_data/igbo/wavs/igbo_train_00043.mp3 b/prepared_data/igbo/wavs/igbo_train_00043.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..198639a3b79614e57224b9dd71f5750193d3aa2e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00043.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d28f1a47bac828e4a69c32fd0e49df15cb23da49aca1434806162b25a99ab9c +size 17325 diff --git a/prepared_data/igbo/wavs/igbo_train_00044.mp3 b/prepared_data/igbo/wavs/igbo_train_00044.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8152f468b900d75a4992888f256e722814ac0252 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00044.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c833deb5243c9cec89fe1d1b21b0eff14c22e6867c2ca77733e882bd23eb022b +size 51021 diff --git a/prepared_data/igbo/wavs/igbo_train_00045.mp3 b/prepared_data/igbo/wavs/igbo_train_00045.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..795c734e430e0baa212f142f6d02880d1a4dbf79 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00045.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84916886cb8ef22f06e56221329e900523cd1aa66ba1dad3c9df1f164a52ab1e +size 50373 diff --git a/prepared_data/igbo/wavs/igbo_train_00046.mp3 b/prepared_data/igbo/wavs/igbo_train_00046.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c7728d6e828f53735861a1d519e6268a98da4c75 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00046.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b2fe2d9fb8ccec6d22a9f595faf685b8ff283dcbb947e316e4b98e72e3e091 +size 53613 diff --git a/prepared_data/igbo/wavs/igbo_train_00047.mp3 b/prepared_data/igbo/wavs/igbo_train_00047.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a8d2ab7191ec0a7ffdd78bd6c53c9126dc60317b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00047.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf495d8e66df7a8e902d49354228833b7966ac1b976c962e3e2fcf3ba1f538fe +size 52533 diff --git a/prepared_data/igbo/wavs/igbo_train_00048.mp3 b/prepared_data/igbo/wavs/igbo_train_00048.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..56f12641e99a9afc7ea981fc70890c9e10171ef2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00048.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2dda7bf9713e9159a241a1aff1030043b18e64f2b135b917e858add4dbbacf +size 45621 diff --git a/prepared_data/igbo/wavs/igbo_train_00049.mp3 b/prepared_data/igbo/wavs/igbo_train_00049.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..259350a24be961262270099eda2cd0313b40d912 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00049.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00fa1546f95642a2455cc937b4c4ff9c6bd2e3d04a1891b081b2ba2d3ad20a66 +size 49293 diff --git a/prepared_data/igbo/wavs/igbo_train_00050.mp3 b/prepared_data/igbo/wavs/igbo_train_00050.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c918ac2e367a1b5cae98080a335d279a07fe1c09 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00050.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:013a8ea30b930d55a2a4435522ca4e677808ae47c497438cba469264e032b7ff +size 45621 diff --git a/prepared_data/igbo/wavs/igbo_train_00051.mp3 b/prepared_data/igbo/wavs/igbo_train_00051.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5994a521eb91ecc63892f188ca7a590e006b672 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00051.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e46332ca434e29aac070ff76765e318e34514e2c0d0554ec311978115960d4 +size 28773 diff --git a/prepared_data/igbo/wavs/igbo_train_00052.mp3 b/prepared_data/igbo/wavs/igbo_train_00052.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a0b09706707b765b47412839a0105bfd25d0981 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00052.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae13ab349c8a94fde3582b970f97b2fc2bd9909fbefbd65aefa76b5137a0852c +size 47565 diff --git a/prepared_data/igbo/wavs/igbo_train_00053.mp3 b/prepared_data/igbo/wavs/igbo_train_00053.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..262e638cbb3801760da16e06e467dfb1ea6822d7 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00053.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59bdb070a461e11b3b148adb077cf4f554a900b8ebbf1311279daf503ecf949d +size 44325 diff --git a/prepared_data/igbo/wavs/igbo_train_00054.mp3 b/prepared_data/igbo/wavs/igbo_train_00054.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6a22d4806399d7e32ab14ac512241215ae6e408b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00054.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2d834552f0cbbd5cfae3749871fa7e08dd63429ccba55831028e3a972dcb36 +size 61605 diff --git a/prepared_data/igbo/wavs/igbo_train_00055.mp3 b/prepared_data/igbo/wavs/igbo_train_00055.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..814641405d9e827701a27823449fd652d1240afe --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00055.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f5ed3cafc6b9532bcb67ed3781c9a5f855b18820febb5a7fa45d6ea293a5bc +size 56853 diff --git a/prepared_data/igbo/wavs/igbo_train_00056.mp3 b/prepared_data/igbo/wavs/igbo_train_00056.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fb496316e1f885868f17eeb97c13bf2d2f8fc7ed --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00056.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bba70ca1d6a13d517071501340628b7a5a84153b94b51b39db60a59ae1fe370c +size 35685 diff --git a/prepared_data/igbo/wavs/igbo_train_00057.mp3 b/prepared_data/igbo/wavs/igbo_train_00057.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3fbfeadc19c6a00fe3716874ad27e6183b74ab5b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00057.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233a0824eb0bff7d9012128b5af1bc191cce6e772d99865ac2387ca4cb8f1abd +size 36765 diff --git a/prepared_data/igbo/wavs/igbo_train_00058.mp3 b/prepared_data/igbo/wavs/igbo_train_00058.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..deb95e5760c100592a09c7d791e19a08fb20403d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00058.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28bac59bcb64abbd865aeb6b857107ca799190cdf01aa6fc91d2a6a9a0b43e38 +size 56205 diff --git a/prepared_data/igbo/wavs/igbo_train_00059.mp3 b/prepared_data/igbo/wavs/igbo_train_00059.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..928499a40caea50429d334ffc1fac90904a63514 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00059.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a157c9c66a808f60e5f74016d96dec749476b9a55e8a4f7cc02c1605da1bbd1 +size 30933 diff --git a/prepared_data/igbo/wavs/igbo_train_00060.mp3 b/prepared_data/igbo/wavs/igbo_train_00060.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ea4ead391906887805649ea4e9a19b9e363e0736 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00060.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f1057d32d114fc515dad9b5eb1010423eae734f15eada99e1329ccb276da31 +size 60093 diff --git a/prepared_data/igbo/wavs/igbo_train_00061.mp3 b/prepared_data/igbo/wavs/igbo_train_00061.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..428ee86fb9201e40bb00b88f3211b7ae9057b477 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00061.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30dcaa9d58f5d8ef4405af3f06f628bdd15c0c4b395e7e9ddb035ebeb6b0517 +size 48645 diff --git a/prepared_data/igbo/wavs/igbo_train_00062.mp3 b/prepared_data/igbo/wavs/igbo_train_00062.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..22aedd7510020fb194246df6fdb3de6420abbd92 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00062.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0445ee3b71897d935ec5bda9b541a3a78cae48abdc4197c210dc36e25b6ecd7 +size 35685 diff --git a/prepared_data/igbo/wavs/igbo_train_00063.mp3 b/prepared_data/igbo/wavs/igbo_train_00063.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..40bec1be30b95e8df29956369d4979552823ee6f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00063.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92cec0843ecdbc2b9a680135c0ec1b7d573e62a8a5b214cc98b3a26247fff0b +size 61821 diff --git a/prepared_data/igbo/wavs/igbo_train_00064.mp3 b/prepared_data/igbo/wavs/igbo_train_00064.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d905bb269f63ffa803718e63994a77a9675e56d6 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00064.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddfb1b7d374000bad665664425f61d8bf2d6c39ad40523effeb7f24de791a4ea +size 31365 diff --git a/prepared_data/igbo/wavs/igbo_train_00065.mp3 b/prepared_data/igbo/wavs/igbo_train_00065.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c81eb3188a343508a552501305e0328e5fc9e05b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00065.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc0cd9944b2f248928c197889552a7cca9b9785431ae8d21708f4b52b103639 +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00066.mp3 b/prepared_data/igbo/wavs/igbo_train_00066.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..72ed50587b6181f303ce5b94edf23f618353beb3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00066.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34cc20f63f809cdd442107d31f28701f598af119e2d9a29d1914d6444f928c99 +size 39141 diff --git a/prepared_data/igbo/wavs/igbo_train_00067.mp3 b/prepared_data/igbo/wavs/igbo_train_00067.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ce9f7a54079db7bdfb8a94aca95eeb20c8772e0d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00067.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6be947cce5bc92cc77ccf14d12a3e465b1f761a2be78a5b186c9a5a11b15782 +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00068.mp3 b/prepared_data/igbo/wavs/igbo_train_00068.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9474afc71e9186b867e9fbdd651f93bacc85acdd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00068.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ee59b574d6b0683f8770aa25a885420d2358f38ae24fd9f95ac940c371ebc5 +size 54693 diff --git a/prepared_data/igbo/wavs/igbo_train_00069.mp3 b/prepared_data/igbo/wavs/igbo_train_00069.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..86bfbfb724efdbebec99a7dcb3d57907ab06df8f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00069.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4cb5d6cd756956fe50b7dd4f44f44917b2b33460aa3de248f9ff5f5ec3d951 +size 56853 diff --git a/prepared_data/igbo/wavs/igbo_train_00070.mp3 b/prepared_data/igbo/wavs/igbo_train_00070.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9402a293f44fa994ecd5aae1186dab00dedab92f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00070.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82daeb4e8e02537636b4ede16d6e3a536d65b786ca77977e894b823ded65c678 +size 56853 diff --git a/prepared_data/igbo/wavs/igbo_train_00071.mp3 b/prepared_data/igbo/wavs/igbo_train_00071.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..28aeccdb64c43bdbf640cde4be9537663f8678f1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00071.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b6ac008366f2b76c8e93500411c89fbe8f7090c30b3020030d6cc281800a8e +size 55773 diff --git a/prepared_data/igbo/wavs/igbo_train_00072.mp3 b/prepared_data/igbo/wavs/igbo_train_00072.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0c580d5fea15f88e5d490b082a936beee6f828b8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00072.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ff4f3dbc51ce57073f2541f04d35bf4ca0badf912e4294fdbe02d13ed05525 +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00073.mp3 b/prepared_data/igbo/wavs/igbo_train_00073.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fc1d6d425db9028cb8f8c57f7ef858c8954f4062 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00073.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8f908e0ba7a975639d414178f0d3c817eb765f2d7a5db1b12dc53233b6cd2d +size 45621 diff --git a/prepared_data/igbo/wavs/igbo_train_00074.mp3 b/prepared_data/igbo/wavs/igbo_train_00074.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..96adabfae711f8c9579b8514f261681d64c463bc --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00074.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ef22944098a24137b3380f010b39502d849a63fa1d539988f25072ac75182e +size 55341 diff --git a/prepared_data/igbo/wavs/igbo_train_00075.mp3 b/prepared_data/igbo/wavs/igbo_train_00075.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4432143249fb93460561bf9b14210b2b69fd3274 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00075.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa172afda1ed0e79b1ac44dd40ff7d255c55683e93ffafe82bc2bddbdb9562b +size 43461 diff --git a/prepared_data/igbo/wavs/igbo_train_00076.mp3 b/prepared_data/igbo/wavs/igbo_train_00076.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..01899ef40ab329029a1cd44c72cc73bd41e77ccb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00076.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbfa988db115024d40d69320432d61e185cf218be50fdccabf79d5ce5e9f12e8 +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00077.mp3 b/prepared_data/igbo/wavs/igbo_train_00077.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e07f4330b20db667dc7ec7e98b75ffbdb6f88d63 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00077.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd7211eff5f2af51691abb34356452990321e7e687c27d8c56dad478f1f67840 +size 55341 diff --git a/prepared_data/igbo/wavs/igbo_train_00078.mp3 b/prepared_data/igbo/wavs/igbo_train_00078.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..36feba3e74e6194b915fabe9e6471c26c168125a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00078.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090da050860b387fd00d0e9ed2ee3b4140e8fdff3d51713038c753e3b2bab9e7 +size 44325 diff --git a/prepared_data/igbo/wavs/igbo_train_00079.mp3 b/prepared_data/igbo/wavs/igbo_train_00079.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..55944cfac038a4c3cf41bc7cf4ac13dd606acf37 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00079.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012d41743da5ae7e270a2d7fe8638f93c521d640570ea3a98a06acdb44061ca7 +size 29421 diff --git a/prepared_data/igbo/wavs/igbo_train_00080.mp3 b/prepared_data/igbo/wavs/igbo_train_00080.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1d7ee462f685529eb544bfcd500246bb7e9df359 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00080.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167e29bdc54cbe16c35a9eef928493390ee6e85d0eafe8f329ee5b50e04b0747 +size 41085 diff --git a/prepared_data/igbo/wavs/igbo_train_00081.mp3 b/prepared_data/igbo/wavs/igbo_train_00081.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..69697fd6f3d76fdd57f2b9d3c5ae33c90b10929f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00081.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c300699842ed2a43d93128674581c87dde50a14d99cf614f3b187271f78d4b +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00082.mp3 b/prepared_data/igbo/wavs/igbo_train_00082.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8129cffbd2ea9487c388d90de1b6923cf29dda4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00082.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876121d9ad538c4f53980de60d0020c5cf71c6cc3e5e1c97539fff33a1da6538 +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00083.mp3 b/prepared_data/igbo/wavs/igbo_train_00083.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f14b8d1c9a08083dc66142c03e817093b979ba83 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00083.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ecce14c60a7057efb91b9921cb1110fb36f305a8b9ae891a4263bea5a44556 +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00084.mp3 b/prepared_data/igbo/wavs/igbo_train_00084.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bec9ad51c64db135ec8b7eb09a8c16e636fa58fd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00084.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0bd25e793379889fd10dbe03e898d8606e4f4cb1af23b00d4451d450546831 +size 31365 diff --git a/prepared_data/igbo/wavs/igbo_train_00085.mp3 b/prepared_data/igbo/wavs/igbo_train_00085.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..428d2d46a497e56b934e9db96b035b5f111f772d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00085.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1e55f351dd717b5c2e0edb0bc6025531b0ff686504600213cdfb22efcc7689 +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00086.mp3 b/prepared_data/igbo/wavs/igbo_train_00086.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7e99542c127b43cbc194dcae8788afc706b80b92 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00086.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3629bd92e139c76d0f57ab0238e613f800abe30162a23c91284b65f193ad1ed1 +size 15381 diff --git a/prepared_data/igbo/wavs/igbo_train_00087.mp3 b/prepared_data/igbo/wavs/igbo_train_00087.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a366a339eba55ec8eccb1a536c7ee9ab785eddab --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00087.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd46693c41c120b93cf249966e805712a2b4ff79c6cb0195e302b10feb152ff +size 18405 diff --git a/prepared_data/igbo/wavs/igbo_train_00088.mp3 b/prepared_data/igbo/wavs/igbo_train_00088.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6b357fc66433a9a2f2cfcee3204a27a48e339c3c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00088.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b61985222e4ea0fac373310ad99d87c20a35fe4712c2182d399bacae1246ddf +size 24453 diff --git a/prepared_data/igbo/wavs/igbo_train_00089.mp3 b/prepared_data/igbo/wavs/igbo_train_00089.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..32960b002bf46660e6f8d9f0a5c9fd3d1d5f3e40 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00089.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2640c2f49001db5ad3870bae121db3195889270b2758584009832ea3e000dd +size 56205 diff --git a/prepared_data/igbo/wavs/igbo_train_00090.mp3 b/prepared_data/igbo/wavs/igbo_train_00090.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..021cd96d01cb565014b1f323e831dbd92291884b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00090.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6c18726266665446e1440fb8b291fa32f6eb2ec659b32214bb45d047c445c1b +size 27693 diff --git a/prepared_data/igbo/wavs/igbo_train_00091.mp3 b/prepared_data/igbo/wavs/igbo_train_00091.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0bf10b133d9744aa91044b3f246917b1ded7a5ec --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00091.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b4154c41d2050e6d74aa446c9e76336e61d01d4e256fd79b11ac8e9b8dc51c +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00092.mp3 b/prepared_data/igbo/wavs/igbo_train_00092.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..868f1ec9a6a046ea73656050e9c20f6ba17f8b7e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00092.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0d3aa41f720d0cc71e97b966f34793e90e883fa55a57ffe2280f002e28811a +size 21213 diff --git a/prepared_data/igbo/wavs/igbo_train_00093.mp3 b/prepared_data/igbo/wavs/igbo_train_00093.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1f0cffccf45ab55e0b8f657dfb5846e87aad9da3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00093.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca283bb6506272545610945aa6f7bbe73425501cce49c21471232c9c27fdaf23 +size 28125 diff --git a/prepared_data/igbo/wavs/igbo_train_00094.mp3 b/prepared_data/igbo/wavs/igbo_train_00094.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..30656f741191f9f0c7ec14dc883c7034f3679ba1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00094.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ebdb8a64be0c6d220175afc234fed6b0dabc1c6b2d27bed86e83870b4197ae +size 22725 diff --git a/prepared_data/igbo/wavs/igbo_train_00095.mp3 b/prepared_data/igbo/wavs/igbo_train_00095.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..044bbdcb414aee75405caec4876122b1d4ce5670 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00095.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebfaa85a7bc5505aee4ba3ed1b03da4da260689dcdc27b4f7720aa1eafc62c9 +size 43893 diff --git a/prepared_data/igbo/wavs/igbo_train_00096.mp3 b/prepared_data/igbo/wavs/igbo_train_00096.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6cf45a6ee302f8609ac8af5dc94b6ad4cf3e4d83 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00096.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e805c752863e428f61206795742f15192de0065bb83f554a8b8e3faa0acf3f +size 36981 diff --git a/prepared_data/igbo/wavs/igbo_train_00097.mp3 b/prepared_data/igbo/wavs/igbo_train_00097.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d16aa9b16906ff0947821954a15556c5329c51a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00097.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47b9daf99c99e6f30076de5df4c0b3c4346c6d84da94f10c2b87169b7724e7c +size 26181 diff --git a/prepared_data/igbo/wavs/igbo_train_00098.mp3 b/prepared_data/igbo/wavs/igbo_train_00098.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a30a1feb97416bb485ea71bd05bc17524d91a77d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00098.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff33f95490fd07c65f254f1f73a552cf73faaf1d4e15d23fcd9a08b20ad0b89b +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00099.mp3 b/prepared_data/igbo/wavs/igbo_train_00099.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dab8d505ed7bf2103f37a90da80aa6902d97d231 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00099.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381880c31aa12a43062d2d8a0eab952d684142f29c760c384cf6b72b2206ea98 +size 33093 diff --git a/prepared_data/igbo/wavs/igbo_train_00100.mp3 b/prepared_data/igbo/wavs/igbo_train_00100.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cc9889df3f8ea0127299b500260b12c92d4f0005 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00100.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b07e9c4d2b7a4c9b6ff58347ccf3078b3ee846ec5e612e49d62793f9a6681b +size 59661 diff --git a/prepared_data/igbo/wavs/igbo_train_00101.mp3 b/prepared_data/igbo/wavs/igbo_train_00101.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6a5f133cc5428b1df618a1525b2a76fd38b4a3c0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00101.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45660fa9b40f6f63a19caa95e6d4bb1130c96d0420e26b05101c7512b5fd2ab6 +size 52533 diff --git a/prepared_data/igbo/wavs/igbo_train_00102.mp3 b/prepared_data/igbo/wavs/igbo_train_00102.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6dd12a6c46f53e1fe4043b7a0c706b38cdbe860a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00102.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d895a83757aea56fa961651dfacfb3396b749cbd214a30b40fd0bffedf4570a6 +size 25101 diff --git a/prepared_data/igbo/wavs/igbo_train_00103.mp3 b/prepared_data/igbo/wavs/igbo_train_00103.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f902167858f7a340b9e86e18e370fdc27fda6fee --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00103.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a649a03f012d04617fcf5bb6d9979c914b6b99840cdc1b7299ce0dc3399065c +size 34605 diff --git a/prepared_data/igbo/wavs/igbo_train_00104.mp3 b/prepared_data/igbo/wavs/igbo_train_00104.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0596a003b65c60e76eb2a765effba7098f2b40f9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00104.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e132c6f5a72c163ecf2b54569d60d1a00db2421fd89d3383ff6fb52fa0f81c1c +size 29421 diff --git a/prepared_data/igbo/wavs/igbo_train_00105.mp3 b/prepared_data/igbo/wavs/igbo_train_00105.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f6c651e9c6b45b5834da94cc722eb28d5a206cfd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00105.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eda072437c6b7ef28833a281055f4939153882d77580156e3e2f21b67f64b71f +size 40005 diff --git a/prepared_data/igbo/wavs/igbo_train_00106.mp3 b/prepared_data/igbo/wavs/igbo_train_00106.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..87dde98aa27ea6df3e14f30ed87749f0a94c10e0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00106.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec20b95061b79eda9014362e63fed34e93de4dc16aed1a5ff44f44f630166aa +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00107.mp3 b/prepared_data/igbo/wavs/igbo_train_00107.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..921049cc5a16745f28a8747ccd8447afd508679b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00107.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c1f8c8864dead787ee402862533c2769d61464d188f1bb77b609999e61cee0 +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00108.mp3 b/prepared_data/igbo/wavs/igbo_train_00108.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..30fa522fed749977b79ce09a75037b3a78ea3f41 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00108.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a27444c213798909d95ae115f491280986a57d73054a8c769a190a4c647dbb +size 43461 diff --git a/prepared_data/igbo/wavs/igbo_train_00109.mp3 b/prepared_data/igbo/wavs/igbo_train_00109.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f27ab198b604addd542cf9b0c23670f61c959e8c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00109.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8357937f8a1aa3a31539d5c662fb9b158936400adc3b4879146401a8ffed09 +size 40221 diff --git a/prepared_data/igbo/wavs/igbo_train_00110.mp3 b/prepared_data/igbo/wavs/igbo_train_00110.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6ae1705781beb7667af68eab6713ceba8f9c17bf --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00110.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15550f848a13ba151d098fb15b7f177ae9ce5dcd18b4a3d967fca5efc56c7b71 +size 54045 diff --git a/prepared_data/igbo/wavs/igbo_train_00111.mp3 b/prepared_data/igbo/wavs/igbo_train_00111.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8d8b47f6133b71da7aed4f1b3f50a0afef42e1b6 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00111.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3285ae9f3a91f5c11f5dc546d83cd30266961bb68ea1168ad3c2b1f99f7b12e4 +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00112.mp3 b/prepared_data/igbo/wavs/igbo_train_00112.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5665be316ec17ba39b22858f2b98cb4217a96470 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00112.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b7414389539ea26d30b08d8b78805d444b34440288680256418bc2943b1747 +size 21213 diff --git a/prepared_data/igbo/wavs/igbo_train_00113.mp3 b/prepared_data/igbo/wavs/igbo_train_00113.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c989a32a33dbf1e0c0271847812e915978e09674 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00113.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a420fa200f0ae88c7ef8cd69dd16a69dd2c635195451099b4a3b036ab177ccc +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00114.mp3 b/prepared_data/igbo/wavs/igbo_train_00114.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..db11b9b79b354c897ec5bd5f25f965f161883b41 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00114.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91583802f8ba3003ab53ac6aaf392573ccf9b69a086b877e38ed41c96de4b296 +size 50805 diff --git a/prepared_data/igbo/wavs/igbo_train_00115.mp3 b/prepared_data/igbo/wavs/igbo_train_00115.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ad2345da550b5483f5d09365ac264cb43c1b995d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00115.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb64f27e1d0c701f553f29c0253ef5d65aa3a6c47014d394a020f0560b2cffc2 +size 33741 diff --git a/prepared_data/igbo/wavs/igbo_train_00116.mp3 b/prepared_data/igbo/wavs/igbo_train_00116.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9af23b552b8a846e5e4bf3f3e525ebac2e3ee1cd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00116.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30fcf6abda0aa2ecd571532cf8008ba2ad55d0e2b9503c5c09c3711039b9f0b +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00117.mp3 b/prepared_data/igbo/wavs/igbo_train_00117.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..795bbb5333101bea6ae25f73e95293da00a52d38 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00117.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55db1b6643e408bb059ba4bc41840d6fa583754d18c59acecab49112416e1e31 +size 36981 diff --git a/prepared_data/igbo/wavs/igbo_train_00118.mp3 b/prepared_data/igbo/wavs/igbo_train_00118.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c22e8f35e88e6c97bb444c88767db66b5d485343 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00118.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a0248d9b034d0c290545ef7cf275305a5990fdd49eda847581accad3ff0fe2 +size 31365 diff --git a/prepared_data/igbo/wavs/igbo_train_00119.mp3 b/prepared_data/igbo/wavs/igbo_train_00119.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..985b89843435a3e9a9d1839e26128f8d1dda33b5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00119.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410cd62590e713604e72bfda648d6a0a6309757c607b7dc4cdaae3b84919c555 +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00120.mp3 b/prepared_data/igbo/wavs/igbo_train_00120.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d6b70c54ce25437faa3d8b54b716e8cfe5f8f02c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00120.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c3751e20cb1e359c84386870fe92d9a000a1a7080192b6a6b83f875df6e66c0 +size 51885 diff --git a/prepared_data/igbo/wavs/igbo_train_00121.mp3 b/prepared_data/igbo/wavs/igbo_train_00121.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e62ff787d738a0a3d255dc38bf7eb4dace3f36d9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00121.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a1a88057bd7da5177286d749adef0b7543dec4f6224ae73ce291a652b72335 +size 27693 diff --git a/prepared_data/igbo/wavs/igbo_train_00122.mp3 b/prepared_data/igbo/wavs/igbo_train_00122.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c68d1ff319012b95c562495615eab291ea7c0989 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00122.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8cc9afc0f6ae2920fb6143cc19e4bd694940b385a3318e66e6f7fed3469ca7 +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00123.mp3 b/prepared_data/igbo/wavs/igbo_train_00123.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dfc1f9aea5ba53a64c1b5c67c064108f955c97b8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00123.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b5a33f3f5130d9b8a0e71924832e602c7ab97292fcda32c527221edc311135 +size 29853 diff --git a/prepared_data/igbo/wavs/igbo_train_00124.mp3 b/prepared_data/igbo/wavs/igbo_train_00124.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1ee2bc72547b0e288903cbf53f5ab60560bfdce4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00124.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35556222bf9760e5d5e3e9551d0df217ff34875c676f26c1583c9bea890300ee +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00125.mp3 b/prepared_data/igbo/wavs/igbo_train_00125.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..42ce2ee76b9a0b08010be29163e1863a9d40446e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00125.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32ebe0cf4d3c39aa0a585ed690ac5dc8d13c58f62f2227ac5374a1b6103ba4f +size 51885 diff --git a/prepared_data/igbo/wavs/igbo_train_00126.mp3 b/prepared_data/igbo/wavs/igbo_train_00126.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..16669877bc8cb910f191b21282d241ceda0fd2e2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00126.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b519b4b66362b06734e10af6c29a3cda8987d31a24dea54e2fb9df715fa4a5bf +size 29853 diff --git a/prepared_data/igbo/wavs/igbo_train_00127.mp3 b/prepared_data/igbo/wavs/igbo_train_00127.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a85561fafcfb12126885caabbfe139e7d4baea0c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00127.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48ef09bdfca2e401b38d92c272711afa9938a0d5dbf053164a66ab4e21a9402 +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00128.mp3 b/prepared_data/igbo/wavs/igbo_train_00128.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de8831969b2401ed984582758e1f9fdef22ef045 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00128.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:577bb515834448db3aaca6d019ba8187fa69205cf97a074e706eae4b0e255db5 +size 47781 diff --git a/prepared_data/igbo/wavs/igbo_train_00129.mp3 b/prepared_data/igbo/wavs/igbo_train_00129.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..234999bbda589d161735a98cd02ef0824fcf3641 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00129.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3e91ff068fbcf582e087ae89ddb86f2c1d73a1f2d95b714034ccd692bb27a4 +size 41301 diff --git a/prepared_data/igbo/wavs/igbo_train_00130.mp3 b/prepared_data/igbo/wavs/igbo_train_00130.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..706ee55f52a9b2ccaab5600ac2055da343d5a1fd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00130.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6853679bb74a41c0d680373a3860706dd48ef3745e55573fc27f8f888d5b5b +size 29853 diff --git a/prepared_data/igbo/wavs/igbo_train_00131.mp3 b/prepared_data/igbo/wavs/igbo_train_00131.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..df986c56c86e777bbec43a556fe1ce7047ec138f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00131.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a481cb73f738aefb1ea74f050332edfd926060c73e6203cbfd10668ff6675970 +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00132.mp3 b/prepared_data/igbo/wavs/igbo_train_00132.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d1c9ac0445b42236b5776b67dc85161970137ebe --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00132.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5821c873502f552e4388eda040489b775c2fcc41495a92c4fdeb1ca46bb2a395 +size 44325 diff --git a/prepared_data/igbo/wavs/igbo_train_00133.mp3 b/prepared_data/igbo/wavs/igbo_train_00133.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5fd7d803c78345868da89d271daf248e7717ea7c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00133.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e0e4facb4ce5b6651ba065536bbe8b4983a8301627e868652815a0f2b19bcc +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00134.mp3 b/prepared_data/igbo/wavs/igbo_train_00134.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6db1d534ddab1fc89e73351e86e27daf17804973 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00134.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636d31d7d6d318711825a3016662b91399e7f6d91f7cda6ea52affd923271f00 +size 54045 diff --git a/prepared_data/igbo/wavs/igbo_train_00135.mp3 b/prepared_data/igbo/wavs/igbo_train_00135.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d0d9aacd9ec22f29536a9afbabc8333e50e05b3c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00135.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0d13c775c77234728b6784db024d98d33a21b6b15570e5188a7fed65ca1d10 +size 34821 diff --git a/prepared_data/igbo/wavs/igbo_train_00136.mp3 b/prepared_data/igbo/wavs/igbo_train_00136.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5632c3f76ae7de4596e365843143a0b1177490c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00136.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca643f7844a3a8af9ed7ff9caa44c5a5771725e81b218b7680f0bbe83d1d7c7 +size 38061 diff --git a/prepared_data/igbo/wavs/igbo_train_00137.mp3 b/prepared_data/igbo/wavs/igbo_train_00137.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d75f3f74574c9d48762e96274ebf2983a908ef2e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00137.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193d86260d34bbdb538d52e28c0f5ab5e87912f36a59ee31bb63f4b3792d51fa +size 54261 diff --git a/prepared_data/igbo/wavs/igbo_train_00138.mp3 b/prepared_data/igbo/wavs/igbo_train_00138.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..431b42fb3fb97dc6b5dbab5e09cc5c9bbd1d8031 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00138.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1dffefcc104c6ec4a4e109e5dc9bff708cbad8af1cc3f5a82c7ce7d431aee1 +size 36333 diff --git a/prepared_data/igbo/wavs/igbo_train_00139.mp3 b/prepared_data/igbo/wavs/igbo_train_00139.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..656330f37f58fa5bfe0c32b9f5d285f94afd69b4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00139.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2a3beb1fb4d8e01ffdb37953c10ce564272bb1d44429c12650a1cbfec84e87 +size 56421 diff --git a/prepared_data/igbo/wavs/igbo_train_00140.mp3 b/prepared_data/igbo/wavs/igbo_train_00140.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..11758192dc3e082592bd8ffd347ab34424f71ecb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00140.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d24802449ecaa8f40e216da34372ba7c58f0664f1d715224cb4301f87dd492 +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00141.mp3 b/prepared_data/igbo/wavs/igbo_train_00141.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f90eb6598fd9d0e73b417eeec0c3047976af0064 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00141.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffc682352d1afa57e5569fe5f6686daf6d5e0dc713e92d260a1de5f028ebf94 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00142.mp3 b/prepared_data/igbo/wavs/igbo_train_00142.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d7f59e5c1ba43959f53935c7470a048b555455a6 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00142.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db0cbb152ea443c5bbc020f06a8754eee5c1c809a8ce45fab28eddff358da1d +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00143.mp3 b/prepared_data/igbo/wavs/igbo_train_00143.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0c3b781ee1b8bb0ffabff32925000c820640b533 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00143.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf32e44667f1c7d7c1f494db4356d10c691275b3dd6b9164862102ae41ecb39 +size 34821 diff --git a/prepared_data/igbo/wavs/igbo_train_00144.mp3 b/prepared_data/igbo/wavs/igbo_train_00144.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b149b69af125e2f4ddf164a0c8cb2d90d4466eed --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00144.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd19a0e9313712f9917ac1310b842bb8cde76430ce7c7adea541a46c95ca0a33 +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00145.mp3 b/prepared_data/igbo/wavs/igbo_train_00145.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b452b2775d1aab0c393b2be99846709094194f13 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00145.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd670aca57ba38181a9e1c1e1bdcc1569461963221ff65b2b3b90de4e153e38 +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00146.mp3 b/prepared_data/igbo/wavs/igbo_train_00146.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..559bccace273360e6db61fd339ef24e3c358f000 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00146.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b429f4fb7884f285ccfc13107c5cd47da902ec16d0105eb231da985104bf45d0 +size 29853 diff --git a/prepared_data/igbo/wavs/igbo_train_00147.mp3 b/prepared_data/igbo/wavs/igbo_train_00147.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6250db479fab0579222f089b8c212cff9bfc055e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00147.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a627b81e5a1b76b59ff0a83b7c83487fbbbd416a1cad79e16dab389bb4d93b1 +size 31365 diff --git a/prepared_data/igbo/wavs/igbo_train_00148.mp3 b/prepared_data/igbo/wavs/igbo_train_00148.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cbe77209193fcf9ec210045c208c444c76d88c42 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00148.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6dc535544c209044a78b0729b4f68a509d96b7acbdd970eebee1ca2aa868b6 +size 50805 diff --git a/prepared_data/igbo/wavs/igbo_train_00149.mp3 b/prepared_data/igbo/wavs/igbo_train_00149.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..003cbb384aa215fb6e7aebd92ad5745ff838d203 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00149.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3db8f5a0faef9b4e0dca15a8929b2e5ad862ccc62d465f57259edf2e8c64d1ac +size 33741 diff --git a/prepared_data/igbo/wavs/igbo_train_00150.mp3 b/prepared_data/igbo/wavs/igbo_train_00150.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f9a253d094c5c2a3cdae7ab3b443231c69f14d86 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00150.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:922c65bc1d697b56acb4393532a8c6606813f62a29837498a827dd7f431c2eb9 +size 25101 diff --git a/prepared_data/igbo/wavs/igbo_train_00151.mp3 b/prepared_data/igbo/wavs/igbo_train_00151.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1d890b61d313979a81ff418367c9155ce13cc23d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00151.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0427a4b15ce237c45e86b469e6ca1aeef56b74ef0cbc081259b468898f6e0b5a +size 62253 diff --git a/prepared_data/igbo/wavs/igbo_train_00152.mp3 b/prepared_data/igbo/wavs/igbo_train_00152.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5fff032f07962324b839e0887b677552c9fd5740 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00152.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40309068127d88a2d746e447635441660b826be8c6159c42f0fb6543ff04bbf +size 49725 diff --git a/prepared_data/igbo/wavs/igbo_train_00153.mp3 b/prepared_data/igbo/wavs/igbo_train_00153.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8875b10106c0d91b4c43044bb75d0a8ef3daace5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00153.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1b61f4561f626c699b49f89817ca857b923e3fa9062ff85987c673971301e8 +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00154.mp3 b/prepared_data/igbo/wavs/igbo_train_00154.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3bdc28cd48f7038afc93b68eb68d876c3288a346 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00154.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46fce2a356e5edbbf0632576389cb8dfa3b33c631ef2ba44ec56459f3cd61201 +size 29205 diff --git a/prepared_data/igbo/wavs/igbo_train_00155.mp3 b/prepared_data/igbo/wavs/igbo_train_00155.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..39a7b7e3cc81c841b7d9c1254965d8a5f3de91f2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00155.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab86e2880f75d6db6086b3033a979b9a5826e709831d58d53721dfa8727fcb25 +size 41301 diff --git a/prepared_data/igbo/wavs/igbo_train_00156.mp3 b/prepared_data/igbo/wavs/igbo_train_00156.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..edfef775bd4d05d7319dbf991d87bbc40d0ddee8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00156.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c9cf3be41c900fa7b3b81139b8229ff1c930cbd8b26f21f034687b397f01e6 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00157.mp3 b/prepared_data/igbo/wavs/igbo_train_00157.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e9fc9b45494bf30f2c9771b63711d01d85e07d2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00157.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66db4ce41ac3238bed138f8a705ac62091024cc030d9e99f113d7d10280d27cf +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00158.mp3 b/prepared_data/igbo/wavs/igbo_train_00158.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3abfa540c738375f2f79ac3e90bde2a0ec2a5fa6 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00158.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8882a21c1f292464aebdbc449888cebc0677a74af02107c507f41e47605e2076 +size 11925 diff --git a/prepared_data/igbo/wavs/igbo_train_00159.mp3 b/prepared_data/igbo/wavs/igbo_train_00159.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2e2ea2d2c639046f8d33f530bc6ea28ad8124f02 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00159.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307445bab4f70fc697fde3235ef6b13d218bd55ac747d08419d5d76663f2e14e +size 9333 diff --git a/prepared_data/igbo/wavs/igbo_train_00160.mp3 b/prepared_data/igbo/wavs/igbo_train_00160.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..869d6ba3749bab2a50b7230dded868edcb374fde --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00160.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed485f69d8e0c3aac6e02f4ed226e1f2ab1a89db8a344f075c2861c1d0777ac9 +size 29205 diff --git a/prepared_data/igbo/wavs/igbo_train_00161.mp3 b/prepared_data/igbo/wavs/igbo_train_00161.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a07223132dffc64962268f5ccdfebea849f3f423 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00161.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719d6f2bd5f2d96aa8478a1e774a6af4ba6ec51440bf57d5a6276eeff8716d09 +size 17973 diff --git a/prepared_data/igbo/wavs/igbo_train_00162.mp3 b/prepared_data/igbo/wavs/igbo_train_00162.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b51147b36b52c7bd3b6b86476bacfa8efdcc5bde --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00162.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2fdb487e9ea25591925565dab85f44f65d446cdac4e58b008d363b6ecadb26 +size 39573 diff --git a/prepared_data/igbo/wavs/igbo_train_00163.mp3 b/prepared_data/igbo/wavs/igbo_train_00163.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9d0eca54d44254bd70d4b54c00bea539ac657cc8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00163.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b5776af2a37fa4476925478227b5c1fbf9aa53d9c52dbf596cf8d561217742 +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00164.mp3 b/prepared_data/igbo/wavs/igbo_train_00164.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7c47a7d086ddb1d394f7bf3993b6f5f663650daf --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00164.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7131702f02e02e844e9a8725eb6fe59f82ab62672e0fa4b5780baebaffaaab88 +size 62253 diff --git a/prepared_data/igbo/wavs/igbo_train_00165.mp3 b/prepared_data/igbo/wavs/igbo_train_00165.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..68e51e78181bec0195c4e3902c605de889500295 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00165.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9968591e8862846b5148e3b4a6161663f5cbf3cd677cc9e200a089d9ce5a8bc9 +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00166.mp3 b/prepared_data/igbo/wavs/igbo_train_00166.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2ffe080cc351f8d03a7b4c0c250c894de17f96e1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00166.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f2b30e20e0417b9d995a92370ee7f112be3253220f971592f81a5ad6ca1053 +size 44973 diff --git a/prepared_data/igbo/wavs/igbo_train_00167.mp3 b/prepared_data/igbo/wavs/igbo_train_00167.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..403225c4f5b3aff642a27d3aa376f1c1ebb2575c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00167.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f8e99e4121b539b0199db429316cd07ae1d18393151af57956e8177712bdbe +size 41085 diff --git a/prepared_data/igbo/wavs/igbo_train_00168.mp3 b/prepared_data/igbo/wavs/igbo_train_00168.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5e6eb615f39c01dd026e9b30ede79b060e36bb58 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00168.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4972f850aad8111f367a6a0d16ae816e0c21553bdab70ba116d2648d1b32f91 +size 38493 diff --git a/prepared_data/igbo/wavs/igbo_train_00169.mp3 b/prepared_data/igbo/wavs/igbo_train_00169.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ea2d1c6b59acbef69fdf7331e83479de3024dc12 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00169.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8ee80a9b9f820070d39d0d381a1b7faffd9bdca2558692c4375c8645c03eb8 +size 38925 diff --git a/prepared_data/igbo/wavs/igbo_train_00170.mp3 b/prepared_data/igbo/wavs/igbo_train_00170.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..153ee75733ceaebce73673aef099f447b2675760 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00170.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7152f12018bdc4d45f69d5634617918d002591a578540be474b4b133ef1218d +size 20133 diff --git a/prepared_data/igbo/wavs/igbo_train_00171.mp3 b/prepared_data/igbo/wavs/igbo_train_00171.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..56fd5d403dc43c1e83bf7fa01c9e774fec051c58 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00171.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56223e9b9c9c19a7254be1b52e6d106b1978b8f283473d5e9d88c41de4afdcd0 +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00172.mp3 b/prepared_data/igbo/wavs/igbo_train_00172.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d7273ef9e9179e00101f2f903b230b0fbf28155 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00172.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c36dcbef6149123df92036d2823fd4ec71a00668609342c29cd92e395c945d3 +size 14301 diff --git a/prepared_data/igbo/wavs/igbo_train_00173.mp3 b/prepared_data/igbo/wavs/igbo_train_00173.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9adf9a19adefe8f7dff0613f21257b0606e63967 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00173.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fd6219c9aaa19486cb4078855fc9e446c9519f84a05e1db48f5c13ca46bb78 +size 34173 diff --git a/prepared_data/igbo/wavs/igbo_train_00174.mp3 b/prepared_data/igbo/wavs/igbo_train_00174.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dc06c766cb42cebd2f68c1823edff1aceb8624b5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00174.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc582b23d48fd036d23085372144e9bc90bbde929f846b2faca7645e3b8950c +size 35685 diff --git a/prepared_data/igbo/wavs/igbo_train_00175.mp3 b/prepared_data/igbo/wavs/igbo_train_00175.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d0b306ab8ce820a7af0e8b70a8d5b8b0e147ba3e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00175.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd38ca70d5377489e361cb1b9b1dd91a445fc955f304f74527ede03114867a9 +size 16893 diff --git a/prepared_data/igbo/wavs/igbo_train_00176.mp3 b/prepared_data/igbo/wavs/igbo_train_00176.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2a2286945c40ee13c099ba0263900ab64daae76f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00176.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7818351b81ccec5adb4e8e06bac73f798224f4f73f7bfa95efedf635d80e933 +size 18405 diff --git a/prepared_data/igbo/wavs/igbo_train_00177.mp3 b/prepared_data/igbo/wavs/igbo_train_00177.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9db12ff61006215489b187b441acb1bb8abd27e5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00177.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581997a5464acbabb612ea51aa6e68c371b714123e43f04fe044329c042ff0dd +size 45405 diff --git a/prepared_data/igbo/wavs/igbo_train_00178.mp3 b/prepared_data/igbo/wavs/igbo_train_00178.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2fd032650494a4b02b44cee7c357c9faa1a31d39 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00178.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781e1382c80b35836517ec1d482d768a5c4cb56a081638e11af566a4fa99dc58 +size 56205 diff --git a/prepared_data/igbo/wavs/igbo_train_00179.mp3 b/prepared_data/igbo/wavs/igbo_train_00179.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2b599ec32285085ffc51166aa5fa2f85630cbf54 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00179.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702b8b87918757fc065757a3758ba3096ec5a60de24ba6546f3b0ac982d301f2 +size 17973 diff --git a/prepared_data/igbo/wavs/igbo_train_00180.mp3 b/prepared_data/igbo/wavs/igbo_train_00180.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2914f9359db82eb01832f6fe5c566c0df28d8e5b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00180.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5576ff96aeb1e93fd73f873a20e5dad47944c8c118c0f875672fcf8b8b9938 +size 46053 diff --git a/prepared_data/igbo/wavs/igbo_train_00181.mp3 b/prepared_data/igbo/wavs/igbo_train_00181.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a05a589df2e599267e68fd9dc03b2bd61013d0f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00181.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca681388ccec898642a9c536c9a5ec562a1c4758ed64fee9d73f399a5b16ab5c +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00182.mp3 b/prepared_data/igbo/wavs/igbo_train_00182.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e83064bc3d1d76be29c7445d6e5921e10386d955 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00182.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ca6e403024dbf016b0caf8568822b4a55fe423631656c619e588877508644d +size 15813 diff --git a/prepared_data/igbo/wavs/igbo_train_00183.mp3 b/prepared_data/igbo/wavs/igbo_train_00183.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5248e93f2a8f9330436e2786f0263de8ff423729 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00183.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42695e0bbb10b01344604bcd479437cbb6c4629e78aa63403970fc3650fecd0b +size 18621 diff --git a/prepared_data/igbo/wavs/igbo_train_00184.mp3 b/prepared_data/igbo/wavs/igbo_train_00184.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c216b6545a03fcb92d13d839e55a1cae1dd6237e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00184.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a223dd0ac27d6c56628790872f14adf1050948adac10db613f3f2fb4d1e32d14 +size 46485 diff --git a/prepared_data/igbo/wavs/igbo_train_00185.mp3 b/prepared_data/igbo/wavs/igbo_train_00185.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e561075829d1d161768a1be8270ea90867e8d047 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00185.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1913bc3ab006a533669013f6de1c2306deaa0663194beef63d2e8adf5dac14 +size 17973 diff --git a/prepared_data/igbo/wavs/igbo_train_00186.mp3 b/prepared_data/igbo/wavs/igbo_train_00186.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d2ba8f04ac890d3e87be7dedc1cb643c1d1d4b1d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00186.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80fd14ddaed912090df7fd82e1b1bf39d6dd57e6ca1b82f545a3302facccecd +size 20133 diff --git a/prepared_data/igbo/wavs/igbo_train_00187.mp3 b/prepared_data/igbo/wavs/igbo_train_00187.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d8db0fbaec254bcb5b5551ff59ca5962be065ccd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00187.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fedaa527eae2429b17276b5837c6e53bb85e09a02eb54ffb2e1a1a4305ad368 +size 28773 diff --git a/prepared_data/igbo/wavs/igbo_train_00188.mp3 b/prepared_data/igbo/wavs/igbo_train_00188.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d7b76a3d5eb5c93a24c7fbd5be6ed806de3174c3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00188.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e023ae8f9bf64eb828b63c3bae7be1dbd479afb7155f0900097b21fc44e4942 +size 27693 diff --git a/prepared_data/igbo/wavs/igbo_train_00189.mp3 b/prepared_data/igbo/wavs/igbo_train_00189.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3013fd1844946b55e99ee92396f0fef99fa0d9ee --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00189.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d49c7ab3e557e1b3bab3a5ca1940b9314996c88899bdc41ce7efdf7657c830a +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00190.mp3 b/prepared_data/igbo/wavs/igbo_train_00190.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b72cac7cd48d15e366d4f95f08141c2c83192371 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00190.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb04ee57a413e7c014730907d1155de74e21a806ef1de02167441cddd715a0cd +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00191.mp3 b/prepared_data/igbo/wavs/igbo_train_00191.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b41757f32be52f1814a5d0e18d071c5870b8cccd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00191.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370e52ba598e9938930314f53059a13314fac9316555a5e26a0f58d3b82165d2 +size 40005 diff --git a/prepared_data/igbo/wavs/igbo_train_00192.mp3 b/prepared_data/igbo/wavs/igbo_train_00192.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4d9b56ce6627f13aebb6e06a67bd148c1aa34cd0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00192.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2669f9501cce2717d2151dc95b9ae6efaa2585d9b6c7326b28c621f51ae16a2 +size 19485 diff --git a/prepared_data/igbo/wavs/igbo_train_00193.mp3 b/prepared_data/igbo/wavs/igbo_train_00193.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..636391d35d82fa747ca26fb1a7661c9cfd8692e1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00193.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa3c5932968e46f997e9d64a24d68430da3275a1b1c283b16d22d979d1fd1af +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00194.mp3 b/prepared_data/igbo/wavs/igbo_train_00194.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1c39f67118c622cb5aa7c801901f8eb1d59000a5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00194.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f3eebbd15b42e1d4a7e89d929f0960ecaaff5adc5af9bd9c68a5f65bc86b1b0 +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00195.mp3 b/prepared_data/igbo/wavs/igbo_train_00195.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..af5c968cd1b92fd147916f7ff239be2c5efbe220 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00195.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314f964fed0ca16996eca8c66b429e7136883661454273f055dac8fd3db4210f +size 44325 diff --git a/prepared_data/igbo/wavs/igbo_train_00196.mp3 b/prepared_data/igbo/wavs/igbo_train_00196.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d5fdb102e1749f8779dbe49cea2ab905967e38fc --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00196.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3599c927ba7a7b31532d585433615a110f7ed4a8295d36579060be627460a945 +size 36765 diff --git a/prepared_data/igbo/wavs/igbo_train_00197.mp3 b/prepared_data/igbo/wavs/igbo_train_00197.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6bd7f27d07c65317e09ed5f64cae3d29b62ac230 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00197.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74badc0b191b01a24691c96e70972c5edf4681500df9c25c4d666d03daee16de +size 20133 diff --git a/prepared_data/igbo/wavs/igbo_train_00198.mp3 b/prepared_data/igbo/wavs/igbo_train_00198.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e5da343ecf49798286c71af633b088e9ee1df38b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00198.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f4b954d2ef495ffb71563ef2e3de3b5e72f10707554aac244befd71b64db2a +size 29421 diff --git a/prepared_data/igbo/wavs/igbo_train_00199.mp3 b/prepared_data/igbo/wavs/igbo_train_00199.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eb1afb4242d8a25d6d580914198f2bb036397eb8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00199.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e8a83f7de2d284937fe7cea5c301759f5fab38dbaad77cb2ce25131e7a9a90 +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00200.mp3 b/prepared_data/igbo/wavs/igbo_train_00200.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bf4fe38c36673e42f938c22884f167fa48e49210 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00200.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6bf6c026b489272eccd4c782a375c72909a30b0eac19b005877893cd08ab34 +size 38493 diff --git a/prepared_data/igbo/wavs/igbo_train_00201.mp3 b/prepared_data/igbo/wavs/igbo_train_00201.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bf582db8f74a4eea09946aeaefc3b5f2441ca91f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00201.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ecdd5888e71263d5ddf73a67c9dec196ef2c841659579c1ef1859d91d6b8b1 +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00202.mp3 b/prepared_data/igbo/wavs/igbo_train_00202.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5ca711169aa62f9844f8f666daef27245997852d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00202.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcedc37d288f18da703549e8f626d89b329ee7191a7a45de2a431974f7985fdf +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00203.mp3 b/prepared_data/igbo/wavs/igbo_train_00203.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d2502c711ac47cf3c34f5103e89b3109a907e923 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00203.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1146304911a11ad599b6ac63fb4c3305a9e9107dfeb7aa49251313770a66efb0 +size 43893 diff --git a/prepared_data/igbo/wavs/igbo_train_00204.mp3 b/prepared_data/igbo/wavs/igbo_train_00204.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..20466d4422cce4a95ac93a9fa8b2f9b75d70ed78 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00204.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d6b321bea1307d5db811c93bc69114878100ac4e67386f4a2beedd59649e48 +size 36333 diff --git a/prepared_data/igbo/wavs/igbo_train_00205.mp3 b/prepared_data/igbo/wavs/igbo_train_00205.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0538eba14ccfd974bb3f4ab0e90c26be39551bc3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00205.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047fea20a9e80f4faa700101a337cf46c546725f35ee562bdbf6cd166e65e9dd +size 16893 diff --git a/prepared_data/igbo/wavs/igbo_train_00206.mp3 b/prepared_data/igbo/wavs/igbo_train_00206.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c93265005fc3ad1279d11a878513e389c8a7bbc6 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00206.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813a3ce921eac8f031fbc66e3f1b7a2e119d59bfdfe2b76a3c50ff3ac4f0f61a +size 28341 diff --git a/prepared_data/igbo/wavs/igbo_train_00207.mp3 b/prepared_data/igbo/wavs/igbo_train_00207.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f3d54db5ffd1d564601d8620e5163d57ff0c4ca4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00207.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d07942a327580fe1e864fc1ce0dc3ffbc62a6e2e7b12b61af0969b10b206a1 +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00208.mp3 b/prepared_data/igbo/wavs/igbo_train_00208.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ee2631b64e1448b317cadce883ab6222aa89e22e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00208.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2352d2feafc55531636deb8bab1f93234a1307e1a062c85d93fe20b5339658b1 +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00209.mp3 b/prepared_data/igbo/wavs/igbo_train_00209.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..06d86bcb8e09de9a98e091220736836c3a48b037 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00209.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3352867437e57b685d3536f92b60a370187e49504f2bf8d5c4923add566ad3c6 +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00210.mp3 b/prepared_data/igbo/wavs/igbo_train_00210.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..31542c53de5a356472aabc53e81c4b1520b16f76 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00210.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d48be23d60c3679e732f0ab8503e87abeabf051ca76eea81ee19dbe743a92ae +size 33741 diff --git a/prepared_data/igbo/wavs/igbo_train_00211.mp3 b/prepared_data/igbo/wavs/igbo_train_00211.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..91ac1d6143cbdfea379ce7e2bbbffb1034db7d0a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00211.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c8f0054359d623a247cbf6efe75747573af6bd75883cd1f0c5895170869733 +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00212.mp3 b/prepared_data/igbo/wavs/igbo_train_00212.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..63f256573be36c8cb3f7e8fabf317e9f35248d1c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00212.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eb8571e255781367b487ed36d53801c789bf26713ed965b7e9dd7f65be80b88 +size 26181 diff --git a/prepared_data/igbo/wavs/igbo_train_00213.mp3 b/prepared_data/igbo/wavs/igbo_train_00213.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d3e6f1afa87eec581e62b60ba5755c44168df163 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00213.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018cee584366f7352a5948c85d66c458963caf3bb234fb7df2e40b6529967cfc +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00214.mp3 b/prepared_data/igbo/wavs/igbo_train_00214.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..88d4c4b100a1c1a3fa44d784496407a59ed21967 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00214.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ec5efa06f6ba5d6fff14fe6d9c531ff9c0b8daca55b690a7e72f7287b25508 +size 46701 diff --git a/prepared_data/igbo/wavs/igbo_train_00215.mp3 b/prepared_data/igbo/wavs/igbo_train_00215.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8a78ed8c537820de555896458ce2fd805117b2ca --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00215.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e08b4729ccb517e0ce5a1d6efb0a7b01456aef0a92b7acc1e8457166df9a8e9 +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00216.mp3 b/prepared_data/igbo/wavs/igbo_train_00216.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d1105b6732c43ea34fa0ea2235e1ad3ec5526ca4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00216.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b15ce13670831db415345fb62f0d4ebe8aa8a8a331a9ac6ce3f34c2b0464a5d0 +size 31581 diff --git a/prepared_data/igbo/wavs/igbo_train_00217.mp3 b/prepared_data/igbo/wavs/igbo_train_00217.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d193fea832682d1af6dc63ce5b1058d843802eca --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00217.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b209482e0fa626bc77b6ddf0b88d7e5b26e6b11e8d91bfdf6aa5681aac88bd +size 28773 diff --git a/prepared_data/igbo/wavs/igbo_train_00218.mp3 b/prepared_data/igbo/wavs/igbo_train_00218.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3ee670ea91fbb7272eb722e6ef84497b6f535c82 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00218.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f3a7f0afd379199348868d0968a251c074bafbb4dfbd4b33eac41b0bed1b99 +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00219.mp3 b/prepared_data/igbo/wavs/igbo_train_00219.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f8d284d34f54ea526d2e40801f6538767adf8519 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00219.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0060c988da65d186cbcaaafa1cdc13f3926b8df46bac65c8b775e483dc796c9 +size 40221 diff --git a/prepared_data/igbo/wavs/igbo_train_00220.mp3 b/prepared_data/igbo/wavs/igbo_train_00220.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2449519f46a4e8e982efcce588056cd90bf2cd65 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00220.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a149a80312b8f6f011b8197cfdba8f1fa42db5aff4034cfcbd39c0f851ec771 +size 25965 diff --git a/prepared_data/igbo/wavs/igbo_train_00221.mp3 b/prepared_data/igbo/wavs/igbo_train_00221.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9f651394f1a0746716b8da321c5c0bdab64edc2e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00221.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db5534580de04cc58e9d4f0439dadd4d4c9d09ac40a52a4a526491cdfd73ccc +size 49725 diff --git a/prepared_data/igbo/wavs/igbo_train_00222.mp3 b/prepared_data/igbo/wavs/igbo_train_00222.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..22eb47bb6894624c4b81cdf7e5c4e2eb885610ff --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00222.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a62eb088df5b4f584af9b12a0bd622829ab826be9eabf494c00d1af58869db +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00223.mp3 b/prepared_data/igbo/wavs/igbo_train_00223.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dd8c21447d2f7d54df876cc5088891dbc7a288fb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00223.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635518257e8e5a6d56833407051313ef2b0c5b437ad85faa5dfcaeccb02cfb48 +size 27261 diff --git a/prepared_data/igbo/wavs/igbo_train_00224.mp3 b/prepared_data/igbo/wavs/igbo_train_00224.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cb690503e69c81b1753309d66cd92f1f9c06b529 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00224.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499ad8de381df62852d07ed5f8d3dc1b332b3583318ca14f09cb391b922f4097 +size 33525 diff --git a/prepared_data/igbo/wavs/igbo_train_00225.mp3 b/prepared_data/igbo/wavs/igbo_train_00225.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b2b7b12b138a2c1841ea7602e0719532d8f94820 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00225.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a11b257cd97c7aee5d29c632aa41171381eacfd91afd233229bae9e256d50e +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00226.mp3 b/prepared_data/igbo/wavs/igbo_train_00226.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4090d00ac641fabe8fc725d4c5b8ba23284872d8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00226.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032a6f2d5a3388762e69be59eff915265d8feee781da0bbe52e30dd5f6629b99 +size 28773 diff --git a/prepared_data/igbo/wavs/igbo_train_00227.mp3 b/prepared_data/igbo/wavs/igbo_train_00227.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a7261e1b02786a4218c9bd79cef6b021272e235f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00227.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e66fa2114c9397810c2861e307da8f1077cdf23b7f5558965aaa4b31d292d4 +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00228.mp3 b/prepared_data/igbo/wavs/igbo_train_00228.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ec66dd8d1e3491b4e01733d85f47f097d8d9c84e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00228.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475065d7f39d5b7c2d828fa0b2459a8f31a2c713ed36ae2d4d61edae093f795d +size 53613 diff --git a/prepared_data/igbo/wavs/igbo_train_00229.mp3 b/prepared_data/igbo/wavs/igbo_train_00229.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c9cff575db1b892b160a15834a2e474beebac9fe --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00229.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66669a9b6c992d4a14fb9afaacaada9a9cca3c50c387b82f01d3a6fe07bcce1c +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00230.mp3 b/prepared_data/igbo/wavs/igbo_train_00230.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..527a1fb918954549b2bf4edf6ab260c591758ef6 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00230.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e7135a8d70465efcf3b9409909094f41e00aa6a88e391c62b7242743d74eb9 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00231.mp3 b/prepared_data/igbo/wavs/igbo_train_00231.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c3dabdbc590a80d8855f065f1edfbc9115738ca0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00231.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc92208522b6366b56b3dff4096824c5192e7a23c0a95690fb21f302b991723 +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00232.mp3 b/prepared_data/igbo/wavs/igbo_train_00232.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..80cc729394731183dee706ac8f51f7c64afef65a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00232.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04874dcf96cee73e2b32e5f615df3e804e58afdfd15da068bb373ced647816e0 +size 47133 diff --git a/prepared_data/igbo/wavs/igbo_train_00233.mp3 b/prepared_data/igbo/wavs/igbo_train_00233.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7cb76f0206ae6f62b89ae9e95451f680db141041 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00233.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23a605d1be0d36727f9846050c7dac19d61e9d1d908e7bec8736bd6831edb4a +size 46701 diff --git a/prepared_data/igbo/wavs/igbo_train_00234.mp3 b/prepared_data/igbo/wavs/igbo_train_00234.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1aaf7fccf88a85af3db4c13b0c301bdca70dc701 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00234.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f20c85c19192c6d9a6e018437c9c72d2a3db6af113d35180db38aa051beb2ac +size 18405 diff --git a/prepared_data/igbo/wavs/igbo_train_00235.mp3 b/prepared_data/igbo/wavs/igbo_train_00235.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1ebfd7d456579d6131c026c6c4aa0431a722fdf3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00235.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8976bea182586bb66ac26714cf43f311c4f248cc4920b19a27a07dd6f12c7c95 +size 16461 diff --git a/prepared_data/igbo/wavs/igbo_train_00236.mp3 b/prepared_data/igbo/wavs/igbo_train_00236.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..100bcf823b2f81632cd5e85da7eed1102c10c231 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00236.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73025048245b0245daeedcfd494587887e378039a9af0d1596e659ae7114337 +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00237.mp3 b/prepared_data/igbo/wavs/igbo_train_00237.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..71e79ad59dac3a5436331808a492ddb4384c03a8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00237.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8088ae8ad058db9df1181c993d536bfe7d0a7805db1ab085e351bec807d0ee +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00238.mp3 b/prepared_data/igbo/wavs/igbo_train_00238.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..838036b617744eced275b7a77582f94652c528fd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00238.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebde7e3da9b954b0cc8baaf471c09a00f4222ac921fafc85ad714221ab01f643 +size 9765 diff --git a/prepared_data/igbo/wavs/igbo_train_00239.mp3 b/prepared_data/igbo/wavs/igbo_train_00239.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4a53c38cbcdcafd6a3a13641c112fe649d60e6ec --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00239.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5e47780170f63feb9a435ec5e77036c2fdb130bbaa89420cd7d8dbf57b561f +size 37413 diff --git a/prepared_data/igbo/wavs/igbo_train_00240.mp3 b/prepared_data/igbo/wavs/igbo_train_00240.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..102e863078c88fb2210028c4e5a81622ff7cf938 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00240.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab10aec367f04ec5ec7e5f74d4f7422bd17bb7447fea731bd19882573ff1c912 +size 11493 diff --git a/prepared_data/igbo/wavs/igbo_train_00241.mp3 b/prepared_data/igbo/wavs/igbo_train_00241.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..79c0cd58463490bfdec1bc43fd1b3248d67bea2a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00241.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba382116221a04faf37f266eeee3c0f3ea4d6b2021d682ece6314ddf8b05fa01 +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00242.mp3 b/prepared_data/igbo/wavs/igbo_train_00242.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dbeb6e7c28a9097b43805886fb021d43c788d41b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00242.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e9af25f7f963d74a060ac05cf08effca769556ccbdf26f75e61b910db66cc3 +size 19701 diff --git a/prepared_data/igbo/wavs/igbo_train_00243.mp3 b/prepared_data/igbo/wavs/igbo_train_00243.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5786975eaf4106627f854cddb52588507d6de276 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00243.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314149af9e0b2277466b09cfb23fb9a8968f78f1b424ce35f18fd2a0fb5805e0 +size 38061 diff --git a/prepared_data/igbo/wavs/igbo_train_00244.mp3 b/prepared_data/igbo/wavs/igbo_train_00244.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..983b05fd7f20dcb36d9697e9f7a6d752cfd96c44 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00244.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba452f0ae4307ced8ae95488afbc65c769b9c27d4fed6603209d5ef0674b507 +size 25101 diff --git a/prepared_data/igbo/wavs/igbo_train_00245.mp3 b/prepared_data/igbo/wavs/igbo_train_00245.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d3696842091b69820259e3809c8bd154ad1611e9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00245.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bedeb3ae89c0980147a155c2827e00ff6f9bba4f0c9667229cda6d94ff4d96a +size 26181 diff --git a/prepared_data/igbo/wavs/igbo_train_00246.mp3 b/prepared_data/igbo/wavs/igbo_train_00246.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..46f682f2674833ae80ba921544bf4812b1bb38ea --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00246.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7897fa2eaac9c8627a759a45fc772fc305e9f20bcd5139add318554449649ee5 +size 25965 diff --git a/prepared_data/igbo/wavs/igbo_train_00247.mp3 b/prepared_data/igbo/wavs/igbo_train_00247.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6234b3c1cb64d7a489026ddfc4878ba4bdd23b0a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00247.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fcc4abbe80f96c3f0e91e1abd40b72785215792d40d539d32460a158f9154a +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00248.mp3 b/prepared_data/igbo/wavs/igbo_train_00248.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1aeec556212c95389f2270650c4cac6efd50a5ff --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00248.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea6de1bdcba5ac3c7e67f5a4e4d399ce2afeeed852d25491888863dcc62d484 +size 49725 diff --git a/prepared_data/igbo/wavs/igbo_train_00249.mp3 b/prepared_data/igbo/wavs/igbo_train_00249.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5263b0c2f8205daaf8ad5deb2530ebca626668fd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00249.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3017695b59e1799c985f0e6886e11290ae8898afb63a2815386231c665b8c2ee +size 56205 diff --git a/prepared_data/igbo/wavs/igbo_train_00250.mp3 b/prepared_data/igbo/wavs/igbo_train_00250.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d18f0c8bb4216fb53f1ce02444bf95542976aabe --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00250.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ff07e89129076cd15ea7602a27eb33e259b70064a82641e2c767327b4a9885 +size 53181 diff --git a/prepared_data/igbo/wavs/igbo_train_00251.mp3 b/prepared_data/igbo/wavs/igbo_train_00251.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5fee5b45bf11b0ed945467775cd905e4342dfac --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00251.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f82d58c7448b7801ae30bce90dad3c9d738d7d4390c91246ba0e4b8bd24e76f0 +size 29421 diff --git a/prepared_data/igbo/wavs/igbo_train_00252.mp3 b/prepared_data/igbo/wavs/igbo_train_00252.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8d027ad925151c6fd195e0a391e4016169a113a1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00252.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56fb66dfa5125707f6678d2f6ff3649b62b1a2f0a3ed1f9d81b309e326ff3cd +size 33525 diff --git a/prepared_data/igbo/wavs/igbo_train_00253.mp3 b/prepared_data/igbo/wavs/igbo_train_00253.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b10f08f68e60d638a07010479af419bc137b139 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00253.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b788ba5ef79f5d66ec59b45239e9f0ac2b5528e5e2a13998f4ea26e17ed791b7 +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00254.mp3 b/prepared_data/igbo/wavs/igbo_train_00254.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e91243a7d0d17b2bf80ea8fd8b840a6820276a5c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00254.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83ad21322e71bf0e1e0eb580df26367cd27b53057d9b16f9974c4cd641dbe1d +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00255.mp3 b/prepared_data/igbo/wavs/igbo_train_00255.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d2545a4c0de1fb2477f99ae0e3827ea9df0bb1d0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00255.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9595e0a086c3a9cc36459d83d276a4fc2d16e08ffa350aae1c6a92355e09a956 +size 38493 diff --git a/prepared_data/igbo/wavs/igbo_train_00256.mp3 b/prepared_data/igbo/wavs/igbo_train_00256.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5b31de12fd1645581ab0166e0a4969b454e38c9e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00256.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fdc115095926ca56a933fbbc0d232dc0633282e87b57f0c5b51f064f879af88 +size 38925 diff --git a/prepared_data/igbo/wavs/igbo_train_00257.mp3 b/prepared_data/igbo/wavs/igbo_train_00257.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f8715ca7966937edf69f8e45a4b57a1827476bf4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00257.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4d66f40a39568df634b6db5a7408830b3954ba32e314974c63ee5572336e3e1 +size 21213 diff --git a/prepared_data/igbo/wavs/igbo_train_00258.mp3 b/prepared_data/igbo/wavs/igbo_train_00258.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2b3fd5b6f4c210aa846914cd3a8823f992743a96 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00258.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a349d59902009407f0f6085df0aa9af931bf0407d41cf18e65631aa0f0aa7021 +size 35253 diff --git a/prepared_data/igbo/wavs/igbo_train_00259.mp3 b/prepared_data/igbo/wavs/igbo_train_00259.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b68b831f7ef4a45efc6dc9cf871c59e2aedb3d8b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00259.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4eaea3dad01af3bb029ea4313ff4872790caa03182ba9da3c53aba3a292622 +size 22941 diff --git a/prepared_data/igbo/wavs/igbo_train_00260.mp3 b/prepared_data/igbo/wavs/igbo_train_00260.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..26a1722c518400ed7d67ba6720359d043391aae1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00260.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863c41b4ab917138390d3a2586231ca5080abca0b8fbf32987e1fc0921c70a8a +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00261.mp3 b/prepared_data/igbo/wavs/igbo_train_00261.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..08d0cc91940d74c746c5e6eb258fb165d6225f4e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00261.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3925b3d57351534b85af71bc6edb238bd58a07b84ab7ac0278f7d231d4fe37a6 +size 10413 diff --git a/prepared_data/igbo/wavs/igbo_train_00262.mp3 b/prepared_data/igbo/wavs/igbo_train_00262.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9356d696f02766642c127e6fff3f5ac27849e3ce --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00262.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62041496528c996913ccd1eb29d6b0e4f12104e28955d8e83a61d08c75762f18 +size 33741 diff --git a/prepared_data/igbo/wavs/igbo_train_00263.mp3 b/prepared_data/igbo/wavs/igbo_train_00263.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..72c257bad774b4307e9d585ddd6b56f83e0f9fa2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00263.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8204680d74ff821cd25d93acf84106ed0943c80e9375b521a500df1f8c5ce134 +size 34821 diff --git a/prepared_data/igbo/wavs/igbo_train_00264.mp3 b/prepared_data/igbo/wavs/igbo_train_00264.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..35cf8aa9ecbb440ffcb9eb17d9fa4c1dce23ccd7 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00264.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770521239f8c921287c74b0ac4407b9e45dccb00ddea67bcd44bb650a2bd69c6 +size 31581 diff --git a/prepared_data/igbo/wavs/igbo_train_00265.mp3 b/prepared_data/igbo/wavs/igbo_train_00265.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ddf1ee7275205664fda00901bd365bc993fbac14 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00265.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a4fdcb5f52c0ecb3c72838a961fcf2a830495764dae1272eb764853de8f4ef +size 14301 diff --git a/prepared_data/igbo/wavs/igbo_train_00266.mp3 b/prepared_data/igbo/wavs/igbo_train_00266.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..48a9349ad38170d81922bae97e1c1925cbc8a9e4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00266.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f590170d519838b9d8d020cb97f246fb4d0de54740cfed3ae76a5bf14aaefa7c +size 47565 diff --git a/prepared_data/igbo/wavs/igbo_train_00267.mp3 b/prepared_data/igbo/wavs/igbo_train_00267.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d7ff3d1dfe5ae7a988409d08d7096465674d1c30 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00267.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f434094e6019610199f6c95f7e72e9d646ed64c1337970164eeb7aeca59c26a1 +size 24885 diff --git a/prepared_data/igbo/wavs/igbo_train_00268.mp3 b/prepared_data/igbo/wavs/igbo_train_00268.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e740c5fc1281563d04c6c0f6e005d39654cf87af --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00268.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3072f7287c552b0f025822e0b14d341275384c695c61732f4e01f9ca44668e74 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00269.mp3 b/prepared_data/igbo/wavs/igbo_train_00269.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..573762bb5a55db563e0be0248809428240ccfe70 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00269.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc68225a8b216bb3e1176743970d536bed7922f48ca6d83cbb5f680536e2fd7e +size 16245 diff --git a/prepared_data/igbo/wavs/igbo_train_00270.mp3 b/prepared_data/igbo/wavs/igbo_train_00270.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0e5e494938df8b66da64181def8b50d826c8284a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00270.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8dfc772a3432ae471a94a3879490ebc79c6a6f3c620576901ff3afc9879367 +size 27693 diff --git a/prepared_data/igbo/wavs/igbo_train_00271.mp3 b/prepared_data/igbo/wavs/igbo_train_00271.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..020b0072050799e57d1f7eb60fd6f54b67538afa --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00271.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4071a2fc7ac31e7ad49d1d94bc7b1810bd1e5a9a3a0bb23a3b14ad1cc6defbea +size 49293 diff --git a/prepared_data/igbo/wavs/igbo_train_00272.mp3 b/prepared_data/igbo/wavs/igbo_train_00272.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d3c34c3e36709ac932877163355dad2f48ac4ceb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00272.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1946c26643cbddaa7772890c26ff3c6ec9951ddf8da43c43274c18ce7657ec19 +size 11061 diff --git a/prepared_data/igbo/wavs/igbo_train_00273.mp3 b/prepared_data/igbo/wavs/igbo_train_00273.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ff64c6366e545d2dd4249d5588681d8c873eb6dc --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00273.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4181ee281b92eb60dda5e641f687d208c007c6d3a867333ae1fa9251abb50f8 +size 30285 diff --git a/prepared_data/igbo/wavs/igbo_train_00274.mp3 b/prepared_data/igbo/wavs/igbo_train_00274.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d904d7c9e7abe9a55ca8334459e8bbeec1aa6d9d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00274.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de93cb1351f0563003e419e498a1d0ceafccd03f3750d400a8db36fec52b4639 +size 41301 diff --git a/prepared_data/igbo/wavs/igbo_train_00275.mp3 b/prepared_data/igbo/wavs/igbo_train_00275.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..44cdb2a80fb0320c78e8842e288fcc9adc5596b9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00275.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b595c45d93778bb92f2e6033c7aa2a621ebb3454369332798e40d929bc66ee +size 14301 diff --git a/prepared_data/igbo/wavs/igbo_train_00276.mp3 b/prepared_data/igbo/wavs/igbo_train_00276.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..777b017f09a15f0df984efa08e5f4f2538049b5a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00276.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c1d5a951feac69eaf44439fa4c43c1086e194e3047091d5d84e9d63cfcda3b +size 15813 diff --git a/prepared_data/igbo/wavs/igbo_train_00277.mp3 b/prepared_data/igbo/wavs/igbo_train_00277.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e6b2d2801419ad99b86baab1426d79e7146785ad --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00277.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf820e5525b886802702253bc6c40e15e7b03e6425588d2a4024e930c77fc32 +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00278.mp3 b/prepared_data/igbo/wavs/igbo_train_00278.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5b5b080635224b8903cfe8e9e4dc37175059efe2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00278.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225cd0f81f4e7a22559b07e223f32a864a4ba107bf1a53e61b86b8ca541abcad +size 17973 diff --git a/prepared_data/igbo/wavs/igbo_train_00279.mp3 b/prepared_data/igbo/wavs/igbo_train_00279.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d86f0438436ae89bd37150e3a7d806ff5f2837e4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00279.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd6970772f81d279556097ec9947f13ebb6749b927f8382470b5a7104a577fa +size 16245 diff --git a/prepared_data/igbo/wavs/igbo_train_00280.mp3 b/prepared_data/igbo/wavs/igbo_train_00280.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d40fc0fc7e702e50bb5c456334f9a6caea2e7c4c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00280.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6dd7b640699a83ece9db5530f1b65b417ebd158a0b94b245c5679d2b902cd51 +size 57501 diff --git a/prepared_data/igbo/wavs/igbo_train_00281.mp3 b/prepared_data/igbo/wavs/igbo_train_00281.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0ef936029c5a78283084e597862a1268f84e5ba0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00281.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d70c4d8eb057815b6650b78c38d51ba0ef59e496a20936fb7e284150ede2631 +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00282.mp3 b/prepared_data/igbo/wavs/igbo_train_00282.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4a86482e830bf61b35bcbb183a65ec007ecd8b41 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00282.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5fba2936bc8c15d11098d653690d7732957eaf3aa92bd67038b809ed29a4bd +size 16461 diff --git a/prepared_data/igbo/wavs/igbo_train_00283.mp3 b/prepared_data/igbo/wavs/igbo_train_00283.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d44a7488e5f48538f9d652c600dcf685972614ac --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00283.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b592444fccd05393fa6729ac946a237e1f1fbaaa97597534cc6ceda4946b815 +size 15165 diff --git a/prepared_data/igbo/wavs/igbo_train_00284.mp3 b/prepared_data/igbo/wavs/igbo_train_00284.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..35b954a562335b269d0ef97a8f986e635cdf2fe2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00284.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ddeaa09c30c3ab933c94824bfc29d2a206834bbd24b9148b1e1e24513c4a033 +size 39573 diff --git a/prepared_data/igbo/wavs/igbo_train_00285.mp3 b/prepared_data/igbo/wavs/igbo_train_00285.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..73a30d5aeb2d511d3fa4abdb2a2bcaca6be4a45c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00285.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2279d1b8ac9e3d5ca20e98cafd5b6925b4d5deaf65838ffaa0f13b4f6534b6a7 +size 31581 diff --git a/prepared_data/igbo/wavs/igbo_train_00286.mp3 b/prepared_data/igbo/wavs/igbo_train_00286.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..51f7e0eff8f6c7326663ef5ed1a3daf1260bbe6c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00286.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9c3101e4d06ecf06c2c670c4db462e4b71c8982cc91db2d8e7918cf819844b +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00287.mp3 b/prepared_data/igbo/wavs/igbo_train_00287.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4fc8713793c02cc927849ca6b2b9f0101bc79026 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00287.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f138e06687449c0865c7570a1dedd9c639e07b26b973cc148fb24b291caf3706 +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00288.mp3 b/prepared_data/igbo/wavs/igbo_train_00288.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..86367a080981acc3a0987ab19a22939fefd7cf5b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00288.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4725eda9f4fc9d0aca216af8f39e191ea6cc8de5bc0ebb8a11182e489bd44404 +size 19053 diff --git a/prepared_data/igbo/wavs/igbo_train_00289.mp3 b/prepared_data/igbo/wavs/igbo_train_00289.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0692b7bcd57dab15b81de02ff9b2ce8eda7f752f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00289.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17859ea31775985074ec6120196c3777e9f18a9903ccde712416c2c5b6632504 +size 18621 diff --git a/prepared_data/igbo/wavs/igbo_train_00290.mp3 b/prepared_data/igbo/wavs/igbo_train_00290.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..20aa439341b32f47b914ff43f406e83be5f98437 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00290.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:195065c1739aaa91d9e1764fae2de04ab3218147a0578dabb457cb1ba431358a +size 59013 diff --git a/prepared_data/igbo/wavs/igbo_train_00291.mp3 b/prepared_data/igbo/wavs/igbo_train_00291.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..59d8315734b3a186e6c094197e657e978a92b399 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00291.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bc31b2603bce554de58f329bff32bb016635031c2ed64494c707852e183ee2 +size 22725 diff --git a/prepared_data/igbo/wavs/igbo_train_00292.mp3 b/prepared_data/igbo/wavs/igbo_train_00292.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3fd2c246c6308c132a25e3081d04fd222e681ef4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00292.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec85ff7886d4dcee933d7307b4d83cb21bc84016d7b8ed016949fff1673e1f00 +size 14301 diff --git a/prepared_data/igbo/wavs/igbo_train_00293.mp3 b/prepared_data/igbo/wavs/igbo_train_00293.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7bf2c7271738cbfc60fd1883768a2c811ed8ce5b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00293.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8c6f135110e107cfdb8b14d93d09340aa026724c0861ca0faf6c11d7c8173a +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00294.mp3 b/prepared_data/igbo/wavs/igbo_train_00294.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e5be17b58f740b5e637c5f8a5755e1e3f81eb8ae --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00294.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e03f1ee412da59ebea9698e98a712c3bfb45f1dcdb6acf5e09e368924a8d7f +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00295.mp3 b/prepared_data/igbo/wavs/igbo_train_00295.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d3b037cb04f33fbec71a36e138bd0794993518cb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00295.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f218dd126692833d42eeb555be572036769fe9325e009f899f4ca9918338be +size 55125 diff --git a/prepared_data/igbo/wavs/igbo_train_00296.mp3 b/prepared_data/igbo/wavs/igbo_train_00296.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de012021f7e254806363a1c80a217ae673b21288 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00296.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5256c417bbb4d55dd35d822314a180cb8d02697350dbe864de0f8b90fc4534 +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00297.mp3 b/prepared_data/igbo/wavs/igbo_train_00297.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b2cf11a80f68b9638a1a4a7d6dc882faaba0c1e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00297.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981798bd008837c12bfa0a48357fe4981f46bfa1f9a5655cc8d29e8bc4e195ca +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00298.mp3 b/prepared_data/igbo/wavs/igbo_train_00298.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ece69e72d140ecfc7bbfd43ab3a772eda4edf1db --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00298.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cccdde83de67ed89af629770142e970e1b677bfd2f8bde813aa6730fc17cc394 +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00299.mp3 b/prepared_data/igbo/wavs/igbo_train_00299.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7c2c6f2e130cbd73ffc24d6cc8b080e0c5f43183 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00299.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3471f9ebbf4901f1388420a8f6aaa13d8dd27c3ffe84a1be14d9a756a0946c2f +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00300.mp3 b/prepared_data/igbo/wavs/igbo_train_00300.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..581bca287c87c7ee40735d09b86ce4874de41400 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00300.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e98f87e92a6bf657e20160ef166e12c6f9b5d68ddee0731f4e640839227bc1 +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00301.mp3 b/prepared_data/igbo/wavs/igbo_train_00301.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d4d963c14701a229e509e9b17fada54dd7ec0071 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00301.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2e72e19c31c4caeae3ad3b06de371dc5a7fdd1aba55fe87541a6ae59c4ae8d +size 37413 diff --git a/prepared_data/igbo/wavs/igbo_train_00302.mp3 b/prepared_data/igbo/wavs/igbo_train_00302.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..25795aefc3f35cb06ac3e067bb156ff5810469f4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00302.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b87c16fa16edbffaffc42f13cc7fd3b32baca871adf090ebe1b7052b97f24f83 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00303.mp3 b/prepared_data/igbo/wavs/igbo_train_00303.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..91dd1755c43d87834966de3e5753446032100e4b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00303.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804f603f43e66c4a2671d6b8f72e36e367aa8689c6c06e869f9573b0785cce92 +size 29205 diff --git a/prepared_data/igbo/wavs/igbo_train_00304.mp3 b/prepared_data/igbo/wavs/igbo_train_00304.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..474f86000eb6b2c312bd6f84d622bbb8d6ad78da --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00304.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03452330d7bf2c94bf2eb688d0126191c8923e118a94cccf6bb7cbc00a3ef2a4 +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00305.mp3 b/prepared_data/igbo/wavs/igbo_train_00305.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f5ef3820017dfccbc0c57d53818fecb90192b780 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00305.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a376dc2f2e13094e503cdd4b7dadc07537140596a9dfda2e64f882d7543e3268 +size 47133 diff --git a/prepared_data/igbo/wavs/igbo_train_00306.mp3 b/prepared_data/igbo/wavs/igbo_train_00306.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..598b3a32d9de1a434ffc2c1e35cbf765274148ef --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00306.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36466bd9ded62591cf4f9617d03ad9f4e04c74061ecb5ec4a31adac440a0625d +size 28125 diff --git a/prepared_data/igbo/wavs/igbo_train_00307.mp3 b/prepared_data/igbo/wavs/igbo_train_00307.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..480f96d07a78ae3a3b59cc94c36d630131cacbbe --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00307.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ccc6c2b497532aef7d20b53fe17c685735a198b5aad276decec7d13cbb57e4 +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00308.mp3 b/prepared_data/igbo/wavs/igbo_train_00308.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5547cbae7b266ef4fbd76aa128e4924dab812269 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00308.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8119c75f9298503bd0bed5551c48adae3b2053179077e4b84771462bb74c49 +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00309.mp3 b/prepared_data/igbo/wavs/igbo_train_00309.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..842898c370f214ee111019d4628a06903f195b9e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00309.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5e1284fef9ace3f0a22e2edd8be6f64259a44225ea9cb644d47a952ac74b9f +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00310.mp3 b/prepared_data/igbo/wavs/igbo_train_00310.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..eec7e33e57a1ed05258d6fec4180bd6ef279674e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00310.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533f450231bf59b89527d67f33b5fc8068ead1277a57a0db8f45518b0a9cc23c +size 18405 diff --git a/prepared_data/igbo/wavs/igbo_train_00311.mp3 b/prepared_data/igbo/wavs/igbo_train_00311.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..30686092712154590e311753508efd8e21cea754 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00311.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80fa3835f5ba27b6e28788a790905819036a8743e7cb1c6907b541d4a4e6d72 +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00312.mp3 b/prepared_data/igbo/wavs/igbo_train_00312.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c6e6ee55c1e922a9c223215e87142e42ba9ae93c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00312.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cef611fa25d1ca4cd0fde527fa8f22643eda9f3208b28e6cffe1a8307d14927 +size 19053 diff --git a/prepared_data/igbo/wavs/igbo_train_00313.mp3 b/prepared_data/igbo/wavs/igbo_train_00313.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1b4f6e9a8d59d225e23978aa97fc92b83edb85b0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00313.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0456084725e4d12737e794d30ca14eb2ee1bf99fd2f9803dcf0d8a318ff83598 +size 42813 diff --git a/prepared_data/igbo/wavs/igbo_train_00314.mp3 b/prepared_data/igbo/wavs/igbo_train_00314.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4b1f1db629251c02df699374c8cf8e51a313d6b8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00314.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1590b6e40f0e51903aaa9086bb0361b0dd98bd0c19278cc62935b6b5093ed4ba +size 60741 diff --git a/prepared_data/igbo/wavs/igbo_train_00315.mp3 b/prepared_data/igbo/wavs/igbo_train_00315.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..322e54e1609d95aacab0eab4d4addf545498ab1a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00315.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a1ea3af3ccc1b60f4f384ecdbb6dc70d588a56ad5ff68ba40e683e5a873c7d +size 37845 diff --git a/prepared_data/igbo/wavs/igbo_train_00316.mp3 b/prepared_data/igbo/wavs/igbo_train_00316.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..856b65355428a59b349ecffd0e830636ef39571e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00316.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd187983d30d818f4e8cb7d30ef403b544ed5eaa61054e6b893101413833e4e +size 24453 diff --git a/prepared_data/igbo/wavs/igbo_train_00317.mp3 b/prepared_data/igbo/wavs/igbo_train_00317.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..04ad999875db74082d3677461e5807e0af6e89b0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00317.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e5203c6e616e06a0dd958993ee6e54008b8c930de64d40bfc46092ed8fef9c +size 45621 diff --git a/prepared_data/igbo/wavs/igbo_train_00318.mp3 b/prepared_data/igbo/wavs/igbo_train_00318.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a7ff992096e97d12d10da1152a607d9ca4d90049 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00318.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d925a570364bef66323b816068dbfa1e595f95f85e45ba1deab1980a0e6e24f +size 22941 diff --git a/prepared_data/igbo/wavs/igbo_train_00319.mp3 b/prepared_data/igbo/wavs/igbo_train_00319.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..923e8b796bd75ecd47ea1c95bfb679e34ecf932b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00319.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c55e7cea54505ff8bf889b1b52712233105f2d30aa9d10bc0910da006db3fe +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00320.mp3 b/prepared_data/igbo/wavs/igbo_train_00320.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..963ea08828ee6e554987d96c2b50a5b06db12aab --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00320.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f3986e07b7afac83e784709f5e9ab21b1405c126ef931002075e0e49b4addf +size 15813 diff --git a/prepared_data/igbo/wavs/igbo_train_00321.mp3 b/prepared_data/igbo/wavs/igbo_train_00321.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0f02def0db9e55f4c56112b5061c52300e27c030 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00321.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6513edbcbeef4a5c86816ad45838f60b99834e113259664062c67e75a601c47c +size 40221 diff --git a/prepared_data/igbo/wavs/igbo_train_00322.mp3 b/prepared_data/igbo/wavs/igbo_train_00322.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dafe0c6d6d0832583d2e5202b05ee5d411d55542 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00322.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a202b88923700a95c56e3915e30a0498e3a6cff558e5703f9785033188009ebc +size 10413 diff --git a/prepared_data/igbo/wavs/igbo_train_00323.mp3 b/prepared_data/igbo/wavs/igbo_train_00323.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0cda54b01f4a552fdf6958cb633ea682edcc99d5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00323.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0765216a537523adfa91653ebd0a58a8003c9b1d46edcd5ee2c2499918f23219 +size 14085 diff --git a/prepared_data/igbo/wavs/igbo_train_00324.mp3 b/prepared_data/igbo/wavs/igbo_train_00324.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b6e86b4d10f49b2174bf76157cbe6b7acdecfb4e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00324.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2dc842271e00032f7f3eb1434f39ace11f6002e0fb9f02f3129aafe473a2b8 +size 36333 diff --git a/prepared_data/igbo/wavs/igbo_train_00325.mp3 b/prepared_data/igbo/wavs/igbo_train_00325.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cec0795f9e42f769d35e83d3f2dbbff1fabaf6d1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00325.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1c12e15ab0218973b2383f02c01b0e512e5cc55b8bea2b47d3a94235a76678d +size 56853 diff --git a/prepared_data/igbo/wavs/igbo_train_00326.mp3 b/prepared_data/igbo/wavs/igbo_train_00326.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dad609643f62b827c15efb35c08cb5d7e813eb35 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00326.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68e5aceca86b297ca399c529888cda3c8a466a87c4357b1789e1a0fa722e3b7 +size 48213 diff --git a/prepared_data/igbo/wavs/igbo_train_00327.mp3 b/prepared_data/igbo/wavs/igbo_train_00327.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fe442450f0fe4ca8d46890bc6bfd96d8e9580049 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00327.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e82de49a6ef674a0b8d0c17ac8c16177ed29c4d127af9107929859b974427f5 +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00328.mp3 b/prepared_data/igbo/wavs/igbo_train_00328.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d9b46d79b050c12aa95e1e1714151d6fe78d6b78 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00328.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f447f2ad08f6304dfb84656794ea3d3bd8d3c4732078e80992b18ce63e3a6d9 +size 15381 diff --git a/prepared_data/igbo/wavs/igbo_train_00329.mp3 b/prepared_data/igbo/wavs/igbo_train_00329.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..915dae9d968af0294af7726448615c3fd0d4628e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00329.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e22d96f230d3a8dbfdbbd9ba7d2c5040ce5e9e74fc86c5caa39a785a650d7d +size 37845 diff --git a/prepared_data/igbo/wavs/igbo_train_00330.mp3 b/prepared_data/igbo/wavs/igbo_train_00330.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c5ba99e560f3af7fde9cbb747514098cc23e11db --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00330.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfde7a285cb8dcfaccfaac15dd6611d21c39a2c43ab9a41072863d2d4a0e46e9 +size 24885 diff --git a/prepared_data/igbo/wavs/igbo_train_00331.mp3 b/prepared_data/igbo/wavs/igbo_train_00331.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fd3261a18de8bee426a161a318710e97a17e0b3c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00331.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2e29a4b1912712e59aaec396297ac6c43cea8bc5634a8c2694a8ebdcebde64 +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00332.mp3 b/prepared_data/igbo/wavs/igbo_train_00332.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3090bef0fb8c503f8e90bfaa7a449cb60edb18b0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00332.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f6a82496d2dcd04c28c62d41c35ac98cfee2d8f5f92d1ad9dbc985fa350ded +size 10845 diff --git a/prepared_data/igbo/wavs/igbo_train_00333.mp3 b/prepared_data/igbo/wavs/igbo_train_00333.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3559a03d3422955fe5ffbb79dd41172c63272402 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00333.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8b43930f553d6534e651c692b754a1e0201778254380c6a423b874dced1cca +size 14301 diff --git a/prepared_data/igbo/wavs/igbo_train_00334.mp3 b/prepared_data/igbo/wavs/igbo_train_00334.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..206b7ab1abc34fbd5ec3c59e3097a3319367f85a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00334.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf878cc3879c9dc1b18635d55f62b4af0cc19338f38a5aadce9c2993af4b7735 +size 19485 diff --git a/prepared_data/igbo/wavs/igbo_train_00335.mp3 b/prepared_data/igbo/wavs/igbo_train_00335.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..df06ca74b689ef57e568938ecc2183c89f45a6e2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00335.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d3cb52ab3c344260a9b5355617ba42a9ae014e68f206dc7705d99cfbfb02b83 +size 13653 diff --git a/prepared_data/igbo/wavs/igbo_train_00336.mp3 b/prepared_data/igbo/wavs/igbo_train_00336.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c75ed3f18d4e9996602e7197c65fb408cb9c3b5f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00336.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d9ebf6bcb3b812448a06d977748892269a9d87ac2b310ca84411c3c14abdbc +size 22941 diff --git a/prepared_data/igbo/wavs/igbo_train_00337.mp3 b/prepared_data/igbo/wavs/igbo_train_00337.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f8e1c60645529ed22c33a91d8070cc7e0934e993 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00337.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc75cfc3bc73751c7f7ee8e51551c829d7485a332ab13326e46aa5838255f19a +size 43461 diff --git a/prepared_data/igbo/wavs/igbo_train_00338.mp3 b/prepared_data/igbo/wavs/igbo_train_00338.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e62849eb7de824e6cea7d484dc74e63fc5ac4244 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00338.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dde4a7e5d8779bd76336cfa27d8e4a0f493de85bb3dd02629c70fce60dd22fe +size 24885 diff --git a/prepared_data/igbo/wavs/igbo_train_00339.mp3 b/prepared_data/igbo/wavs/igbo_train_00339.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d8157bcf6edb9d932f85ed27cada8b6e95c3b91c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00339.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b03a45e5921304440fbe37cf49d7fdc229928cefbb47068ac3e46578abe2722 +size 37413 diff --git a/prepared_data/igbo/wavs/igbo_train_00340.mp3 b/prepared_data/igbo/wavs/igbo_train_00340.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..08db89510bd5a58b445ee525e259b2b7c30ffcf8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00340.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c062a87e063e86c3e995465802c12349210de35226c0b5be47ad0cd247494e +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00341.mp3 b/prepared_data/igbo/wavs/igbo_train_00341.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7f5a18b495aefbfef4ed11d443b531f4475e6bf9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00341.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc2a5914137387972e27d31b770b68bd7f0feb6bb690a522950ddfdd85d22da +size 24885 diff --git a/prepared_data/igbo/wavs/igbo_train_00342.mp3 b/prepared_data/igbo/wavs/igbo_train_00342.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7a1359e7ac33ea4f5c4a39881a57501b52fec2de --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00342.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeec140d9850a160c5f6f9828a4964ada127f6b1b232572713fb0be31fa7c900 +size 42165 diff --git a/prepared_data/igbo/wavs/igbo_train_00343.mp3 b/prepared_data/igbo/wavs/igbo_train_00343.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b45d5566022615474280b28d9a0ef9ecf79f80c2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00343.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0cc5095ef7a7d32f6077ef0c6ebd5a9075202ca57c60deea467a44f2e5a6e4 +size 45621 diff --git a/prepared_data/igbo/wavs/igbo_train_00344.mp3 b/prepared_data/igbo/wavs/igbo_train_00344.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fe6980510c8b2d64bff973414144186b3cac3305 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00344.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958bec7838408443fcd7f5a9b6339ff8af9d030c00255f49d3616bd39c3874a0 +size 26181 diff --git a/prepared_data/igbo/wavs/igbo_train_00345.mp3 b/prepared_data/igbo/wavs/igbo_train_00345.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f6a2e7c7af75b38258b86d3edfef0718288cf0e0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00345.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fe53595b8f83a9444d7db79943175b216daa8623adfa73dad6db2bf69e3134 +size 26181 diff --git a/prepared_data/igbo/wavs/igbo_train_00346.mp3 b/prepared_data/igbo/wavs/igbo_train_00346.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9dfc0c271df28fd78b626fa13343e020c0cb2529 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00346.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882bcd663c1c2973617962323807dc140f06f7a900b71cf4a342d9e839477111 +size 34821 diff --git a/prepared_data/igbo/wavs/igbo_train_00347.mp3 b/prepared_data/igbo/wavs/igbo_train_00347.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a627733611482f140799802601bea8237ddabd03 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00347.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b4d52a94860eb396f9e6dc4e4ef3f0bc8761f2df66dd61b5925efc3c22198a +size 34605 diff --git a/prepared_data/igbo/wavs/igbo_train_00348.mp3 b/prepared_data/igbo/wavs/igbo_train_00348.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6ac092027861424292d4fd09756d91e9168fdb5e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00348.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e790496d00f24e5f33d7d534f1f31dd3057ed8928c86605ff1aca8ef2177d11e +size 32661 diff --git a/prepared_data/igbo/wavs/igbo_train_00349.mp3 b/prepared_data/igbo/wavs/igbo_train_00349.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..005dc0eded0d03d895e2ea5460c0ce6335b1246c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00349.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25ce90e46408d850c4d179cc8e51f086033fb0ce9601749a30cc227cb548c1b +size 30285 diff --git a/prepared_data/igbo/wavs/igbo_train_00350.mp3 b/prepared_data/igbo/wavs/igbo_train_00350.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5866f4e0652cf178f59c8660ee2d8c35459b5e4e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00350.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9299f8b08a6c09f0facb71d81f914876d82924c001c5ccbc1e8d5652657dad +size 30285 diff --git a/prepared_data/igbo/wavs/igbo_train_00351.mp3 b/prepared_data/igbo/wavs/igbo_train_00351.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f9b60a9d99f7176121d8569e4f706409eb82794e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00351.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b197e0d494d09864e1206a17adb165162b3ad31a4630a319daee4aead930d0e5 +size 61173 diff --git a/prepared_data/igbo/wavs/igbo_train_00352.mp3 b/prepared_data/igbo/wavs/igbo_train_00352.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0ecdee6d1d5853b6521b3ed4c27a2a7406d4491e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00352.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ad6e544607f071bad2221e9f9480e47fdeb88dd39b2696636d2f181a9287ca +size 33525 diff --git a/prepared_data/igbo/wavs/igbo_train_00353.mp3 b/prepared_data/igbo/wavs/igbo_train_00353.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..634b9d925e3745296b608f55e2329022ba0222cf --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00353.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb9e0b6e64aa175c25c82aa9fc5098a5f9f698dcc5fc14b0cb840afe487904f +size 17541 diff --git a/prepared_data/igbo/wavs/igbo_train_00354.mp3 b/prepared_data/igbo/wavs/igbo_train_00354.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8f6af546d4934e89bbc8ca1f88b1c3d900ac7af --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00354.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec476be7485b1c8161a052099c1d3c7a16b962d0ce75b0225ec3c6b39d1a5d61 +size 49293 diff --git a/prepared_data/igbo/wavs/igbo_train_00355.mp3 b/prepared_data/igbo/wavs/igbo_train_00355.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..33c82fe1974241d7e20cff27bdf5a820625336fb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00355.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57047c2d8cba5ac4b50fa87dedfbf984875fbe2abfd0da6bd9c7d2f4c2d0f42e +size 43245 diff --git a/prepared_data/igbo/wavs/igbo_train_00356.mp3 b/prepared_data/igbo/wavs/igbo_train_00356.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1cf2b5d08d1686a02237d1e1ae135f573297ced3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00356.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0df7910f16b4351e2dc43a99d3861d0c10b8294a3f11b703e5110a477fd2fcf +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00357.mp3 b/prepared_data/igbo/wavs/igbo_train_00357.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..60fb91e2520824b08234cdc1933091559db0d23d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00357.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aacf672df94996e13ad7ea094966c612051ff1dc0b84329aeb2926cbd220c3d6 +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00358.mp3 b/prepared_data/igbo/wavs/igbo_train_00358.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cca5f8d624176f574268f7b7fc82c8c069f88646 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00358.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86e694f8c9174acb8bd1f567e3cfab74d18124ca9cc6ac0de97a0ad3482aaa8 +size 38061 diff --git a/prepared_data/igbo/wavs/igbo_train_00359.mp3 b/prepared_data/igbo/wavs/igbo_train_00359.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ea3d5e7e7fe3018b9b81eb39c906c7d9b7231719 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00359.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6222128f0000edab44713b45308b83af52c4a5267c98f3d3a3e8d01fbc34074b +size 22941 diff --git a/prepared_data/igbo/wavs/igbo_train_00360.mp3 b/prepared_data/igbo/wavs/igbo_train_00360.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..def1fa21feec381a5b7e07a9ae9a81e8aab72794 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00360.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ffc8299b11aef77f9eb7b731266da9351ed43fa6e8d05de80e54027b956542 +size 54693 diff --git a/prepared_data/igbo/wavs/igbo_train_00361.mp3 b/prepared_data/igbo/wavs/igbo_train_00361.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..59654d2c360f22a96b40178cab701a1067802307 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00361.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a326b0c1fb2776bd9c1843f5bce05f2effca206a4fa94beb7466f1feb71c013 +size 20133 diff --git a/prepared_data/igbo/wavs/igbo_train_00362.mp3 b/prepared_data/igbo/wavs/igbo_train_00362.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0beebaf1036a85f8669f2e8926dd484a9c9c5702 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00362.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c55671806c4c71095b2fdcf02dc6c40b8a1c2261ffd420b33b41cd03042a975a +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00363.mp3 b/prepared_data/igbo/wavs/igbo_train_00363.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..189e59ead87d1f6e0a98f4740f5d0dd2f61d4a0d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00363.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9da41432b7b050bf84cb1a3d11bf7dedf189cbe33fa66d125650f003c5b1b0 +size 29205 diff --git a/prepared_data/igbo/wavs/igbo_train_00364.mp3 b/prepared_data/igbo/wavs/igbo_train_00364.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8a46980c7dded92cae3ff68fed24f817fb1edc7d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00364.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55595f54ed49d6eb76c689cca411076bcd21e375bd18f766f5d2bf8570c06508 +size 28773 diff --git a/prepared_data/igbo/wavs/igbo_train_00365.mp3 b/prepared_data/igbo/wavs/igbo_train_00365.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b8194d77d3270f19f26bde5b064ad5810d46997c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00365.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b6233f51d36a3fa9bd3c0f57d7a2be2e577bdf18ceea591419288dab74ccb6 +size 14085 diff --git a/prepared_data/igbo/wavs/igbo_train_00366.mp3 b/prepared_data/igbo/wavs/igbo_train_00366.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dfbf7eae87cf6fdf0fb1ddde24f0f57ad9bb25e7 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00366.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7043b7019c8489056226753c836b7bd6de7e2b2cdc32d5114edd9c93cead8eed +size 13221 diff --git a/prepared_data/igbo/wavs/igbo_train_00367.mp3 b/prepared_data/igbo/wavs/igbo_train_00367.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c353ff74bfe89afa0f39f2386756cd06ce9059e5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00367.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4bcf0c2dccff407b49621a4c3bb9729d543c62ea9fb949eb033121869b8b6c +size 9765 diff --git a/prepared_data/igbo/wavs/igbo_train_00368.mp3 b/prepared_data/igbo/wavs/igbo_train_00368.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..36bd9d851a446424fe10f4c737ff72241d61c2c3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00368.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ddd599d909b26db47b59c3b8f01698144f76cc07feea7f6a086cb5ef792d059 +size 25101 diff --git a/prepared_data/igbo/wavs/igbo_train_00369.mp3 b/prepared_data/igbo/wavs/igbo_train_00369.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2e6b88b1e3dcf5f724515a2e1c1c39b3b8046444 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00369.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da008265b8a0ea459571af1e497d5dec1a32c3c738d5eb1f5945a4a95c7856dd +size 15165 diff --git a/prepared_data/igbo/wavs/igbo_train_00370.mp3 b/prepared_data/igbo/wavs/igbo_train_00370.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0c541fcae7f8c35d365b6181a7e792fe210dcd25 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00370.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efc50946a5bd99ca392b7948506fae20ce4e1ed433dbb0123c02bee1b9e379e +size 22725 diff --git a/prepared_data/igbo/wavs/igbo_train_00371.mp3 b/prepared_data/igbo/wavs/igbo_train_00371.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a185a57f5ac981a65f0aefbaa83946402d224f40 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00371.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40783ced55527961bda9a560efdfdc9c0c2fafaf015c491866f34f943886a0eb +size 29421 diff --git a/prepared_data/igbo/wavs/igbo_train_00372.mp3 b/prepared_data/igbo/wavs/igbo_train_00372.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..98eb09f23cd430ff0d87c93ae07f0fdb59c73aac --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00372.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b955e1c78dffa882efc21e62e2a500ccb3046735fd72a09bc0c3f7db9e27bee4 +size 39141 diff --git a/prepared_data/igbo/wavs/igbo_train_00373.mp3 b/prepared_data/igbo/wavs/igbo_train_00373.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..78f01ab5df06f5019698b00feb0e726671bc8a1f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00373.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a64d2607b00873dca13333a14373a158f5a02f53e39289a32661178b1b4bc24 +size 29205 diff --git a/prepared_data/igbo/wavs/igbo_train_00374.mp3 b/prepared_data/igbo/wavs/igbo_train_00374.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b7915901b343af48013ab076695caed7c514576 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00374.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abcbe3bc450c407172d5c19618852593f49c5788c4fae157fd667d679c9fa7d8 +size 47781 diff --git a/prepared_data/igbo/wavs/igbo_train_00375.mp3 b/prepared_data/igbo/wavs/igbo_train_00375.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2fcd53234123cc3bf157394113d625b1bc01d4d1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00375.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c64aed6a5f75de4e682a84164b6ed63d0e097c3b10fdbd054870927de78aee5 +size 53613 diff --git a/prepared_data/igbo/wavs/igbo_train_00376.mp3 b/prepared_data/igbo/wavs/igbo_train_00376.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..60d439eeb3aba6d8b61b1f710c09f9e0aced63e5 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00376.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75751e2a3201f3eb679edbaf9a2dc5aad1fc6808b04ac985ce8d2e0045e3df87 +size 55341 diff --git a/prepared_data/igbo/wavs/igbo_train_00377.mp3 b/prepared_data/igbo/wavs/igbo_train_00377.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f3eef0adb3ac9a90515a0ea7a9d9c191157a601 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00377.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af37db4b257f64105fd3f169320e45e3888baed7173e1a3d9ed120835a5bd5ae +size 53181 diff --git a/prepared_data/igbo/wavs/igbo_train_00378.mp3 b/prepared_data/igbo/wavs/igbo_train_00378.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a1d757ab9990049fd70c5aa82aa292c648f293ed --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00378.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3549c7368cbf9c97b69a7f6e278af55115eca013ae8514e47559bb086aca3f9 +size 19053 diff --git a/prepared_data/igbo/wavs/igbo_train_00379.mp3 b/prepared_data/igbo/wavs/igbo_train_00379.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7ffb9f828b9dcec61b626baa096dda9546172967 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00379.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292133cef110894d1a1ebe2334a1c5562f281c390e90d0bdd2b91ab31547f11e +size 15813 diff --git a/prepared_data/igbo/wavs/igbo_train_00380.mp3 b/prepared_data/igbo/wavs/igbo_train_00380.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dc9774d1f0361b13d511302183ef10d65ff2ae5e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00380.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a691b679124d2ab42188eb2551c239d129995a587cafb481c268e98ead677aa +size 34605 diff --git a/prepared_data/igbo/wavs/igbo_train_00381.mp3 b/prepared_data/igbo/wavs/igbo_train_00381.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ad85ef739e4aeaccedf23e6a97644af891c627dd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00381.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8486a562a462c78a9adda3bb7dc41ba5d7a93593c162f54080b4123ec682bc3 +size 30285 diff --git a/prepared_data/igbo/wavs/igbo_train_00382.mp3 b/prepared_data/igbo/wavs/igbo_train_00382.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f64d017c49fdf37cf892aef80edd8b4b58869c44 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00382.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bdfb0f488381ed78b59af35dcd2130e6067d9672461407c0ffebedb4126004 +size 45621 diff --git a/prepared_data/igbo/wavs/igbo_train_00383.mp3 b/prepared_data/igbo/wavs/igbo_train_00383.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5461890038b66e93a4a6252c4b302e206fadb1ae --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00383.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37434db50387b026a19664e81fdf73a34ad2247034d016e994249aa5301ee907 +size 32661 diff --git a/prepared_data/igbo/wavs/igbo_train_00384.mp3 b/prepared_data/igbo/wavs/igbo_train_00384.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0d6d9ec158ab17a2258e1884f1cfce7d578fcc1d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00384.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49e2e219f55b32c217ff14c00892715917766a333e21393d0ecb8df28c6e9a6 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00385.mp3 b/prepared_data/igbo/wavs/igbo_train_00385.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fe3e34e6371ea5c8d69f397db156024ae52048cc --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00385.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7cc6d7ae7968b91356182ed905b286f812d3628c3cfe4cbf3ed6e393c080ccd +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00386.mp3 b/prepared_data/igbo/wavs/igbo_train_00386.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..44e41c5b47ce30b60a0ffcb8574bcd2e6ea6b425 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00386.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0cc742c43f1840392b2c50c24c8370d8ce85104798dc1e6eb4c36a0fc02975 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00387.mp3 b/prepared_data/igbo/wavs/igbo_train_00387.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ffa339a02595333fc6221d4d05c8c10cf48366b9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00387.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb2139440dad3ce462dc4db983c84b8f36b2f0c758ae4fa8f51308b68ec59df +size 30285 diff --git a/prepared_data/igbo/wavs/igbo_train_00388.mp3 b/prepared_data/igbo/wavs/igbo_train_00388.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..834ea1fa9c2d854604331ad20531746b4dd782a2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00388.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4cc7e1ce250cfaa0670f623cba5bfc1b182f58eb5ba8eb8d54a5638d1a8f9b7 +size 34821 diff --git a/prepared_data/igbo/wavs/igbo_train_00389.mp3 b/prepared_data/igbo/wavs/igbo_train_00389.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..496847bf75a0f47c72e830c8fa636b7ae7553035 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00389.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8d78dbae82ffdc1e879a4f406955e0c841cb12e0da8aa25a43ff9cb4425ef2b +size 10845 diff --git a/prepared_data/igbo/wavs/igbo_train_00390.mp3 b/prepared_data/igbo/wavs/igbo_train_00390.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5c3a8902b6d7b920c1926cdf70e597273a880974 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00390.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8db41b1399657fef176d3cdd434f99fbbb9d4bc8f731ed9ae4358ad27a5094 +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00391.mp3 b/prepared_data/igbo/wavs/igbo_train_00391.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3fa2d46263839e2feedc3706a339867ca5a9b1c4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00391.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e0cf49172c10da0968d93dc2b9297ef62adfc8deb62eab2e84792cba3a94db5 +size 24885 diff --git a/prepared_data/igbo/wavs/igbo_train_00392.mp3 b/prepared_data/igbo/wavs/igbo_train_00392.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..94a79fc0cef77e2d16f46a083f87198a16c989bb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00392.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4061d2c29a36b7c2ab2add774eec8a8bca00948924a166a332d87b894c0a43 +size 52533 diff --git a/prepared_data/igbo/wavs/igbo_train_00393.mp3 b/prepared_data/igbo/wavs/igbo_train_00393.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f0162d0befd4382b26d7ea9c57be67228174745b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00393.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59d01e685de2e5d8e711d08f83494a66aedaab4e4c3139ce580d8f342054551 +size 35253 diff --git a/prepared_data/igbo/wavs/igbo_train_00394.mp3 b/prepared_data/igbo/wavs/igbo_train_00394.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1bd49e31b6f3dd7e3c1ff1e9f238353cf3854d9c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00394.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3ee81d0702411b81e2e2496d0dbedd0bf00da07dee160ffd8c981abf1aa49a +size 31365 diff --git a/prepared_data/igbo/wavs/igbo_train_00395.mp3 b/prepared_data/igbo/wavs/igbo_train_00395.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..25756544da3cef760017ebafb7207eb3b3362395 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00395.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a76ee24378f44440de16c43a227491371eaaf1d65044da7cdaf7b6c013cb60 +size 19053 diff --git a/prepared_data/igbo/wavs/igbo_train_00396.mp3 b/prepared_data/igbo/wavs/igbo_train_00396.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2bc94d303cff529afa06562b6a2698686c9a7d7c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00396.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476879b838d5ff0a14b07b4c368996693aa93ed07de3a5e3d9eee75ec7fc683d +size 34821 diff --git a/prepared_data/igbo/wavs/igbo_train_00397.mp3 b/prepared_data/igbo/wavs/igbo_train_00397.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fb8bfbdad3caf455c02cc2e0f063e0139ff4d466 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00397.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c454a3de8224ddaa0ee8c7c86fdc1e7e2de511a1a51b96efd7d10386eebb331 +size 18621 diff --git a/prepared_data/igbo/wavs/igbo_train_00398.mp3 b/prepared_data/igbo/wavs/igbo_train_00398.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..75e0afc277066493f7c58c9bf7bfefbf14915e3a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00398.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae6a4d4af5ff36170b6b7016068bb1685d38e6095652db8a84485e78cb387bf +size 59445 diff --git a/prepared_data/igbo/wavs/igbo_train_00399.mp3 b/prepared_data/igbo/wavs/igbo_train_00399.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0d6a5cf175406e2abb6ae81f3189092a5f6e1556 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00399.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfd760f71612fe83bc57fe34b1d834713d246fc42de99b372dcafd89254c9ef +size 52965 diff --git a/prepared_data/igbo/wavs/igbo_train_00400.mp3 b/prepared_data/igbo/wavs/igbo_train_00400.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b3f50b8f8f3f10b9e383c3c326f3aa4ff4ed2c95 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00400.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c8543112df8f387e3f3ed5b285d60b988ab1df2a23587671d1b172968245c7f +size 35253 diff --git a/prepared_data/igbo/wavs/igbo_train_00401.mp3 b/prepared_data/igbo/wavs/igbo_train_00401.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9e93cfab9ecca6e119d017fd3fa18dabddc6c6bd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00401.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74cfab5a039e53088ab48082a60f670799b5930141d391ec81a1eab3cb11bd69 +size 48645 diff --git a/prepared_data/igbo/wavs/igbo_train_00402.mp3 b/prepared_data/igbo/wavs/igbo_train_00402.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ca41f323476acef1e9f664bde53fb9bc13774759 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00402.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81bca1e216dbdbe9bd4dc18aaa2373348864025c13a6f3f71135488a098e8855 +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00403.mp3 b/prepared_data/igbo/wavs/igbo_train_00403.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..edf4bf9bf315449ea4dfd19d40690591584a6b1e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00403.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e25567c74ac14bda4edcc50dceb01f95b8c825a9732e5611b8dad628d7553985 +size 32013 diff --git a/prepared_data/igbo/wavs/igbo_train_00404.mp3 b/prepared_data/igbo/wavs/igbo_train_00404.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..baa62e7e2d25af5997cfce9b8db02e3fc17570c9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00404.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88a5b15ff9cd2af6041f53cb5c3958bb7b928bd47b45a82c1746c6315001c8c +size 27045 diff --git a/prepared_data/igbo/wavs/igbo_train_00405.mp3 b/prepared_data/igbo/wavs/igbo_train_00405.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4387048e09e70e15fd2b4b81ffb057c0d86d0760 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00405.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f1c6fc11b3119b8e48c586c927059feb05d5b5c99d3d6b98fa4c83687acb41 +size 43245 diff --git a/prepared_data/igbo/wavs/igbo_train_00406.mp3 b/prepared_data/igbo/wavs/igbo_train_00406.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8bffc8800554735f74df20fbd691e6fa6393fa85 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00406.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2cccbccb27f175e3d29068d39df3b8551c942513e12d194c7634731ec43e65 +size 27693 diff --git a/prepared_data/igbo/wavs/igbo_train_00407.mp3 b/prepared_data/igbo/wavs/igbo_train_00407.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..30c1a854e8cf59b450a5d62d070bbab9abcd9c6a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00407.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01147a7c6373bf38dfdbf01d45f4ece5229033875d157a110e1cfe985b04561f +size 24885 diff --git a/prepared_data/igbo/wavs/igbo_train_00408.mp3 b/prepared_data/igbo/wavs/igbo_train_00408.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ca734d0c18f0f0557d6640ef9123271b936b9619 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00408.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1628534dadb104ce0a29fac76c38fccc08a243592c1ab6a95baefa87353700 +size 22725 diff --git a/prepared_data/igbo/wavs/igbo_train_00409.mp3 b/prepared_data/igbo/wavs/igbo_train_00409.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..74319571e3817d4c1b3a707db23a2c674f9342cc --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00409.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8809b9feefd8880533b0b3ff2c2c858116652492f8e8c52fcc7642a997e801e1 +size 27693 diff --git a/prepared_data/igbo/wavs/igbo_train_00410.mp3 b/prepared_data/igbo/wavs/igbo_train_00410.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e831c17b5706523df1078c9085560127c962ee50 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00410.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3cd0f4df10fef7f7249c459e174443eec0bdb57dfe1694d63390ea8430663a6 +size 21645 diff --git a/prepared_data/igbo/wavs/igbo_train_00411.mp3 b/prepared_data/igbo/wavs/igbo_train_00411.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..640dc64584d1d188fa16d6284a2f0d8f52352ffa --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00411.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15531096f2d7f59bd4578fafc8c0a62f1dfdd7988cef7f201edc540b50edb9cc +size 14733 diff --git a/prepared_data/igbo/wavs/igbo_train_00412.mp3 b/prepared_data/igbo/wavs/igbo_train_00412.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2911e5cd8dbd268f4068810664af5ce0aa32c015 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00412.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c27061c9faa15e2ab9f535a3850296e8fa5f25480a16781cb1358da5be7fb1 +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00413.mp3 b/prepared_data/igbo/wavs/igbo_train_00413.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..836779a0404d9ef8fd8ab9c42e6744ec2707be5d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00413.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92bd9d6402f0743ffe1876092c2566f804523e343d9c8f3f15a70c93f774bd54 +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00414.mp3 b/prepared_data/igbo/wavs/igbo_train_00414.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d588509a3a1d369a2f5922d5e6bf60119024dac9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00414.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14749bcb0cda66714860cfffc73572b503262523542d0545943a7499f0794e41 +size 28341 diff --git a/prepared_data/igbo/wavs/igbo_train_00415.mp3 b/prepared_data/igbo/wavs/igbo_train_00415.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..88603d76c165445683746e3d6cbcd1fec71bfc72 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00415.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684b39f6dcffa92b4df8257f6fa9394cf07f2cafdbd90cdf841795abec384dc8 +size 25101 diff --git a/prepared_data/igbo/wavs/igbo_train_00416.mp3 b/prepared_data/igbo/wavs/igbo_train_00416.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8efb841b4c669896df7e63fe3d310fc60c1a777f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00416.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd576b24699bc4949d485ac0edc52fde47a3c64987f59f519c93d6884d66e26 +size 42813 diff --git a/prepared_data/igbo/wavs/igbo_train_00417.mp3 b/prepared_data/igbo/wavs/igbo_train_00417.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..346b0f5c872bdecaaf9db70b416999709c38fbca --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00417.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4825da15f28be5fd71a990cf436574a2e4e6e56cfb83d7b473ec2addcd1e25e5 +size 37413 diff --git a/prepared_data/igbo/wavs/igbo_train_00418.mp3 b/prepared_data/igbo/wavs/igbo_train_00418.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f24608c883014e77547a9d6c53513be8bac2cff8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00418.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f469a281026a60cf29479fc1d3430845683445ffdf21af99491b5f24bd179d57 +size 16245 diff --git a/prepared_data/igbo/wavs/igbo_train_00419.mp3 b/prepared_data/igbo/wavs/igbo_train_00419.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9899a18b6793120f12530a20338db23b0d9b83d9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00419.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7401adaaf8c3e5740b383b1ba5b36c508acb5c69d6e67b8c8b0055ce9a7bc47f +size 18621 diff --git a/prepared_data/igbo/wavs/igbo_train_00420.mp3 b/prepared_data/igbo/wavs/igbo_train_00420.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a87acc6db29990a066eec6653572d417f63f7af3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00420.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b07711053f54840c620b01fcf240f9f28136b2bc6bbb8b488d968503078511 +size 17541 diff --git a/prepared_data/igbo/wavs/igbo_train_00421.mp3 b/prepared_data/igbo/wavs/igbo_train_00421.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bff3ad3abb28c92fd2d2f8f2689d6f5914ed0d56 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00421.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c02d1e6dd73947988c4a048cc87881d5f90d887fbe916192bbd9d8bcec343c2 +size 43245 diff --git a/prepared_data/igbo/wavs/igbo_train_00422.mp3 b/prepared_data/igbo/wavs/igbo_train_00422.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f68bdcbaef938c385a7d27cf45f8df2455063db8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00422.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7298dad38a1d7f83c2e8af3f50eee38561454737242c2c5d7885b34527de8756 +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00423.mp3 b/prepared_data/igbo/wavs/igbo_train_00423.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1b4e744244e434ea77d783e91ff72fa24f1d3221 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00423.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f227be252a13008f1df79f43fc1667ca36c969f1a2caf495080cc77042a5664e +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00424.mp3 b/prepared_data/igbo/wavs/igbo_train_00424.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6b8986c7ae6e6c1423927906d0b2a6826ae4505c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00424.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea78a2e680d1fa8d9e77ab96b6a42dc7fc875de2e628be5c131ac369231e70f +size 41301 diff --git a/prepared_data/igbo/wavs/igbo_train_00425.mp3 b/prepared_data/igbo/wavs/igbo_train_00425.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fc7b4307e90440928e4da3d805dfcd71d6d9c260 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00425.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ac9466353136f2715194d7aa1dfbba57b7cfbfbfdb628f6fc1e402b3e7112b +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00426.mp3 b/prepared_data/igbo/wavs/igbo_train_00426.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b2535a77f256e04d6f89c0892bf5b6b60913da9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00426.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a20426a9bc9d1ab2ccdc4226696ef964ca072bda9ddb12f064a70c07bbef9b +size 52101 diff --git a/prepared_data/igbo/wavs/igbo_train_00427.mp3 b/prepared_data/igbo/wavs/igbo_train_00427.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a355ce3a00faf07d42f3746ee18fd7939061ad2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00427.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c096c798c501d585878b6445faeb86c8c0ba2fd27e4f7c58bd5387618f2ea69c +size 46701 diff --git a/prepared_data/igbo/wavs/igbo_train_00428.mp3 b/prepared_data/igbo/wavs/igbo_train_00428.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6902db38f0a309283cf4c1e464d13d9263369b79 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00428.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d304937ea7bb2b7edab8df98d5fb8d33753f98de5a25585335fc2250dacb176d +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00429.mp3 b/prepared_data/igbo/wavs/igbo_train_00429.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a6d012cb3f01744b064e87997d30f0a025b22fd0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00429.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ec46efb4b4a8cd3cbcd48d3432e372ebaf0f957c4bf037f7876d53b409af66 +size 33525 diff --git a/prepared_data/igbo/wavs/igbo_train_00430.mp3 b/prepared_data/igbo/wavs/igbo_train_00430.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..49e1eb2629cdabb78c7f5843162d970cb9d2972a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00430.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18133f2ff29c5e1c358e0461ae46ca5bda76cf88127b4fc37d30245f9ac971db +size 18621 diff --git a/prepared_data/igbo/wavs/igbo_train_00431.mp3 b/prepared_data/igbo/wavs/igbo_train_00431.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b4eccd157e329cb018785c93058e41aa4cb9e626 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00431.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d988d905d23b21e1a430abdcfb23d01b39b6c30de5b0411375fce7f55a82bb +size 49941 diff --git a/prepared_data/igbo/wavs/igbo_train_00432.mp3 b/prepared_data/igbo/wavs/igbo_train_00432.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..848d948406ffbc15638443eaea92c86a6a156fe6 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00432.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaccf7a3cb6fd0e5cecf6d12422201f58135c9cdf17155a51a7ac69223cdedb +size 41733 diff --git a/prepared_data/igbo/wavs/igbo_train_00433.mp3 b/prepared_data/igbo/wavs/igbo_train_00433.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c6c8bdee95a6d41644e54dd77bbcb09c94bcb436 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00433.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddf0ab7d6479dc909134bcc65666056f3463238bb04c6e6eaf7e46e18249175 +size 31581 diff --git a/prepared_data/igbo/wavs/igbo_train_00434.mp3 b/prepared_data/igbo/wavs/igbo_train_00434.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..627e7da4ac8467da1d0849759dbdbcf4602cba1a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00434.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e5e27dc6fcb50b1752dee39c6d4ec87f45b462eaff48276812609454c8e56d +size 48213 diff --git a/prepared_data/igbo/wavs/igbo_train_00435.mp3 b/prepared_data/igbo/wavs/igbo_train_00435.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..598708fa86669f3c792946d5eee808966dc14ad0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00435.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af543311884609242b729ab4eaa39071c4370694b67561b9e58a1b1d48f36948 +size 45405 diff --git a/prepared_data/igbo/wavs/igbo_train_00436.mp3 b/prepared_data/igbo/wavs/igbo_train_00436.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7ade6fba68eb06547d1a4d2bca37c38993240e2e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00436.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d79f9b4cf93a493213485df43fe6e250cb4f350a66a96110970f360d9948a52 +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00437.mp3 b/prepared_data/igbo/wavs/igbo_train_00437.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b07a6780472d5a924e292b4c367956f054b832af --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00437.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008f9007e8a080dd1ee8dba13a0571bd5c2614a7b60a766704dad130558c22bd +size 31581 diff --git a/prepared_data/igbo/wavs/igbo_train_00438.mp3 b/prepared_data/igbo/wavs/igbo_train_00438.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e6a93e09e8a6b76309a9b7da455b9f41cc8bbae8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00438.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64ad4bc4e15c98decd32e9b502c1b35c8d40fe1ab74142c083786a284836235 +size 35901 diff --git a/prepared_data/igbo/wavs/igbo_train_00439.mp3 b/prepared_data/igbo/wavs/igbo_train_00439.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..10536fe44cab92f5a81acebb547e9a66e4fedf60 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00439.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e58dc3c443283b27e7f3c06a344faa3b18ee65150609156729210a26f9bef2e +size 40653 diff --git a/prepared_data/igbo/wavs/igbo_train_00440.mp3 b/prepared_data/igbo/wavs/igbo_train_00440.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fed787adbe490de0e0e59e585ce9248e31318749 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00440.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e1897bc372240e61f3469ca147ac9b8978e490e624266a5ebdfd42c95d1528 +size 36765 diff --git a/prepared_data/igbo/wavs/igbo_train_00441.mp3 b/prepared_data/igbo/wavs/igbo_train_00441.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ae311aa8f055b820e424ef6d150d9fdea7e63a64 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00441.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02038fe9030957f7eadddc6d32fb999e8f6fff41e6f13208983bda97c20b9ca3 +size 22725 diff --git a/prepared_data/igbo/wavs/igbo_train_00442.mp3 b/prepared_data/igbo/wavs/igbo_train_00442.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8e993373ef4224463a2e774523b66487042fd168 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00442.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae71c95f3658addf656f315f19979a994673162422c748cb377431fa208dcd01 +size 34173 diff --git a/prepared_data/igbo/wavs/igbo_train_00443.mp3 b/prepared_data/igbo/wavs/igbo_train_00443.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..600d9b2fb6c7cecffc27908f37141dbabadf63d0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00443.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bdf5c57f547266af582901c201e115c5bee5dccaa0b4eeb0284dac6e188eb25 +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00444.mp3 b/prepared_data/igbo/wavs/igbo_train_00444.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ce119087135bb35e8d8cc7699aa89cbb8cdc60d9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00444.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926ce857f20b9bdafa3d5c866667b93f1e79f39754ae52d33b3d9b663b19c218 +size 19053 diff --git a/prepared_data/igbo/wavs/igbo_train_00445.mp3 b/prepared_data/igbo/wavs/igbo_train_00445.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6f352a3cad2b0492dc7bb67d84b1db4e920cab1a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00445.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e926eb6c095f939b5746bf07df033a608102b8327d726b1fb1b6c324442f9ed1 +size 29205 diff --git a/prepared_data/igbo/wavs/igbo_train_00446.mp3 b/prepared_data/igbo/wavs/igbo_train_00446.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f817bce64bb248e736eca3f45464bea5d9cc0a9 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00446.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001bb860c64ca4e32ac426cec5305a6cfca8fb49bbef2d1f27a699ed0b7f08b8 +size 52965 diff --git a/prepared_data/igbo/wavs/igbo_train_00447.mp3 b/prepared_data/igbo/wavs/igbo_train_00447.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de0973049d939ac0091e6a5ec598d19f889365a2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00447.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8dde850dbb1d05f8400cab3e94bf744cc3d3c33480e53a6b2ead4e0c9efe940 +size 32445 diff --git a/prepared_data/igbo/wavs/igbo_train_00448.mp3 b/prepared_data/igbo/wavs/igbo_train_00448.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1f407a6c81d33ac77843a074e52211f97b9613dd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00448.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd97d6b423e8ffe816c525eab0512dad07d1a31e095d1f58b82396e12904109 +size 18621 diff --git a/prepared_data/igbo/wavs/igbo_train_00449.mp3 b/prepared_data/igbo/wavs/igbo_train_00449.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..52e1b2462fccf6210e960172c4a9d94713232e41 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00449.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aed7fb0971dd52c9d7cb91ac14473dd8de593e0c48aad79b97038c3496b09a4 +size 40005 diff --git a/prepared_data/igbo/wavs/igbo_train_00450.mp3 b/prepared_data/igbo/wavs/igbo_train_00450.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b11b07061aa6b0f06ead9c2cf664435bf335a478 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00450.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a135a66a3192aa05aaf2f45ca14d09b66e0dcf3298b29e01b1b58c4fe976f1dc +size 46701 diff --git a/prepared_data/igbo/wavs/igbo_train_00451.mp3 b/prepared_data/igbo/wavs/igbo_train_00451.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b19b3199d53a24b4a4977226a892d9d5d0e2aa5c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00451.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe3d5a9298a5c35b100af9992b5675cd4e460ad8cf57976c44345453f911dfb +size 21861 diff --git a/prepared_data/igbo/wavs/igbo_train_00452.mp3 b/prepared_data/igbo/wavs/igbo_train_00452.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9617930dbdc8deff6bfbba33c882431013eace86 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00452.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1881c3a54a9b2f962f7cc9f386f265d797870a24127ae6157300cd46d6e73f93 +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00453.mp3 b/prepared_data/igbo/wavs/igbo_train_00453.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..445503c1094f0e1de0c63f6c29f0502ddd8cca30 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00453.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea30b6a980cb030c9687764776cbdf805895d805b00bede3c75b6e50c870e5ae +size 22725 diff --git a/prepared_data/igbo/wavs/igbo_train_00454.mp3 b/prepared_data/igbo/wavs/igbo_train_00454.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..af932c7dd17a751b2f53681c2f5c49abe5e4d650 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00454.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1ba04a6e5e44661b9429b61dfc4db4b457e835f98650fc346bfd172ca259d7 +size 25965 diff --git a/prepared_data/igbo/wavs/igbo_train_00455.mp3 b/prepared_data/igbo/wavs/igbo_train_00455.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..73174ec56b9abe6e953c71c73ff2177009d8f41c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00455.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e6c199ba404d0235e9aa3a1b3a090e4a3fb7f1b149733ea140ddc944151c5c +size 17541 diff --git a/prepared_data/igbo/wavs/igbo_train_00456.mp3 b/prepared_data/igbo/wavs/igbo_train_00456.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8f074a9504b5c57b4c546c3cbd7f7ec69161485d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00456.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b79d6144afcec5fe92cea78ed2721b3e68e01af940a0e188ab638c4e62461f +size 47781 diff --git a/prepared_data/igbo/wavs/igbo_train_00457.mp3 b/prepared_data/igbo/wavs/igbo_train_00457.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..923b45e113331b0b6e1ba95acbd22a18b118e1f0 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00457.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdbfe5796571278562a822ae82dee3582f9e34be7090878ec49467945970ab0 +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00458.mp3 b/prepared_data/igbo/wavs/igbo_train_00458.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8c5d24f31036991143ab9b8c606ff3d105c2660b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00458.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb58d574419e19ecb75de77fa7c47ef1ab625824b6ec6342ecb2bc37650c4ea +size 22293 diff --git a/prepared_data/igbo/wavs/igbo_train_00459.mp3 b/prepared_data/igbo/wavs/igbo_train_00459.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..52c9b50190bbc92149079b0458b64060e055005b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00459.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d2c402d2bcf2ea39c56391f8c93061573e7935e9d1c3371bea8454392e7419 +size 34173 diff --git a/prepared_data/igbo/wavs/igbo_train_00460.mp3 b/prepared_data/igbo/wavs/igbo_train_00460.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..733dfa0412751c8dd150e18df521625470113fea --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00460.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af4fafe1fa70d70334ae3221168798e4c5494b45be94a5da71df72555e1c100d +size 47565 diff --git a/prepared_data/igbo/wavs/igbo_train_00461.mp3 b/prepared_data/igbo/wavs/igbo_train_00461.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bbb8c5ae89c61049ad582386e1cd24a26a34febf --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00461.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6633b0ad53ea2c105c7365894569806e62e415742d9579fe378f230fd62f68f +size 26181 diff --git a/prepared_data/igbo/wavs/igbo_train_00462.mp3 b/prepared_data/igbo/wavs/igbo_train_00462.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..259443496abcefcee0ceaa63e5d22057acac1e5a --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00462.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f0a6bbd0b759ce1dcf56591ed9934a08cb0e51dd8018f151b41f00fc10fc48 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00463.mp3 b/prepared_data/igbo/wavs/igbo_train_00463.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..70d57b487ad15911aaac1aa1b2d0a59338d3a6d3 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00463.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5559b61598c4aeb01597d897adfe6d8ad7d7fe3a580672afb62e463948e8bf +size 16893 diff --git a/prepared_data/igbo/wavs/igbo_train_00464.mp3 b/prepared_data/igbo/wavs/igbo_train_00464.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..26ef6c3896566d30f6001037b8143635c3711f9f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00464.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308046ad69cad24e38fa6d7d315b4050b639732b0aaa74544e2a0bf3c2563de8 +size 27261 diff --git a/prepared_data/igbo/wavs/igbo_train_00465.mp3 b/prepared_data/igbo/wavs/igbo_train_00465.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3b1191a2554f9b522877fb21bb446a1d5c70cc22 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00465.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73a692fcbb69f514720150d95e41d5766ebbf9b8e867388b454c76d5bcf9e424 +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00466.mp3 b/prepared_data/igbo/wavs/igbo_train_00466.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f937b89ef695a8e448cc365f4185095eae5e520 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00466.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fdbac49ad90ea8abb216349ae8aef7fa0264df96328ee2895cca61eb195995 +size 26613 diff --git a/prepared_data/igbo/wavs/igbo_train_00467.mp3 b/prepared_data/igbo/wavs/igbo_train_00467.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a1b9ae2557cb4b0605f4c4228c4446824c3945cb --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00467.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0922d102808c002520494df6fcf15bbfff6894e64dba9c5758909247094ead64 +size 19053 diff --git a/prepared_data/igbo/wavs/igbo_train_00468.mp3 b/prepared_data/igbo/wavs/igbo_train_00468.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cbb3218b9a5927e694b465f48f7416ea075cea32 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00468.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d9bd44b4535f666d4972927098eb6648624884d2c2080b03ddf9aa6584caac +size 40005 diff --git a/prepared_data/igbo/wavs/igbo_train_00469.mp3 b/prepared_data/igbo/wavs/igbo_train_00469.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1d0595ba0154bb23b1077b9476bf6094d9ec9022 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00469.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c703e83b6d9220874c8b7baf4697aeb0e103a0470d157ec6a1fb0a9bce4de468 +size 23373 diff --git a/prepared_data/igbo/wavs/igbo_train_00470.mp3 b/prepared_data/igbo/wavs/igbo_train_00470.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de38c333fb689b74a6a4c7e5ec5d14bf269cfc3f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00470.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae423144ab858b5039a5142e43477d345aa7e1a0d9f9bc6bba21b066f5c4c4f +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00471.mp3 b/prepared_data/igbo/wavs/igbo_train_00471.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..313d8dd139bccfad335840c891b22bba7a352084 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00471.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee4ff1908f86b54c77c950597f839773127d8186f8383ecd903e084d0f4a3ca +size 15381 diff --git a/prepared_data/igbo/wavs/igbo_train_00472.mp3 b/prepared_data/igbo/wavs/igbo_train_00472.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..aa1c2a8dbb137813eaafd179ad89b3dafa36113c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00472.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27350a9887aaff0a147f7f1f1a06d0439e16248f45271e29771366e87069c661 +size 20781 diff --git a/prepared_data/igbo/wavs/igbo_train_00473.mp3 b/prepared_data/igbo/wavs/igbo_train_00473.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8e864a78cdfbe28039cce45d40d4dad2f62e2896 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00473.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade4f917c1bd99a260919049387c11bbd658e53b71c07f7cb27c9e3054008bca +size 31365 diff --git a/prepared_data/igbo/wavs/igbo_train_00474.mp3 b/prepared_data/igbo/wavs/igbo_train_00474.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4765b4764faecf415daccda6b87a7c5980e0b22c --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00474.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617e7e51cd21cd9de35a8bcb097ba7f567fab58db31cbde3c2daf2d8ad154598 +size 40005 diff --git a/prepared_data/igbo/wavs/igbo_train_00475.mp3 b/prepared_data/igbo/wavs/igbo_train_00475.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..acbaf88fa5d83df2147039480d5bac88094bfe40 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00475.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bed50c9b477ac57cefdfe43243ac0a8a5442ba18c94a45e25d5f10ae3a205f +size 30501 diff --git a/prepared_data/igbo/wavs/igbo_train_00476.mp3 b/prepared_data/igbo/wavs/igbo_train_00476.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b2b914fade9227bd51314cbf15542a39873ce6a7 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00476.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6008214a76ccec988c1a5e89a48ec8a2655e730d6538252e3be8b473580cc5d +size 38061 diff --git a/prepared_data/igbo/wavs/igbo_train_00477.mp3 b/prepared_data/igbo/wavs/igbo_train_00477.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..689cd78f437437b1abe305c29c40dccfcb7d21f2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00477.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ef5d31c56aeb0aa9fa093fb226ec13aee27250989743c4c87487a7e19b8dabd +size 36981 diff --git a/prepared_data/igbo/wavs/igbo_train_00478.mp3 b/prepared_data/igbo/wavs/igbo_train_00478.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d0449ebeb8fb5a365c60273f1b4637052581fb09 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00478.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af217188cfe7d8b97e794668f81735198407a02e265a61f89fd06c7bb60a556c +size 38061 diff --git a/prepared_data/igbo/wavs/igbo_train_00479.mp3 b/prepared_data/igbo/wavs/igbo_train_00479.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cafef5aab09c4dc5835c15959ad842503a9ec443 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00479.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b4da92f9884f4032c4cb40a99a18612d19e9ddb716234dccdd17f928cb6733 +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00480.mp3 b/prepared_data/igbo/wavs/igbo_train_00480.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..232bc0d9d1048517e7a6534375c496e14f4561e8 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00480.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a54b61ec19c9321078713552eaf611f3742553e4dac48fcb6094a7c1fb70f08 +size 30285 diff --git a/prepared_data/igbo/wavs/igbo_train_00481.mp3 b/prepared_data/igbo/wavs/igbo_train_00481.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..17f2558863fc4efb62c5caa34ad3a7a945ceb907 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00481.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35afd62be3a86751703ad7d4f5b068fcf8ece34b58f1478b999570fad9fef50 +size 26181 diff --git a/prepared_data/igbo/wavs/igbo_train_00482.mp3 b/prepared_data/igbo/wavs/igbo_train_00482.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a7ebcc9f49bcc468463034533c04ec590f0faf3d --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00482.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c308aaa7d5902dfae475c77120c9721b259058ef2afd27920cf3db20bb6359 +size 24021 diff --git a/prepared_data/igbo/wavs/igbo_train_00483.mp3 b/prepared_data/igbo/wavs/igbo_train_00483.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..daf0874071f7fcf34c5b22c1af953ff3a6a8f1d4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00483.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32ee48dbf5255491fbdb6a554986a04cfcc1e9ec05ed1f70bd8cb757583a93a8 +size 24453 diff --git a/prepared_data/igbo/wavs/igbo_train_00484.mp3 b/prepared_data/igbo/wavs/igbo_train_00484.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d0a4a581888ff1cc201488de45c1fd4c59b29100 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00484.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d916f2b1354369d69023d587177712ec02ba1afdec9c2e605393319d6750e95f +size 31365 diff --git a/prepared_data/igbo/wavs/igbo_train_00485.mp3 b/prepared_data/igbo/wavs/igbo_train_00485.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ded5de788ae831feecdb10e52ce04dd49aee40ee --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00485.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7864fc9aa106ca3027a4664119e3a5553e39cd0c46ded35352361165b59fa3 +size 25965 diff --git a/prepared_data/igbo/wavs/igbo_train_00486.mp3 b/prepared_data/igbo/wavs/igbo_train_00486.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..672be405a1be765732ad07fd127a86582648030f --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00486.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4095a9223279c8b4d0f7bd427c2d7865bff728659baf47b05f1e7e0584679f92 +size 17973 diff --git a/prepared_data/igbo/wavs/igbo_train_00487.mp3 b/prepared_data/igbo/wavs/igbo_train_00487.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d156fbf50586cc6b7cc1e3abf0c2ce2e32b306fd --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00487.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38315d33b388b284f6e5b0e609e2afa16bc9d0aebe8176647d0007ebba42ebb1 +size 25533 diff --git a/prepared_data/igbo/wavs/igbo_train_00488.mp3 b/prepared_data/igbo/wavs/igbo_train_00488.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ba90a9def0c915a4b2dac342873e6464496b792e --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00488.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a3e5d3028c65b595b63a1166f8bfefb571b064ae5d455719d61e1ddc62357f5 +size 17325 diff --git a/prepared_data/igbo/wavs/igbo_train_00489.mp3 b/prepared_data/igbo/wavs/igbo_train_00489.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a4bfb122dc8c69517df7a67394ab58382e5b5f45 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00489.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb1819c82eb360296b4f60cad17259c3fe0867e3c65181e3dfdd8357e704392 +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00490.mp3 b/prepared_data/igbo/wavs/igbo_train_00490.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b23ff984bcacc604a7ee097d8976ca4b2fb2216b --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00490.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47f797311030df52d5e16640f23c1ff36e844a1ecf1854b4bb69d6dccf0a10e +size 24453 diff --git a/prepared_data/igbo/wavs/igbo_train_00491.mp3 b/prepared_data/igbo/wavs/igbo_train_00491.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..029a3b9e68896005276997e0b74a58466271d3fe --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00491.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c024dc89216ce37477b76f6e5f6f3d371abb12e56f434ec6e591cd24e0044cd3 +size 23805 diff --git a/prepared_data/igbo/wavs/igbo_train_00492.mp3 b/prepared_data/igbo/wavs/igbo_train_00492.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3d95c6ab6a4d9ebb908b61535463a3225aad1308 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00492.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24b5760ecc3b54f24d28b8e57cf3cf3e642ffb9b7d528953413f35f026cef486 +size 35253 diff --git a/prepared_data/igbo/wavs/igbo_train_00493.mp3 b/prepared_data/igbo/wavs/igbo_train_00493.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..10a060b7d2b78717bd1bca70c077e5636a9bd636 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00493.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc9977c09f0ab29f7162db5c7d25e696d05272d2cb18ff74666f3d674c12872 +size 27261 diff --git a/prepared_data/igbo/wavs/igbo_train_00494.mp3 b/prepared_data/igbo/wavs/igbo_train_00494.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..31bdbf60bdeddaaf92d5811745bd45a22aa1d0d4 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00494.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d555174c9882c7b88ed4425b679e9c1c11310ac255dcf8ab9ab4ec20a40b71f3 +size 38493 diff --git a/prepared_data/igbo/wavs/igbo_train_00495.mp3 b/prepared_data/igbo/wavs/igbo_train_00495.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..625cb0dd55da83eb3cd48c086671da46e37e6d32 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00495.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f916214b9e462a09514cc32637b3d444bd3c9630fd81a32b7fa6d82e7d6f59f3 +size 20565 diff --git a/prepared_data/igbo/wavs/igbo_train_00496.mp3 b/prepared_data/igbo/wavs/igbo_train_00496.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..25b482d9aa4ef39877f2edb436d91f94dca71545 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00496.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab63cf287cb5e616252d7f2f9eab96d8287111fd1421fa0fec7015c3c588ba33 +size 45405 diff --git a/prepared_data/igbo/wavs/igbo_train_00497.mp3 b/prepared_data/igbo/wavs/igbo_train_00497.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..170f28189fb09471be0db147c2575e4c40b1bf87 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00497.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0613386d4098981347615e0e9f26ec2ad3b96aaf615ba560282594235647ad41 +size 34605 diff --git a/prepared_data/igbo/wavs/igbo_train_00498.mp3 b/prepared_data/igbo/wavs/igbo_train_00498.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fad28eae078323c4fe958454ce938d23d31862a2 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00498.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7e6321104cb4202babc7d7142b7772c830bdd2c3ff7d035c3a5cda36ff246f +size 52965 diff --git a/prepared_data/igbo/wavs/igbo_train_00499.mp3 b/prepared_data/igbo/wavs/igbo_train_00499.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5644d65dcb9c565ec6ebe9c3558436a4225fa6a1 --- /dev/null +++ b/prepared_data/igbo/wavs/igbo_train_00499.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6846ff44359ba9dc3be5223fad8894c9c6b24e4466a4ef6bdc1d7e582ae3a1 +size 11925 diff --git a/prepared_data/yoruba/manifest.json b/prepared_data/yoruba/manifest.json new file mode 100644 index 0000000000000000000000000000000000000000..68203a4ba5ec06d0eac0bd5480b9777e2f1a1f6a --- /dev/null +++ b/prepared_data/yoruba/manifest.json @@ -0,0 +1,3002 @@ +[ + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00000.mp3", + "text": "Ọmọ ẹgbẹ́ òkùnkùn dèrò àtìmọ́lé torí nílùú Ìbàdàn.", + "language": "yoruba", + "speaker": "user_000" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00001.mp3", + "text": "Ọ̀pọ̀lọpọ̀ àwọn ọ̀dọ́ lọ́ fẹ́ fi orílẹ̀ èdè Nàìjíríà sílẹ̀.", + "language": "yoruba", + "speaker": "user_000" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00002.mp3", + "text": "Ọkọ àti ìyàwó kan ta ọmọ wọn nítorí ebi ní agbègbè Ìlá.", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00003.mp3", + "text": "Bọ̀dé ní kí àwọn ará Ondo kígbe pé wọn kò fẹ́ èrú ìbò.", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00004.mp3", + "text": "Kàyéfì ni ọ̀rọ̀ tó ń jábọ́ lẹ́nu Fáúsá àti Fàsásí lọ́jọ́ yẹn", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00005.mp3", + "text": "Ká sọ pé mo ti mọ̀ tẹ́lẹ̀ ni, màá ti gbọ́ràn sí wọn lẹ́nu", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00006.mp3", + "text": "Amọ̀fin ọ̀hún tún gba ẹgbẹ́ náà nímọ̀ràn.", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00007.mp3", + "text": "Ṣèyí ń ṣe bíi Baṣọ̀run Gáà, tí kò bọ̀wọ̀ fún òfin.", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00008.mp3", + "text": "Gómìnà ìlú Èkó ní pé Ìpínlẹ̀ Èkó ló ní ètò àbò tó dántọ́ jù.", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00009.mp3", + "text": "Ó yẹ kí fífi ìjilnlẹ̀ Yorùbá kọ àwọn ọmọdé jẹ́ nǹkan ìwúrí fún òbí.", + "language": "yoruba", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00010.mp3", + "text": "Ta ni ò mọ̀ pé àwọn àgbà jẹ́ ilé ìṣura ọgbọ́n?", + "language": "yoruba", + "speaker": "user_100" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00011.mp3", + "text": "Kí ló ń fa ìwà Ífipábánilòpọ̀ tó ń ṣẹlẹ̀ lóde báyìí?", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00012.mp3", + "text": "Ilé bàbá Dèjì ni ó ga jù ní àdúgbò wọn.", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00013.mp3", + "text": "Ọmọ ọdún méjìlá kan yìnbọn lu bàbá arúgbó méjì", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00014.mp3", + "text": "Fúnmi yege nínú ìdánwò àṣekágbánrẹ̀", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00015.mp3", + "text": "Ta ló buwọ́lu ìwé béèlì àwọn méjìlá tí ìjọba mú lọ sí ilé ẹjọ́", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00016.mp3", + "text": "Makinde ní kò sí ọwọ́jà ààrùn àìmọ̀ ẹlẹ́ẹ̀kejì ní ìpínlẹ̀ Ọ̀yọ́.", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00017.mp3", + "text": "Afurasí sọ fúnlé ẹjọ pé ẹgbẹ́ olè ló ṣàkóbá fún òun.", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00018.mp3", + "text": "Ẹgbẹ́ ọmọ Odùduwà ní Alága ti fètò ìdájọ́ sí ọjọ́ Sátidé", + "language": "yoruba", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00019.mp3", + "text": "Àwọn ọ̀nà yìí ni a ma gbà láti dé ibi ayọ̀ wá wà.", + "language": "yoruba", + "speaker": "user_101" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00020.mp3", + "text": "Nọ́mbà ìdánimọ̀ ti ṣe pàtàkì púpọ̀ ní orílẹ̀-èdè Nàìjíríà.", + "language": "yoruba", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00021.mp3", + "text": "Ìgbà tí mo dé ilé Mojí, mo pàdé bàbá mi níbẹ̀.", + "language": "yoruba", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00022.mp3", + "text": "Ilé-ìwé ṣẹ̀sí lórí akẹ́kọ̀ọ́ iléèwé wọn tí olúkọ́ lù tí ó sì fipábálòpọ̀.", + "language": "yoruba", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00023.mp3", + "text": "Orílẹ̀èdè Amẹ́ríkà ti fún mi ní ìwé ìdọmọ ìlú náà.", + "language": "yoruba", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00024.mp3", + "text": "Adéwálé ti di alága tuntun fún Ẹgbẹ́ Ẹlẹ́ṣin", + "language": "yoruba", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00025.mp3", + "text": "Olórí egúngún bá àwọn Mùsùlùmí jà ní Òṣogbo.", + "language": "yoruba", + "speaker": "user_102" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00026.mp3", + "text": "Ẹ̀rọ ìbánisọ̀rọ̀ mi ti bàjẹ́ pátápátá.", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00027.mp3", + "text": "Olùṣọ́ kò láti fẹ́ Láídé ló ṣe rán an lọ sí ẹ̀wọ̀n ọdún kan.", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00028.mp3", + "text": "Àlááfíà ti padà nítorí a ti mú àwọn tó ń dìtẹ̀ mọ́ ìjọba.", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00029.mp3", + "text": "Kò dára kí ọkùnrin ma fi ìkan falẹ̀.", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00030.mp3", + "text": "Àsìkò ti tó láti fòpin sí ìkọlù sílè ìjọsìn kankan lásìkò ìjọsìn.", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00031.mp3", + "text": "Èkó dára ju Àbújá lọ, àbí bẹ́ẹ̀ kọ́?", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00032.mp3", + "text": "Túndé Omídínà sọ pé òun yóò borí gbogbo ogun rẹ̀", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00033.mp3", + "text": "Ẹwọ́n ọdún méjì ni wọ́n fún àwọn sója mẹ́rin tó pa ènìyàn.", + "language": "yoruba", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00034.mp3", + "text": "Ṣé dandan ni kẹ sanwó èèyàn tí ẹ ò mọ̀ rárá ni?", + "language": "yoruba", + "speaker": "user_103" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00035.mp3", + "text": "Ayọ̀délé ti pa ìyàwó rẹ̀ nítorí owó orí tí ìjọba bèèrè.", + "language": "yoruba", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00036.mp3", + "text": "Àwọn Ìjọba fẹ́ kí Ìgbòho kú sí ẹ̀wọ̀n.", + "language": "yoruba", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00037.mp3", + "text": "Àwọn ọ̀dọ́mọkùnrin ní àwọ́n ò fẹ́ àbẹ̀wò Ààrẹ Bùhárí sí ìpínlẹ̀ wọn mọ́", + "language": "yoruba", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00038.mp3", + "text": "Ìjọba àwọn mẹ̀kúnnù sọ pé ẹgbẹ̀rún owó ni àwọn rí gbà", + "language": "yoruba", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00039.mp3", + "text": "Bàbá Ìgbòho ti ké sí àwọn olólùfẹ́ rẹ̀ láti dáríji agbẹjọ́rò ọkùnrin", + "language": "yoruba", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00040.mp3", + "text": "Ẹgbẹ́ àwọn awakọ̀ ṣe ìpàdé lánàá.", + "language": "yoruba", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00041.mp3", + "text": "Àwọn òṣèré orítàgé lọ́ má ń bu ẹnú àtẹ́lu ìṣẹṣe.", + "language": "yoruba", + "speaker": "user_104" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00042.mp3", + "text": "Nítorí àìsan owó oṣù, àwọn òṣìṣẹ́ ilé ìwòsàn da iṣẹ́ sílẹ̀ nílùú Èkó.", + "language": "yoruba", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00043.mp3", + "text": "Ìṣètò ìjọba wa kò da fún bí ọdún mẹ́fà báyìí.", + "language": "yoruba", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00044.mp3", + "text": "Fẹ́mi ní ẹjọ́ Ìgbòho kọ́ àwọn amòfin Nàíjíríà ní ẹ̀kọ́.", + "language": "yoruba", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00045.mp3", + "text": "Ọkùnrin kan pa ara rẹ̀ sínú ọgbà àjọ tó n mójútọ ìrìnnà ọkọ̀.", + "language": "yoruba", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00046.mp3", + "text": "Ọlọ́pàá mú afurasí tó pa oniṣowo Bódìjà kan.", + "language": "yoruba", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00047.mp3", + "text": "Àwọn ànfààní tó wà nínú ìbálọ̀pọ̀ fún ọkàn àti ara.", + "language": "yoruba", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00048.mp3", + "text": "Olóògbé gbé ìgbé ayé dada nígbàtí ó wà láyé.", + "language": "yoruba", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00049.mp3", + "text": "À ń se ìwádìí lórí àwọn tí wọ́n ń fi iṣẹ́ oníwàásù bojú.", + "language": "yoruba", + "speaker": "user_105" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00050.mp3", + "text": "Àmọ̀tẹ́kùn kò lè so èso rere nílẹ.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00051.mp3", + "text": "Mínísítà ètò ìròyìn nígbà kan rí jáde láyé lẹ́nìí.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00052.mp3", + "text": "Ẹbi ẹni tó kú síléeṣẹ́ ọṣẹ ń bèèrè fún ìdájọ́ lórí ikú ọmọ wọn.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00053.mp3", + "text": "Ilé ẹjọ́ fi ẹ̀sùn kan Ṣódípẹ̀ pé òun ló pa ọ̀rẹ́ rẹ̀.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00054.mp3", + "text": "Àwọn ayé ló tú èmi àti Ìyábọ̀ Òjó ká nítorí ọ̀rẹ́ ta jẹ́.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00055.mp3", + "text": "Ka bí o ṣe le mọ èdè Àyàn àti àgbọ́yé ìlù.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00056.mp3", + "text": "Ẹyẹ tí kò lápá kò le fò.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00057.mp3", + "text": "Ìyanulolúwa kò bẹ̀rù àṣẹ ilé ẹjọ́, ó ní kí ẹgbẹ́ má bàjẹ́ ni tòun", + "language": "yoruba", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00058.mp3", + "text": "Èèyàn kankan ò jẹ́ gúnyán ẹlòmíràn kéré, pàápàá àwọn obìnrin.", + "language": "yoruba", + "speaker": "user_106" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00059.mp3", + "text": "Mẹ́ta nìkan ló ń ṣiṣẹ́ nínú gbogbo ẹ̀rọ ìbánisọ̀rọ̀ náà.", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00060.mp3", + "text": "Kọmíṣọ́nà ọlọ́pàá Èkó ti yọ ọ̀gá àgbà kan níṣẹ́ nítorí àrùn ibà.", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00061.mp3", + "text": "Olúwo fi ẹsẹ odù Ifa ṣúre fún ọmọ Nàíjíríà ní àyájọ́ ọdún tuntun", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00062.mp3", + "text": "Arákùnrin yẹ́n fẹ́ ṣẹ́ owó ọwọ́ ẹ̀ ló fi ń rìn kiri.", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00063.mp3", + "text": "Kò sí ọ̀wọ́ngógó epo mọ́ láti ìgbà tí Ọbásanjọ́ ti lọ", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00064.mp3", + "text": "Wọ́n ti kéde ètò ìsìnkú Tọ́pẹ́.", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00065.mp3", + "text": "Ènìyàn mẹ́jọ kú ti ọgọ́fà mìíràn tún lùgbàdì ààrùn náà.", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00066.mp3", + "text": "Ẹgbẹ́ àwọn àgbẹ̀ ni Ọ̀yọ́ dìbò yan olóyè ẹgbẹ́ tuntun.", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00067.mp3", + "text": "Ìgbòho lọ́wọ́ ní àtìmọ́lé ọlọ́pàá ní Orílẹ́-èdè Nàíjíríà.", + "language": "yoruba", + "speaker": "user_010" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00068.mp3", + "text": "Bàbá Adébóyè fi lẹ́tà ìbánikẹ́dùn ṣọwọ́ sí àwọn tí wọ́n pàdánù", + "language": "yoruba", + "speaker": "user_107" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00069.mp3", + "text": "Àwọn òyìnbó sọ Túndé padà sí ìlú rẹ̀ nítorí ó tàpa sí òfin.", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00070.mp3", + "text": "Èyí tí wọn kò bá mọ̀ ni wọ́n pe àwọn oníṣègùn sí.", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00071.mp3", + "text": "Wọ́n mọ oògùn tó tọ́ fún àìsàn kọ̀ọ̀kan.", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00072.mp3", + "text": "Ààrẹ Bùhárí àti àwọn ọgbọ̀n mìíràn ló padà sí Nàìjíríà.", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00073.mp3", + "text": "Nítorí bíbọ̀wọ̀ fún àwọn ọba ni wọ́n ṣe fún Tàlàbí ní oyè.", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00074.mp3", + "text": "Ìjàmbá omíya náà ba ǹkan jẹ́ lọ́pọ̀lọpọ̀.", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00075.mp3", + "text": "Májèlé inú àmàlà ṣekúpa èèyàn mẹ́rin ní ìlú kan tí wọ́n pè ní Sobí", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00076.mp3", + "text": "Àwọn ọmọ tí wọ́n bá mú ẹsẹ̀ wáyé ní wọ́n ń pè ní Ìgè.", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00077.mp3", + "text": "Wọ́n fẹ́ sọ Ìsọ̀lá lẹ́nu nípa bó ṣe máa ń jó ní ìhòòhò", + "language": "yoruba", + "speaker": "user_108" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00078.mp3", + "text": "Mínístà fún ọ̀nà ìbáraẹnisọ̀rọ̀ ti gba àṣẹ nítorí ọ̀rọ̀ tó sọ", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00079.mp3", + "text": "Òjòjò ààrùn onígbáméjì ló mú mi, mò ń gba ìtọ́jú lọ́wọ́.", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00080.mp3", + "text": "Amẹrika ń fẹ́ ìdájọ́ òdodo lórí ìṣẹ̀lẹ̀ ọjọ́sí tó ṣẹlẹ̀ ní èkó.", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00081.mp3", + "text": "Wo ìpalára tí ojú ọjọ́ gbígbóná ń dá sílẹ̀ láàárín ìlú wa", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00082.mp3", + "text": "Kúnlé sọ pé tí òun bá sùn yọjú síta, ìjà máa ṣẹlẹ̀.", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00083.mp3", + "text": "Gómìnà ìlú Èkó fẹ́ yí orúkọ àwọn àdúgbò kan padà ní ìlú Èkó.", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00084.mp3", + "text": "Láíwọlá fagbára hàn Àdìsá nínú ìfigagbága wọn tó ṣè lọ yìí.", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00085.mp3", + "text": "Àwọn àjẹ́ ló wà nídí ọ̀rọ̀ Àrẹ̀mú.", + "language": "yoruba", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00086.mp3", + "text": "Olùdarí ìgbìmọ̀ ìgbẹ́jọ́ Ìgbòho jáde láyé.", + "language": "yoruba", + "speaker": "user_109" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00087.mp3", + "text": "Lọ́kọ láya orí ayélujára nìkan ni Abíọ́lá àti Ọdún ńṣe.", + "language": "yoruba", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00088.mp3", + "text": "Àwọn jàndùkú kan ti pa èèyàn mẹ́jọ láàárín ìlú yìí.", + "language": "yoruba", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00089.mp3", + "text": "Gómìnà ìpínlẹ̀ Èkó tí buwọ́lu òfín tó de kíkó ẹran jẹko láàrín ìgboro", + "language": "yoruba", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00090.mp3", + "text": "Ọlá ní inú òun kò dùn rárá.", + "language": "yoruba", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00091.mp3", + "text": "Bámilóyè ni gómìnà àkọ́kọ́ tó fẹ́ obìnrin kan ṣoṣo.", + "language": "yoruba", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00092.mp3", + "text": "Àwọn olùgbé Ayétòrò ní ó sàn káwọn kú.", + "language": "yoruba", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00093.mp3", + "text": "Olórí ẹbí àti àwọn ẹbí lè gbéná wojú ara wọn láìpẹ́ lórí ọ̀rọ̀ yìí.", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00094.mp3", + "text": "Èèyàn mẹ́ẹ̀ẹ́dógún ló jóná nígbà tí ọkọ̀ ìjọba kan gbaná jẹ.", + "language": "yoruba", + "speaker": "user_110" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00095.mp3", + "text": "Àwọn ọba Yorùbá ṣe ìpàdé mọ́júmọ́.", + "language": "yoruba", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00096.mp3", + "text": "Ìpínlẹ̀ Òǹdó lè bọ́ orílẹ̀-èdè yí pẹ̀lú àwọn ohun àlùmóọ́nì rẹ̀.", + "language": "yoruba", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00097.mp3", + "text": "Báàlù ológun tó jábọ́ ti ṣekú pa àwọn ará ìlú mẹ́fà.", + "language": "yoruba", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00098.mp3", + "text": "Adétóyè gan-an ni olóri àwọn o ní jìbìtì ní Nàìjíríà.", + "language": "yoruba", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00099.mp3", + "text": "Adé àti Ọlá padà di ọmọ ilé ìwé wa.", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00100.mp3", + "text": "Adé ń gbádùn ọkọ ayọ́kẹ́lẹ́ tó rà lọ́sẹ̀ tó lọ.", + "language": "yoruba", + "speaker": "user_111" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00101.mp3", + "text": "Òṣùpá fíi ìkíni ọjọ́ ìbí ránṣẹ́ sí Àlàbí.", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00102.mp3", + "text": "Ọba ni Dáfídì nínú bíbélì, òun náà ló kọ sáàmù", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00103.mp3", + "text": "Wọ́n ti gba arábìnrinn kan láàyè láti wá tọrọ ìdáríjì ẹ̀ṣẹ̀.", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00104.mp3", + "text": "Ẹ wo bí ìjíròrò tó dán mọ́rán ṣe ń lọ láàárin àwọn ọmọ orogún.", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00105.mp3", + "text": "Tí ìparí ọ̀sẹ̀ bá dé, mo máa pàdé Adébọ́lá ní ilé ọtí", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00106.mp3", + "text": "Kí ọlọ́kadà náà ó tó kú ó sọ ẹni tó ṣá òun ní àdá.", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00107.mp3", + "text": "Ọlọ́run gbé àdánwó lé Adé lọ́wọ́.", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00108.mp3", + "text": "Apanilẹ́rìí ní àwọn òṣèré tó kú láàrin ọjọ́ méje tó kọjá", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00109.mp3", + "text": "Àwọn ìkọlù tó ṣẹlẹ̀ lọ́jọ tí ìyá mi kúrò ní ìlú yà mí lẹ́nu", + "language": "yoruba", + "speaker": "user_112" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00110.mp3", + "text": "Ọ̀gá kan ní báńkì rí ẹ̀wọ̀n ọdún méta he nítorí jìbìtì", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00111.mp3", + "text": "Ilé kan wó ní Ọbáléndé lánàá.", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00112.mp3", + "text": "Ọlá ṣàlàyé bó ṣe di ẹni tí aráyé ń wárí fún.", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00113.mp3", + "text": "Àlùbami ni Ṣégun máa ń lu ìyàwó rẹ̀.", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00114.mp3", + "text": "Tírélà agbépo ṣekúpa ọmọ ìyá méjì àtàwọn mẹ́ta míì.", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00115.mp3", + "text": "Adé ń tọrọ lọ́wọ́ ọlọ́run fún ẹ̀bùn àdúrà", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00116.mp3", + "text": "Ìyàwó bímọ mẹ́wàá lẹ́ẹ̀kan ṣoṣo lẹ́yìn tó ti bí ìbejì tẹ́lẹ̀.", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00117.mp3", + "text": "Akoni obìnrin ni Ìyálóde Ẹfúnṣetán. Ó jé ìyálọ́jà àti olóṣèlú", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00118.mp3", + "text": "Kí ló mú òjòwú ọ̀rẹ́kùnrin fì ìbínú yìnbọn lu ọ̀rẹ́bìnrin rẹ̀?", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00119.mp3", + "text": "Àwọn ará Ọ̀sun wòó bí Babaláwo ṣe gé apá àti ẹsẹ̀ ẹ̀", + "language": "yoruba", + "speaker": "user_113" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00120.mp3", + "text": "Wàhálà Nàíjíríà ti pọ̀jù fún Ààrẹ ilẹ̀ wa.", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00121.mp3", + "text": "Ìjọba ìpínlẹ̀ Èkó ti rọ àwọn ènìyàn láti má ṣe ìdájọ́ lọ́wọ́ ara wọn.", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00122.mp3", + "text": "Òjíṣẹ́ Ọlọ́run ní o lè gbàdúrà ìparí ọdún nílé rẹ.", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00123.mp3", + "text": "Ìjọba ti ń gbé ìgbésè lórí àwọn ẹlẹ́gbẹ́ òkùnkùn.", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00124.mp3", + "text": "Délé Mọ̀mọ́dù ń bẹ̀bẹ̀ àdúrà lọ́wọ́ àwọn ará ìlú nípa ìbò", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00125.mp3", + "text": "Káshìmáawòó ni orúkọ kejì tí wọ́n sọ Olóyè Abíọ́lá", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00126.mp3", + "text": "Ìlú Iléṣà ni àwọn bàbá tí máa ń fẹ́ràn àwọn ọmọbìnrin jù lọ.", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00127.mp3", + "text": "Àwọn ará Sàró ti sọ ìrírí ayọ̀ tí wọ́n ní nípa gbígbá bọ́ọ́lù wọlé.", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00128.mp3", + "text": "Ẹ̀dá tí Ọlọ́run dá àwọn obìnrin lágbára gan ni.", + "language": "yoruba", + "speaker": "user_114" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00129.mp3", + "text": "Ìjọba ìpínlẹ̀ Òǹdó ti fẹ́ pàse ẹ̀kọ́ ọ̀fẹ́ fún àwọn akẹ́kọ̀ọ́.", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00130.mp3", + "text": "Ètò ọrọ̀ ajé Nàíjíríà ti bàjẹ́ pátápátá.", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00131.mp3", + "text": "Bàbá Ìjẹ̀shà sọ fún amòfin àgbà pé kó ṣàlàyé bó ṣe di agbẹjọ́rò", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00132.mp3", + "text": "Ọ̀pọ̀ nnkan tó bàmí nínú jẹ́ ni ojú mi rí lọ́dún tó kọjá.", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00133.mp3", + "text": "Iléeṣẹ́ epo rọ̀bì ná owó gọbọi lórí àwọn irinṣẹ́ wọn.", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00134.mp3", + "text": "Ọkan lárá àwọn ìbejì Adégbàyí ni Amọ́lẹ́gbẹ́", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00135.mp3", + "text": "Àwọn onímọ̀ sáyẹ́ǹsì Nàíjíríà ṣe ẹ̀rọ àyẹ̀wò ààrùn jáde.", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00136.mp3", + "text": "Ìyàwó ọ̀kan lára olówó ilẹ̀ wa jáwèé ìkọ̀sílẹ̀ fún un.", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00137.mp3", + "text": "N kò ni nǹkan kan sọ lórí fídíò to gba ayélujára kan.", + "language": "yoruba", + "speaker": "user_115" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00138.mp3", + "text": "Kò sí ẹni tó le gba ìtọ́jú nílẹ̀ òkèèrè láì san owó púpọ̀", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00139.mp3", + "text": "Ayọ̀mídé máa ń ka ọ̀rọ̀ kún gan nítorí kò fi bẹ́ẹ̀ ní ìgboyà.", + "language": "yoruba", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00140.mp3", + "text": "Adéṣína ní àwọn olùwọ́de tó já sọ́ọ̀bù kìí ṣe torí ebi.", + "language": "yoruba", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00141.mp3", + "text": "Ọkọ ká ìyàwó pẹ̀lú àlè ní ìgbéyàwó kọ̀la.", + "language": "yoruba", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00142.mp3", + "text": "Àrẹ̀mú ní gbogbo àwọn tó yí Ìgbòho ká pàtàkì ti sọ̀rọ̀ sókè.", + "language": "yoruba", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00143.mp3", + "text": "Ìjọba Òǹdo ní òun yóò gbé ibùdó ìgbókùsíí kúrò nílé ìwòsàn.", + "language": "yoruba", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00144.mp3", + "text": "Àwọn afẹ́nifẹ́re ló pín ẹran ọdún délé mi nítorí ìfẹ́ wọ́n ní sí mi.", + "language": "yoruba", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00145.mp3", + "text": "Bùhárí ti sọ ìdí tí àwọn ọmọ orílẹ̀ èdè wa fi ṣe ìfẹ̀hónúhàn", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00146.mp3", + "text": "Ìjọba ti ṣe àtúntò tó yẹ báyìí.", + "language": "yoruba", + "speaker": "user_116" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00147.mp3", + "text": "Bọ́lájí ni ìyàwó Gomìnà àkọ́kọ́ tó jẹ ní Ìbàdàn.", + "language": "yoruba", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00148.mp3", + "text": "Ìjọba máa ṣe àbẹ̀wò fún àwọn nǹkan tó tako ìlera láwùjọ.", + "language": "yoruba", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00149.mp3", + "text": "Àṣírí ikú tó pa Adébáyọ̀ Fálétí kò hàn sí ẹnìkankan báyìí", + "language": "yoruba", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00150.mp3", + "text": "Mo bó nínú àrùn àti òṣì nínú ọdún tí a fẹ́ kó sí yìí.", + "language": "yoruba", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00151.mp3", + "text": "Olúgbọ́n àti Arẹ̀sà ni wọ́n ọba olókìkí ní Ògbómọ̀ṣọ́", + "language": "yoruba", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00152.mp3", + "text": "Gómìnà Mákindé gbàlejò àwọn alùfáà lásìkò ààrùn jẹjẹrẹ.", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00153.mp3", + "text": "Ilé ìfowópamọ́ ní owó gọbọi ní yóò ná Nàíjíríà láti tẹ owó jáde.", + "language": "yoruba", + "speaker": "user_117" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00154.mp3", + "text": "Ẹ ṣọ́ra fún gbígba ayédèrú ìwé ẹ̀rí àyẹ̀wò Kòrónà.", + "language": "yoruba", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00155.mp3", + "text": "Àlàó-Akálà ní ó yẹ kí òfin wà fún àwọn gómìnà tó bá rúfin.", + "language": "yoruba", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00156.mp3", + "text": "Àwọn ọmọ ogun mérìndínlógún ló darapọ̀ mọ́ ẹgbẹ́ òṣèlú wa", + "language": "yoruba", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00157.mp3", + "text": "Àwọn olùkọ tí mo pàdé nílé Fẹ́mi Ọ̀tẹ́dọlá ti fi iṣẹ́ sílẹ̀", + "language": "yoruba", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00158.mp3", + "text": "Òtútù burúkú ló ń mú mi nílè Gẹ̀ẹ́sì.", + "language": "yoruba", + "speaker": "user_118" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00159.mp3", + "text": "Àwọn ajínigbé ya bò wọ́n ní ojú ọ̀nà, wọ́n sì gbé ọmọ kan lọ", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00160.mp3", + "text": "Àwọn onílù Aláàfin Ọ̀yọ́ ní olórí tó yẹ ní Aláàfin tó ṣẹ̀ wàjà.", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00161.mp3", + "text": "Bàbá Sùwé ti gba béèlì àbúrò ẹ̀ lọ́wọ́ ọlọ́pàá ìlú Iléṣà", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00162.mp3", + "text": "Ọ̀fẹ́ ni ẹ o máa gbọ́ ìròyìn Yorùbá lórí àwọn ẹ̀rọ ayélujára.", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00163.mp3", + "text": "Wọ́n ti ṣètùtù tó yẹ fún Ọọ̀ni Ifẹ̀ kó tó gorí oyè.", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00164.mp3", + "text": "Ibá ku díẹ̀ kí wọ́n rán mi lọ sọ́run alákeji láìpé ọjọ́", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00165.mp3", + "text": "Àdìsá kò jẹ́ káwọn obìnrin wọlé.", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00166.mp3", + "text": "Ọlá ní gbọin-gbọin lòun wà lẹ́yìn Àdìsá.", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00167.mp3", + "text": "Kí ló fa ìjà láàárín ìlú mẹ́ta tó ń jà sí odò àgbáyé?", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00168.mp3", + "text": "Ilé iṣẹ́ ológun ti kìlọ̀ pé kí gbogbo èèyàn dúró sílé lọ́jọ́ ọdún iléyá.", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00169.mp3", + "text": "Oṣù kan péré ni Àjídé fi ṣe ìgbéyàwó pẹ̀lú Adélékè.", + "language": "yoruba", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00170.mp3", + "text": "Ìwé tí mo ní kí o kà lọ́jọ́sí, wọ́n ti ṣe é sínu fọ́nrán.", + "language": "yoruba", + "speaker": "user_011" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00171.mp3", + "text": "Ṣé ní òótọ́ ni pé wíwọ páàdì lè já ìbálé obìnrin?", + "language": "yoruba", + "speaker": "user_119" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00172.mp3", + "text": "Ìlú Òndó ni wón tí má jẹ ajá.", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00173.mp3", + "text": "Wọ́n ṣe fídíò òkú bàbá rẹ̀ kiri lórí ayélujára.", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00174.mp3", + "text": "Ẹ̀yin ọ̀dọ́ ẹ gbé èdè abínibí lárugẹ.", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00175.mp3", + "text": "Wálé ti dágbére fú àwọn ọ̀rẹ́ ẹ̀ nítorí aṣọ ọdún", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00176.mp3", + "text": "Èèyàn Mọ́kànlá dèrò ọ̀run n‘Ibadan torí àrùn àìmọ̀dí", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00177.mp3", + "text": "Ọ̀rẹ́ olóògbé ní Dámilọ́lá kò tó sàìsàn.", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00178.mp3", + "text": "Òfin ti gbésẹ̀ lé oyún ṣíṣẹ́ ní ilè òkèèrè àwọn aláwò funfun.", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00179.mp3", + "text": "Ìpádé míràn yóò wáyé láàárín àwa àti ìjọba lọ́jọ́ ajé tí ó ń bọ̀.", + "language": "yoruba", + "speaker": "user_120" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00180.mp3", + "text": "Ọlọ́pàá dóòlà òṣìṣẹ́ iléèṣẹ́ méjì tí ajínigbé gbé sálọ.", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00181.mp3", + "text": "Agbẹnusọ fún àjọ alámòójútó ètò ìdìbò ti fi ìwé pe Sàràkí", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00182.mp3", + "text": "Ó ti pé ọgọ́rùn-ún ọjọ́ tí ìjọba ti f'òfin de wá.", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00183.mp3", + "text": "Gómìnà obìnrin ẹyọ kan péré la ti ní ní ìpínlẹ̀ Ayédé", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00184.mp3", + "text": "Inú àbótí ńlá ni Àjàní kó gbogbo àwọn aṣọ rẹ̀ sí.", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00185.mp3", + "text": "Àmọ̀tẹ́kùn ti gba àṣẹ ìdáábòbò lọ́wọ́ ìjọba.", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00186.mp3", + "text": "Ọ̀gá ni Bọ́lá jẹ́ fún Bọ̀dé lágbo òṣèlú.", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00187.mp3", + "text": "Olóńgbò bàbah gbé ẹja bàbá jẹ.", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00188.mp3", + "text": "Àsìkò àjàkálẹ̀ ààrùn yìí jẹ́ kí n di télọ̀ tó mọṣẹ́ gidi.", + "language": "yoruba", + "speaker": "user_121" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00189.mp3", + "text": "Ọ̀daràn mẹ́jọ ni wón mú ní ìlú Èrúwà lánàá.", + "language": "yoruba", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00190.mp3", + "text": "Lọ sí ilé Délé Gíwá láti wo àwọn akẹ́kọ̀ọ́ tó ń gbé ibẹ̀.", + "language": "yoruba", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00191.mp3", + "text": "Àjọ elétò ìlera ti ní íjọba ti ra àwọn ohun ìgbógun ti ààrùn.", + "language": "yoruba", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00192.mp3", + "text": "Omi gbé arákùnrin ẹni ọdún mẹ́tàlá kan lọ ní Ìbàdàn", + "language": "yoruba", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00193.mp3", + "text": "Àdúrà ò ní padà gbà mọ́ nígbà tí àbòsí bá ti pọ̀ jù.", + "language": "yoruba", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00194.mp3", + "text": "Gbajúgbajà òṣẹ̀ré Òrìṣàbùnmi ti kú.", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00195.mp3", + "text": "Agbẹjọ́rò ẹbí olóògbé Láwuyì ti yá owó ńlá kan ní báǹkì", + "language": "yoruba", + "speaker": "user_122" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00196.mp3", + "text": "Arákùnrin tí àwọn ọlọ́pàá mú ní òun kìí ṣe olè.", + "language": "yoruba", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00197.mp3", + "text": "Tírélà agbépo ṣekúpa ọmọ ọdún méjì àti àwọn mẹ́ta míì", + "language": "yoruba", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00198.mp3", + "text": "Àwọn Fúlàní ya bo ilé ìtura àwọn akẹ́kọ̀ọ́ wa", + "language": "yoruba", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00199.mp3", + "text": "Wọ́n fi Ṣàǹgó búra fún ààrẹ Nàìjíríà tuntun.", + "language": "yoruba", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00200.mp3", + "text": "Ìyálé mi ti di ẹ̀rùjẹ̀jẹ̀ nínú ìlú, kò sí ẹni tó le múu", + "language": "yoruba", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00201.mp3", + "text": "Ilé ẹjọ́ gíga wọ́gilé ìyọnípò Àdìsá gẹ́gẹ́ bíi alága ẹgbẹ́ rẹ̀.", + "language": "yoruba", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00202.mp3", + "text": "Ẹ̀sùn àjẹbánu àti lílo owó báṣubàṣu la fi kàn olóyè náà.", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00203.mp3", + "text": "Ẹnìkan pe àwọn wí pé ilé kan ń jó ní agbègbè náà.", + "language": "yoruba", + "speaker": "user_123" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00204.mp3", + "text": "Ọwá Obòkun ni orúkọ ọba ìlú Iléshà, Ajerò ni ti Ìjerò", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00205.mp3", + "text": "Túndé kó sí gbaga ọlọ́pàá nítórí ikú ọmọ ọdún mẹ́wàá kan.", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00206.mp3", + "text": "Ó tẹ̀síwájú pé kò sí ẹnikẹ́ni tó farapa níbi ìṣẹ̀lẹ̀ náà.", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00207.mp3", + "text": "Lékan ní òun kò lérò pé òun le mókè nínú iṣẹ́ orin.", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00208.mp3", + "text": "Pásítọ̀ na àwọn ọmọ ìjọ láti mọ̀ bí wọn ṣe gbóná fún Ọ́lọ́run tó.", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00209.mp3", + "text": "Gómìnà Makinde bá mọ̀lẹ́bí ọkùnrin náà kẹ́dùn lọ́jọ́ náà", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00210.mp3", + "text": "Ìjọba àpapọ̀ ń sọ̀rọ̀ tòótọ́ fún wa.", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00211.mp3", + "text": "Ìwòsàn ló bá Kẹ́mi dáwọ́ ìtọ̀ dúró.", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00212.mp3", + "text": "Túńdé pe gbogbo ẹgbẹ́ jọ láti sọ fún wọn pé kí wọ́n gbaradì.", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00213.mp3", + "text": "Bí àwọn ará ìlú ṣe fara mọ́ ṣíse àbẹ́rẹ́ àjẹsára ni mo ta kò", + "language": "yoruba", + "speaker": "user_124" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00214.mp3", + "text": "Ẹ̀bà gígan ni Bísí jẹ sùn lánàá.", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00215.mp3", + "text": "Awọn akọ́mọlédè lórílẹ̀ èdè yìí ti rọ àwọn ọmọ Yorùbá lóyè", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00216.mp3", + "text": "Ẹgbẹ́ fún ìdàgbàsókè ọrọ̀ ajé ti fún àwọn obìnrin lówó níbàdàn.", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00217.mp3", + "text": "Nínú Ọlọ́pàá àti ààrùn jẹjẹrẹ, èwo ló yẹ ka bẹ̀rù?", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00218.mp3", + "text": "Àwọn àgbàgbà ọlọ́pàá ti ṣàánú ọmọbìnrin tí wọn gbámú", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00219.mp3", + "text": "Olórí gbọ́dọ̀ jẹ́ ẹni tó lóòótọ́, tí ò ní máa ṣọ̀tún-ṣòsì.", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00220.mp3", + "text": "Olúọmọ oṣòdì má gbé jàgídíjàgan wá.", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00221.mp3", + "text": "Aṣọ agbádá ni bàbá Àbẹ́ní wò wá sí ilé Àjàní.", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00222.mp3", + "text": "Ìdí tí Ìyábọ̀ Ọbásanjọ́ fi ṣe pàtàkì ní ìpínlẹ̀ Ògùn nìyí o", + "language": "yoruba", + "speaker": "user_125" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00223.mp3", + "text": "Ikú burúkú ló pa ìyàwó Rẹ̀mí ní ìjẹrin.", + "language": "yoruba", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00224.mp3", + "text": "Olúmidé ti rọ àwọn ènìyàn pé kí wọn má fojú òṣèlú wo àbẹ̀wò òun.", + "language": "yoruba", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00225.mp3", + "text": "Ǹkan mẹ́ta ló fàá tí jàndùkú fi ń yìnbọn pa àwọn ọlọ́pàá", + "language": "yoruba", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00226.mp3", + "text": "Àwọn aṣewádìí náà gbọ́dọ̀ ri pé wọ́n ṣe ìwádìí wọn fínnífínní", + "language": "yoruba", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00227.mp3", + "text": "Wọ́n ní àwọn méjìlá ní wọ́n bódòlọ.", + "language": "yoruba", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00228.mp3", + "text": "Ẹgbẹ́ ọmọ bíbí Òkè Ọya ti ń bẹ̀bẹ̀ àtìlẹyìn fún ṣèyí Máyọ̀wá.", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00229.mp3", + "text": "Àwọn jàndùkú jí Rẹ̀mí gbé.", + "language": "yoruba", + "speaker": "user_126" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00230.mp3", + "text": "Bùhárí ń bèèrè fún àforíjìn gbèsè tí a jẹ lọ́dọ̀ àjọ àgbáyé", + "language": "yoruba", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00231.mp3", + "text": "Àwa la gbé ìgbá orókè nínú ìdíje eré bọ́ọ̀lù ní Ìbàdàn", + "language": "yoruba", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00232.mp3", + "text": "Bílíònú mẹ́fà ni ìjọba ìpínlẹ̀ Ekiti yòó ná lórí Àmọ̀tẹ́kùn.", + "language": "yoruba", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00233.mp3", + "text": "Gómìnà Ọbásànyà yọ ọ̀gá ikọ̀ ọlọ́pàá nípò.", + "language": "yoruba", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00234.mp3", + "text": "Adéwálé fèsì padà pé àwọn àgbààgbà tó ní owó lọ́wọ́ wà níbẹ̀.", + "language": "yoruba", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00235.mp3", + "text": "Ṣé lóòtọ́ ni pé ilé ẹjọ́ sọ pé kí Àrẹ̀mú lọ sí ẹ̀wọ̀n.", + "language": "yoruba", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00236.mp3", + "text": "Aṣáájú ní iléeṣẹ́ ológun ti yabo ibùdó àwọn jàndùkú.", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00237.mp3", + "text": "Sanwó Olú ti gba àwòrán apanilẹ́rín kan nílùú Èkó.", + "language": "yoruba", + "speaker": "user_127" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00238.mp3", + "text": "Ọwọ́ àwọn agbófinró tẹ afurasú oníjìbìtì tó lu Kẹ́mi ní jìbìtì owó.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00239.mp3", + "text": "Irọ́ ni wọn ń pa, mi ò sálọ sí sílẹ̀ òkèrè nítorí ìwọ́de.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00240.mp3", + "text": "Òtútù àsìkò yìí pọ̀ lápọ̀ jù.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00241.mp3", + "text": "Esì àyẹwò ọmọ ati ìyáwọ ọmọ Atiku ti jáde.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00242.mp3", + "text": "Wo ìkílọ̀ Ìjọba àpapọ̀, Ọlọ̀pàá àti Gómìnà Sanwó-olú.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00243.mp3", + "text": "Ààrẹ àkọ́kọ́ ní Ọ̀yọ́ jáde láyé.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00244.mp3", + "text": "Mo ní kí wọ́n yé ṣe àwáwí fún bàbá Ìjẹ̀shà fún oun tó ṣẹ", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00245.mp3", + "text": "Àwọn èèyàn pàdánù ẹ̀mí wọn nínú ìjàmbá ọkọ ní Èkó.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00246.mp3", + "text": "Ẹgbẹ́ alátakò ni wón.", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00247.mp3", + "text": "Orilẹ ede Nàìjíríà ni lati ni ilọsiwaju ninu iṣẹ sinimá.", + "language": "yoruba", + "speaker": "user_128" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00248.mp3", + "text": "Ẹni tó fí ìbínú lu Ábúdù ọlọ́kadà pa ní Abẹ́òkuta ti sálọ.", + "language": "yoruba", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00249.mp3", + "text": "Ayẹyẹ elégún yẹn yóò párí ní Ọjọ́ Ajé tó ń bọ̀.", + "language": "yoruba", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00250.mp3", + "text": "Wọ́n ti kéde ètò ìsìnkú Ajímájàṣán àti ọjọ́ tí wọn yóò sin-ín", + "language": "yoruba", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00251.mp3", + "text": "Ọdún kẹ́ta rẹ̀é ti ọkọ àti ìyàwó ò tí ì bímọ.", + "language": "yoruba", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00252.mp3", + "text": "Ìbànújẹ́ gba ìlú kan nígbà tí àṣìta ìbọn ba ọmọ ọdún méjì kan.", + "language": "yoruba", + "speaker": "user_129" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00253.mp3", + "text": "Ọwọ́ tẹ afurasí ọ̀daràn kan tí ó fi orúkọ ọba lu jìbìtì", + "language": "yoruba", + "speaker": "user_012" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00254.mp3", + "text": "Wọ́n ní kí àwọn èèyàn dẹ́kun láti máa pe àwọn obìnrin ní aṣéwó.", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00255.mp3", + "text": "Àwọn ológun ti gbàjọba ní ìlú kan tó wà lẹ́gbẹ̀ẹ́ Odò Ọya", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00256.mp3", + "text": "Gómìnà Oyètọ́lá ti pè fún alàáfíà láàrin àwọn ọmọ ẹgbẹ́ rẹ̀", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00257.mp3", + "text": "Amọ̀fin tó ń ṣáájú ikọ̀ agbẹjọ́rò fún ẹgbẹ́ náà ní ìlànà.", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00258.mp3", + "text": "Iléẹjọ́ ṣe ìdájọ́ iléìfowópamọ́ lori ìwà jìbìtì.", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00259.mp3", + "text": "Ọlá yóò gúnlẹ̀ sí Ọ̀yọ́ ní ọ̀sẹ̀ tó ń bọ̀.", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00260.mp3", + "text": "Èmi àti Túndé ti kọ́ ẹ̀kọ́ síi nípa ààlọ́ Yorùbá", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00261.mp3", + "text": "Kí lẹ̀ ń bú ààrẹ fún nítorí Ọlọ́run.", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00262.mp3", + "text": "Ènìyàn mẹjọ mìíràn tún ti ní ààrùn jẹjẹrẹ ní Nàìjíríà.", + "language": "yoruba", + "speaker": "user_130" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00263.mp3", + "text": "Ọmọbìnrin kan ti rí ẹran ara èèyàn nínú ilé ọ̀rẹ́kùnrin ẹ̀", + "language": "yoruba", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00264.mp3", + "text": "Rẹ̀mi ti kú nípa ìkọlù tó wáyé.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00265.mp3", + "text": "Àwọn olórí Yorùbá ti ní kò ní sí ètò ìdìbò lọ́dún tó ń bọ̀.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00266.mp3", + "text": "Ìtàn málegbàgbé ni àwọn ìtàn akọni bíi Mọ́remí ní àwùjọ Yorùbá.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00267.mp3", + "text": "Sanwó-Olú ní ìbùdó ìgbé ọkọ̀ sí yóò wà yíká Èkó.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00268.mp3", + "text": "Àwọn dókítà ti ń ṣe ìdánilẹ́kọ̀ọ́ ìmọ̀tótó fún àwọn ọ̀dọ́.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00269.mp3", + "text": "Àwọn òyìnbó aláwọ̀ funfun ṣì tún ń bọ̀ wá kó wa lẹ́rú lẹ́ẹ̀kan si.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00270.mp3", + "text": "Ẹ wo adúrú nǹkan tí wọ́n ma ń tò pọ̀ láti sín àwọn òṣèré.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00271.mp3", + "text": "Àwọn òṣèrè sinimá ti ń gbìnyànjú lórí fífi àmì ohùn sí ọ̀rọ̀.", + "language": "yoruba", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00272.mp3", + "text": "Ọwọ́ àwọn ọ̀dọ́ tẹ awọn ajínigbé kan ní Ìbàdàn.", + "language": "yoruba", + "speaker": "user_131" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00273.mp3", + "text": "Bàbá bàbá mi ni Lèmọ́mù àkọ́kọ́ ní Ìbàdàn.", + "language": "yoruba", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00274.mp3", + "text": "Obìnrin kan gún ọ̀rẹ́kùnrin rẹ̀ pa nítorí kò fún òun lóyún.", + "language": "yoruba", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00275.mp3", + "text": "Wọ́n ti ṣilẹkùn ilé ìwé padà lẹ́yìn tí wọ́n bọ́ nínú ààrùn náà.", + "language": "yoruba", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00276.mp3", + "text": "Kẹ́mi Dáìró ti tún àṣírí àwọn ṣẹ́nítọ̀ orílẹ̀ èdè Nàìjíríà.", + "language": "yoruba", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00277.mp3", + "text": "Bọ̀dé ní òun ti di atúnbí àti ajíhìnrere.", + "language": "yoruba", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00278.mp3", + "text": "Adérẹ̀mí Ọbásanmí padà sílé aṣòfin àgbà fún sàá míràn.", + "language": "yoruba", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00279.mp3", + "text": "Àṣẹ̀yìnwá àṣẹ̀yìnbọ̀, gbogbo oun tí a bèèrè ni a ti rí gbà.", + "language": "yoruba", + "speaker": "user_132" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00280.mp3", + "text": "Wọ́n ní kọ́ mú ẹnu kúrò nínú ọ̀rọ̀ nàá.", + "language": "yoruba", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00281.mp3", + "text": "Kò ju nǹkan bíi wákàtí mẹ̀ta tí a kúrò níbẹ̀.", + "language": "yoruba", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00282.mp3", + "text": "Ẹgbẹ́ ọmọ Odùduwà bẹ̀bẹ̀ lọ́wọ́ Ọlọ́run pẹ̀lú ààwẹ̀ àti àdúrà", + "language": "yoruba", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00283.mp3", + "text": "Àwọn agbófinró rí òkú bàbá arúgbó kan ní ẹ̀bá ọ̀nà.", + "language": "yoruba", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00284.mp3", + "text": "Ìjọba Àkúrẹ́ àti Oǹdó ti pinnu láti ní àjọṣepọ̀", + "language": "yoruba", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00285.mp3", + "text": "Ọkùnrin tó lẹ òkuta mọ́ ǹkan ọkùnrin rẹ̀ ti dèrò ọ̀run", + "language": "yoruba", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00286.mp3", + "text": "Ilé aṣòfin ìpínlẹ̀ Oyo jáwée lọ sinmi nílé fún alága ìgbìmọ̀.", + "language": "yoruba", + "speaker": "user_133" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00287.mp3", + "text": "Ọdùn mẹ́fà sẹ́yìn ni ogun kọ́kọ́ bẹ́ sílẹ̀ ní agbègbè náà.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00288.mp3", + "text": "Ọ̀rọ̀ Sàràkí lu ìkànnì pa.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00289.mp3", + "text": "Mo gbóṣùbà fún àwọn tó bá mi sọ̀rọ̀ nípa àwọn mẹ̀kúnnù", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00290.mp3", + "text": "Àfáà Kàrímù ń wáàsù kí àwọn alátìlẹ́yìn rẹ̀ má gba abẹ́rẹ́ àjẹ́sára.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00291.mp3", + "text": "Ènìyàn mẹ́tàdínlógún kú nínú ìjàmbá ọkọ̀ mẹ́ta tó ṣẹlẹ̀ ní Osun.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00292.mp3", + "text": "Adé ti kó lọ sí ìlú òyìnbó láti ìlú Èkó.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00293.mp3", + "text": "Àwọn olorì ti ń kú rò nílùú lẹ́yọ kọ̀ọ̀kan nítorí àìsàn ọba.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00294.mp3", + "text": "Àwọn olùgbé rawọ́ ẹ̀bẹ̀ sí ìjoba lẹ́yìn tí òjò rọ̀ nílùú Ìlọrin.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00295.mp3", + "text": "Ohun burúkú ń ṣẹlẹ̀ l'Ọ́yọ̀.", + "language": "yoruba", + "speaker": "user_134" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00296.mp3", + "text": "Ọmọ Ìgbòho ni agbẹjọ́rò Ìgbòho.", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00297.mp3", + "text": "Lọ́dọ̀ ìjọba àpapọ̀ ni a ti gbọ́ ìpè fún àgùbánirọ̀ àwọn ọ̀dọ́.", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00298.mp3", + "text": "Ọba kan ní Ìmẹ̀sí ilé ti sọ owó púpọ̀ nù lọ́jà", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00299.mp3", + "text": "Adé ní òun kò ní fi iṣẹ́ eré tíátà sílẹ̀.", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00300.mp3", + "text": "Ṣé o wá lè jókòó láì farapa ní àyè yẹn?", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00301.mp3", + "text": "Ìyá olorì banújẹ́ lórí bí ọmọ rẹ̀ ṣé ṣeọ̀pọ̀ èèyàn níbí.", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00302.mp3", + "text": "Báyọ̀wá sọ pé àánú Ọlọ́run ló sọ òun di akọrin lónìí", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00303.mp3", + "text": "Owó oṣù ènìyàn ọgbọ̀n ni ẹnìkan gbà lójúmọ́ kan.", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00304.mp3", + "text": "Iléeṣẹ́ ọmọogun Nàíjíríà ti dárúkọ ọ̀gágun táwọn agbébọn pa.", + "language": "yoruba", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00305.mp3", + "text": "Ọ̀dẹ́dọlá ní òun nílò ẹni tó jólóòtọ́ ní iléeṣé òun.", + "language": "yoruba", + "speaker": "user_135" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00306.mp3", + "text": "Olóògbé Táíwò Adégbóyèga jẹ́ ènìyàn pàtàkì ní orílẹ̀-èdè yìí.", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00307.mp3", + "text": "Ọjọ́ tó burú jùlọ nínú ìrìnàjò òṣèlú ni ọjọ́ ti Adéwálé darapọ̀ mọ́ wa", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00308.mp3", + "text": "Débọ̀ ti sọ̀rọ̀sókè fún ìjọba Nàìjíríà lẹ́yìn tó ti àtìmọ́lé dé.", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00309.mp3", + "text": "Ní ìpínlẹ̀ Èkó, mo bèèrè fún ààbò lọ́wọ́ ọlọ́pàá", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00310.mp3", + "text": "Bí iléeṣẹ́ ọlọ́pàá nílẹ̀ òkèrè ṣe parí ẹ̀ṣùn rẹ̀, ó padà sí ìlú rẹ̀.", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00311.mp3", + "text": "Kò yẹ kí ìyà jẹ́ bàbá àti ìyá, kó tún wá jẹ ọmọ náà.", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00312.mp3", + "text": "Àwọn ọlọ́pàá fìdí rẹ̀ múlẹ̀ wí pé ọkùnrin ló fẹ́ pa ara rẹ̀.", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00313.mp3", + "text": "Wo bo ṣe le dá ojúlówó àti ẹbu áàpù mọ̀.", + "language": "yoruba", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00314.mp3", + "text": "Ó ṣe pàtàkì fún gbogbo ọmọ orílẹ̀-èdè láti pawọ́pọ̀ tùn ìlu yìí se.", + "language": "yoruba", + "speaker": "user_136" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00315.mp3", + "text": "Àwọn géńdé agbébọn ló lè dènà ogun pẹ̀lú àwọn Fúlàní", + "language": "yoruba", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00316.mp3", + "text": "Mo ṣe fídíò láti tọrọ owó tórí àìsàn ìtọ̀ ṣúgà tí mo ní.", + "language": "yoruba", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00317.mp3", + "text": "Gbígba ilẹ̀ fún ìdaranjẹ̀ lẹ́kùn gúúsù ó dára.", + "language": "yoruba", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00318.mp3", + "text": "Àmọ́ wọ́n ní nǹkan kò rọgbọ ní orílẹ̀ èdè Nàìjíríà.", + "language": "yoruba", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00319.mp3", + "text": "Ọba Àlàó àti Olorì rẹ̀ bí ìbejì lẹ́yìn tí nǹkan oṣù ti dúró.", + "language": "yoruba", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00320.mp3", + "text": "Dàpọ lọ si Ọ̀ṣun láti polongo ìbò.", + "language": "yoruba", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00321.mp3", + "text": "Odòlayé Àrẹ̀mú jẹ́ olórin kan tó gbajumọ̀ ní ìlú Ìlọrin", + "language": "yoruba", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00322.mp3", + "text": "Ilé Aṣòfin Ògùn ní kí Ọlá wá dàhùn ẹ̀sùn tí wón fi kàn án.", + "language": "yoruba", + "speaker": "user_137" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00323.mp3", + "text": "Yẹmí ní kí Tinúbu sọ fún ẹgbẹ́ rẹ ki wọn ṣe ìlérí.", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00324.mp3", + "text": "Láti bí ọjọ́ mẹ́rìnlá ni àwọ́n èèyàn mẹ́rin ti wà ní àhámọ́", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00325.mp3", + "text": "Bàbá àgbàlagbà sá kúrò nílé lẹ́yìn tí ìyàwó rẹ̀ lóyún ìbẹta.", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00326.mp3", + "text": "Àwọn mélòó ni wọn ń sanwó láti fẹ́ ọkùnrin?", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00327.mp3", + "text": "Báwo lo ṣe leè mọ Oogùn apakòkòrò tó jẹ́ ayédèrú?", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00328.mp3", + "text": "Adésọjí ti di ẹlẹ́wọ̀n ní Amẹ́ríkà tí orúkọ̀ rẹ̀ wà lórí ayélujára.", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00329.mp3", + "text": "Àjọ aṣọ́nà ní ọ̀kànlélúgba èèyàn ló dèrò ọ̀run nínú ìjàmbá ọkọ̀.", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00330.mp3", + "text": "Ẹgbẹ́ ìlànà ọmọ Yorùbá túbọ̀ kún fún àdúrà.", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00331.mp3", + "text": "Àfojúsùn mi ni láti gba àmì-ẹ̀yẹ gẹ́gẹ́ bí olórin Fújì.", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00332.mp3", + "text": "Ó dára kí ọmọ ìró afárànma àti agbárànmọ́ fáwẹ́ẹ̀lì Yorùbá.", + "language": "yoruba", + "speaker": "user_013" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00333.mp3", + "text": "Ọlá tó pè mí ní tọ́ọ́gì kò lówó mi lọ́wọ́.", + "language": "yoruba", + "speaker": "user_138" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00334.mp3", + "text": "Ariwo ti pọ̀ jù ní àdúgbò yí pẹ̀lú bí kò ṣe jẹ́ ìgboro.", + "language": "yoruba", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00335.mp3", + "text": "Ìbálòpọ̀ ṣe pàtàkì láàrin àwọn ọkọ àti ìyàwó.", + "language": "yoruba", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00336.mp3", + "text": "Wọ́n ká ara ènìyàn mọ́ babaláwo nílùú Ọ̀wọ̀.", + "language": "yoruba", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00337.mp3", + "text": "Ẹ wá wo bí Sàlàkọ́ ṣe lu ọlọ́kadà kan pa ní ìlú Abẹ́òkúta", + "language": "yoruba", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00338.mp3", + "text": "Ọ̀jọ̀gbọ́n Ọláyínká ti fẹ̀yìntì gẹ́gẹ́ bí ọ̀gá àgbá orílẹ́èdè wa.", + "language": "yoruba", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00339.mp3", + "text": "Ìwádìí fi hàn pé ikú àrá ló pa àwọn òṣìṣẹ́ ìjọba mẹ́ta kan.", + "language": "yoruba", + "speaker": "user_001" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00340.mp3", + "text": "Ìjọba ní kò sí nǹkan tó kan òun nípa àwọn tó ń ṣàárẹ̀.", + "language": "yoruba", + "speaker": "user_139" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00341.mp3", + "text": "Àwọn ẹlésìn ìgbàgbọ́ ti kéde ọjọ́ ọdún wọn tí á wáyé lẹ́yin àwẹ̀ wọn.", + "language": "yoruba", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00342.mp3", + "text": "Ìjọba kéde ọjọ́ mẹ́ta fún ìdárò Aláàfin.", + "language": "yoruba", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00343.mp3", + "text": "Adé di alága tuntun fún ẹgbẹ́ òṣèlú wa.", + "language": "yoruba", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00344.mp3", + "text": "Ilé ìwé kan ní Ìbàdàn ní ìmúra àwọn akẹ́kọ̀ọ́ ò le yí padà.", + "language": "yoruba", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00345.mp3", + "text": "Àwọn oun pàtàkì nípa Fẹ́mi Ọ̀ṣọ́fisan ni ìwọ̀nyí.", + "language": "yoruba", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00346.mp3", + "text": "Ọkọ̀ ojú irin kọlu ọkọ̀ mẹ́ta ní Èkó, ènìyàn méjì kú.", + "language": "yoruba", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00347.mp3", + "text": "Ẹgbẹ́ wa ké gbànjarè sí ìjọba àpapọ̀ Nàíjíríà.", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00348.mp3", + "text": "Alága Ìgbìmọ̀ pàsẹ fún Ọdún kó jáde kúrò nínú ìpàdé náà.", + "language": "yoruba", + "speaker": "user_140" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00349.mp3", + "text": "Ṣóyinká ní ó dun òun pé kò ní alámọ̀ran rere.", + "language": "yoruba", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00350.mp3", + "text": "Àrẹ̀mú ni ojúlówó ọmọ bíbí Àríkẹ́.", + "language": "yoruba", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00351.mp3", + "text": "Adégẹyè sọ pé ańgẹ́lì òun ni ẹni tó kú yìí", + "language": "yoruba", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00352.mp3", + "text": "Ọba ìlú Èkó tuntun ti balẹ̀ sí ìlú Ìlọrin.", + "language": "yoruba", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00353.mp3", + "text": "Ọmọ ọdún mẹ́tàlá tó ń kiri omi inú ọ̀rá fara kásáa àìsàn.", + "language": "yoruba", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00354.mp3", + "text": "Àwọn ẹgbẹ́ olùkọ́ ti da iṣẹ́ sílẹ̀ ní Nàíjíríà.", + "language": "yoruba", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00355.mp3", + "text": "Àwọn onílù láàfin ló ń tú ọ̀pọ̀ àṣírí fún òhun láàfin.", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00356.mp3", + "text": "Ajírébi ní Fúnké Akíndélé fún óun lówó tí óun fi gba ilé.", + "language": "yoruba", + "speaker": "user_141" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00357.mp3", + "text": "Ikú ni èrè ẹ̀ṣẹ̀ fún ẹni tó bá pa èèyàn.", + "language": "yoruba", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00358.mp3", + "text": "Gbénga ti gba ipò alága ìbílẹ̀ kan ní ìpínlẹ̀ Ọ̀yọ́.", + "language": "yoruba", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00359.mp3", + "text": "Àjọ aṣóbodè kìlọ̀ fáwọn iléeṣẹ́ ìjọba.", + "language": "yoruba", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00360.mp3", + "text": "Wo iye ìgbà tí wọ́n ti jí akẹ́kọ̀ọ́ gbé ní Nàíjíríà.", + "language": "yoruba", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00361.mp3", + "text": "Àwọn òṣìṣẹ́ ilé iṣẹ́ Adéagbo méje ló wá bá wa ṣe àjọyọ̀ ní Ifẹ̀.", + "language": "yoruba", + "speaker": "user_142" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00362.mp3", + "text": "Bàbá Tolú kọ ọ́ pé ọmọ òun ní ìbálòpọ̀ pẹ̀lú obìnrin ẹgbẹ́ rẹ̀.", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00363.mp3", + "text": "Akọ̀wé ẹgbẹ́ wa ní àwọn ọmọ ẹgbẹ́ ọhún ti kú tán.", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00364.mp3", + "text": "Agbẹjọ́rò dabarú ètò ìgbẹ́jọ́ nípa lílo àwọn ohun tí kò lẹ́tọ̀ọ́.", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00365.mp3", + "text": "Adé kúrò lẹ́gbẹ́ àwọn omidan tó wà lẹ́nu ọ̀nà.", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00366.mp3", + "text": "Ṣé ẹ ti gbọ́ nípa àrùn tuntun tó máa ń ba fóònù jẹ́?", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00367.mp3", + "text": "Kí ni ó fàá tí àwọn ọmọ ogun òfúrufú fi padà wá sílé?", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00368.mp3", + "text": "Nítorí oun tí Gómìnà Amósùn ṣe ni wọ́n fi yọọ́ lóyè.", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00369.mp3", + "text": "Ó ní irúfẹ́ ọbìnrin tí àwọn ọkùnrin máa ń mú fi ṣaya", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00370.mp3", + "text": "Ó dára ká ní àròjinlẹ̀ pé ayé ni Ọlọ́run fi ju ẹ̀dá lọ.", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00371.mp3", + "text": "Nítorí ìwà ìbàjẹ́ àti àìgbọràn ni mo fi kẹ̀yìn sí gómìnà wa", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00372.mp3", + "text": "Mí ò nílò ìrànlọ́wọ́ owó lọ́wọ́ ẹnikẹ́ni láti ilẹ̀ òkèrè.", + "language": "yoruba", + "speaker": "user_143" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00373.mp3", + "text": "Ilé ẹjọ́ da ẹjọ́ tí Adé pè rú nílùú Ìbàdàn.", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00374.mp3", + "text": "Omi tuntun ti rú lágbàáyé, ẹja tuntun sì ti tún wọ inú ẹ̀.", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00375.mp3", + "text": "Ìjọba Ọ̀yọ́ fèsì padà lórí ọ̀rọ̀ ìbàjẹ́ tí Adé sọ.", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00376.mp3", + "text": "Kí ló ṣẹlẹ̀ sí àwọn tí wọ́n wà nínú jàm̀bá ọkọ̀ náà?", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00377.mp3", + "text": "Ìtìjú ńlá ló jẹ́ fún obìnrin méjì àti ìyá wọn láti di èrò ẹ̀wọ̀n.", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00378.mp3", + "text": "Àwọn ẹgbẹ́ kan ní kí ìjọba dá wọn lohùn lórí owó oṣù.", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00379.mp3", + "text": "N kò rán ẹnikẹ́ni láti bẹ̀rẹ̀ ìpolongo fún ìbò ààrẹ náà.", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00380.mp3", + "text": "Wọ́n yàn olórí ìjọ, àmọ́ orí gbé e dé ipò igbákejì ààrẹ.", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00381.mp3", + "text": "Nílé Adétòkunbọ̀, gbogbo oúnjẹ tí wọ́n ní ni mo jẹ", + "language": "yoruba", + "speaker": "user_144" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00382.mp3", + "text": "Ìbàdàn tí ó ṣígun lọbá Ọ̀yọ́ jàkulẹ̀ nínú ogun.", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00383.mp3", + "text": "Ìjọba Nàíjíríà fi ìyà jẹ Ìgbòho bí ọ̀daràn.", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00384.mp3", + "text": "Omi mímu wọ́n ju owó ilé lọ nílùú yìí.", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00385.mp3", + "text": "Jẹ́jẹ́ fi òjò àti àrá ńlá sàmì ìpapòdà rẹ̀ ní ilú Ọ̀sun", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00386.mp3", + "text": "Òṣèré tíátà náà ti gbọ̀nà òkè òkun.", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00387.mp3", + "text": "Simi àti Òbé kọ orin tó ládùn.", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00388.mp3", + "text": "Ẹgbẹ́ ọmọ Ìbàdàn fẹ́ kí ààrẹ Bùhárí yan ọmọ wọ́n.", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00389.mp3", + "text": "Ilé ẹjọ́ ti da ẹjọ́ fún Olúwáṣun nítorí pé ó jí ọmọ gbé", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00390.mp3", + "text": "Ilẹ̀ Nàìjíríà jẹ́ ọ̀kan lára àwọn orílẹ̀ èdè tó nífẹ̀ẹ́ sí eré bọ́ọ̀lù.", + "language": "yoruba", + "speaker": "user_145" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00391.mp3", + "text": "Irin iṣẹ́ ẹ̀rọ̀ ni wọ́n fi ń lọ àgbàdo ní ìlú Àjàòkuta", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00392.mp3", + "text": "Àwọn ọlọ́pàá mú àwọn adigunjalè ní Ìyìn Èkìtì.", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00393.mp3", + "text": "Mẹ́ta lára àwọn òkú náà ni wọ́n rí he lágbègbè Lẹ́kkí.", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00394.mp3", + "text": "Adéshínà sọ pé ilé ẹjọ́ nìkan lo ní àṣẹ láti dájọ́ ikú", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00395.mp3", + "text": "Àwọn afọ́jú kìí ṣe ètùtù tàbí rúbọ láìní ìrànlọ́wọ́.", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00396.mp3", + "text": "Ìwúlò òwe kìí ṣe kékéré láwùjọ Yorùbá.", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00397.mp3", + "text": "Amẹ́ríkà fí abẹ́rẹ́ àjẹsára mílíọ̀nù mẹ́rin ṣọwọ́ sí Nàíjíríà.", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00398.mp3", + "text": "Fadé yẹra fún gbọ́yísọ̀yí lágbo àwọn òṣèré.", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00399.mp3", + "text": "Rẹ̀mi ní owó ti tán lọ́wọ́ òhun.", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00400.mp3", + "text": "Owo ni ìjọba ma fún ẹ tí oyún bá bàjẹ́.", + "language": "yoruba", + "speaker": "user_146" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00401.mp3", + "text": "Nàìjríà ni Adéṣọlá ti fèsí sí ìróyín pé Ó yọ́ kẹ́lẹ́ jáde sálọ.", + "language": "yoruba", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00402.mp3", + "text": "Gómìnà ìpínlẹ̀ Ògùn fún Ṣọlá Túbọ̀sún ní ipò tuntun.", + "language": "yoruba", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00403.mp3", + "text": "Arábìnrin kan kígbe lórí ayélujára pé òun wá ọkọ.", + "language": "yoruba", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00404.mp3", + "text": "Ẹgbẹ́ wa ní ìwọ́de ńlá kan lọ́la.", + "language": "yoruba", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00405.mp3", + "text": "Iṣẹ́ àgbẹ̀ nìkan ni ọ̀nà àbáyọ fún àwọn aláìní.", + "language": "yoruba", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00406.mp3", + "text": "Gómìnà ìlú Èkó pe mínísítà fún ètò ẹ̀kọ́ lóri ìbéèrè náà.", + "language": "yoruba", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00407.mp3", + "text": "Ìdàgbàsókè Ìlú Ẹ̀gbá ló jẹ mí lógún", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00408.mp3", + "text": "Akérédolú ti pe Ààrẹ Bùhárí níjà nítorí òfin tuntun yẹn", + "language": "yoruba", + "speaker": "user_147" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00409.mp3", + "text": "Olúwo ṣàlàyé ohun tó ń mú káwọn èèyàn máa gba tirẹ̀ láwùjọ", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00410.mp3", + "text": "Àwọn Ọba ilẹ̀ Yorùbá ti gba ọkọ bọ̀gìnì lọ́wọ́ ìjọba.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00411.mp3", + "text": "Gbajúmọ̀ sọ̀rọ̀sọ̀rọ̀ ni Túbọ̀sún Ọládàpọ̀ jẹ́ ní Ìbàdàn.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00412.mp3", + "text": "Ọ̀pọ̀ ọmọ òyìnbó ló ń kọ́ èdè Yorùbá.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00413.mp3", + "text": "Àgbáríjọpọ̀ ẹgbẹ́ Yorùbá gbẹ́ná wojú Ìjọba.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00414.mp3", + "text": "Adé ti kojú àwọn ọ̀daràn nílé ẹjọ́.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00415.mp3", + "text": "Ẹ gbọ́ ohun tí Ọlá sọ lórí ọ̀rọ̀ Ìgbòho.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00416.mp3", + "text": "Ẹgbẹ́ bẹ̀ wá láti máṣe káyà aráàlú sókè lásìkò ìpolongo ìbò.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00417.mp3", + "text": "Ìyá olóògbé sọ pé kí ìjọba gbé òkú ọmọ òun sílẹ̀", + "language": "yoruba", + "speaker": "user_014" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00418.mp3", + "text": "Afẹ́nifẹ́re sọ̀rọ̀ àbùkù sí agbẹnusọ Ààrẹ.", + "language": "yoruba", + "speaker": "user_148" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00419.mp3", + "text": "Àdìgún ṣe ìgbéyàwó alárédè pẹ̀lú ọ̀rẹ́bìnrin rẹ̀.", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00420.mp3", + "text": "Agbófinró mẹ́fà ló wọ́lé wá gbé ọmọ mi láì mọ́ ibi tó wà.", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00421.mp3", + "text": "Tọ́lá Adéníyì ti darapọ̀ mọ́ ẹgbẹ́ ìṣọ̀kan ilẹ̀ adúláwọ̀.", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00422.mp3", + "text": "Kí ni ọ̀nà àbáyọ sí ìdàgbàsókè àwùjọ Yorùbá.", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00423.mp3", + "text": "Bíọ́dún tí ó ṣiṣẹ́ agbégilére gbẹ́ ère ààrẹ orílẹ̀-èdè yìí.", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00424.mp3", + "text": "Ẹ̀yà kòkòrò ààrùn míràn jáde ní ọgọ́ta agbègbè nílẹ̀ Gẹẹsi.", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00425.mp3", + "text": "Ẹ̀yin ọmọ Yorùbá nílò láti ní sùúrù gidigidi.", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00426.mp3", + "text": "Àwọn ará àdúgbò sọ pé aago kan òru ní àwọn jàǹdùkú yìí wọlé", + "language": "yoruba", + "speaker": "user_149" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00427.mp3", + "text": "Àwọn aláìsàn dẹnu ìfẹ́ kọ àwọn nọ́ọ̀sì nílé ìwòsàn.", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00428.mp3", + "text": "Wo àwọn ọmọ Nàìjíríà mẹ́fà tí Amẹ́ríkà ń wá nípa ẹ̀sùn àtìlẹ́yìn owó.", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00429.mp3", + "text": "Àwọn nǹkan tó ṣẹlẹ̀ níbi ayẹyẹ ìgbéyàwó ò ṣé bá ẹ̀dá kankan sọ", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00430.mp3", + "text": "Àwọn orúkọ kan wà tó níí ṣe pẹ̀lú ìjà Ọ̀yọ́ àti Ìlọrin", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00431.mp3", + "text": "Ìjọba ìpínlẹ̀ Èkó ti sọ̀rọ̀ lórí ẹni tó ra ajá àti ẹ̀ran méjì", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00432.mp3", + "text": "Ìpínlẹ̀ méjìlá tó wà ní ìṣọ̀rí àkọ́kọ́ ní yóò gba owó ìrànwọ́ lọ́sẹ̀ yìí.", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00433.mp3", + "text": "Túndé àti ìyàwó rẹ̀ ń dènà ìtọ́jú fún bàbá wọn.", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00434.mp3", + "text": "Òtítọ́ àti irọ́ wo ló wà nípa oògùn owó. ṣíṣe.", + "language": "yoruba", + "speaker": "user_150" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00435.mp3", + "text": "Ẹgbẹ́ agbábọ́ọ̀lù aṣọ pupa jẹ ìyà lóri pápá lọ́jọ́ Àbámẹ́ta.", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00436.mp3", + "text": "Kí ní wọ́n ń pè ní “Alágbe?”", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00437.mp3", + "text": "Iléẹjọ́ dá Adélékè sílẹ̀ lórí ẹ̀sùn màgòmágó tí wọn fi kàn-án.", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00438.mp3", + "text": "Ojisẹ Ọlọ́run fún osere tíátà ni owó láti ṣiṣẹ abẹ.", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00439.mp3", + "text": "Ó kọ́ ìwà burúkú yí láti ọwọ́ bàbá rẹ̀, kò sì mọ́ láìda.", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00440.mp3", + "text": "Ìdájọ́ yìí wáyé látàrí ẹ̀sùn tí wọ́n fi kàn-án ní ọjọ́ Àìkú.", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00441.mp3", + "text": "Wo bí àwọn ọmọ Yorùbá ṣe ń pariwo lórí ẹni tó ja mí lólè", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00442.mp3", + "text": "Ọ̀pọ̀ àwọn ọ̀dọ́ ni wọ́n ń ṣe ìgbéyàwó lẹ́yìn àwọn òbí wọn", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00443.mp3", + "text": "Mosún gbé ẹjọ́ rẹ̀ lọ sí ilé ẹjọ́ kòtẹ́milọ́rùn lẹ́yìn ọdún kan.", + "language": "yoruba", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00444.mp3", + "text": "Ibi ìgbafẹ́ tó wà ní ìkẹjà ni àpérò àwọn àgbẹ̀ ti wáyé.", + "language": "yoruba", + "speaker": "user_151" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00445.mp3", + "text": "Ìjọba Oǹdó fẹ́ mú kí àwọn olówò búlọ́kù tutọ́ sójú ara wọn", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00446.mp3", + "text": "Àwọn ọlọ́pàá ìbàdàn ń ṣe obìnrin bó bá ṣe wù wọ́n.", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00447.mp3", + "text": "Ètò Akọ́mọlédè jẹ́ ohun tó yẹ kí gbogbo má a gbọ́.", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00448.mp3", + "text": "Wọ́n sì ní ikú Òṣíọ̀mọlẹ̀ kì í ṣe ojú lásán.", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00449.mp3", + "text": "Bákàrè ni Lèmọ́mù àkọ́kọ́ ní Sódẹkẹ́ Abẹ́òkuta ni bàbá òun", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00450.mp3", + "text": "Àwọn aláṣẹ Fásitì Ìbàdàn ti dé.", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00451.mp3", + "text": "Àwọm onímọ̀ ti ṣe àwárí àwọn àìsàn tuntun mìíràn lágbàáyé", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00452.mp3", + "text": "Ṣé ó dá ẹ lójú pé ó máa gba ọpa àṣẹ láti tukọ̀ Eko?", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00453.mp3", + "text": "Ẹgbẹ́ Mùsùlùmí ti bẹ Ìjọba Nàíjíríà láti ṣe dada.", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00454.mp3", + "text": "Ìròyìn òfegè lásán ni Mosún ń gbé kiri àdúgbò.", + "language": "yoruba", + "speaker": "user_152" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00455.mp3", + "text": "Ìṣọ̀lá ṣe ìgbéyàwó ní oṣu tó kọjá l'Ékòó.", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00456.mp3", + "text": "Ẹ̀kúnwó oúnjẹ ti dá wàhálà sílẹ̀ ní agbègbè Bashọ̀run.", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00457.mp3", + "text": "Omíyalé ni ọlọ́pàá rọ̀jọ̀ ibọn sí Ìgbòho.", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00458.mp3", + "text": "Kìí ṣe gbogbo èèyàn tí wọ́n jẹ́ ọmọ Ògùn ló wà nínú iṣẹ́ ìjọba.", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00459.mp3", + "text": "Gbígba àwẹ̀ fún àwọn ẹlẹ́sin ìmọ̀le jẹ́ ohun tó pàtàkì gan ni.", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00460.mp3", + "text": "Séríkí dẹrandẹran ní ka bẹ Ìgbòho.", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00461.mp3", + "text": "Wo ìgbà mẹ́tẹta tí Olúṣẹ́gun Ọbásanjọ́ dọ̀bálẹ̀ fẹ́lẹ́fẹ́lẹ́ níwájú àwọn oríadé", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00462.mp3", + "text": "Ààrẹ sọ̀rọ̀ nípa ìṣẹ̀lẹ̀ tó fa rògbòdìyàn ní ilé iṣẹ́ ìjọba", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00463.mp3", + "text": "Àjọ̀dún ọdún Emèrè ló wáyé lẹ́ẹ̀mejì nínú ìlú Ayédáadé", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00464.mp3", + "text": "A tí mú Ọlọ́páà to f'ọ̀nà ẹ̀bùrú gba owó ẹ̀yìn lọ́wọ́ awakọ̀.", + "language": "yoruba", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00465.mp3", + "text": "Ó wu Àdìsá láti pa ohùn mọ́ àwọn alátakò lẹ́nu.", + "language": "yoruba", + "speaker": "user_153" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00466.mp3", + "text": "Ọjọ́ orí àwọn akẹ́kọ̀ọ́ wa kò ju mẹ́rìnlá àti méjìdínlógún lọ.", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00467.mp3", + "text": "Èmi àti Adérọ̀gbà ti wà lọ́nà Àbújá.", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00468.mp3", + "text": "Àwọn tọ́ọ̀gì ṣekú pa àwọn olóṣèlú kan ní Ìlú Adó Èkìtì", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00469.mp3", + "text": "Àwọn ìjòyè ìlú Èkìtì ti ń yanjú ááwọ̀ tó wà láàárín wọn.", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00470.mp3", + "text": "Ògo rẹ̀ ko ní di bíbò mọ́lẹ̀ tí o bá ti ń lọ sílé", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00471.mp3", + "text": "Ìyanu àti àfẹ́sọ́nà rẹ̀ ti wà láhámọ́ ọlọ́pàá báyìí", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00472.mp3", + "text": "Ta ló pa ẹbí olùrànlọ́wọ́ Gómìnà Rótìmí sórí oko rẹ̀ l'Ondo?", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00473.mp3", + "text": "Sanwó-Olu buwọ́lu ìgbésẹ̀ ìjọba láti tún Èkó ṣe.", + "language": "yoruba", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00474.mp3", + "text": "Èmi ti dáríjì ẹ́ ṣùgbọ́n ó yẹ kí ìwọ náà jọ̀wọ́ dáríjì mí.", + "language": "yoruba", + "speaker": "user_154" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00475.mp3", + "text": "Àwọn gómìnà méjìlá ló ti ṣàgbékalẹ̀ ikọ̀ ẹ̀ṣọ́ aláàbò tuntun", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00476.mp3", + "text": "Dẹ́rẹ́bà Gbadé ti jáde láyé.", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00477.mp3", + "text": "Àwọn abánikẹ́dùn ní wọ́n fí ikú rẹ dáwà lóró ni.", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00478.mp3", + "text": "Aàrẹ pàṣẹ pé kí ìwádìí bẹ̀rẹ̀ lórí àwọn tí wọ́n nílò ìtọ́jú.", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00479.mp3", + "text": "Àìmọye àǹfàní ni a jẹ láti ara ààwẹ gbígbà", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00480.mp3", + "text": "Ìlú Ìbàdàn ni wọ́n tí ṣe àgbẹ́kalẹ̀ ẹgbẹ́ ọmọ Yorúbá tuntun.", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00481.mp3", + "text": "Àwọn èèyàn máa ń fi ojú aláìlẹ́kọ̀ọ́ wo àwọn tó wọ aṣọ tó ṣíraálẹ̀", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00482.mp3", + "text": "Àwọn obìnrin ilé ni wọ́n ń lọ sí ọjà lọ ta gbogbo ẹ̀.", + "language": "yoruba", + "speaker": "user_015" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00483.mp3", + "text": "Ayédèrú fídíò ni àwọn ajagungbalè fi hàn mí.", + "language": "yoruba", + "speaker": "user_155" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00484.mp3", + "text": "Abíọ́dún ti jáwé olúborí nínu ìdíje ọjọ Sátidé", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00485.mp3", + "text": "Aṣèwádìí kan ní ìlú Kótópó ti gbé àwọn ọ̀nà kan kalẹ̀.", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00486.mp3", + "text": "Ànọ́bì kò ṣe àjọ̀dún ọdún kankan nígbà àyé rẹ̀", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00487.mp3", + "text": "Iléyá kìí ṣe ìgbà tí a gbọ́dọ̀ máa fi ìwà ìbàjẹ́ hàn síra wa.", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00488.mp3", + "text": "Àwọn ìṣẹ̀lẹ̀ tó làmìlaaka ti wáyé nínú oṣù Kẹ́wàá ọdún tó kọjá.", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00489.mp3", + "text": "Èlò ni irun tó rẹ́wà yìí bádé?", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00490.mp3", + "text": "Ilé iṣẹ́ wa kéde òfin tí yóò dènà àrùn náà.", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00491.mp3", + "text": "Àwọn èèyàn ń gbọ́n epo láì bẹ̀rù iná nínú odò.", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00492.mp3", + "text": "Ìjọ wa ní kò sí awuyewuye lórí ẹni tí yóò rọ́pò Bàbá Ìjọ.", + "language": "yoruba", + "speaker": "user_156" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00493.mp3", + "text": "Àmọ̀tẹ́kùn ní Oǹdó ti ju ọkùnrin afurasí náà sí inú ẹ̀wọ̀n", + "language": "yoruba", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00494.mp3", + "text": "Ẹ̀ṣọ́ asọ́bode yìnbọn pa onífàyàwọ́.", + "language": "yoruba", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00495.mp3", + "text": "Ààrẹ wa buwọ́lù ìwé owó fún ọdún tí a wà yìí.", + "language": "yoruba", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00496.mp3", + "text": "Ayọ̀ Adébárá ti darapọ̀ mọ́ Àńjọrìn lóri ọ̀rọ̀ orílẹ́èdè Amẹ́ríkà", + "language": "yoruba", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00497.mp3", + "text": "Àwọn dókítà tó ń woṣẹ́ níran ní ti sọ ẹ̀dùn ọkàn wọn", + "language": "yoruba", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00498.mp3", + "text": "Báwọn kan ṣe ń pè bàbá náà ní alátẹnujẹ kò bójú mu.", + "language": "yoruba", + "speaker": "user_157" + }, + { + "audio_file": "/home/miracle-olasoyin/voice-training/prepared_data/yoruba/wavs/yoruba_train_00499.mp3", + "text": "Láti kúrò ní Nàíjíríà, mo ní láti fihàn pé mo nílò àtúntò.", + "language": "yoruba", + "speaker": "user_157" + } +] \ No newline at end of file diff --git a/prepared_data/yoruba/wavs/yoruba_train_00000.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00000.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c03e420e598e39c6bb43bc371d46eac180468143 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00000.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c6dde658bcfb1ddb9d056237e9aac594169817c4b67a994eb59378d9baafd8 +size 37510 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00001.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00001.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b03af404e7d454fefcf330672ada4a825e45e48 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00001.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff0c649d07bc3b4c7bb5d2d434be779d03c1471e2f17376db9b91c14a1da4da9 +size 37294 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00002.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00002.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..45447d458356dfc21170ba5d7d35598467dc1589 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00002.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367058578f20f8727c42cace4b687022496d15a42926b4a37930aedaa6fdab43 +size 49941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00003.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00003.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b9abb9358d046fb6bf959358ace7a13ff6e001d6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00003.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf88f8ff32a55fca0decb6c2a2b8c78d0691883082deeabbc59540adb7d5dfc +size 42813 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00004.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00004.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6ea632a22a93f39fa869c7fadc4e1182f4ad985b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00004.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf81703ad555a76e8dd4825669d8157f7651bb129e5152ca7789dbc3a31566a5 +size 42165 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00005.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00005.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5e2daab3381394eea34ae944929d40824ab3eabe --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00005.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65b590f365074e9e64bfe062ee59d9bf8490eacd1bf8167b2aada0b911e8a41 +size 42165 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00006.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00006.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..355f3eeabd7ba3ec716766d6384a30ab0f44e240 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00006.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3436656b99a135ea7e711abad719de63d73c9d42361b5a03b12956705425ef03 +size 26181 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00007.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00007.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..749817834b8826e12e908dd724c5c08f7b14f769 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00007.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e2245d31e3a4d89f11caca831890caf4fb17c7a26f3012bfd83a359f56857d +size 31581 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00008.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00008.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b7208509604d47d97e43e815eda7d936ddc36bec --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00008.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34efacc5b97cfcebdf86d52c4d0e9baf1b67ba775a20f562f2618a241fee8fc9 +size 38061 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00009.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00009.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ef8481bf12a038fe7d2f782f32c6c8f50c0ec087 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00009.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c5feb1af6a4f8dd143b6a6a6df2e321a017ae71844e7ffa0ac119dad906dace +size 47014 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00010.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00010.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..16e0ef8c88399446245b078ab4eb3f3ab990f599 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00010.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98d74a233a2eaca0427d0d02a0fc9679b1caabe5eeb09e04c0de41a03e93a11 +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00011.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00011.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..07560e4e4bb69964608a97614383c30457061698 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00011.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6194a7b8b616ae0d4e6e30dd6477403b6a881f9ec7fa66a0088e80c58b34441d +size 31365 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00012.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00012.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5c45db98cbe793f66ea0962cd49de0210fdf291c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00012.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:539c0f0ba50db928496f57ea46b454e0b6a66d0518d8d8d447c2ed15ce39f3a9 +size 38925 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00013.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00013.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ffd099c332255258b94f7390b581da98baf6fa7d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00013.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8e45600768947e44b417df8e7d2670eadcd4f3203ac47f871f289bf21302e0c +size 28125 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00014.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00014.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..06025c10e39d9d8bf44cb2cfa2adedce3d819de8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00014.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fadcb83cff538206755c5d4c2063ed2a34c85df2429ea335d31cb206553b3d5 +size 21861 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00015.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00015.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7c220f5df248a23b7669dd6c18030d17720f8faa --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00015.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0330fc59227c4f6b5d60de17328cc803582e0b4972cbc4da6ee3147ddc430ca +size 48213 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00016.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00016.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8d34c20f8227b020720568243c0735555a913b80 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00016.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20eb1153de1a5580f597a61177760cd5c10bf4c2325e333a22b5300ef90f237 +size 37845 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00017.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00017.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..faf90856155be49bfc0a204882ed0a31442e6db1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00017.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81430ced480ec396a08158a780a3b16fd89cae8e28738d7dac7ef624d84af3a4 +size 32661 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00018.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00018.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a8c11b633615e9abe0a542a4e31c86566bd89e40 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00018.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02f9ea00adde907ec9960e7ba45a70fdb130ebebf1c70adf4a024e7d6ecae4d +size 32326 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00019.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00019.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5d2944db6e400d409336a838cf0962f60786f2cf --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00019.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d178ed4b7a66873ba8f6749c9c11d45125157fc61ecf3c8c0b4ff779c12de9b +size 29853 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00020.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00020.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9a66b9b5a7e8197990ee206d565bfe052f472173 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00020.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e49df23c83d131368ca4f5b8e1c798ae1b365a7068bc271888123a31e8b4f1 +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00021.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00021.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a231a375cf8a01a1c3be93337bde9dd648141f13 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00021.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3602c323ec0d075b6c5343d33686189259947dae6bd35ed12eef573b8afef56 +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00022.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00022.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dfa0207be9e1a8c091b969bb0053f012c643f03c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00022.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ba201e259bb6ceda1bc53c8d48d82a9c85db571ad249f78821ceacedb54e76e +size 61605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00023.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00023.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..875e524ec04c32145dedf0a57036cef02e23026b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00023.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7238b9beedac39b875cf02a2b52d53525195c6c9407a033f02e8d98dc6c520b4 +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00024.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00024.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..35398668a02e99a418442928c25bd05ea9aa980e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00024.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eac850f7583bf61b9945dbb9bc1d45cd6c1b9a432bb811cace3e43fefa26b53 +size 45405 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00025.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00025.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5df81b40cd74ee1c237b74d15b1c5a4440715e71 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00025.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f910f2d25373741d81bae77450985878fec19a7095489148eb4c527ff771ee5 +size 32445 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00026.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00026.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b50f8a082b4692268cc1419fb3e4a35c92c0724f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00026.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3ba23107936e1db130f4dbf1e0dd9f10f163de4cf38e3c41d3e0a0abbbdd06 +size 24453 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00027.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00027.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..697922ecd9af78f3b8e969e0bf860b4955038213 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00027.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6abb9c84e58b420689f7ec2d6d8f05db68d30d416329565fdf2698923f464cf +size 43461 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00028.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00028.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8b1a3eaf6753998aacdd4c10ef5681f4ade84f8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00028.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9efaacfafbed26bd2657273d2fe89efad475d8989ed08f9609fe853dc3389e8 +size 38925 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00029.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00029.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ba204f589f606fac3a133f4991096742609e3810 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00029.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8895cd9e6e7993c4f1da4424b1cff546416a6f1d8327c1424e9fb6f46a0b4fd1 +size 31365 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00030.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00030.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..73f4f091dd7f956efb703bcff1c4249cd262d846 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00030.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fdecf155e60eab3768d9a765a7e4dd40a558de236bd33f1b51a3df1ec60385e +size 46701 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00031.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00031.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f0d6dad8b1210c5dd6953a71ba0ad0e23c3cb378 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00031.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43354dfe3febe7c53907bacb9b9e79a33a31948de57062e2db3e00d73b8210cb +size 27045 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00032.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00032.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8da5e781d9c6eae384cb71d2c8ab06931e6229d6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00032.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a190ad54588cb1996518fc710fe954e2187aada1b5712255fbaf8afeba3b268a +size 35901 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00033.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00033.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ab44645b1b92ab98f8b545df4cf157b89144b148 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00033.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb1bbe60902ee48aa4edfea4a2475b65964c257679259f7a66f38d5fd8a0f97 +size 32110 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00034.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00034.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7504f8df5e87e5d9229c53c51f75666dd115e131 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00034.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05c395549c485d29842d7a2bccf499d8f301f25f92598de124bbbf841646a81 +size 29853 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00035.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00035.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..876cf6170b2ca19511abcd0908cc0a9862d9b230 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00035.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfce67b7877ecefd7d0171e75933e1f933242aa2b15977592b6b3076147bb42 +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00036.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00036.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..21c7b6b601a95825e785d5cb1faf1d438466215f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00036.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdda732cb291d33457deb3eb89000c9601b15c222ede833526e414b339fb25be +size 27261 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00037.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00037.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b7e4ad608b737684d9d32981d01bbf16a7c7d1ce --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00037.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d501a66c75ec5a0f3652046319a6133d61f51b0e0e48f71b6522255d652a9a +size 45405 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00038.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00038.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dba8660c8a23e6fe267fc3ee7fd221a043729b07 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00038.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215d28f55d9409b0a28062ca31a1294f671fa4bc815d77d4da4292cd8cd9de32 +size 39141 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00039.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00039.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6b2f3497c021fee21c0cc19ed025391576ddc087 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00039.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34a7e4da5bede0db6ddc153465787c4cc9805b774da048b6f15abc3d6201017 +size 43245 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00040.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00040.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..71a25961c012d6f878e5aa8338d3459b144fb947 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00040.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc8f55f983df5026bb8e4c203fd87d8ff8eb270e3e7ee8ada8d263404146e394 +size 21742 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00041.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00041.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fd6cb939387338932181cc8b32c05359e6609a99 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00041.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd414c92d57aba82460df724a5ecea7784621848075b178a93fea902c3ce6f79 +size 26181 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00042.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00042.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..064f1eff08d384e18da4bf13180fe207cb449aaa --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00042.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ee250fc484cc07159302a6b89e7fbe06f57388cd4dbb9a45ae65b084b14762 +size 40005 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00043.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00043.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a529dd721b23775538bc0eef8e724916a633596f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00043.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b3478969be877646d25b9250ea08c77f34e054e4aab0d3f4a443506cf579d6 +size 30285 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00044.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00044.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..08bf7b1e5b8a1551e90d159769c90b5e41cea543 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00044.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b02bebc91939bab94dd4667943a5e408ddcc3535c2bc653593223dc67099b9 +size 46053 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00045.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00045.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1c58321b54b25918a68351e225ffae961b123ffa --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00045.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d900de2f414364f56f85f52305c44b7f477654d87bf9cd2e23cb70d0c808ed7 +size 33741 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00046.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00046.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..37a14866a03c57087b0480f8af27a8966ed4f827 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00046.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b616aca8fbb0b692f392b486f645138064460d61d44ad38171eb633a74a8c2 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00047.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00047.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..760d8a084357cc504ac68dc48f6686e1ae860a08 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00047.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637f09089ea0f44b027d4d6fc32e932bca13b66be6251486729594fdf3460e29 +size 30285 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00048.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00048.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..080e1eb3d8aca8575314cce5d1e02ff1c9730f41 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00048.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43340e8ff413f998bbe23a15a609cb65b77343b180b266cea6945257bbd24ad5 +size 25630 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00049.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00049.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fdf2383b8e4838e802ea85e7d047b7510694bd90 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00049.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f08640aefd40e19fff85ff486e733c98f15f53385e40fae429a93158348786f +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00050.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00050.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5e84b5f96000f9d798f818ec094b920f1ea53ef6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00050.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b144eb3f3096f9b296d5766dcdc6fd1dc29784c83e144daa40e6ff32fda4444d +size 30285 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00051.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00051.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..02495d79f6b1c69fea8c04a934f58ee6b0fc0a18 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00051.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072278440733738dcd6a96323372e82288a56297d3f557ef6da967e84568783e +size 35685 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00052.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00052.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..057f0c6fc98ff1ef44d88f3d6e16d6c18ccbaf0c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00052.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c6c977f14a48a1d8bd4212a4862640102beb90f12c9f937022494a20397c76 +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00053.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00053.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9a56bb742c038c5f784c36e1d66d151547abef9d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00053.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cecf093f404ffa3b9298e2474e31d689dd44de94328edb02687d102234e17f7d +size 39573 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00054.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00054.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..56745d884b1003b460e4650599407fd8e5a88ea6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00054.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:832bfd29b3d57b6cceb6729f5e0f2b0d22516d27b1ee7c2f8be8820ba3744d1f +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00055.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00055.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7ea31b251dc3a376ef4bbbe2f9d27d0ad34a4a16 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00055.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c31a082269ff9ecc724544ba62c11e9dcc1dac83c71e13bbce633195837e3295 +size 30933 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00056.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00056.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..99f48dba05f243fd57a4977fcdbb7b2e8b429d64 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00056.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690019a344078bf033576f60a884111efa6b183f34252aec8ef07fbf7b370221 +size 19053 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00057.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00057.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6bd6a402d7198b7d6bdcc0f37c1dda376b40ee54 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00057.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a5950687fa513f6cba355dc6e0647692151cef2d8744b68c7af28889ed8c18 +size 46150 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00058.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00058.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4caa97691e252b6556a671da69de5e93431b9413 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00058.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b3d801d1590d5c0bdf879c830df6fdb59243c408e9024f42faab6fb81d4c73 +size 33093 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00059.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00059.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..288f2afd624f46871d84dad077e7f93e69fb038a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00059.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86842d372c9208d538720debe862d7ca77ecaa5f93543d8e6687ba40611cfca +size 29205 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00060.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00060.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5b567827e92b8cbea8f485af21b542d31b0ddcf2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00060.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee9d91e015ac2bd891091745b9d1215d3c9b90be15cb1304cd84c643a7cfaee +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00061.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00061.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..33b25468653a68cfb8f42fbb918dd78cce302e4f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00061.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b911f08026b1965ed0adbe1ed394517d619cb44e6388fafda690f5e83500b4c +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00062.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00062.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f63f092b9334c0943af56ace6c8efb9bd3b3df99 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00062.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2baccfb08e7999cc1190a2d4bbe68eefe0434437cd3aee0955952ac0deebbc82 +size 27045 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00063.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00063.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b792d02be7aa5bd9fee5e641ec3f046d5255ab01 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00063.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:295ce2f8a3d0940fdbb683c98847bbaa2b16243e10bfaf8c16bfdc7c09cdd577 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00064.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00064.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4451df3c5c4a79df1d2c809b52b3966267eaa952 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00064.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48d101a327e029ac986745a20698e203fefd5baa637878f3d066954df66eea71 +size 22941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00065.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00065.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..46d0188f11847040c0317fa37c3812ff3fddb5d7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00065.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad92e077e13d98916a36142cf0b39445b8cb5e380e9cbb836c1e2cf71f7045b7 +size 31365 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00066.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00066.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..51506b8212bb744006592c1e6411e7d1023b0ff0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00066.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93495abf6b3e5c1dc00dfa01eb3962b049ef6e95407ccb5a5051ef080955ef4e +size 33093 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00067.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00067.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ed790d137ba9f597ea431c2f3f59dbcaa8fe440b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00067.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6701935b29cdb091efe2f5c9f912961383b6699d957b6d14916bc4fd28400eb6 +size 36214 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00068.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00068.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ac2bfdf06e7501a6ab424d3b11e62add35e0466a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00068.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80298de7bc6fc25d95d2b7c1a1d32f9daf93d2b5a191f88f924a9e961f5a030e +size 48861 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00069.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00069.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bbdfa29c47e4015fc4c8062502076e1769261db6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00069.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60217f98988becd829866b782078f632a3916364e6e718132c787d478fb51de6 +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00070.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00070.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1c7fb19cc419fe2c5601b79cc3ce4ab86d36627b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00070.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef145853f08a0fc0109e2639fa0401430196321ad54a7319d2634d053950b46 +size 37413 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00071.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00071.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0755eed976b88c229c5f03c557e6df194a88c225 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00071.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4cf217b3b7fa8e152c480d83c792ca321eded83d98639c7162174e2a2da50df +size 29205 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00072.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00072.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fc32309c0a611503f39d56efdee19f4a481c1303 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00072.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58732227452bc807843e923f9e4815e4a6c4f8146817f4d75e40121729eeee6b +size 36981 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00073.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00073.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bc3d12eacb8dbe40723123d8cdb06f13d462ad60 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00073.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:409578e3fb5bf77981b57a0f3b02b0a6e78a9a56d9ef8b1f82418f8d1b1ca9e3 +size 43245 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00074.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00074.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a25684518c9c57eced80e1e11247a6d7e6ee230e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00074.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ff51ed822e9a36ccf902b7c128e5803058ef93ffc72d6dd6d6e3e15adfba01 +size 25533 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00075.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00075.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2cba92119cc89847fb47a21d3bcf6fc8ddf12533 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00075.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:797902771c040bc9312dabbde6fb67cde7eb57c151352561f22667fffdca64c3 +size 52101 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00076.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00076.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ab0ee70a6ccef73e59595094d11506abb344b89b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00076.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edd3f0043998269e9abcbd885e5f46fda37cbbec0d4ede3f7ada2f40f230818 +size 36981 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00077.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00077.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..560b2e74e8c0fed2d3219fdbc27fa10507124368 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00077.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7a902a6c3455969ff669394b868c1951ee716efad8b5a085ad72ac7961ccdc +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00078.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00078.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..034c4e020840e77ea446e4cf3b46256a8d9aa8c2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00078.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ad33a3fc93578a43bc8b37546ef032977072ff7a5fae3271efd8eb81e52ace +size 38925 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00079.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00079.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4c1728af740bb34863a4b7d3dcecc25a8dfdb02f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00079.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24eace52f605b0653350aaaca2208cdfd73747a58d258cc43f7f04631c4d3e67 +size 35253 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00080.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00080.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..477d14cf1864b5441e6a393bc3d8908255702648 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00080.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a134545aa259f5471359a78b694d1c5ac8fa52a2e5622cf4dd331d548b2683f4 +size 52965 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00081.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00081.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7eb3ea121a9055dcc8957b0182ab310f4f0d43c4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00081.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dfaf4feab33e37caed5e2e991af4d2fc0df5d713c477909b56d781a0691eb79 +size 42813 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00082.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00082.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dcb33ba4caf754f758282cb67bfa0b83706e5729 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00082.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a03562f271847f12387b3fda28024423e6bea10e89b70a27eec26d410c2d01 +size 32661 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00083.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00083.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cc26bd7c168d26323c5e80a7249657fdb22363ab --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00083.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfeedfa01cbc8f3cbff5c8d8bb8d9f19404aead0802a3bf25b6b2a47764751de +size 36981 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00084.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00084.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ffc436b24455869c17c86c5a4105a5899d63a2e8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00084.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca71d33d112bf86de3efcf47cfd20cc13c4442d0918bbef6714a07f9a6b983b +size 48861 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00085.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00085.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a600fd504400f3398d0ea19d15b1d0e74a53642b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00085.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16aa2f7bc10de6a8c79818c8049c8ff9c1cee681c80251552938e8e7a46cd68 +size 23038 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00086.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00086.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..38146e1be0a2c8506ffd8549e1d52b8e7695f492 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00086.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7606f49c001b0e9b184b17a8b69ecdeec989e1dc6e6068e27d494aa5d248bead +size 27693 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00087.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00087.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2b7baabb4b3b36387606ba6191a3ccd98f567e39 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00087.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7799fcf4997cc0da15aa4c2b3c3b4c017658bed38ee03f7dd726ae780f69f386 +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00088.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00088.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..25f5a9e94f783d6fcb727bffdad986f73a442786 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00088.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26a61b86b6fc654e4d27f9b7622178d2e7a8ca577b9b2256f224b18364877731 +size 29853 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00089.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00089.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1f31ce641c49ea0e6131d96e5b61918abb003088 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00089.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c49b8061b286fb2d757577044ea87cf89206de5f24d091aa187bbb298816de +size 47133 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00090.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00090.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..97245bcae1f5e12313e2cb8569d19935a9d3defa --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00090.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364f416fbfa040c17554aa30455c027e9e3800e6c1d8eddb74c73636d591b79c +size 22941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00091.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00091.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..77be4bba3ae81a63865ffbe605051c6e2efb01dd --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00091.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8366d60e628c57011b89e7807fd07ce41223eafca061c43e50de9f2decc2181a +size 39141 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00092.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00092.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..387e59f0e6e25bb239cc53f30906e151a20dce8f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00092.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9b40e59808ea0b7887afb0009b3d2ecf61bc5ea2b369cbed3c8c7ca12f8d82 +size 30501 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00093.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00093.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..62b36bd2086275dd986483085603976a3dd223bf --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00093.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28dfb28dada44a1903959f0a4a1472e1d90d5ff2928472f19ce0833ad218698 +size 35998 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00094.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00094.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6f2de77d1385aae2312d95ff7ac1bd6151be2d0a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00094.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610969430485baee6ccf33cd1a5553ae3cb3f6f55ce4ef76b6bdda0f2f8f87d3 +size 48213 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00095.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00095.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..50923eb03a9a1f09456f479fba8c5b18e50ae560 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00095.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df344aefa51fc91b6d6ea1ad596304d73a7b56ad75156eaa6da599103754291 +size 32013 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00096.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00096.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..76aa405bdfa7e5a321341f37980928682694bb06 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00096.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f6bb8cd1d9da26f558b743ce39905842a9920e47dc8672537a3529e0264189 +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00097.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00097.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f7964eeb2eb8df3ba382c9de2f2c35e55c3c5da --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00097.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc56da3758ccad78a23e3542d75403865817bd28e6dfaf31e7cbea3d783e1504 +size 37845 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00098.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00098.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8aad3dea1fa0f7ab36e6032e1a4234c66a40d028 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00098.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30cd3b83bbea55a495250a7a22c47834d6b266da99314a1d506c074a3aad2b6 +size 45621 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00099.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00099.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..71231047d4f85a5854d4995916f9a44a8072fafa --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00099.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e908e31ed0ff37aae36c329f2d3355906681975db628d303fc46eacae8435d +size 23038 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00100.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00100.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e9cbf6e56671d42c264e94aaee5a5bd14dbac93e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00100.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0648d09754bcdd0060f0a605b48fd2708e7af9b10cce2ca74b58bb5881f1ec43 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00101.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00101.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a074be86cec858ad63fbc40124e15d14e1ddd204 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00101.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0410619ad3d0a47b5f850850804ed10aa2d55013e44967164ff904ece6e381f5 +size 25965 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00102.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00102.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..89b4dcb64db6751dee70f35b471ed38f064f0b5e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00102.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802e0f5bd7878f0b871c7a2f8c8d4d0bccb6036c15903123c8b351b49c548b58 +size 30933 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00103.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00103.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8f77cd32a75fba3c0f28f5a4146a5f11bd622975 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00103.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6329affc053cb2b39ccfb5c6462c78f71df98c8c55e3f03ba1671e81fb73655 +size 38925 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00104.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00104.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8df0b32b6943e92e2c51f1bd600168c13eb53656 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00104.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c196594a3f89cebeba91933b5452c1d72bf0f59c278c68061b3966cd7a7b352b +size 38061 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00105.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00105.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..39e2ed93de5a746226cca6ed150ff5d5e13be487 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00105.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1f5aae083a95a363e3084e94b6f482e3b9cb3c13e349f28267d8ce8bd55b18 +size 36981 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00106.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00106.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2772f5bfe955803a90a423be1659ee919b8ef3f6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00106.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23580df4dc6feef62b1ff31703544b1d0343bcbc9e4bfc0d807dded5b1967cc3 +size 47781 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00107.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00107.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0117db82648003c3d71708e03bb4e56d04ae0a13 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00107.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12bf1eb7aa3ee7bc285a555ccc3d7e64fa7f597e57b73923d2a2fe1ddf7aa335 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00108.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00108.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6138a6d3f4f2909bba936636abcda8ab2256daec --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00108.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e8087f4a59a1fc057ed94baa09b17c5bdf5cf2dcff4aa13601f3212a5209d7 +size 43126 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00109.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00109.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f3d2c9984f4452c2c5841ae95f622e6f2d429c1f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00109.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e6eb0d2f3df4d670bb5d9a6f980a798bb9bbff7bc21cdbb5b9093732c7f9e4 +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00110.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00110.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8fa4c9612e8e71f1a0234614950a1c92e257baa6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00110.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91ace3337e93cc8f43cb7ec234df90b8e7f134c88460dcbaaa3655e4276159ff +size 33741 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00111.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00111.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0a5885c9cde7187d4ead113cd011bfa9eab1bebe --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00111.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d023ae597e6a7f749adb96e86aed3612da67422dbef9c9498535ae9b9ed24371 +size 23805 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00112.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00112.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..68a0115868970d0e2ec6d611ae1586e60b9c1073 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00112.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26059c89ffddaa2c6f316439c18bb659bd864ca59dfb724b781c949e9e253e61 +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00113.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00113.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0e809277b3b62d8c2b846bad1271f72b8e41e3ac --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00113.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6619b36f00bfc19eb42feff08057e15d03666ecd84a69e3fb1b5ea48f855a585 +size 21861 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00114.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00114.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e984f0825d016b81764f89294e87dae3acdf504 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00114.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d576b9def55b1e87327375d656a0def21d5d61dd72e26e16ae02b9de061ad719 +size 34821 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00115.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00115.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4320b64ca0fd54a6453eb323ad0476b971f7f3df --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00115.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9582ff82a0a491253d41f14ede5362c62c08cd3de416da64e9658e45797d33ea +size 30501 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00116.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00116.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e5635227a420bafc44e96ed7e8dc51b63a493026 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00116.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7efafe6b45d24777ceb158f3e30d699d6754c7a3038f8ffb1e8599be9a7112e +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00117.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00117.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1c862f1ff11d49ab43604c21b217ebd997467a4f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00117.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aec63040fc79a06625dc1fb39cfac04816556b5256397e020e3c94390d56dae +size 44541 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00118.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00118.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2cd73531b32c37e169ea3025a37c05c62190e256 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00118.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20efad26b106a79eb5b9a69cc5717c400399e7eff084ef5e4a34dd003e6dfab +size 34702 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00119.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00119.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0eff07b1415f5d786bfe323c15ca866e9892b4a0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00119.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096ccf973cad38b6d77cde9ab1dbf1b2e082c243c872e230b60805a0ae32f6c7 +size 47781 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00120.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00120.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5b1c5749c5fc88c8851dae15108c2e53a9118f9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00120.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c0b0f8225e565e715dd0c95e8d9ab0354584085674a1d31d1b7a3a857feed3 +size 25965 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00121.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00121.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a995dacd9bc004ed58600e5dc1098d9ad8e11e78 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00121.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:726fbbe270e8e569adb1073db5d316b5b700ef1ef5c62a601d5f68e5211453d6 +size 38493 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00122.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00122.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d37fe019a891175a917f6240ad9bd182c961c8b4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00122.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3337fa1f68100fc4583aa48ed48599121a7ce4fec5deda5a0a998b7cb4f7271 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00123.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00123.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c7dffc4a027e2fd434cd4595582c84a02586c8ed --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00123.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6873015148c9cbab8acf6f365259512895718ae946788bd9773ab923a3677d4 +size 33525 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00124.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00124.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9de6ecaef606b03d5a6a555d47d2361c8af90ca2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00124.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636c399e7d9fa217998356ca215894961f7c600458a0f4bb01698b6d137a7d1c +size 43461 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00125.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00125.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..30e91399fbd4de27e370b82a06ca15ee9e9ee11a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00125.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0783db582bfa45a283b8dcee72348838ec537aa11e0df15f829ea5e41558b8 +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00126.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00126.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c4dafc99a009788b1caaf9a8e7112e37342887a4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00126.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a36db0faa4d9421115284f5ec5c53bb3b14b7b95b9c89c04883bf1a3109bd58 +size 34821 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00127.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00127.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2c72db5f73b237f59142d8672376452c6cc954e3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00127.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b978f9e4c93e51b63d3d72006b83996c67464357f0f07342a5eeb9dfdb514d5b +size 40005 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00128.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00128.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e56148a2326258dacd8febdb1454f89aedda15f1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00128.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264963aa46312e629926a76387d9507ee74cdac8b4ef68b2eab2a10c7d819101 +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00129.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00129.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4bee0dd57b2cc5eddcd6d317b3912e7379661024 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00129.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:729a71892efc3dea703be3750cebb4826a03c4f23a4596aaf4f37af9996416fb +size 34054 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00130.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00130.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4fd02d340e07e1d34181a0465fed3316d4502932 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00130.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7213c8ddb53f551ee621e7b1b9a92eae3edfd5efcffdd0f6aaf7d8c52a09d792 +size 25533 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00131.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00131.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bd32ed340f104c2d8f7f789d7dab109a9d382c60 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00131.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:092531b04948708f9e33c0dbadb603bfc4ce321f3ab953afb8ebc21f4ca9680f +size 57501 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00132.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00132.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..95be93c79eecb7c9823738608a1a9048a580f26b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00132.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92581a4e8ac9a03967fb9bd03b5dc052353f125699e768793ad2cca324100877 +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00133.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00133.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a146d7474d588fce0c43d3a8bac06cac35edc3d9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00133.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2add14d8d1b0f8b802b588feb671ea5130970e1573d2123c33be3c10e64b0c67 +size 36981 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00134.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00134.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b6c64115e011905c7315119ee46ace00aaacd105 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00134.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dab2d950ab8818be71fb9d11c0646ca0b54988beb68172460e27cac39851a1f +size 32013 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00135.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00135.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3491e3c66d1db351c087f142aa47c42abec70bbb --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00135.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ebf5e0140f9fc6fa033b03cf30c06b57b3c434aaa03f732225ab631b4a58fc +size 39573 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00136.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00136.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..017defd04245f210f6e75c0857d85c721fe821fa --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00136.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dac3d40cb7e681cb88864fc3a3060abf5deaef85b1dcf3403a3008a857f9f2b +size 58581 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00137.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00137.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4861b16bab1f764955c60f2aabbb2f601afdcd8d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00137.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191256302250f227a75308242fe6cd0eb33a1eb2d815efc5c9b07b31414542fa +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00138.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00138.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3b31dabb90d2556781ea9a182e54ef52ca3d278c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00138.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea3bc0813a53e2ed172c91707e7ba7e768bb30e5978074953c4f3e520609748 +size 39022 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00139.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00139.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dcc7e8e357c4c160cfad59f1181e6c76c9fe1f84 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00139.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c5a9f06af173e0d98b4aefaac2724dd1d69eaaea5430367daa8379c148d16bc +size 31581 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00140.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00140.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7ce0a6626a6f55dd321feb76c1265fdf78035a7a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00140.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11355836264d171367a04aed6c3052532b9560a5ac1c8f53a60820e7b2e6d489 +size 38925 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00141.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00141.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dd0e30ccaccb24cf22b9c4232289b7bf616b117d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00141.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21fd257536f40e15bc5d69a4d299bc4ca2ee4993b9498a892deea2e0cea3f95f +size 40005 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00142.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00142.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..33c4f66820464f49b69f7e22cd395a432f5c81c2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00142.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f380c101ff1c97440bf1be5ab9b69c9cae49fc6e7023c194e82eef2d03bf3653 +size 32661 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00143.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00143.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9d8699d254f938b687ee3d79723f2d526b4b5bbc --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00143.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b78814a97365401a1d22b977b3993eb2a72368a8240414904cc690d8c7baee8 +size 50805 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00144.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00144.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e682cec5f404ffc741d1b1d4bbed9adf64268f24 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00144.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2cafc9041913e5e8b7c91c8d3b5209d76e177c1401e191138b83c9cffb16e0 +size 47133 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00145.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00145.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2fe92df1748d922973c352416244cc9c57a5b1b9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00145.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ccee0ab3895a79a76784a0d652179f514c1a57f5aa6faef982232fd8236dd5 +size 40102 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00146.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00146.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2080dd427f62765ce37c1b9b803ea57d9c66df49 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00146.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3708203786de3085a4a50c23fc81a640bba698bb7c1fa3bae0014646f4b95b0e +size 24021 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00147.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00147.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6693e074556501693dfae2c255f703670a68aaea --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00147.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3a0a0eeeb15e4bcabae4846b27b2486b0cee4a88e8663dfb025b3be6a8c583 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00148.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00148.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4d0deee08651439b7d94184399ef03abf2d5f904 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00148.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a1862415f5d39ff45912605a2fafcc68a4c52c562d4023f3d0663a85df56eba +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00149.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00149.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f94e4605cb991e20781cda24d5b1b9df708ba36b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00149.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:956875ec9408cd362b87a5ac57e1df9a3d4758ec24ae5635103f7c170e9ec252 +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00150.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00150.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..90eaebfe642699c5396c821ecc77930578d7dfe7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00150.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923caa77cf0b283e98c0acdb8dfc0d5e10a58c5d783ba42530e458457b56d013 +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00151.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00151.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5be5e9fb7dafa9a91ab5a6cde463c10d0d45f82e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00151.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29897f66fca7b5d9b2696e3fd9026fedc6dcc0004e66ec853193e0fe4fe3c67e +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00152.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00152.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..791706e69ed15769764d8ddb131a49d6018d1eb0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00152.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a89a87434d640af16e5891538f646dec12b522b645ebde637395efc5955fd1 +size 43990 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00153.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00153.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7a13ebd945b6afdcbadd5b01fbc8f5b92d803790 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00153.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad166d682311d865ec4d9d42af00d6c0a8ce614af9af0019697e7210f3296fcf +size 49941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00154.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00154.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..577b901886b7c77e97c8280260f100e016c0a484 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00154.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f033a1b65f19ac3a7ba2e8fac50187ebd557c47e9ff5b5b5355356ee7edf9c57 +size 43245 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00155.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00155.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5c41dff8eb7a54ec50bcf3d14e85fab0923e1d09 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00155.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a3b2fc8523e6892cae2bddcff4e22b1e4edcd0b13d1fccf67864dcaf53e515 +size 41085 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00156.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00156.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cb9076237aef19dcc76ff6c591854de685e565b3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00156.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4ed82e519f419482ca0669e9276b5a9c09c3fe5f0f8fc5bfbeffb6a40513f96 +size 31581 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00157.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00157.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..378729b4fea50068b55870a8c2a4a09f44fbcfb2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00157.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfb8a8f2a18c6525f0069f13ec5711de222748eedd67087ae5687b6e44890ff +size 33525 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00158.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00158.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c2f59ebb3de15b33b03f2bc9fa70a8077267e448 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00158.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46aef45613ece67ac3d2aa8e9d9b51d422d1827241009cac386e26e629bb76f +size 26613 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00159.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00159.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b959868bac46a2d9e2bc151fb5e646a62ad8d626 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00159.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0980c02a33378b3d75ef264b8b0105d81a9c3ee7fc3c04ea4672de903f2a4f9 +size 40102 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00160.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00160.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ccb79f74ab76696108304914d747b7de5c466f40 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00160.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f30bf08ce07c3141b1d52a4673e00370e97911e7be50e988eb9884e09064a6a +size 53181 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00161.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00161.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bbb9e7ab280f00fa91cf3bc75f588008c2385a87 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00161.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9765791be7d4e3636bdb419d40cea1823232b2fa0760412b2f3ed59928328e +size 44541 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00162.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00162.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..467e65019ce21af684a9ed5e4a08f29bd13543ba --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00162.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:202029dc63aa24ceca42306e081a14a34771c57fe78b1f90cf2f55a49fb0c66f +size 37413 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00163.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00163.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8516544703f848c91e7f89f58e3c54f4835c2e53 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00163.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd541e17eff1b486934dcf4ae40b457ea5104bbda9a86ebf284aa750622ffd9 +size 33525 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00164.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00164.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d84f641f7506baf98bc1256f3fe8cbc2f9cc0426 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00164.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00cadaf7206662d77ac411e6ded9fd9c6d58b3b81de6d2a6f88be17114a1f3fe +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00165.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00165.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3e785f84f29d124a687ce055f31c45da7845d008 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00165.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e083b4f8f44757b14ee5ec740f11d2e61279104e057cbd83bf735f29c32867 +size 28773 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00166.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00166.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..82aa259a45a259136d52d4a765abef1de214c511 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00166.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d578883870b32252fbb64317092af8bc4b05d75cf4f2a2100bb90e3ca7bc67f2 +size 24453 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00167.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00167.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..03c53cc209c5813fb7dffd6fbfe0a786d8088183 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00167.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74db349f4230f8cfe663aeaa0e673d2f34288ef1e217c830cc93b70a0aad7b7 +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00168.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00168.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..785eff3fdd00401babb5e5ccf32b06f6762978d9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00168.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cfa55ab39e90b4042a1a8c782fa443abff4c9c0ff12e5278788a476b5c8825 +size 39141 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00169.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00169.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..19c5e448bbd4c4a226c682577eab07b0b86cd010 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00169.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11506cf12b6a9110c057e1916eeb8df0453995580e78bee1d13e974f08a90e36 +size 33190 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00170.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00170.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..dc56be1da0cbe851db33a5dd7d8fa849b0d395e3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00170.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f9fae08b650b1473ae51dc11616bc1faf32585f8407421a88fa705c60190fa3 +size 48094 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00171.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00171.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..aaf87cdf18df3d7f7c2eb5bed840e5473aed4cec --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00171.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9cd734d974064e609246adfa429869a03a6a264f0d3626001c3977af3e86b8 +size 31581 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00172.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00172.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0b43264e808846eb702ddceec3774b2a6e5be195 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00172.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99f784ce64c7dbb71489afb239e60b2cb771fcc2c4629d5b70b8b684021c390 +size 22941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00173.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00173.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4c6c775e51173e89d942cdff0590e09f8ed573e7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00173.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f0867b47ca092434f19883df5730bd0ec417fd82b32b7f32fe917e567222cf +size 35901 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00174.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00174.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ed3bbbca80f405418910b1b593f5184411645aa4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00174.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7f8fb058ff35609d5092f28222113192140136b1d333b0dd213c74a0645e41 +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00175.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00175.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b8b25bc217249004baf3de8845572fac3c2b431 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00175.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dda96b045e8b47de1993cbec972b2cb0ead619f34e9a8338395eaa903aab029e +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00176.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00176.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3609572d1d2423b5c70d908c700c59be557bc2c2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00176.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35be8c0fb77ac9bf69fe2b9f150558689a49c114e29c007a9ac2f4b805c1f361 +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00177.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00177.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..966aa8ffd2097bbd0e352310307961aca3f836fd --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00177.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2145569877f3b43d90912d8a0b2f05024be9b2f17cce2875239ad3043e8e5926 +size 32013 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00178.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00178.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ace4bf6a2eb190755ec151bfb0ab091041b78d76 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00178.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55415909dae2d199f58b401a6ee0b12535956af62cee9ed429aba28f2a121a50 +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00179.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00179.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ee41f2d594bfcd0658073d56e7d66fdaed0e4358 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00179.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce2f5ff21e8cc2bfbc452d46aefeefb0b34b7eda0c688fb2af4094b4c5b0cd1 +size 48645 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00180.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00180.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1be3d6ab416cf9aea119bdb077bc9f4cf2c83ce0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00180.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:798f6350ada44bcd66bbcfde3b35df034c652edd0f63b67e715c36d1f3857ca8 +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00181.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00181.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f67422ca6c1df2548c1742ca74671390b86cb3a3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00181.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0258e676cfb4618cbf6f91f0a3249f03ed0030ceb40a02201450ca79419f21b6 +size 45405 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00182.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00182.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ac9fad93b79a8b30151ded0d4ca1cd87e20f759a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00182.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ba5291e52899976f6a9e5433cc37a3b3a8bdc821e8078e665c845305af6f9b +size 46701 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00183.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00183.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..75967a6c63cf30c2e9f741433e19a6596620b63c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00183.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ef3a9909f72035509c05108a1a2df72f4496e5cb5a6fffb58600e65616eee0 +size 40534 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00184.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00184.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7b8342cc1c59e2b0a344c3e536251e6056219ea9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00184.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4979d020b54654f828f2062689190b438589246651dc31f6fdeb489bcf51c88 +size 33406 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00185.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00185.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c0226cfa725a99d614b0cde3d6155f6be5f05d84 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00185.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6277bc7269a2670fd5ab17b83206e3e11508e260cdb48221507a85eb3d3ae32b +size 44854 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00186.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00186.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c15c720a96b0e781886feb4278b40e168896b1ae --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00186.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:792d6e251c044e0e252a05d469e7c70259be267fe4c2a1dc822c3fc9efc15ead +size 32013 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00187.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00187.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..27e0ca66f2e924a0df1295f998c59434f70ec3c0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00187.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc7b58d740113be5ac9e51d322bcb634ac145f7c19f139b888998e3188569fc +size 24334 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00188.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00188.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..70532d90d4a3325ce5585562aca5b02f79136119 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00188.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f34829cc7c3224fe30ade1ebcdd23c37faf1fd6c7cd23f33c8d01b1ec5a022f +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00189.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00189.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6334641ec2b7765736071c1748773295a84e574c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00189.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ec7adb8abcc9a6a6fd2cb758f378d4958466b0f2526d9f7c95a2a7ffa76c3c +size 31462 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00190.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00190.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6825308dbfa4ce38957f0f7e5df146d1559ad34a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00190.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e457a91eaaab927617dbc8c118bd21d6ea49c0db62a1d3ad71c15de2499db6 +size 39886 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00191.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00191.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ec0892d243f262324ba4c1333733562262e84ddf --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00191.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d740d1904a111e0fed69396466256a37165f0caea4d9cfe2dc59dc1adbf7abce +size 45070 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00192.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00192.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9e9d8912fcb7410d284eb9c943734f0e458e910f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00192.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a87e77a2913ae7b78edc6a93094bf9ef0ff96b408cf63516e9de36df58ba317 +size 35998 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00193.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00193.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0102544cc25f9cd702794ea1dbb23875a926904d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00193.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af38f776937eea1c3b8c8a41a4e4a964bba5d8f7795da3f5cc38cf2fb448288 +size 29853 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00194.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00194.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..87117985d480a9731f63b2f95c5d7d88cfb3d9fe --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00194.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141635707a600bb5596f8c172eb0459aa0172b373981e9395d072bcb224f492e +size 22174 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00195.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00195.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..687c595f6f96c693c73989a1c1afe72df46e54e1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00195.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56dadc253c7bf3fd23f5282a5e29b466020f73ac23f4321f7343094cda3d61f5 +size 38493 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00196.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00196.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d54fac26b4e8db3a64232a67a49f55e446e08deb --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00196.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82ae3cd60b553c523d4b104ffdb47520a204d5c75047ed3a4990c9b2a7e6752 +size 39238 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00197.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00197.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8dae061098f0a7ecac87d9f461642515c550f316 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00197.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620c65fe1a1084a01518f8c8d1002b28f55d2aaa006064917574c1015023ca96 +size 43774 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00198.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00198.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0abb0b017e6660282ed464ac549910b44f2141a3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00198.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc71fab202348c1ccb112405cee5c176d3fdf24096ca321592298f6a086c0df +size 35350 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00199.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00199.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d4948dda73f2401e962a8fcd0f9f4f3f78316f5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00199.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8388c64365eb75613c4fa9e6c7a54ab55e845a94bf8fb9e7acd5fd4847b7c56b +size 37726 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00200.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00200.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d7fb34b5cd17a0eae2c99f74d30ff2671e5763f6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00200.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22966705dc62a72cbd8c60de502f746891c9ed930f4e5f8546c119ff7e53ae80 +size 45934 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00201.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00201.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d3b9669bfe129d17e9fd5a6ead6c954f67683198 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00201.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d20894ccf05f50ceb85623311b96b2a40d01bd1f66c96385e746a82039acbb9 +size 51334 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00202.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00202.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b2bce8d6c7e21e6f91e4428cf050be3ea1892658 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00202.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66bfbf3a95a4bcff452f026fd17c7a4453a7532823ec91eb5429995e7a608514 +size 34918 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00203.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00203.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a0d7f0a464213fab2a469f655171220755ad50f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00203.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfea7e9913a129673890cf6675eed92d15994846f9c332871fe3a6b6f807562 +size 35253 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00204.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00204.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f9592a0f2ff603208566a018330f75eafaa5f4f7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00204.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae81d105cd850c85c79394fcc1e9008d7cf489b67be956bddf49f9d0a8179e45 +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00205.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00205.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fabca8dcea7c046076a25f903d01e3b7a590dbac --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00205.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73df241d9c56dff41df905d459699aa0145006b921d1861a3c0b0c9c0c36fc4 +size 32445 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00206.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00206.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..55b60ded42a30920613ec2a772c4dc3e7aa52db8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00206.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ffd549f19f683133a064d867c5d7a702d36c8429288747163ce6d481a1528b +size 44325 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00207.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00207.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3bf80fe5ab5eafdeed1c34469d92c3003f024bf3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00207.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4172b7fca2ddbe8c927d7c9f2e2f02b7149e656bec830b7d818c028d65e9602 +size 53613 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00208.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00208.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..85f16d21ef3ac3a2ada6443d3f4d25964f708117 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00208.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24781117e982a1908207966e7b528ee7db86a0c45f9a873aa2690273e09f8255 +size 51453 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00209.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00209.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7474deda87a129ad9c09c401a4396fc6149517e3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00209.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8d2275678a60f2c7c1948d9213e883904a85cc0dcf31d4e88ad3af953ca3cf +size 51982 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00210.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00210.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..43c7a837826a83730c21cdc069adc321d6b9038a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00210.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80d05454298d531a9ea792ab5c7dc5e8d2537853714bb1408b57eb4d2f59e3a +size 27142 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00211.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00211.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..560d8a62ff9dffb78aadf0e95ba10b23d4830a9f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00211.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54344790ce6e39731f59ccd6d8bd3f11b98106641dfeb16c4173e34d7daad667 +size 29302 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00212.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00212.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..14f0224e908976b1bdf2e8cb6b6bdf8ce7e42953 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00212.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d1b3357ae2f1b213262f92a03f909272028aeb1ba3d28f85c8f0fd4e6700f4 +size 43342 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00213.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00213.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1dfd7c87bfd63972efc8bce8ebac904373c1c3ee --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00213.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1784420a94895fffa943938d4846d049656f819ab40ce91bca9e487d64e63c +size 33093 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00214.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00214.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..69ee1d340cfb1878558e02d4483b3fd51fc83d82 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00214.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5ce0a4b5d65081e61574b797856e3c7f057ad321090c26b956fddf0b5104f3 +size 26613 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00215.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00215.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..99ffcff8396c350fecce986e1e175a28f618b938 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00215.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06f6a3ed637c4bc71393da808a7050570c330867f0f21e40e6f2ab695e4fdef +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00216.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00216.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d66c6facfdc32c29a5dec7fcea4840668a5444a7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00216.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73cf66e06983855cc9a7c4f1a44cdc083c266cff3e42ee1e29702d5abf13083c +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00217.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00217.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e18e53046ee4b3862166eac3788b774e5e6db644 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00217.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30222e6e73b95ad9296fc4a2730011df0df0718f9a0444b354dbad1bc447550 +size 46798 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00218.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00218.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..59c4156f2675109be58a5eeffe83a41c8d22d5ee --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00218.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96149ba02ba3b711bf4617da107dc52bdbc3a2043d82197b2dd4132714d4fb2e +size 47662 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00219.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00219.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c2ec10a4ad895da0f70c5ea178edbdbc9a3ae767 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00219.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8527583f9c3a6aafe0d55756623f989b20398b270833e498101095b13919c406 +size 47230 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00220.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00220.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..440bddf68d2127847c8cfd0be8b7395b90749e99 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00220.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fc51252c32f4b3677fe461dfff8a25f209cb1e7897d32b5d4fe1edea19245b +size 48645 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00221.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00221.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..41c5cd8df61576bdf97e5b693f306b68acf9004a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00221.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47840b4f5fdb56994ad1a5930ec401780477c63e9ccf97990ed575ea52e6f3b1 +size 27790 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00222.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00222.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c3191bf223b97542a7bfcd8b880f84a0225bd71d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00222.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a042538303a5e1abe5ff1b778a2f3d4b24a75d722100afc2dc9bed0d113131d +size 29205 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00223.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00223.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f77f2a0d139d016b7e6bf54f60bd48bc91e23f57 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00223.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591b300ca4886a50400d41ed8be3493320016d6b80140907a285d3ee9f137be9 +size 38158 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00224.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00224.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d7ca71d3726fdaee72f42ded4f7ec3ec55807b46 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00224.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5463d8dfbfb631d2eae0e643a4fd6b66df0c8d80f6123cbbe0fa468341e9d1b +size 51550 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00225.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00225.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..58b53573831b0652afeea6c53634e9e0031f77e5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00225.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d475e3f5d87b1357b049ea42f2f21a880565467194107fd289d64b483630d91a +size 50373 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00226.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00226.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..19d8bf848a6dc90da596346fb19ce7dfcad3b533 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00226.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffadade7ee931549eb96957b356d811dbe9edd7763ac93ee1dd4944c2ea06c98 +size 54261 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00227.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00227.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..41138c3e3927f20dbef4328299f444dd2505bc85 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00227.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76a5c6e70712423594836c5f5312d333d1057cced1a0a7cba45d9b62ae2f06d4 +size 27693 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00228.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00228.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f3ba754528fb060a6fd99d1a15ea664059173b4e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00228.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6b67c1f8e0fd537de1165954b2fc099b1c4128893c3145564d68676a128094 +size 29086 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00229.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00229.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..400d9d00f243cf588b8527fb27aed43ac361bbc7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00229.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb197eebe605c7d5e827519dbb055bde57647b56fa5a845dd446b1984492ce7 +size 48861 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00230.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00230.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cab884d32f8a10450cb0780c0b4c2401f03ed8f7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00230.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10455bf4e78f39a97211e04918b51a5311db3465e51ea5a7d27a38c635bcb206 +size 39141 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00231.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00231.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..47d12b7d808a5dcbef028f3acdb30c39331cdcf8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00231.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b0141653c7486f750d8e20c26bfd9832b42725a675b814792afd36a7b83726 +size 54261 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00232.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00232.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ceb83c4d24f61c12bbadca03673e125607cd8eb8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00232.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbad81ba8fee8ba7ab5ed53b3927dfe878836f0c6040fec30d65622d8ba058d2 +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00233.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00233.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c8ed1eada13b06c835d5c56ebb1f647d9a1bb381 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00233.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622b4dc538eb61f3d9282ed6c467d46f8757aae9fa6588c9d89f4b6637680c5a +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00234.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00234.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8532cd7873d47c968e94afcca02aa3de21e0e0ed --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00234.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744fa52d2996d707a2f98f74afa51a1734972e997327cec0f3b658ac8dd93913 +size 47781 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00235.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00235.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4983403f79847b7ec56c180e2beb7bcce3a18db2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00235.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47923f15c7d2da73e4ef3f45135092956888ae743e88bf06aac4c6ea3eb3b384 +size 37413 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00236.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00236.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6dc9f1aa54b06bb8a2bf1545ef3361e1ea34699d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00236.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5515915654924e7d18501e566871c8747e9c92e205451ccef5becdc9f664c2f9 +size 36862 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00237.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00237.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..600b4465f388e9efd9eced09bb543d17ba0d7a79 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00237.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711f8dae879ed0a65260771675be846d88fe6298817e2c79aec1d6121955a065 +size 41085 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00238.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00238.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5c01fff8794575dfab09a71613d7fcb885f5f723 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00238.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7261eb653e8e9baa635e69bc86d989d7b432d3fa597da02f0e05c50128341d7 +size 62685 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00239.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00239.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de3f877afcf32705f35f18a73fa410cd601533ed --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00239.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02bf3715e9fbf6a718152c43d20dfee03ec963e8f3225865427bed56b7e116d0 +size 51453 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00240.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00240.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..874e38bd120d6daac682f56552d5d7fe47e500bc --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00240.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcac23d3a0e877523fd4bf6c74d3853bd0afd78c4e89b5e810db03f0d637fd87 +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00241.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00241.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..725fc6077597e9ef5412d307940dbd30ba97accb --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00241.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2091e3c88e7ef6ce35f307d4ebe911b4eb03a2bc2d73a45e607928f30f1e606 +size 48645 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00242.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00242.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..989a6ae4e0ddd2911621ff5776ba252546871d78 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00242.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba321eb433ef47c309c0d186694145801bbb82c2f83d9d683df5905a9c646ac +size 37726 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00243.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00243.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8341f918e18c41ae970eced7e7f4ca1ba221b0f8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00243.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958337807cf18eeedbc8fcdadcaaf4738f8b2238b5ac11f99d0e9c29a6940d98 +size 24550 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00244.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00244.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3050dfbb5c6236be48f0ad6ce9edf745b955e593 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00244.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6bd447f14827cebd9bdf89577d8bafc69d1e3284d5cd897ef55e4e0a612f260 +size 37510 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00245.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00245.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..58a8e539eab7af70eb134c2081b17face5569664 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00245.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab7e19e91ae0e9bc712dc6135b3dabbd04f99a478b015ca8e6c44611bc76067 +size 31462 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00246.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00246.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..620267b0555785cb32ea8cfed18a5376b2118a9d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00246.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a32b5fb0117743f6701ca963a187e117e79b1aae8bcea010cc4e552fa9729a43 +size 14614 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00247.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00247.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5f6eb3636a1b4980be4c09e61fc033196e15cc36 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00247.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecefc3a56199aa284667dfa85c1969a2a4cd70866819112b7c13036cbe30dde2 +size 38374 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00248.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00248.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0a4f5dd24ae627412e924070b22f78c652b1ca65 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00248.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b434fdf6d61d7115a67492c8eb888abad11973fafb02e2a07b536203787a5b3f +size 36430 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00249.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00249.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d221d156628ac0760debbffd542746e06fa7b001 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00249.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0114f92ef9749c5d77e6f88b0a990af5044e29818dc565ba66ea61abfbbc3f2 +size 35566 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00250.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00250.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..324c20750e4b6439ed1f9a6f142b82ec787ec3ae --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00250.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2959ce710d25ee01c81e0be6e650f900a9d8b24ab59c390b1177bd414d429cf5 +size 55341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00251.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00251.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b084c1d72abe6df9eef137d1c461a393f4bee0d7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00251.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a67ab134d45b5b11c3b3900c1f6a51703cf01b9946fd7e0951718aa7202a9ed +size 37845 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00252.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00252.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..543ce4207ce92685ee78067789287e7f28b26c05 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00252.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf61896fc57372b8990d0323301977235b284f4cbe3b024332b20100421e793 +size 46366 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00253.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00253.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f14f9cd4a429cfb85f6a842bea63bc15982a3f2a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00253.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3bd4edada5055e8cbc2e6a5e3750643a134b0f8a5adb5551e632f0f725098a +size 35350 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00254.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00254.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f460bc4ed398b09b1228448ecd7eca87d7434a6f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00254.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06c52a3100ddea1442818bdb52e5e144bf1d21eee19c6f22cf0cffd2976c98d +size 37942 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00255.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00255.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a07c2fbe1e042d91886bf2dbe787caaee44be122 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00255.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3c696a6928b6473da8792efcc3306fa4e36a362fd5a2bac254feac9971b800 +size 49941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00256.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00256.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b1f9fa707733105975c1a2d7a130f9823c3a9910 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00256.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481a55ec71498808b81a802f7a483f1cefb535269edc8023447186c4243c4e30 +size 46053 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00257.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00257.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..242e1f6d9c07cc61409e882ee4f4ebc8af4166a8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00257.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2dacd63948f4603900c2b994923d734caf23ade4175bccb7373acbb42267ba1 +size 51021 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00258.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00258.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c3e88b146b4a60fe43249733e6daeb5164501ab5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00258.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a946a6cded2b099646a5cc27b782defcd9c71b1b9ad0d20ca5712de910e26b +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00259.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00259.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..555b263508acfeb8af8f2c7478abeef09976dc97 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00259.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55bf2142634db4436e00c9097eefedfeb7bfed70f8d6c4369e4851490f79d6c +size 34821 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00260.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00260.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e33d40077d2f49affc39e1f4dc0fc756e04d8c45 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00260.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4734105f8f326d2ef8ec0a423547fa870d209477ef4fad1bd5c201ef59cb592 +size 41085 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00261.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00261.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..972f0d3276478c275040baef76b275bb2ab780af --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00261.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63adaa68f99acff44369c2bcbfc937715b54cdaf070bd40aa7de51bd6966609e +size 40005 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00262.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00262.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..574ed832416c43a8b3a3e25b749ec663fa0ebd6d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00262.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca48d25fb19ee46caeab00aa97a89ddae79701a34fef02e456f79c2e37763635 +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00263.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00263.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5bbb83292189b7dfaac43139283349e469e096c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00263.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a7c5cc1bd34a0988fa248fcf6123050c8b92d24797770462c9d276f72300ff +size 35782 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00264.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00264.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..58fc53af6793c64956d785e280b1d74421c9b538 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00264.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a92d0e9da20a2bfb8d90d8920c7cfce1ab91e4a8249f2e5c0f288f605ea59cf +size 33525 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00265.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00265.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..54455410ede33825d05208bc55fc39fa447364ce --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00265.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f449cdf63132c45b7a551fef58efb5a1a91a308124a3485d9d144ed7ccad47 +size 41614 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00266.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00266.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3c6e84c8346c6eb3de30d2db6c883ab6ae886a7f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00266.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6859a9136065094a68a53fcc214023b21a0a2f062c7ed8797e116faad563233c +size 49390 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00267.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00267.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..798af82de52d46a247a5240b6c46473239c28de7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00267.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793a4dde44d10139ae88addf9672d7bc9403526ed0d3cc4fd86852a8a4ae7a3b +size 37726 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00268.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00268.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..39a55087c179ef8087555cc9fdf3f3dae38722f5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00268.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ad7ea96834cad0f68101550c03e8c268d7c2bdc0a99f241117e68bc2a39f54 +size 36646 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00269.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00269.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c54ed8bada5e565f497dd9550bbca34bde741841 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00269.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6543a2923ff9216f240fb267b65af53df37db611ceba527d1e52288de8d8d8 +size 39022 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00270.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00270.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3ed9b170dcd50a0e99e10aafeaf1f973fb753ab0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00270.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc01c2ac42fcd61be3cfa99bbeab6511737854018b2d8b91cdeb7c40c9e2bc6 +size 39454 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00271.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00271.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bfdad8a49d084c9b7a875b0485a796c6c93ad5b7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00271.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65b4bfc61094919659487e9bbb102f4362df2dd4f88355065c7ae653c06c199 +size 32326 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00272.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00272.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..874f8ffabe683ae7159c2dc899f5b5f06efb4362 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00272.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d81ede47cc021971a5549e0deba6a50e2c4a30cbf6b0d5a51a654b9891c324 +size 43126 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00273.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00273.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c57992525c6c09e0b68f035bbb4cdcb3411e4d6d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00273.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd5856f26927b547eed6c79b28891765b47bd8fa533ad23710773ffd948859f +size 23373 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00274.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00274.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..55376d119653d00b289e9ba870b4bd8a94180ef0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00274.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd4c43396b6ab269b4212e91e1062705f426ea73881d482f745910eb6460422 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00275.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00275.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..db7d4355f465d0c75210487a5f59c88825a560f6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00275.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cf9a00ab43a5820ce51d1efc527c7a1838248af90ebc5ef07161fabd61eca4a +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00276.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00276.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b4646cf7bbd8b1ba8b002fc1e13fcf4e1ceba1c3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00276.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69fff9f4225727ec7b7688ec9f22738a0d9aea2ef523e59cb114436a910c7a58 +size 43245 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00277.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00277.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b6ab413fac1565b0afd24afebc481175fdd24969 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00277.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa4af1e55fdda47455c78b96ecbce3c9b69234cfdb6747923e35ef635aa07f7 +size 35685 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00278.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00278.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..99891de9d1497eb2e860b70fe21f961a65c57661 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00278.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ae0f73711f6d0e42bb7910a892346c52ec80e924a064f0dd1b13bfb40163d5 +size 32445 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00279.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00279.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f8a90838925c4681fe63cdc2e4da7444d92d0e9b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00279.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93cdff7892cecb841c030da67a0d8732d7f9c081adfe2351b909799b84099a3 +size 28773 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00280.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00280.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..88680d84e0fcb3d2d83ee18588cbb459d5a2bff7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00280.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebce161d91179bb18564a56ee7d6695cab5a0c45de3ed9882303c6787270bfd0 +size 22725 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00281.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00281.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d8b3a7799a7f6b70948416619272a5a34aabef63 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00281.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c24f0f0c32ae5d64971151cc7a371d7e0c4fe5b8527cd13983356e4f6c534f +size 55773 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00282.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00282.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e44a55d1a3fe8ce3f73b8148ea79d89499f423c4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00282.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a6a3e73f18ceef4f4b8a1f58d77d1665438bfb1a9251c18fde6008ac5420bb +size 46485 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00283.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00283.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c02c5ad8aacb36ac99737970ca03f2d0b369dc26 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00283.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7449bf83a1e34b1b5a5f7c27f93ead82b9dbd85c721aa4d1bc7b757965e9e5f +size 35901 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00284.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00284.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d3027c214710542908dbc9f910831b2f286800c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00284.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4265e6fef102777d5c919f1c809feee1fd583f4c291383cdfce8205248fa9c74 +size 36765 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00285.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00285.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5db68469dcc7a5b99ef87414d361856a11b1b81b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00285.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70b57e0c8a7d76c30af25452f71d850f9aa1d2acb8c758096a5990e71fae966 +size 32974 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00286.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00286.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e8ce57401c7463b4e646a6ed65449ba0434fb545 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00286.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ef0f30c7aa5a475993123880eaea2f8ae35617e69b95d56cb0e13c7f4062f6 +size 30501 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00287.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00287.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3eeaab93919fd4e0de9f04886351ed7a3be39a71 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00287.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2149f60d9b2ff4992cba15d0ecbbfd69d4cc77c712caadc41cf082317f17b37 +size 36333 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00288.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00288.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4f698f32dec8dc27fcf0ed7e4cb4e8e4dcde5e3f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00288.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13dd69917b417adc3c65d1302cf1c963e53724d01defde28e7a8326e1698ae27 +size 30501 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00289.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00289.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..79c0d8017d29fd786ee8c34c5b663f30814fa4c4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00289.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e958b21434a965218792b8e72aa6cfb701774607e50e71c834ba70221ce66a35 +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00290.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00290.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..edeba6179d33e494a7e7f09fc6beb61ed3a93db1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00290.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1242061f5e99f86fd1f4d2cd34c5c70f22aba8dbfccfee63e685420d1d75933 +size 49941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00291.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00291.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..44eda12848f549304f9840be8cfb856687bd0cc9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00291.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3674a4812ac9ec0cf0fff43c2c878aba39236c7d0ee801ca7eda3d56ea402be7 +size 43461 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00292.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00292.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..00cb59c19f38339851787b2f75c16c64dea2df9f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00292.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55b8fc8d6e670a81a3723fe5df0a8c32e2f24ab2341b76cde86fa50ec5584f8 +size 32661 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00293.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00293.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..39c55b78a28ba6ac88cff7e66dcd5fa0f24b03d9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00293.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae5ba12cf1edb3955273316a133bcd59a0c15e37b6d9bbe355c1a249d8cce01e +size 37413 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00294.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00294.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e0cc7cdfe9ae4722d9b8fee3a9cf204ccaa80cc9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00294.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8324983b47f16bed0194743f563a48c6c771e3c35239ad34a4749a109de237cf +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00295.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00295.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3a2b952d4f77520366633140e4428f3f55b5fe3f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00295.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e9446d23945852d3be169a18a16f3bf1f4cc56c557b145955fbe55165fdf11 +size 29853 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00296.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00296.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3b30a10ef4011122104f60c442aad63ed1313088 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00296.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de715ca3b267d263a61c6b8a39ac6f2f21e8976ef017911f18e54167c955a3e +size 28125 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00297.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00297.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d17c5e77669f9f0c26f998e07fb34661a2338383 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00297.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac3d475fa435e805f598f5d17c85ee8de0ada02b3816c49dc3ab8645bbdfb47 +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00298.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00298.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2d105e28ffc1aa45e4793e35af641155a32a332e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00298.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4bc270beb043b969a1ee702ca064882c92ab2ef28bd52f65d0dcdf754f20a8b +size 33093 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00299.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00299.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..198c5891ceac235cf7890f792c70b84b50a89ce9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00299.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40a6d4da52f899d4f109da665f5b50fa8304624a064208ed399c10185bc52b2 +size 34821 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00300.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00300.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d4db6f0ce0ce29d475a1c6b5a2d054f376409b90 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00300.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92fd84367567ee28f895d3755ea62b741bd65495f980ac4942cb59b23be7abdf +size 37845 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00301.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00301.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cb99897bf458e673586a0cf2bd6626710a21d8bb --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00301.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f5fd3f864ef88d5e3d4c5a7664f69e818fb54257c95761cd1ccdae8c241b154 +size 52533 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00302.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00302.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d018057c7e44db3110a054a0716862d5978fcf0c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00302.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8d60d8280f5de331b808511a59dede4238a605932b518486d04f68b5c0ecf0 +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00303.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00303.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4b4d1e3c64aaa1bcf2e486586ff3054775e35926 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00303.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537551a6e2506d7eccbf988c1e4c3219470111611c6c99e46bf14c7ed1039747 +size 27045 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00304.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00304.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6718a06c69ecabc0d7ff0b3d170bb348067b3a4b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00304.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ed771144f228340be0299831ecc95dce7f8b50c688072a55a9f6b2e0d93c4f +size 37726 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00305.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00305.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d50bbd134c1e928058cccf418952aee4ab195025 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00305.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fade877af3fba138660bb2bf518cc64ca87cd84401df6e98d9d4747916c3c55 +size 30933 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00306.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00306.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d44ef86ccbb0d5cd679277d471776829c29220eb --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00306.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f56cdd757af0520eaf5a6821a4f67d907824c212650992555ee3e245da0931 +size 33525 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00307.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00307.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8937ebd9afaa4eaf2935664529acfa4453661ef4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00307.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efd93f01b1de3acb5b7275c7191c6553c52452dfe495fd29df92c1154da3fc9 +size 49725 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00308.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00308.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..26bf4c525721cb927fb1f2025a31e299578f3ca3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00308.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4475c7243580254eb3b380cc21a67f8052ba578682e979ac6cb1c82fa9ee3f +size 38493 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00309.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00309.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cdd3c2f7972a86b9f4192ee81cd7c536bba52796 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00309.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c45ee7d8425f41d65668414a17ca700e1ef9fda7b4073c4ddde963f5a1f4dc +size 36765 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00310.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00310.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..93addd2919d3247c9ad851f73fa1a78eeaf00eb5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00310.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1885303b72d89e00533c281864e2bf4eebb8bd899f5e7af4a2655075dea945f9 +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00311.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00311.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7029c0b10629a12ee0477976def1ffbfb4f774c0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00311.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42172ea716b1e822dbfd2f156a7baf9f88a41de44bda5162f73a745bfcdfa77b +size 49725 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00312.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00312.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9f9f7f3551408b5e6cfcb1de548519c32e3a688c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00312.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0b0750ed85d9b0b765b713911bec7aed7bef8ae5fd7e5cd6293080566df514 +size 51021 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00313.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00313.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1872b1954d2696210e374d24fc84b04c4773bd96 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00313.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55094cfe679ff5ed7c2aca33f340a444ad72e6096575fba71a33ab4940e0874d +size 31462 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00314.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00314.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c9b11455319f1b1ebba27addff220da72892d266 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00314.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17d9745437ba0fa89de6ae26582c8250d0660db2bd0ea3d6c39506b7b9859b6 +size 49293 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00315.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00315.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8caacc05443c0092ad87d05701b9fdb58f933f46 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00315.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9763f88f9f4c67328371bc8b290304092784f630e03c17efde2bb6803f4966f8 +size 19485 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00316.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00316.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c5196f3ad516f0cf270fcf2397a85469be2eae4e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00316.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d64bc025399d62aac7303a2ece87d44d943e16b05a6f6140aaaa4c6dcb7840 +size 19485 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00317.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00317.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6c00481ccb11b35abcad8a0d49099174b4e249ca --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00317.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ac5d890976bb76dcd445cfc3e03ef2c3ca79acc75091a41a68b3986595605c +size 20781 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00318.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00318.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fe27de8fdeb422748afa76af791d18d2d5d6f6a4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00318.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b78d11a9f8361e7e6dbc97f7ecefd76771c7967f4515102b9a1e70e4dfd5c59 +size 19485 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00319.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00319.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a0c2d90599f794bd74bfd8261cd8f2693056a422 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00319.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ac09f7b4395500a70863340f889ad6934dca87fd8c5c2e52f815e1da49db30 +size 22725 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00320.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00320.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7e61fa9ca91889000a973fba3b2e4c95a7efeb76 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00320.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093dcb739badc254720aaaf9b4312c5dcaa1993a7e01a43acf84e4a092ea5721 +size 30814 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00321.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00321.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..38c5859bce6d8bbfb4b7c68556de01594acefd96 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00321.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46c9bc5a0d63a50cb122e3ca900f44024605b12adb475f87c4e54791755945d +size 35998 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00322.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00322.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c991e47cb3e1135e86bcba2e49e8904aa242aa63 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00322.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82fe0e7ad2c79d3bf4cad719a00faf3a958e20546c29d0563be5b76eac82d198 +size 60838 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00323.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00323.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c863a0ebd48f41097ddfacd7bed95edcf89674f1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00323.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed3c3c296bd965d5f1d4ae2e434e7f71af2ad10f0c4074d1c5049635347c7ce +size 42262 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00324.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00324.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a142f12621950f5c03c447269bf5187a6236a554 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00324.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703e2ea8f2b920663d406ad0435a774d588bfcc1cb8b55a0e53c860f730a635a +size 42046 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00325.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00325.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7d3bbd24ed4f3e4cfc6fccfb67023ff23a54e2fd --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00325.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133e08886e186c646c3ef034c61035f460d3f22bfdd0d300e6b774a74e5f4e0c +size 37294 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00326.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00326.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..455684a002b0098e8506267520c74984f761c7e4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00326.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5abfb86f80ce4302ef6a666a6442b9d86fede49204a121c38e1d615e1b7746 +size 26926 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00327.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00327.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d67e1dbf3369dc36c476975642eb7e9c92d9429c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00327.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:042e4ab3561f79f43dba12bfa904f96d7b8158eeffd54ce2460ae429ec57c752 +size 32110 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00328.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00328.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0b32ba35120f005d26f1ee49821c70ed07e30ef8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00328.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd73f43ac262248839036bebdd6f63061d69650f4df566afb3ddbb3f7e22842a +size 44638 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00329.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00329.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ad1cf4e5f1ad9f9994245124c2def412f25ac9bb --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00329.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bdb22c9be8a7eb8ff056a4e5c1dca1421fa549c1c7628a365773d38bdd5f1e4 +size 38158 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00330.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00330.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..783edc543c51ada2b3adc31919c800e97d45e753 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00330.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:980b91d15b3a021d3fa3d4dcd7f21cd3d68911d39183a227b97d97f6df9ae8fd +size 28654 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00331.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00331.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..73dab52c94694407451bd5e2b2643c0420bbe74a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00331.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf0787ec3ce7e19583190c9600a113e2fbe9ba71ca2cb62216d8226f95d1b7c +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00332.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00332.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..10bb9a4e07d0af1cfa8752a2809d5254a4c75529 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00332.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b5cd8d7b16eb1f4e3ce004b16e7fa71d4bd1f818b1ebb70f6be88a7f6b99c4 +size 48310 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00333.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00333.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a56363cb3354bb93af71f5e76727b126f0d3b3e0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00333.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d4b2f04d96b437d9764016970180fc891292c313f1d504e7017549b25f7d6f +size 24885 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00334.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00334.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bcbad14894516905a271deb5daa65f39e2af9c0e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00334.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f31b9e106d73d70983fa539d7c1dd7cac2cacc0d9964082f9c12c86caec2747f +size 30933 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00335.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00335.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7690bc54b72d805eb737a004a00dcaa0d80d408c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00335.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:558d6a11d67e91f1b5793237ced840a51eb31e3754f2ddd3e009ac5c2cf4d723 +size 26613 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00336.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00336.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..46f0136b6579856be61b44de6124f47c857c5857 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00336.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2de3332781ad883f56ae12a10d0d1b4d1a7d8b43a60f0b891bc1ef56b6bfa1 +size 41398 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00337.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00337.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0798f7ed70780f852625cf2b604b52968d03b5d7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00337.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23a83cbb3ec709b89247e7094f5d54c135747fde65c0820e4398a1d3e2ac18e +size 57814 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00338.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00338.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2260151881ff9b29c6703e498d33472c2d30e038 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00338.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b0dd6832c00a5ecbc7529954459cbe1a2fa66429bd041d24861e0083bbef39 +size 56302 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00339.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00339.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9ee9cce76c58e33f8b4f71ddc6d12b48eecfa4f8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00339.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f743986db0a5d516cb6266fbb81a030831aebf09a57986b18735be451f6f87f +size 34702 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00340.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00340.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..180f57babd385381a44dc3c93a5a0b13d5cff816 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00340.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:778df55890e313458cf86960291fe3b9a4defcc0ddb4f5261dcb004b206c98eb +size 47878 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00341.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00341.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c0c2a6f196b76abe8c7b76da1fa72d91dfed58b2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00341.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede6622e00013fddbdf646b140c8c719bf57924ceca6d41567da3ee0887c200f +size 56734 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00342.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00342.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a6c71d9b875cd2cc2ace9b79f51eddfaa201de31 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00342.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e25041907cf820430609bf5becd14b53c7d721e9e86a43b2b027f92cb29269e9 +size 53181 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00343.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00343.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9125d9b8a0da55a94f134eba595db0d4faaf49dc --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00343.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4382242bab73209977d4eb31181f23cc52b643db645bc4a08846354fb969f0 +size 36765 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00344.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00344.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..14708390b612ac2fd4515a95784130b785681bba --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00344.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:568902f4dc792e05522dbb3e0797cc0b7a46d3d3895ba7fc520c2de8e1adc0c2 +size 46701 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00345.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00345.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6f89489ec6f7d92590a038c89772ad154073fefd --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00345.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bafe302a1180334a7c1b2e07c32ce04ee0689ca7dddadd1453004d96bd177b73 +size 44541 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00346.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00346.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e69df399f382b5c459a68a8a924ee3bacb06d88b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00346.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff85e73574231ba2bc2304b623655072fdd8345d8d4a4a571d30f1757a1dc43e +size 43245 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00347.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00347.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1dad3fd8ccbb68d7292ca1ca5ff0276901d38c59 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00347.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a0757001ab323d137cf68f7e3fd58438f9118b75c5f8f1fa17535d45872cffb +size 32542 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00348.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00348.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8c1ea9e82e070be0923414fc1d3ec019abe0cf51 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00348.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a33b21793c9fa0d3d6f587fa4db6b9441fdb494a57a05749cffe10f793f7e3a3 +size 38493 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00349.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00349.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..68ccab19605050537d14e0ee8332b3ea629136c5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00349.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b18a38d718241c4a9f2c5ef6c419db97f0a03f558860e5ce0a5de187d14c0ed5 +size 29205 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00350.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00350.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f40205e69eb3ccdc98f2e5b94c2cdf13b838bccd --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00350.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0860acdd97e94462e482bdd37678da95772445f74dedadb0d954211e49c296 +size 24885 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00351.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00351.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..12c5f79e5f4ff69383357dc99e213a8a2ab1fd4e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00351.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e584346b4ea22902a8bb57af288c497c0743b4ac8dbde3b4ebbaf87c580f5272 +size 33093 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00352.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00352.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a37575e560d7ed0cd20e54f7ccbcc90f7b6d40e8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00352.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8284d88e12bac5822a830e84008b8b458947f6fa06b99c4e9010c5750c9cea1a +size 52965 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00353.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00353.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ebc9ff1f6486012258348318bc0a805d93e561ce --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00353.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb9a55a02bacb9be282b29a78e51f2dddcd487faf7a491183da897ec732141a +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00354.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00354.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..267e81d03d5dddc57853a8ffd792479aa5e080a2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00354.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d8aec217842560c8d5a11199bea54dc994f7cf3142cfc4d54e12d4f5395a15 +size 37845 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00355.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00355.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0b83aff05ecb2ecf64d581a97cb9ae3a6a1a9f90 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00355.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f4234de6ca970f28f24318964be5448e3770c92ef92b7eae9bdf84c856f0bc +size 34054 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00356.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00356.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4b3b9966559eacd063e05cfd7a8dd9b3ffe816c0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00356.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e590a642931207e460891b3860aa16af4619a97fdafaf6b8236a8318d8a32031 +size 46053 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00357.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00357.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..84123aa6929288bdae015a0cab62ed20f51168e8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00357.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa0a3d1ffaa705e38e78ac3d019012eb476d071b9b9ce20179515ebfbd007fa +size 42165 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00358.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00358.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..099156a495e4513179176ec6d0d003babcec39ae --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00358.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6912325a64046d4d12bacb4e8afa6fa9a92ec2dc77cdd6d817bb9febe56890d4 +size 40005 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00359.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00359.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0a1b7940ddef8b5ac30bb34cc6b4d9b5d6adc0a8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00359.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edcb6da7f55fd02f7860e40cf400642e1ea714196375480604dee5eef1bb583 +size 47781 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00360.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00360.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4a4bc9b0005d1905afe2a7212f2cd4b2b88744af --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00360.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d888fc6d8a15f091f40dacb3be67d0067813fb1170f83bb1ec4d79a6d946a2a7 +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00361.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00361.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1d56f70c3e2ce4e74852f9209ba28ae63d591186 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00361.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dea9015aa26edadf684ad87534d180df2f58a5f0895a3c6671a6e68122473fb +size 45621 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00362.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00362.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ef79206524ae840f4e5acce1f76292b5f1517777 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00362.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938ba3889bf05dbc6f048bc564d953ae807fef682e2a7fd7db8b5c1608b38790 +size 38590 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00363.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00363.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3200e6fc5e135b810f02bba16253b6e3144c7de2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00363.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acacf2e9d175aa4812efaac0646a19c8aad8717e0639408d3df4d18657eff8e2 +size 46053 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00364.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00364.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4eae502769beca630a7c3702320446029ccd72a5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00364.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b117c17b3827b7cdc5166166cc50176d8632b47ea24b4f0b0f2e8b0d6b9534b2 +size 40005 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00365.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00365.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5a87aaa3475b95a5cb63191e746bd9b827707cb3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00365.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f925fce6ff782bcb35362eee58f7510a62522a3fb2561d578c17f0d3b81b8b73 +size 28125 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00366.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00366.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..29a31c42898b52524a5ddb0a0b0c994904cee2c8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00366.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83be9e22213d6c4416c3f62349b45c19d50e4da5abd76bdb3bef0a009304c24a +size 23373 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00367.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00367.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..15d124e9ce478b719a8b79d7fff89eff1888d096 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00367.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0652d43768a6dcf7a28e579af984bbe8291162b7e0b551d2de47d5656713a3fb +size 22293 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00368.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00368.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..48a7557850f22fc205d4b9f8a31715ea15fcbca4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00368.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b4fc9654e7035e2e22d0f4fa261a3b7729956eb085ee370f1e8d03ac02a492 +size 21645 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00369.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00369.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2775aa27ed07a2afe5f956dc806b0e0c3e6fd01d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00369.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3e71f7dab7764c2f3fad1ca0ef31b552ffc7df4a44e7b4b1361add347c0761 +size 22941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00370.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00370.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3f7a8418fee0be6a8f1897fdd1fd7c7c567edd8d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00370.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310546b7f731b11496df579acf11039dfd4be415497412ecd1faf5a94770e4fb +size 23373 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00371.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00371.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..70feb8cf0ddc06ca66d4b46052b2f8a5ec7d94d7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00371.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d088e9274926bc8fe0b0181e374ae0f9e4a9deedd0fda5d721da6be212bd2dea +size 35566 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00372.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00372.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..79cb610c8ce3c369b53fca5fa2daa2c4e7c90479 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00372.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1fd93f9049a43e26fed66cf3c2a3ca26570aca7330b345218bad09d1c1884b +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00373.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00373.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..346d432d139459a545880ca362a759d950f823f8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00373.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5825f4454fc12a550357246252d3f6c5c25b21b11d39d73e67d25a93e4308ef +size 41085 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00374.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00374.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e1d5781267d31a6aebabd722cf7c10379ca9b0f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00374.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb04252ee3ab4d5fbf7e514d961914e5f517267e56fb2fdbe1304e1c1c8fef6 +size 36765 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00375.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00375.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a2591ebd6b4a15ecdee65cf0cc5d930b7d69f272 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00375.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16f1ed616ac818d45392a2df7e1462994107448c06c00e7a4539db3fdebf9b9 +size 37413 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00376.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00376.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8c61191adad0667a6e190b2258116ffe0f14ca07 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00376.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994327ee73cf93242d2f99c30f06362581a017e1333401e5a4bde4bf640fe036 +size 36333 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00377.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00377.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..01eb8c87c4f8e28bd951f9e9ffcc586eb52ec083 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00377.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7800e2655617b59228cddc86d1621eaceaac796d1b3aa893e2e037fbce87db4a +size 44541 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00378.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00378.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..59e8394b45ee950b95f20dbb4935647fef9b7dde --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00378.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c088ae89f2853ce95a521c381c4d62d12e0363daff8a08e0a62cc043ad54633f +size 35685 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00379.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00379.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1c07860cd5d29d0f5abe7f4e63f9261974704b63 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00379.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753d5913174adbba6d8f82b3d6045b923487236589266b65735ebba04233861b +size 41085 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00380.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00380.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..baf4e76b92d230a597b2a8d250b546a377778103 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00380.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1137b02ef63fcd5f43abdfdb8628223c589a29dc1998e5d0035a00ef6d13c359 +size 50373 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00381.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00381.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8f61b5fad7ae50b4595a416d85eab23588c2c9fc --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00381.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06fac5d204e2b50162aaa95eb9e8b96396dc4e50456ad19a1bffb0e6bd5abd7a +size 38493 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00382.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00382.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7fb27396e5ae1613073612e5e6244751fa4ecba1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00382.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24280f62cc9dd1dbbf0beaf30307e88fec4f118b797446c13c201463498efdc8 +size 35685 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00383.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00383.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..508d560288e00c817c81f266efdece5d6a3fcf4d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00383.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bfa300c2fbeef146ce76176a12564eb70a0912971e8c7ca3628bedbadc709d5 +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00384.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00384.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..083262c465ed8542b90daf52d18a7c63e8b890b2 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00384.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b25904dd0d5be7f80bfd9c88c4d67a391c2c1cb8dce27c462874a24e745a8a2 +size 33093 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00385.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00385.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..53808e29d4b9cee158b28fd1e817c0172bfd69b8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00385.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5672be5ffe59e2cfce24bbbab661df9c17857f479f6cfc94e3b63960249c5221 +size 49293 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00386.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00386.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..bd6b571dbcc75f84bb01a24955c0b5731723467e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00386.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9876baed7a4e40384d61bd2402f2082a8d6a3f11a3d20b2adf940eba0033807 +size 28125 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00387.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00387.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6ba95bc41521ca7ee469beefdeaf0c7ab460aa39 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00387.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9acaa7fcc77d7dc2c16d0585117948ef60c30a2ab6adaff25eab2456395c43 +size 36765 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00388.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00388.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3069e7b5f31bf94d89e2e37b949df12d94a03311 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00388.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5428807db4c09114dacefc85a5afe20a6d1f55599a58d56ec62bf1d54d3eaf79 +size 56853 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00389.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00389.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6704fa288243e69215f5f211b89bff1f0af8b7e1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00389.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a94cfcb67858deee121144ab6246af5492021e9a0067c1d66785b4e397ca7c +size 42694 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00390.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00390.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..02219337d6cb1aff20cc5c1be580102f0eff2023 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00390.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11aa278b4f29007dbd25422a5d52ba75dbdf043a4945f81f8aca4e39e685f301 +size 51021 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00391.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00391.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..47768e0b9cb53e42dcf553d65791ad41fe503e58 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00391.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688000a5e9cd0e0b5ddc17f2b5c9de4300ecf2a577a1dedbfac8d8a77a48d507 +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00392.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00392.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..291c44a306e859d4253ed8fca45c782c75433b1e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00392.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e212f09ed1b18b009e9fb7932299b5f84664a0510ea869e5a10d790ebe9d4452 +size 33093 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00393.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00393.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8fbf5b80f58b95aa4ced140122398af54f7263cf --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00393.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890e4b34d19205bc85499da49ef8a4659899de4f0b23ce80f51c43ab80d7d790 +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00394.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00394.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2e5a14f38b48b2bbd5f26fa8a119cfc7548119e3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00394.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e5f2affae9f84a7b71c82f90c4c91dcfcc6941ec945116ee06d066127740e5 +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00395.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00395.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d116cb171123def6f908dd478ad11a7b1e4d0595 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00395.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48af7e6763ec4745cf177a9d8795842e886c4ac4e521474c9adc2d1dda802d57 +size 35901 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00396.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00396.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6756bbf63c4fd291b0f4d283b9c4920c97d3b1c7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00396.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2704a47e5e9dec5b3b60941d3c465a07380ff776e0404a0915ce2a924186ae42 +size 34173 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00397.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00397.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6e09ddb0dc91eb8c62f8d5b41733bbf7ca576637 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00397.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7a062e5f7a0b5838135a8cb3a58417efc017c08b1dd732cbd71b844d3a8fe3 +size 31581 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00398.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00398.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..29b7b5c3e59fb99e778d47097fd4f82b43bf7dd5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00398.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0844237323594ef0876a7a8627c28dbaca078b67d72620b02651c049d30fede5 +size 25101 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00399.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00399.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a5219eea5a71f0e596bcd9abad2767cf8eeb24d8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00399.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8599dd4c6ebcbb4db2a818eb01681c162c52e55b9a334a0208da0bcade690678 +size 23902 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00400.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00400.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..38611167a7373f0cf1561f8aee3dd5ab4b3a1dbb --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00400.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3b161ae431b281b84c68961d5b395447d0c8d6c3be715b9df3cd23597c5613 +size 27261 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00401.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00401.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3249e8e8541215de0298b6ca3e116505b97e0b80 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00401.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16278b74e2735eaaae7b8f5865d1ab22f53e32ead3d2481d8068ffbbcd5dcf13 +size 39573 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00402.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00402.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..36ba4babc62f096f442a79244258e3e34cb73491 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00402.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9314f210ce5415c3b60741892f6d12aa64cfb1fadbe6fa066f8d84e30c0749 +size 26613 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00403.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00403.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6a8406d10770652d195e58da8712b2c49242556f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00403.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c1fed94d9ece4eac0a4a8134910a609432a45d15f690fd9c9e8660ead2c948b +size 26181 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00404.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00404.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..797c2b3c0e03c20f06fe5e5ccae0105e94a8fe56 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00404.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b71e9cc01571f5695f35079f53f6475597719c104a26befbac025d439de0f3 +size 23805 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00405.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00405.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a08b7819c22ff368f503be79bb4fb73d593e5e96 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00405.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31488ac48da0425d750d787a07ed37d01cabd573364aa668e9bfb48a3be1ad99 +size 39141 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00406.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00406.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..89198943e5c431b9c4d682b956bbea126eb64d62 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00406.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fd2cc623f1aff12831ab336c4042c53b2327cd2bf9f02301229a9bff77aae3 +size 40221 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00407.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00407.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6d066b2262d4accf3c489de2462216c098a2b4fd --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00407.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65bd90f8ea3c2dc4f25eeee8136ce456778d4cb1949fa078d598f655112f33f +size 31678 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00408.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00408.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8af24aa0678637032ed76ace3fc1573c493234d6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00408.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bb8e10efa6c23740e5cf5be70148bff26dc278a434d499f284e3d853e9b540 +size 35253 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00409.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00409.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d8b3a0dee57950b19583d3b3dbd5a4ee1c91d626 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00409.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67dfd1874090ee2692b4dbf8e04b38b2a4cebef05d6278bbf38a72118bd8874b +size 40005 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00410.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00410.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..350f691f02cec41021c369cb503907e0fae8a3c8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00410.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9dc66b5feddbdb52cd6b48379ef89991a8908d35eff1d18bb1c988b7cb42d8e +size 39573 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00411.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00411.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7ffc785adcb011d2c0539998c24348cc5237ae8c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00411.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9e09aee39a06be78a87b0e3b2322a16206d5f4836835bff26b53ee3c88eb2a +size 44541 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00412.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00412.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..cc9899f0dd4636bc92997265059237d805012abf --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00412.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a71dfdbf56d230c9306d7bad0d26ff8fd121beafe1905b4bddf42ac3ab94471 +size 19485 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00413.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00413.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..117c27ba92b174fcc345cc17b47c5dbff5290d3d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00413.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3075a577284e75716a81e1b55b5e4eb4c253469399ff67b6fa30b47ceb6d51a4 +size 20781 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00414.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00414.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..abbba2279648fb536d7be367d2788a0d4b3b4359 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00414.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df66813aeacfb0067e775d8841d37f502e3e7a9e830fa5477d80de2057df0799 +size 16461 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00415.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00415.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..98f331fa68ff21a491214cd3f59014d88effb54a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00415.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4e743734e8600d234224dad1abc4d9c76ec35711c27366c683652f884d85ffe +size 36765 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00416.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00416.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2470b63350c4f975485d4b35bf98a6907d55b8ca --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00416.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:962258d8c1fa08d9d51f740544c872506b76c48fea039615089908f76ffc11be +size 26613 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00417.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00417.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3424a2b3e1da0ed7eb125d70d21c43c28e43b3a1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00417.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b60fa62e0774a6d8d6885020694afbead6221b9d1f3963cf7ba7fd3a1f2d65f4 +size 32542 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00418.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00418.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..95328abbdbf7609a4254fbcf05e72a24940cd651 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00418.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a903704111c5e0631725102b2202f6701f3ca9ff682dd1c387b5ab13bbdee801 +size 16461 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00419.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00419.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2a21d56d670ba48a9c2ee8ec912d12431709a2b6 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00419.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ad97c7012c672ade4257dc724c84168eb39da780eca4cb29aa18ed061a57fd +size 17541 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00420.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00420.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..03dbae255d63dd89e9c483e3a6e458a5a93ac866 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00420.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d553e7a3247253ba5c5f76b860497d0d079b3e903ed75b76636a75618ac6b4 +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00421.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00421.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..188063c06c15a39753a41eed61700ceb5a1cd7f1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00421.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03338fea827d42ff87084bf52033d5d9a724a031d55e9dd6732e19ec8dc1ac39 +size 53181 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00422.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00422.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f6412f1e5af5abe6265f893c5121baab99fa2ba3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00422.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17f2e78a90187dcd61ab99ff054e260e4885b31755be02a1572b281f8038212 +size 43461 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00423.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00423.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f4617aff7e1346417eaa959217cf7e493c5fb537 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00423.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d420c3d9b2b1eccd3720383e111761bbf0d66e0ef1f75e6be8bb1230d6567bcd +size 55773 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00424.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00424.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..37f9cfcb39c74e393f732ec352be19d41055f90f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00424.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63d388d1ddd795bca44694a2be002494bd9c2ff9819a1cae7836b561fae51aa4 +size 57501 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00425.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00425.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a56471744fd94c06460ce2436ee8b05ab91528f7 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00425.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51b2e2ee72d105033b92e12fe89ef2c5d87b2c0334a89c7ce79ae4632147acf +size 44325 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00426.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00426.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fbae60b0c984f7709d665426483ab3fb168a4c2b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00426.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15b5520570c0f7ca2062d3bc7bad8786a5b9ba5930885bb8625221f3920fce0 +size 51021 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00427.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00427.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e96bc4ab2c6cad7a6411974000d68e8c1bee9578 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00427.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12f7d5905554b2d492ec546f4946ab572ea08db7be73d6815a2d33b184fee6a +size 54045 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00428.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00428.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..5b020c73461cd9eba7fac8da95ed9f27b6175f14 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00428.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed522558cc88491732cdf52f6d2d3d4d9db217e5f72efbb492dd6b47113cb1d1 +size 41733 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00429.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00429.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d612aa6746078e6325cb017456ed1ecf4ef69543 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00429.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eed4d69dcb95d674a8280e345abd6acc5c762328c79b3d5c4d6d95dd57c2cd6 +size 32445 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00430.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00430.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b7de224fb37af2f71e99cf16049f75743a958951 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00430.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807318c330f18a9e92d04bb43c911c9c0bd99f252fae1f7c45409850706e8d2e +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00431.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00431.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..02e9e936022b27f71b86e7d24c23bb8c0dd0c017 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00431.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98d48fd5fd37da940ce4c0589475d2c3b4b9b658fbd1b945ccb30a481603ff40 +size 34605 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00432.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00432.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6869337fdd3e15d15b67c96865da37b1d0059e6a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00432.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98bf4f48e68d9bd5fd9ceb9c243b1685cd2a3c72679ed6a4671f8f812818d8a0 +size 42813 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00433.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00433.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0e7fe32100b68c9d89b28543fa3b2cc6c3780bf0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00433.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db373835f25411e18bf08a7c0ec6216a85a99609b03fe380c9572f49da2faf1 +size 32445 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00434.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00434.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ef7dd50aa466d1c4d51c98df8a3bdd331fd12948 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00434.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6553e26b622f7513606655d709ef4c7eb51037680b05027580dec88383fe03e +size 33741 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00435.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00435.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..65121b0d65262849f01a84dfb6729846a9a1ab0b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00435.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74157acc6ef5bcf9e2a2d33647146e5d14c8230c8c50893bb7440d9b6bab0a48 +size 55125 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00436.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00436.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..63e848bce0d5441c66b23c8d19a5b03fb58c63a4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00436.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45287fd967c0f78ee3ffc2ca40682cb96ea0a0d4b18f66bcb55654679de9d16a +size 26181 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00437.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00437.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8545f072ffae2d05b911331580fce3524502731a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00437.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac43f79f009a2bc373dc4540571083b08e5f5b3fcc997b1f3903cab390533fd2 +size 48645 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00438.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00438.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d614440de318e4bacb484e42c5fb10c8e4c31167 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00438.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310b4187900a883bea29d564fc6c2c8a80c27dc2da253bfe38c8ba81967b9f10 +size 44973 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00439.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00439.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..77afad32e86d933c1cb7c2b7cdef973bb3b2384c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00439.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f960462daba3f4a006281d8e7073bb678ab640d24789995c8fbeba90a08179a +size 49941 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00440.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00440.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2d3c50ec5b2a36cb6dabdc0e9da7b300a0329664 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00440.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40740c2dac28d0d2c0b71ed2e4d2611a212bfc60227cf807cd5aa2fa17aa372b +size 52533 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00441.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00441.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..21cb5b10598e54ef301cdd89883813af9e4d6e89 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00441.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e53e969b2e091d9aaf487ac894544ed91ea9957c40f856b8926bd465b19518 +size 43461 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00442.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00442.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8c2cedf830ea697be8bbcebc5a50c4dccbfabe3e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00442.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0245f60c5a776643109c1a180af9a8dfc70e61c331af4e1f2678853b2f9f7c71 +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00443.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00443.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..967b66a45eea043da2ca2cbda51e15c9a048103c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00443.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f5c0526a29d749a5681bb1a3a9298eabdbe252021ad7e80c7473af78031db83 +size 37942 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00444.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00444.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b724220980b2511b5e10238e3f7de564f2059c10 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00444.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17eba823d3ecd0bec1d56661d29c1ca5778bd55348e604e50e5fb293888b5bd6 +size 34821 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00445.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00445.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e0ecd058a5adcda856c2963a0b15babb27013189 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00445.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1b15ad0396890f7a1f003a840b3125146f370b7dc0130afc3e48e39d37c809 +size 23805 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00446.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00446.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d59091db469cdf60c7e4f3f7566b216c178dd708 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00446.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be73d06d331a3e57107d8b7c202145ceeeb90de49489a0492db562d7902880bc +size 19053 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00447.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00447.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7e09278aefb9284c8a657a6c3ac8a300922d3d91 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00447.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d573f22768ce55ca842059d78d6f8d70f8b80717db8441b15c5fbd1d15541d98 +size 21213 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00448.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00448.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..178dd8c73616cf567579905cd607245a96ecbad3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00448.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707379c6c87b0c320bb0adf1a53db753c0cea454b71725dc1100dfffa5a87250 +size 24021 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00449.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00449.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1375ac9c78572a6438b5442a89d4cd61d5ec3548 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00449.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fda83f7efec3c429469273ecacddc2747f15bb15d134a6fc325d6e3b13a1f6f +size 42381 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00450.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00450.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..13d72f9ee772a343b8f36ec2db629b08ba77df0a --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00450.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e9a1a90c7be458b3936c2839f08538643052115dc9b545c47c8fca4356024a +size 30933 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00451.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00451.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..de4f2b651f4dbc38fff2f67db63045748accb02b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00451.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5041e4c42de1368152a2e1c1505bce6fc6b67de12b64bb9497ddad28fe55f83c +size 38925 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00452.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00452.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..559ace310b9b4227e165f3fc46f18e4b93047bf1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00452.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68b28759ce2895ff076db8a5f16226695f810a0f96d6425f01b86af255c00fd +size 24021 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00453.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00453.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8211781125d47ca7b1405b48bdeaad984714bbed --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00453.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbcc1b53a03fd2613fbe71fa7b4f680389a51a6d7393a4bcbc882106dd42457 +size 20133 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00454.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00454.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..04d105a05731a9c48c43b1695cac4cab30bd198b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00454.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0b1257536a95a7e783c021c40e8370bb4a88e19029261f7c03b95c2eea7bc8 +size 39454 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00455.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00455.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4c01b17f89463d26a79b956f5707b06a8082b950 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00455.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a91a39c115de153b265f60ddeecd3672bf09ced6774835e37874e94aee13440 +size 35566 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00456.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00456.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9eef5420b5ed72953068740dc0e9f4abb05ad690 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00456.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db0ba39207f02f5e80123f92bc9fe1308f3736ca37d44c8ca887a8664edda86 +size 42910 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00457.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00457.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0e483591176b96ab27071a11799d817c32e6e68d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00457.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7daad023345a8146263e4b000538b3719e79451aa9c85be99d2c4bad78cfe0d3 +size 38806 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00458.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00458.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..3962e06f20c331ad65bcc0e13df524cf863fc663 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00458.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66751b0d72edc681027bbf3d48544147e3d2b7c7307c7bdae589c801e288e5f0 +size 51118 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00459.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00459.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0d6dae94d7aaf860c6c597d1f9e6800291562590 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00459.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ea090894a3d01543b587bf3255c3e9f551361d13bcc16597aaa7c9490c1e22 +size 33838 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00460.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00460.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..56bf1d1c5676eefd498a409c8966522a469ad12e --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00460.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd360b0416d1ea2c2f3deda6b2caf0006ed8592ee4659f6d81975c23a62bac6 +size 24550 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00461.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00461.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..303bc4bcebccd888c57504a8a874f3fdad827114 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00461.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259b56ee02b969c7fae6fa9d48b8181e8f48a5ef4837bcefb1f4c354bd9daf5a +size 44206 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00462.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00462.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..96ae1f49e323a5ff0fb97667ce7555842cce6c04 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00462.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c9fe3b78167d647bc7e7542225ba135fc92acf14a0fb3185fa02d0a8bb05ca7 +size 33190 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00463.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00463.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..03dd515c5dee02da47963b0a18c3d9c32e4024f5 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00463.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d80f0b38b738b48b65437ea6d569b48f5f82d25c4d86171880b3723912cfe1c +size 36430 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00464.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00464.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..adea5f61756b107b27604aff37c9afd4e779dac3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00464.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c8aeaf215d58f6d14108a29dfb18a130310c8de995f78573423cde75b819dc +size 29734 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00465.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00465.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2fb83b917e5e98474ed0386a2c54b8e493b28842 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00465.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff906ad91921a30a5b1761291b0c1175f15fa768ff05db8ee6aec16bd0b5ca4 +size 36430 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00466.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00466.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..facd315a19019c97a47fd369c0bc5d6d0fbeeeca --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00466.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a204faf843e48b8f83f2393a7912eb80422ea318585e8b2f49f9b5b4b53b806a +size 37294 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00467.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00467.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f436d5d320fda19afff748bc4d3e920df0e3a3f3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00467.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86dfd962d05716d917f333cb4b8a0f218f0fecd8a12e638a55a15fc66c83394d +size 27574 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00468.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00468.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b01ae91b74e6d09f6e251f29e4790b0d772ba0ec --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00468.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2e59450493e890cb40733ee9b73cbd1fee59407e2ca8fe45d6fae3c672adc5 +size 36214 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00469.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00469.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1e151124ee134007f15d76066638defa596a3fb1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00469.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278c924a9488f25019be6769e38952530a671a30d097652c413ceedc424b0cb0 +size 36214 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00470.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00470.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0f7d7c3bb8cf1d2edcc6e16773d6eed29f30902d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00470.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5816eda517014e36f9fb52718e90c9794ffe02a756ddd591cee5c1d3c3c9c2c +size 32110 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00471.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00471.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1a818720ebfd059e63887cd7ca2670a924957439 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00471.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b671681ed1b3f0eb30b725798f1dde37323db6bb0cf2bcafc6da82e969873103 +size 34270 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00472.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00472.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..005f3edc6b576e8ac27228f72b1e1fd8ac85aeed --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00472.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316615a0278876de731ffbbb658ef6c0aa573b12a1b12414f6f76e92311fbf7a +size 42910 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00473.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00473.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e5a05c5331940c1eaf3c6556889a023559830958 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00473.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6927f5d12711ea6b864434d03e74daf93f38434456ac0246f53fd2b344c47b90 +size 32110 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00474.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00474.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7961b11b23eba7a4a9187027a10fc8de5aadb9f1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00474.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b97d867dad1220ed51e706221e27c056d1b3525e5df78c1832e0c9276a4e712 +size 39886 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00475.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00475.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..99291c14ae560ba89512c79dd76117b8889074d1 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00475.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df223755bfc5f536f31dcd52d589138826154f311a69cfffb9348613b77709e +size 40653 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00476.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00476.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f2eea0f7ed19e9f34b369be17234a9ada1ad558c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00476.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c64cd39666a9315517b275f56254d200e91ee186acd3c6f20ca1f974c878ff +size 19485 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00477.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00477.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fd08a2b60814ffede955417273e236d009f9cefc --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00477.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0005ffb4ceb15a40d099595dfe0625cbd23137eb5e16ff43daae01845a1d7dc +size 29205 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00478.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00478.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e733b9b730bb90dfa03bc57341087a22e4411a05 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00478.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7370d681fd5be6677e31e34f44c0a85b505a019c5d78b328f1c525c2d4e893ee +size 31365 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00479.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00479.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0cefe7e936e951cede3873824f49150d9627ea2c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00479.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0e92dcb2427353dd9c85ad1d61d52eb6ac6136772e0b954f99a76cb90ebedb +size 29853 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00480.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00480.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..a1fd695624cd71f703274d2456c1e782d9314f4b --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00480.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3127e7fe6e646220925ae93da57b188c9efa845d70cb6dcdc75ce0b47863d1c4 +size 18405 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00481.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00481.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..fb9425e05dfdd6605376198c7cac33238fb4fdf3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00481.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb846876c7acb287b650fb13e3eb182ca0a1fb59ad32390c4924f751c9b4894 +size 35253 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00482.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00482.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d0a7c32ca31e93801a322f4c3176b482f10bf6fe --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00482.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2aff8c7101d361af87acd12b517e91e5b8e1e044c950a197859e07c905fc74 +size 29518 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00483.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00483.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..96741be7d8327d19023ef0d53950e5f0bdb67275 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00483.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b409d0dc5278703dfa14bb406ca2346e9fcda256caf37e36e5be55994d892520 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00484.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00484.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e191b8b160f4501a1a0ab43dfdda9f44e4e91b4d --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00484.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db45c927b240baf1afd3c622c407c9b048ad77251e5572099a0a90fca68954ce +size 33525 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00485.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00485.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..613f1e5e2515916b64efc49b3d740e0e556b9dcd --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00485.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c496370c242d7c25bf82818dca4e722a4ad695cba26fac6260c70cc32ec32396 +size 28773 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00486.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00486.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..34915fb51bfac840ff57fb4116f4ff1c3a67de3c --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00486.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02630550795483133e9dfa689e232765af689324bc57bb5894b9043ec55f6fe7 +size 52533 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00487.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00487.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..816cc154eda682d6559dd9beb2dad6fcf9f90b17 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00487.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c9c7889f731e5f538a44d0a638e630a6b008132664aa2558604290fc2c2bfe +size 38925 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00488.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00488.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..d83bb54cdf651bcb56aff07b175b8a9d87aa141f --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00488.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb04c8cae32cb69b996f4f461b3af0a4f536202be3dd65affc6c12be50c99c52 +size 41085 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00489.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00489.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..713a1eb80ad936c486dd1c4bf06d28f93239ae56 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00489.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593bee812d9823070ced5aa3d436ea810c1075293fb78333ce3e70cd3f9ef631 +size 28341 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00490.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00490.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8efc9ba8d05214fd6dc831a37ed7230c618d8542 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00490.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f51a53b8577ce80987f4d4340db68fa87ad5037dbf0b950d74a9720ffae428 +size 30933 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00491.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00491.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f7b43d9ac94c868b7a61eac5010e4f6ef5d945a8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00491.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46c28fbf43cea1e2523703c5ec90bf29c9020c11f740dc875f59b79ff602525 +size 35253 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00492.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00492.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ff85c74d0cc3f7fca4dfa2eb60231f43f273bad3 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00492.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3fe4b3fd7ac64e11fd1ccfd27bd2fa48b6da342f9e56cfab2be6b6c2d3fbbf +size 44541 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00493.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00493.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b63dde139c32f4358757698db5cfb9d8bc02bc79 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00493.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa16b5f79e69c5010b3c1e8bc9776f71f38651fced5f9f64bf4eeb926c9fe5c +size 45621 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00494.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00494.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b7d84287b5642beeb566b00fe18c605b40777fc4 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00494.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67008695d781d3de3ea77f7b7aa9298334f699341a3b85f0f2b86890d38a78a6 +size 31581 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00495.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00495.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9ae8ea9b3af890b1d047c774e0dd871f85477184 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00495.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c126903763687b20f303ceadffb5eafc7c71eaaeb165564da939f47a62436dcc +size 41301 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00496.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00496.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..203bf0beeaccd29a63f6e29764cc10d5c3fa29c9 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00496.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171dab729095c6a8172e89ef9ba79ddb3cc64c2224d05c9c415a61798805e944 +size 54693 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00497.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00497.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..4dec8fd1cc20c022fc0ec643f07d357a33e39bb0 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00497.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b4649f0f5e20d58e5a4ac4b93e0ef100a8bbd4f338941c58a7970945b8aa3f +size 42165 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00498.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00498.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c703106cd06f02a442d8532738c9588f3580f4f8 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00498.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffb5598e3713fc192a8f70c40225ddbc100f191a3dc5458e8ae703cc1ae7a47 +size 36981 diff --git a/prepared_data/yoruba/wavs/yoruba_train_00499.mp3 b/prepared_data/yoruba/wavs/yoruba_train_00499.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..577be24c53a82a8a5b668069e3ef38fbd2a07f01 --- /dev/null +++ b/prepared_data/yoruba/wavs/yoruba_train_00499.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde89ff863ccebb6d4d5f99d63a2ecdd47792dcdf4752fa8dc3efba5f6a5a8ef +size 45405 diff --git a/scripts/create_speaker_json.py b/scripts/create_speaker_json.py new file mode 100644 index 0000000000000000000000000000000000000000..bc8acbeb3624f847488963f05b38d6011949fffe --- /dev/null +++ b/scripts/create_speaker_json.py @@ -0,0 +1,164 @@ +#!/usr/bin/env python3 +""" +YarnGPT Speaker JSON Creator +Creates speaker JSON files from audio + transcript for voice cloning. + +This script: +1. Loads audio and converts to WavTokenizer codes +2. Uses whisper for forced alignment to segment audio into words +3. Creates speaker JSON files compatible with YarnGPT +""" + +import os +import sys +import json +import argparse +import re +from pathlib import Path + +def check_dependencies(): + """Check and install required dependencies.""" + required = ['torch', 'torchaudio', 'transformers', 'outetts'] + missing = [] + for pkg in required: + try: + __import__(pkg) + except ImportError: + missing.append(pkg) + if missing: + print(f"Missing packages: {missing}") + print("Install with: pip install torch torchaudio transformers outetts") + return False + return True + +def create_speaker_json( + audio_path: str, + text: str, + output_path: str, + wav_tokenizer_model_path: str, + wav_tokenizer_config_path: str, + language: str = "english" +): + """ + Create a speaker JSON file from an audio sample. + + Args: + audio_path: Path to reference audio file (WAV) + text: Transcript of the audio + output_path: Where to save the speaker JSON + wav_tokenizer_model_path: Path to WavTokenizer model checkpoint + wav_tokenizer_config_path: Path to WavTokenizer config + language: Language of the audio (english, yoruba, igbo, hausa) + """ + import torch + import torchaudio + import numpy as np + from outetts.wav_tokenizer.decoder import WavTokenizer + from outetts.wav_tokenizer.encoder.utils import convert_audio + + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + print(f"Using device: {device}") + + # Load WavTokenizer + print("Loading WavTokenizer...") + wavtokenizer = WavTokenizer.from_pretrained0802(wav_tokenizer_config_path, wav_tokenizer_model_path) + wavtokenizer = wavtokenizer.to(device) + + # Load and resample audio to 24kHz + print(f"Loading audio: {audio_path}") + audio_data, sample_rate = torchaudio.load(audio_path) + audio_data = audio_data.squeeze().to(dtype=torch.float32) + + if sample_rate != 24000: + audio_data = audio_data.unsqueeze(0) + audio_data = convert_audio(audio_data, sample_rate, 24000, 1) + audio_data = audio_data.squeeze() + + audio = audio_data.unsqueeze(0).to(device) + if audio.ndim == 3: + audio = audio.squeeze(1) + + # Get audio codes + print("Encoding audio to WavTokenizer codes...") + bandwidth_id = torch.tensor([0]).to(device) + _, codes = wavtokenizer.encode_infer(audio, bandwidth_id=bandwidth_id) + codes = codes.squeeze().tolist() + + # Calculate total duration + total_samples = len(audio_data) + total_duration = total_samples / 24000 # 24kHz sample rate + + # Split text into words (basic tokenization) + words = text.strip().split() + num_words = len(words) + + # Simple uniform distribution of codes across words + # For better results, use forced alignment (whisper, wav2vec2-ctc, etc.) + codes_per_word = len(codes) // num_words + duration_per_word = total_duration / num_words + + word_data = [] + for i, word in enumerate(words): + start_idx = i * codes_per_word + end_idx = start_idx + codes_per_word if i < num_words - 1 else len(codes) + word_codes = codes[start_idx:end_idx] + + # Normalize word for YarnGPT + normalized_word = re.sub(r'[^a-zA-Z]', '', word.lower()) + if not normalized_word: + normalized_word = word.lower() + + word_data.append({ + "word": normalized_word, + "duration": f"{duration_per_word:.2f}", + "codes": word_codes + }) + + # Create speaker JSON + speaker_json = { + "text": text, + "words": word_data + } + + # Save + os.makedirs(os.path.dirname(output_path) or '.', exist_ok=True) + with open(output_path, 'w', encoding='utf-8') as f: + json.dump(speaker_json, f, ensure_ascii=False, indent=4) + + print(f"Created speaker JSON: {output_path}") + print(f" - Words: {num_words}") + print(f" - Total codes: {len(codes)}") + print(f" - Duration: {total_duration:.2f}s") + + return speaker_json + + +def main(): + parser = argparse.ArgumentParser(description="Create YarnGPT speaker JSON from audio") + parser.add_argument("--audio", required=True, help="Path to audio file (WAV)") + parser.add_argument("--text", required=True, help="Transcript of the audio") + parser.add_argument("--output", required=True, help="Output JSON path") + parser.add_argument("--model", default="~/.yarngpt/models/wavtokenizer_large_speech_320_24k.ckpt", + help="WavTokenizer model path") + parser.add_argument("--config", default="~/.yarngpt/models/wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml", + help="WavTokenizer config path") + parser.add_argument("--language", default="english", choices=["english", "yoruba", "igbo", "hausa"], + help="Language of the audio") + + args = parser.parse_args() + + if not check_dependencies(): + sys.exit(1) + + create_speaker_json( + audio_path=args.audio, + text=args.text, + output_path=args.output, + wav_tokenizer_model_path=os.path.expanduser(args.model), + wav_tokenizer_config_path=os.path.expanduser(args.config), + language=args.language + ) + + +if __name__ == "__main__": + main() diff --git a/scripts/extract_audio.py b/scripts/extract_audio.py new file mode 100644 index 0000000000000000000000000000000000000000..48a9ac45e32e2f37fd8b4bcd064b9efdfe54689a --- /dev/null +++ b/scripts/extract_audio.py @@ -0,0 +1,71 @@ +#!/usr/bin/env python3 +""" +Extract audio from Nigerian Common Voice parquet files. +""" +import os +import sys +from pathlib import Path + +try: + import pandas as pd + from datasets import load_dataset + import soundfile as sf +except ImportError: + print("Installing required packages...") + os.system("pip install pandas datasets soundfile pyarrow") + import pandas as pd + from datasets import load_dataset + import soundfile as sf + +BASE_DIR = Path.home() / "voice-training" +DATASETS_DIR = BASE_DIR / "datasets" / "nigerian_cv" +OUTPUT_DIR = BASE_DIR / "prepared_data" + +LANGUAGES = ["yoruba", "hausa", "igbo", "english"] + +def extract_language(lang: str): + """Extract audio files for a language.""" + lang_dir = DATASETS_DIR / lang + output_dir = OUTPUT_DIR / lang + output_dir.mkdir(parents=True, exist_ok=True) + + print(f"\n=== Extracting {lang.upper()} ===") + + for split in ["train", "validation", "test"]: + parquet_file = lang_dir / f"{split}-00000-of-00001.parquet" + if not parquet_file.exists(): + print(f" {split}: not found") + continue + + print(f" Processing {split}...") + try: + # Load parquet + df = pd.read_parquet(parquet_file) + print(f" Found {len(df)} samples") + + # Check columns + print(f" Columns: {list(df.columns)}") + + # Extract first few samples + for idx in range(min(5, len(df))): + row = df.iloc[idx] + print(f" Sample {idx}: {row.get('sentence', 'N/A')[:50]}...") + + except Exception as e: + print(f" Error: {e}") + +def main(): + print("=== Extracting Nigerian Common Voice Audio ===") + print(f"Input: {DATASETS_DIR}") + print(f"Output: {OUTPUT_DIR}") + + for lang in LANGUAGES: + if (DATASETS_DIR / lang).exists(): + extract_language(lang) + else: + print(f"\n{lang}: directory not found") + + print("\n=== Extraction complete ===") + +if __name__ == "__main__": + main() diff --git a/scripts/extract_audio_full.py b/scripts/extract_audio_full.py new file mode 100644 index 0000000000000000000000000000000000000000..80da147cfaaf348f2fdd86269c2658c47be9d502 --- /dev/null +++ b/scripts/extract_audio_full.py @@ -0,0 +1,108 @@ +#!/usr/bin/env python3 +""" +Extract audio from Nigerian Common Voice parquet files and save as WAV. +""" +import os +from pathlib import Path +import pandas as pd +import json + +BASE_DIR = Path.home() / "voice-training" +DATASETS_DIR = BASE_DIR / "datasets" / "nigerian_cv" +OUTPUT_DIR = BASE_DIR / "prepared_data" + +LANGUAGES = ["yoruba", "hausa", "igbo"] # Skip English for Nigerian TTS + +def extract_language(lang: str, max_samples: int = 500): + """Extract audio files for a language.""" + lang_dir = DATASETS_DIR / lang + output_dir = OUTPUT_DIR / lang / "wavs" + output_dir.mkdir(parents=True, exist_ok=True) + + manifest = [] + total_extracted = 0 + + print(f"\n=== Extracting {lang.upper()} ===") + + for split in ["train", "validation"]: + parquet_file = lang_dir / f"{split}-00000-of-00001.parquet" + if not parquet_file.exists(): + continue + + print(f" Processing {split}...") + df = pd.read_parquet(parquet_file) + + for idx, row in df.iterrows(): + if total_extracted >= max_samples: + break + + audio_data = row.get('audio') + sentence = row.get('sentence', '') + + if audio_data is None or not sentence: + continue + + # Audio data structure: {'array': [...], 'sampling_rate': 16000} + if isinstance(audio_data, dict): + array = audio_data.get('array') + sr = audio_data.get('sampling_rate', 16000) + + if array is not None: + import numpy as np + import soundfile as sf + + audio_array = np.array(array).astype(np.float32) + + # Save audio + filename = f"{lang}_{split}_{idx:05d}.wav" + filepath = output_dir / filename + sf.write(str(filepath), audio_array, sr) + + # Add to manifest + manifest.append({ + "audio_file": str(filepath), + "text": sentence.strip(), + "language": lang, + "speaker": row.get('client_id', 'unknown')[:8] + }) + + total_extracted += 1 + + if total_extracted % 100 == 0: + print(f" Extracted {total_extracted} samples...") + + if total_extracted >= max_samples: + break + + # Save manifest + manifest_file = OUTPUT_DIR / lang / "manifest.json" + with open(manifest_file, 'w', encoding='utf-8') as f: + json.dump(manifest, f, indent=2, ensure_ascii=False) + + print(f" Total extracted: {total_extracted} samples") + print(f" Manifest saved to: {manifest_file}") + + return total_extracted + +def main(): + print("=== Extracting Nigerian Audio for TTS Training ===") + + # Install soundfile if needed + try: + import soundfile + except ImportError: + os.system("pip install soundfile") + import soundfile + + total = 0 + for lang in LANGUAGES: + if (DATASETS_DIR / lang).exists(): + count = extract_language(lang, max_samples=500) # 500 samples per lang for quick training + total += count + + print(f"\n=== Extraction Complete ===") + print(f"Total samples extracted: {total}") + print(f"Output directory: {OUTPUT_DIR}") + +if __name__ == "__main__": + main() diff --git a/scripts/extract_audio_v2.py b/scripts/extract_audio_v2.py new file mode 100644 index 0000000000000000000000000000000000000000..63214ff709844869956e5d45ae83712f9e7dd579 --- /dev/null +++ b/scripts/extract_audio_v2.py @@ -0,0 +1,96 @@ +#!/usr/bin/env python3 +""" +Extract audio from Nigerian Common Voice parquet files - MP3 bytes format. +""" +import os +from pathlib import Path +import pandas as pd +import json + +BASE_DIR = Path.home() / "voice-training" +DATASETS_DIR = BASE_DIR / "datasets" / "nigerian_cv" +OUTPUT_DIR = BASE_DIR / "prepared_data" + +LANGUAGES = ["yoruba", "hausa", "igbo"] + +def extract_language(lang: str, max_samples: int = 500): + """Extract audio files for a language.""" + lang_dir = DATASETS_DIR / lang + output_dir = OUTPUT_DIR / lang / "wavs" + output_dir.mkdir(parents=True, exist_ok=True) + + manifest = [] + total_extracted = 0 + + print(f"\n=== Extracting {lang.upper()} ===") + + for split in ["train", "validation"]: + parquet_file = lang_dir / f"{split}-00000-of-00001.parquet" + if not parquet_file.exists(): + continue + + print(f" Processing {split}...") + df = pd.read_parquet(parquet_file) + + for idx, row in df.iterrows(): + if total_extracted >= max_samples: + break + + audio_data = row.get('audio') + sentence = row.get('sentence', '') + + if audio_data is None or not sentence: + continue + + # Audio data is {'bytes': b'...'} - raw MP3 bytes + if isinstance(audio_data, dict) and 'bytes' in audio_data: + audio_bytes = audio_data['bytes'] + + # Save as MP3 (faster than converting to WAV) + filename = f"{lang}_{split}_{idx:05d}.mp3" + filepath = output_dir / filename + + with open(filepath, 'wb') as f: + f.write(audio_bytes) + + # Add to manifest + manifest.append({ + "audio_file": str(filepath), + "text": sentence.strip(), + "language": lang, + "speaker": str(row.get('client_id', 'unknown'))[:8] + }) + + total_extracted += 1 + + if total_extracted % 100 == 0: + print(f" Extracted {total_extracted} samples...") + + if total_extracted >= max_samples: + break + + # Save manifest + manifest_file = OUTPUT_DIR / lang / "manifest.json" + with open(manifest_file, 'w', encoding='utf-8') as f: + json.dump(manifest, f, indent=2, ensure_ascii=False) + + print(f" Total extracted: {total_extracted} samples") + print(f" Manifest saved to: {manifest_file}") + + return total_extracted + +def main(): + print("=== Extracting Nigerian Audio for TTS Training ===") + + total = 0 + for lang in LANGUAGES: + if (DATASETS_DIR / lang).exists(): + count = extract_language(lang, max_samples=500) + total += count + + print(f"\n=== Extraction Complete ===") + print(f"Total samples extracted: {total}") + print(f"Output directory: {OUTPUT_DIR}") + +if __name__ == "__main__": + main() diff --git a/scripts/finetune_xtts.py b/scripts/finetune_xtts.py new file mode 100644 index 0000000000000000000000000000000000000000..49c8a758a5202ec131f13f15fcd99f31865bb1fb --- /dev/null +++ b/scripts/finetune_xtts.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 +""" +Fine-tune XTTS v2 for Nigerian languages (Yoruba, Hausa, Igbo, Pidgin). +Uses Coqui TTS framework. +""" +import os +import sys +from pathlib import Path + +# Check for GPU +import torch +print(f"PyTorch version: {torch.__version__}") +print(f"CUDA available: {torch.cuda.is_available()}") +if torch.cuda.is_available(): + print(f"GPU: {torch.cuda.get_device_name(0)}") + print(f"GPU Memory: {torch.cuda.get_device_properties(0).total_memory / 1024**3:.1f} GB") + +BASE_DIR = Path.home() / "voice-training" +PREPARED_DIR = BASE_DIR / "prepared_data" +OUTPUT_DIR = BASE_DIR / "output" + +def setup_xtts_training(): + """Setup XTTS v2 fine-tuning.""" + try: + from TTS.tts.configs.xtts_config import XttsConfig + from TTS.tts.models.xtts import Xtts + print("XTTS modules imported successfully") + return True + except ImportError as e: + print(f"Error importing TTS: {e}") + print("Installing coqui-tts...") + os.system("pip install coqui-tts") + return False + +def main(): + print("=== XTTS v2 Fine-tuning for Nigerian Languages ===") + print(f"Base directory: {BASE_DIR}") + + if not setup_xtts_training(): + print("Please install dependencies and try again") + sys.exit(1) + + # Check for prepared data + if not PREPARED_DIR.exists(): + print(f"Prepared data not found at {PREPARED_DIR}") + print("Run prepare_data.py first") + sys.exit(1) + + print("Ready for fine-tuning!") + print("\nNext steps:") + print("1. Ensure audio data is prepared") + print("2. Configure training parameters") + print("3. Start training") + +if __name__ == "__main__": + main() diff --git a/scripts/finetune_yarngpt.py b/scripts/finetune_yarngpt.py new file mode 100644 index 0000000000000000000000000000000000000000..523fd28b6574169f3b8dda236757efa5f868c563 --- /dev/null +++ b/scripts/finetune_yarngpt.py @@ -0,0 +1,358 @@ +#!/usr/bin/env python3 +""" +YarnGPT Fine-tuning Script +Fine-tunes the YarnGPT model on Nigerian language audio data. + +Based on the official YarnGPT training approach: +- Base model: SmolLM2-360M +- Audio tokenization: WavTokenizer +- Training: Standard language modeling with audio codes +""" + +import os +import sys +import json +import argparse +import re +import random +from pathlib import Path +from dataclasses import dataclass +from typing import List, Dict, Optional + +import torch +import torchaudio +from torch.utils.data import Dataset, DataLoader +from transformers import ( + AutoModelForCausalLM, + AutoTokenizer, + Trainer, + TrainingArguments, + DataCollatorForLanguageModeling +) + + +@dataclass +class TrainingConfig: + """Training configuration matching YarnGPT paper.""" + model_id: str = "saheedniyi/YarnGPT2" # Start from YarnGPT2 + output_dir: str = "./yarngpt-finetuned" + num_epochs: int = 5 + batch_size: int = 4 + learning_rate: float = 1e-3 + warmup_ratio: float = 0.8 # 4 epochs warmup, 1 epoch decay + weight_decay: float = 0.01 + max_length: int = 4096 + gradient_accumulation_steps: int = 4 + fp16: bool = True + save_steps: int = 500 + logging_steps: int = 100 + + +class YarnGPTDataset(Dataset): + """Dataset for YarnGPT training with Nigerian language audio.""" + + def __init__( + self, + data_dir: str, + tokenizer, + wav_tokenizer, + max_length: int = 4096, + language: str = "yoruba" + ): + self.data_dir = Path(data_dir) + self.tokenizer = tokenizer + self.wav_tokenizer = wav_tokenizer + self.max_length = max_length + self.language = language + self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + + # Load data samples + self.samples = self._load_samples() + print(f"Loaded {len(self.samples)} samples for {language}") + + # Special tokens + self.special_tokens = { + "audio_code": "<|{}|>", + "text_start": "<|text_start|>", + "text_end": "<|text_end|>", + "audio_start": "<|audio_start|>", + "audio_end": "<|audio_end|>", + "time": "<|t_{:.2f}|>", + "code_start": "<|code_start|>", + "code_end": "<|code_end|>", + "text_sep": "<|text_sep|>", + "hausa": "<|hausa|>", + "igbo": "<|igbo|>", + "yoruba": "<|yoruba|>", + "english": "<|english|>", + } + self.bos = "<|im_start|>" + self.eos = "<|im_end|>" + + def _load_samples(self) -> List[Dict]: + """Load audio-text pairs from data directory.""" + samples = [] + + # Look for wav files with matching txt files + wav_dir = self.data_dir / "wavs" + if not wav_dir.exists(): + wav_dir = self.data_dir + + # Try to load metadata file + metadata_file = self.data_dir / "metadata.csv" + if metadata_file.exists(): + with open(metadata_file, 'r', encoding='utf-8') as f: + for line in f: + parts = line.strip().split('|') + if len(parts) >= 2: + wav_path = wav_dir / f"{parts[0]}.wav" + if wav_path.exists(): + samples.append({ + "audio": str(wav_path), + "text": parts[1] + }) + else: + # Look for individual text files + for wav_file in wav_dir.glob("*.wav"): + txt_file = wav_file.with_suffix('.txt') + if txt_file.exists(): + with open(txt_file, 'r', encoding='utf-8') as f: + text = f.read().strip() + samples.append({ + "audio": str(wav_file), + "text": text + }) + + return samples + + def _encode_audio(self, audio_path: str) -> List[int]: + """Encode audio file to WavTokenizer codes.""" + from outetts.wav_tokenizer.encoder.utils import convert_audio + + audio_data, sample_rate = torchaudio.load(audio_path) + audio_data = audio_data.squeeze().to(dtype=torch.float32) + + if sample_rate != 24000: + audio_data = audio_data.unsqueeze(0) + audio_data = convert_audio(audio_data, sample_rate, 24000, 1) + audio_data = audio_data.squeeze() + + audio = audio_data.unsqueeze(0).to(self.device) + if audio.ndim == 3: + audio = audio.squeeze(1) + + bandwidth_id = torch.tensor([0]).to(self.device) + _, codes = self.wav_tokenizer.encode_infer(audio, bandwidth_id=bandwidth_id) + return codes.squeeze().tolist() + + def _process_text(self, text: str) -> List[str]: + """Process text for YarnGPT (romanization + normalization).""" + try: + import uroman as ur + uroman = ur.Uroman() + text = uroman.romanize_string(text) + except ImportError: + pass # Skip romanization if uroman not available + + import inflect + lec = inflect.engine() + + text = re.sub(r'\d+(\.\d+)?', lambda x: lec.number_to_words(x.group()), text.lower()) + text = re.sub(r'[-_/,\.\\]', ' ', text) + text = re.sub(r'[^a-z\s]', '', text) + text = re.sub(r'\s+', ' ', text).strip() + return text.split() + + def _create_training_prompt(self, text: str, audio_codes: List[int]) -> str: + """Create training prompt in YarnGPT format.""" + words = self._process_text(text) + words_str = self.special_tokens['text_sep'].join(words) + + # Create prompt + prompt = f"{self.bos}\n{self.special_tokens['text_start']}{words_str}{self.special_tokens['text_end']}\n" + prompt += f"{self.special_tokens[self.language]}\n" + prompt += f"{self.special_tokens['audio_start']}\n" + + # Add audio codes + codes_str = "".join([self.special_tokens['audio_code'].format(c) for c in audio_codes]) + prompt += f"{self.special_tokens['code_start']}{codes_str}{self.special_tokens['code_end']}\n" + prompt += f"{self.special_tokens['audio_end']}\n{self.eos}" + + return prompt + + def __len__(self): + return len(self.samples) + + def __getitem__(self, idx): + sample = self.samples[idx] + + try: + # Encode audio + audio_codes = self._encode_audio(sample["audio"]) + + # Create training prompt + prompt = self._create_training_prompt(sample["text"], audio_codes) + + # Tokenize + tokens = self.tokenizer.encode( + prompt, + add_special_tokens=False, + max_length=self.max_length, + truncation=True + ) + + return { + "input_ids": torch.tensor(tokens), + "attention_mask": torch.ones(len(tokens)), + "labels": torch.tensor(tokens) # For language modeling + } + except Exception as e: + print(f"Error processing sample {idx}: {e}") + # Return empty sample + return { + "input_ids": torch.tensor([0]), + "attention_mask": torch.tensor([1]), + "labels": torch.tensor([0]) + } + + +def train_yarngpt(config: TrainingConfig, data_dirs: List[str], languages: List[str]): + """Fine-tune YarnGPT on Nigerian language data.""" + + print("=" * 60) + print("YarnGPT Fine-tuning") + print("=" * 60) + + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + print(f"Device: {device}") + + if not torch.cuda.is_available(): + print("\nWARNING: No GPU available. Training will be very slow.") + print("Consider using Google Colab with GPU runtime.") + response = input("Continue anyway? (y/n): ") + if response.lower() != 'y': + return + + # Load tokenizer + print(f"\nLoading tokenizer from {config.model_id}...") + tokenizer = AutoTokenizer.from_pretrained(config.model_id) + + # Load WavTokenizer + print("Loading WavTokenizer...") + from outetts.wav_tokenizer.decoder import WavTokenizer + + MODEL_DIR = os.path.expanduser("~/.yarngpt/models") + config_path = os.path.join(MODEL_DIR, "wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml") + model_path = os.path.join(MODEL_DIR, "wavtokenizer_large_speech_320_24k.ckpt") + + if not os.path.exists(model_path): + print(f"WavTokenizer model not found at {model_path}") + print("Run the morpheous app once to download it, or manually download from HuggingFace.") + return + + wav_tokenizer = WavTokenizer.from_pretrained0802(config_path, model_path) + wav_tokenizer = wav_tokenizer.to(device) + + # Create datasets + print("\nLoading datasets...") + all_datasets = [] + for data_dir, language in zip(data_dirs, languages): + dataset = YarnGPTDataset( + data_dir=data_dir, + tokenizer=tokenizer, + wav_tokenizer=wav_tokenizer, + max_length=config.max_length, + language=language + ) + all_datasets.append(dataset) + + # Combine datasets + from torch.utils.data import ConcatDataset + combined_dataset = ConcatDataset(all_datasets) + print(f"Total training samples: {len(combined_dataset)}") + + # Load model + print(f"\nLoading model from {config.model_id}...") + model = AutoModelForCausalLM.from_pretrained( + config.model_id, + torch_dtype=torch.bfloat16 if config.fp16 else torch.float32 + ) + model = model.to(device) + + # Training arguments + training_args = TrainingArguments( + output_dir=config.output_dir, + num_train_epochs=config.num_epochs, + per_device_train_batch_size=config.batch_size, + gradient_accumulation_steps=config.gradient_accumulation_steps, + learning_rate=config.learning_rate, + weight_decay=config.weight_decay, + warmup_ratio=config.warmup_ratio, + fp16=config.fp16 and torch.cuda.is_available(), + logging_steps=config.logging_steps, + save_steps=config.save_steps, + save_total_limit=3, + dataloader_num_workers=2, + report_to="none", + ) + + # Data collator + data_collator = DataCollatorForLanguageModeling( + tokenizer=tokenizer, + mlm=False + ) + + # Trainer + trainer = Trainer( + model=model, + args=training_args, + train_dataset=combined_dataset, + data_collator=data_collator, + ) + + # Train + print("\nStarting training...") + trainer.train() + + # Save final model + print(f"\nSaving model to {config.output_dir}") + trainer.save_model() + tokenizer.save_pretrained(config.output_dir) + + print("\nTraining complete!") + print(f"Model saved to: {config.output_dir}") + + +def main(): + parser = argparse.ArgumentParser(description="Fine-tune YarnGPT on Nigerian language data") + parser.add_argument("--data-dirs", nargs="+", required=True, + help="Directories containing audio/text pairs") + parser.add_argument("--languages", nargs="+", required=True, + help="Languages for each data directory (yoruba, hausa, igbo, english)") + parser.add_argument("--output-dir", default="./yarngpt-finetuned", + help="Output directory for fine-tuned model") + parser.add_argument("--epochs", type=int, default=5, + help="Number of training epochs") + parser.add_argument("--batch-size", type=int, default=4, + help="Training batch size") + parser.add_argument("--learning-rate", type=float, default=1e-3, + help="Learning rate") + + args = parser.parse_args() + + if len(args.data_dirs) != len(args.languages): + print("Error: Number of data directories must match number of languages") + sys.exit(1) + + config = TrainingConfig( + output_dir=args.output_dir, + num_epochs=args.epochs, + batch_size=args.batch_size, + learning_rate=args.learning_rate + ) + + train_yarngpt(config, args.data_dirs, args.languages) + + +if __name__ == "__main__": + main() diff --git a/scripts/prepare_data.py b/scripts/prepare_data.py new file mode 100644 index 0000000000000000000000000000000000000000..f3bf799a107f0d496dae4e5dc0e42990d6e381e9 --- /dev/null +++ b/scripts/prepare_data.py @@ -0,0 +1,80 @@ +#!/usr/bin/env python3 +""" +Prepare Nigerian language audio data for XTTS fine-tuning. +Supports: Yoruba (yo), Hausa (ha), Igbo (ig), Pidgin (pcm) +""" +import os +import json +import zipfile +from pathlib import Path + +BASE_DIR = Path.home() / "voice-training" +DATASETS_DIR = BASE_DIR / "datasets" +OUTPUT_DIR = BASE_DIR / "prepared_data" + +def extract_openslr86(): + """Extract OpenSLR86 Yoruba dataset.""" + print("=== Extracting OpenSLR86 Yoruba ===") + female_zip = DATASETS_DIR / "yo_ng_female.zip" + male_zip = DATASETS_DIR / "yo_ng_male.zip" + + yoruba_dir = OUTPUT_DIR / "yoruba" + yoruba_dir.mkdir(parents=True, exist_ok=True) + + for zip_path in [female_zip, male_zip]: + if zip_path.exists(): + print(f"Extracting {zip_path.name}...") + with zipfile.ZipFile(zip_path, 'r') as zf: + zf.extractall(yoruba_dir) + print(f"Extracted {zip_path.name}") + else: + print(f"Waiting for {zip_path.name} to download...") + + return yoruba_dir + +def prepare_manifest(audio_dir: Path, output_file: Path, lang: str): + """Create a training manifest file.""" + manifest = [] + + # Look for audio files + for ext in ['*.wav', '*.mp3', '*.flac']: + for audio_file in audio_dir.rglob(ext): + # Look for corresponding text file + text_file = audio_file.with_suffix('.txt') + if text_file.exists(): + text = text_file.read_text().strip() + else: + text = "" + + manifest.append({ + "audio_file": str(audio_file), + "text": text, + "language": lang, + "duration": 0 # Will calculate later + }) + + print(f"Found {len(manifest)} audio files for {lang}") + + # Save manifest + output_file.parent.mkdir(parents=True, exist_ok=True) + with open(output_file, 'w') as f: + json.dump(manifest, f, indent=2, ensure_ascii=False) + + return len(manifest) + +def main(): + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + print("Preparing Nigerian language datasets for TTS training...") + print(f"Output directory: {OUTPUT_DIR}") + + # Extract OpenSLR86 if downloaded + if (DATASETS_DIR / "yo_ng_female.zip").exists(): + yoruba_dir = extract_openslr86() + prepare_manifest(yoruba_dir, OUTPUT_DIR / "manifests" / "yoruba.json", "yo") + + print("\n=== Dataset preparation complete ===") + print(f"Check {OUTPUT_DIR} for prepared data") + +if __name__ == "__main__": + main() diff --git a/scripts/train_xtts_nigerian.py b/scripts/train_xtts_nigerian.py new file mode 100644 index 0000000000000000000000000000000000000000..8f6ef90247c796bcbc9631f9618a4c3657aa914a --- /dev/null +++ b/scripts/train_xtts_nigerian.py @@ -0,0 +1,154 @@ +#!/usr/bin/env python3 +""" +Fine-tune XTTS v2 for Nigerian Languages (Yoruba, Hausa, Igbo, Pidgin). + +This script uses Coqui TTS to fine-tune the XTTS model for better +Nigerian language support. +""" +import os +import sys +import json +from pathlib import Path +import torch + +# Check GPU +print("=" * 60) +print("XTTS Nigerian Languages Fine-tuning") +print("=" * 60) +print(f"\nPyTorch: {torch.__version__}") +print(f"CUDA available: {torch.cuda.is_available()}") +if torch.cuda.is_available(): + print(f"GPU: {torch.cuda.get_device_name(0)}") + mem = torch.cuda.get_device_properties(0).total_memory / 1024**3 + print(f"GPU Memory: {mem:.1f} GB") +else: + print("WARNING: No GPU found. Training will be very slow on CPU.") + +BASE_DIR = Path.home() / "voice-training" +PREPARED_DIR = BASE_DIR / "prepared_data" +OPENSLR_DIR = BASE_DIR / "datasets" / "openslr_yoruba" +OUTPUT_DIR = BASE_DIR / "output" + +def check_data(): + """Check available training data.""" + print("\n=== Available Training Data ===") + + total_files = 0 + + # Check Nigerian CV data + for lang in ["yoruba", "hausa", "igbo"]: + manifest_file = PREPARED_DIR / lang / "manifest.json" + if manifest_file.exists(): + with open(manifest_file) as f: + data = json.load(f) + print(f" {lang.upper()}: {len(data)} samples") + total_files += len(data) + + # Check OpenSLR Yoruba + if OPENSLR_DIR.exists(): + wav_count = len(list(OPENSLR_DIR.glob("*.wav"))) + print(f" OpenSLR Yoruba: {wav_count} high-quality WAV files") + total_files += wav_count + + print(f"\nTotal audio files: {total_files}") + return total_files > 0 + +def prepare_xtts_dataset(): + """Prepare dataset in XTTS format.""" + print("\n=== Preparing XTTS Dataset ===") + + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + all_samples = [] + + # Load Nigerian CV manifests + for lang in ["yoruba", "hausa", "igbo"]: + manifest_file = PREPARED_DIR / lang / "manifest.json" + if manifest_file.exists(): + with open(manifest_file) as f: + samples = json.load(f) + for s in samples: + s['lang_code'] = lang[:2] # yo, ha, ig + all_samples.extend(samples) + + # Load OpenSLR Yoruba + if OPENSLR_DIR.exists(): + tsv_file = OPENSLR_DIR / "line_index.tsv" + if tsv_file.exists(): + with open(tsv_file, 'r', encoding='utf-8') as f: + for line in f: + parts = line.strip().split('\t') + if len(parts) >= 2: + wav_file = OPENSLR_DIR / f"{parts[0]}.wav" + if wav_file.exists(): + all_samples.append({ + "audio_file": str(wav_file), + "text": parts[1], + "language": "yoruba", + "lang_code": "yo" + }) + + # Save combined dataset + dataset_file = OUTPUT_DIR / "nigerian_tts_dataset.json" + with open(dataset_file, 'w', encoding='utf-8') as f: + json.dump(all_samples, f, indent=2, ensure_ascii=False) + + print(f" Created dataset with {len(all_samples)} samples") + print(f" Saved to: {dataset_file}") + + return all_samples + +def run_xtts_finetuning(): + """Run XTTS fine-tuning using Coqui TTS.""" + print("\n=== Starting XTTS Fine-tuning ===") + + try: + from TTS.tts.configs.xtts_config import XttsConfig + from TTS.tts.models.xtts import Xtts + from TTS.utils.manage import ModelManager + + print(" TTS modules loaded successfully") + + # Download base XTTS model + print(" Downloading base XTTS v2 model...") + model_manager = ModelManager() + + # The model will be downloaded to ~/.local/share/tts/ + model_path = model_manager.download_model("tts_models/multilingual/multi-dataset/xtts_v2") + print(f" Model path: {model_path}") + + print("\n To fine-tune XTTS, use the Coqui TTS training recipes:") + print(" https://github.com/coqui-ai/TTS/tree/dev/recipes/ljspeech/xtts_v2") + print("\n Or use the XTTS fine-tuning demo:") + print(" python -m TTS.demos.xtts_ft_demo") + + return True + + except Exception as e: + print(f" Error: {e}") + return False + +def main(): + if not check_data(): + print("ERROR: No training data found!") + sys.exit(1) + + samples = prepare_xtts_dataset() + + if samples: + print("\n" + "=" * 60) + print("Dataset prepared! Next steps:") + print("=" * 60) + print(f"1. Dataset: {OUTPUT_DIR / 'nigerian_tts_dataset.json'}") + print(f"2. Total samples: {len(samples)}") + print("\nTo start training:") + print(" python -m TTS.demos.xtts_ft_demo") + print("\nOr for voice cloning (no training needed):") + print(" from TTS.api import TTS") + print(" tts = TTS('tts_models/multilingual/multi-dataset/xtts_v2')") + print(" tts.tts_to_file('Hello', speaker_wav='your_voice.wav', language='en')") + + run_xtts_finetuning() + +if __name__ == "__main__": + main()