--- dataset_info: features: - name: model dtype: string - name: wer dtype: float64 - name: cer dtype: float64 - name: timestamp dtype: timestamp[ns] splits: - name: train num_bytes: 78 num_examples: 1 download_size: 2108 dataset_size: 78 configs: - config_name: default data_files: - split: train path: data/train-* --- ## **Overview** This dataset contains evaluation metrics for various Automatic Speech Recognition (ASR) models on Moroccan Darija. This dataset contains Word Error Rate (WER) and Character Error Rate (CER) metrics for different ASR models evaluated on a [common evaluation set](https://huggingface.co/datasets/atlasia/Moroccan-Darija-Youtube-Commons-Eval). These metrics are standard measurements used to assess the accuracy of speech recognition systems. - **WER (Word Error Rate)**: Measures the percentage of words that were incorrectly predicted. Lower values indicate better performance. - **CER (Character Error Rate)**: Measures the percentage of characters that were incorrectly predicted. Lower values indicate better performance. ## Evaluation Details ### Test Set - The models were evaluated on the validation split of the [Moroccan-Darija-Youtube-Commons-Eval dataset](https://huggingface.co/datasets/atlasia/Moroccan-Darija-Youtube-Commons-Eval) - Total number of test samples: 105 - Audio format: 16kHz mono PCM - Language: Moroccan Darija ### Computation Method - Metrics are computed using the `jiwer` library - All audio samples are normalized and resampled to 16kHz before transcription - Ground truth transcriptions are compared with model predictions using space-separated word comparison ## **Currently evaluated model** - "BounharAbdelaziz/Morocco-Darija-STT-tiny" - "BounharAbdelaziz/Morocco-Darija-STT-small" - "BounharAbdelaziz/Morocco-Darija-STT-large-v1.2" - "openai/whisper-large-v3-turbo" - "openai/whisper-large-v3" - "boumehdi/wav2vec2-large-xlsr-moroccan-darija" - "abdelkader12/whisper-small-ar" - "ychafiqui/whisper-medium-darija" - "ychafiqui/whisper-small-darija" - ...*please add yours after eval*... ### Data Format Each row in the dataset contains: ```python { 'model': str, # Model identifier/name 'wer': float, # Word Error Rate (0.0 to 1.0) 'cer': float # Character Error Rate (0.0 to 1.0) } ```