o
    7vi9                     @   s   d dl Z d dlmZ d dlmZmZmZ d dlmZ d dl	m
Z
 d dlmZ d dlmZmZ dZd	Zd
ZdZdZdddZdd Zdededeeeeeef fddZG dd de
ZdS )    N)Path)OptionalTupleUnion)Tensor)Dataset)download_url_to_file)_extract_tar_load_waveformSpeechCommandsspeech_commands_v0.02_nohash__background_noise_i>  @743935421bb51cccdb6bdd152e04c5c70274e935c82119ad7faeec31780d811d@af14739ee7dc311471de98f5f9d2c9191b18aedfe957f4a6ff791c709868ff58)z@http://download.tensorflow.org/data/speech_commands_v0.01.tar.gzz@http://download.tensorflow.org/data/speech_commands_v0.02.tar.gzc              	      s^   g }|D ](}t j |}t|}| fdd|D 7 }W d    n1 s'w   Y  q|S )Nc              	      s&   g | ]}t jt j | qS  )ospathnormpathjoinstrip).0linerootr   _/home/ubuntu/sommelier/.venv/lib/python3.10/site-packages/torchaudio/datasets/speechcommands.py
<listcomp>   s   & z_load_list.<locals>.<listcomp>)r   r   r   open)r   	filenamesoutputfilenamefilepathfileobjr   r   r   
_load_list   s   
r#   r!   r   returnc           
      C   sr   t j| |}t j|\}}t j|\}}t j|\}}t j|\}}|t\}}	t|	}	|t|||	fS N)r   r   relpathsplitsplitextHASH_DIVIDERintSAMPLE_RATE)
r!   r   r&   reldirr    _labelspeaker
speaker_idutterance_numberr   r   r   _get_speechcommands_metadata   s   r2   c                   @   s   e Zd ZdZeeddfdeeef dedede	de
e d	dfd
dZded	eeeeeef fddZded	eeeeeef fddZd	efddZdS )SPEECHCOMMANDSa,  *Speech Commands* :cite:`speechcommandsv2` dataset.

    Args:
        root (str or Path): Path to the directory where the dataset is found or downloaded.
        url (str, optional): The URL to download the dataset from,
            or the type of the dataset to dowload.
            Allowed type values are ``"speech_commands_v0.01"`` and ``"speech_commands_v0.02"``
            (default: ``"speech_commands_v0.02"``)
        folder_in_archive (str, optional):
            The top-level directory of the dataset. (default: ``"SpeechCommands"``)
        download (bool, optional):
            Whether to download the dataset if it is not found at root path. (default: ``False``).
        subset (str or None, optional):
            Select a subset of the dataset [None, "training", "validation", "testing"]. None means
            the whole dataset. "validation" and "testing" are defined in "validation_list.txt" and
            "testing_list.txt", respectively, and "training" is the rest. Details for the files
            "validation_list.txt" and "testing_list.txt" are explained in the README of the dataset
            and in the introduction of Section 7 of the original paper and its reference 12. The
            original paper can be found `here <https://arxiv.org/pdf/1804.03209.pdf>`_. (Default: ``None``)
    FNr   urlfolder_in_archivedownloadsubsetr$   c                    s  |d ur|dvrt d|dv rd}d}tj||| }t|}tj||| _tj|}tj||}	|ddd }tj||}tj||| _|rqtj	| jsptj
|	sjt|d }
t||	|
d	 t|	| j ntj| jstd
| j d|dkrt| jd| _d S |dkrt| jd| _d S |dkrtt| jdd tdd t| jdD } fdd|D | _d S tdd t| jdD }dd |D | _d S )N)training
validationtestingzSWhen `subset` is not None, it must be one of ['training', 'validation', 'testing'].)zspeech_commands_v0.01r   z$http://download.tensorflow.org/data/z.tar.gz.   r   )hash_prefixz	The path zT doesn't exist. Please check the ``root`` path or set `download=True` to download itr9   zvalidation_list.txtr:   ztesting_list.txtr8   c                 s       | ]}t |V  qd S r%   strr   pr   r   r   	<genexpr>|       z*SPEECHCOMMANDS.__init__.<locals>.<genexpr>z*/*.wavc                    s0   g | ]}t |v rt|vrtj| vr|qS r   )r)   EXCEPT_FOLDERr   r   r   r   wexcludesr   r   r   }   s
     z+SPEECHCOMMANDS.__init__.<locals>.<listcomp>c                 s   r>   r%   r?   rA   r   r   r   rC      rD   c                 S   s    g | ]}t |v rt|vr|qS r   )r)   rE   rF   r   r   r   r      s     )
ValueErrorr   r   r   fspath_archivebasenamersplit_pathisdirisfile
_CHECKSUMSgetr   r	   existsRuntimeErrorr#   _walkersetsortedr   glob)selfr   r4   r5   r6   r7   base_urlext_archiverM   archivechecksumwalkerr   rH   r   __init__H   sH   	

zSPEECHCOMMANDS.__init__nc                 C   s   | j | }t|| jS )a  Get metadata for the n-th sample from the dataset. Returns filepath instead of waveform,
        but otherwise returns the same fields as :py:func:`__getitem__`.

        Args:
            n (int): The index of the sample to be loaded

        Returns:
            Tuple of the following items;

            str:
                Path to the audio
            int:
                Sample rate
            str:
                Label
            str:
                Speaker ID
            int:
                Utterance number
        )rV   r2   rL   )rZ   ra   fileidr   r   r   get_metadata   s   
zSPEECHCOMMANDS.get_metadatac                 C   s2   |  |}t| j|d |d }|f|dd  S )a  Load the n-th sample from the dataset.

        Args:
            n (int): The index of the sample to be loaded

        Returns:
            Tuple of the following items;

            Tensor:
                Waveform
            int:
                Sample rate
            str:
                Label
            str:
                Speaker ID
            int:
                Utterance number
        r      N)rc   r
   rL   )rZ   ra   metadatawaveformr   r   r   __getitem__   s   
zSPEECHCOMMANDS.__getitem__c                 C   s
   t | jS r%   )lenrV   )rZ   r   r   r   __len__   s   
zSPEECHCOMMANDS.__len__)__name__
__module____qualname____doc__URLFOLDER_IN_ARCHIVEr   r@   r   boolr   r`   r*   r   rc   r   rg   ri   r   r   r   r   r3   2   s,    

 > r3   )r   pathlibr   typingr   r   r   torchr   torch.utils.datar   torchaudio._internalr   torchaudio.datasets.utilsr	   r
   ro   rn   r)   rE   r+   rR   r#   r@   r*   r2   r3   r   r   r   r   <module>   s$    $	