Skip to content
Snippets Groups Projects
Select Git revision
  • 046268fdfb3a8fb7b390f3756e3241cab5a77b94
  • main default protected
  • epiv
  • docs
  • cicd
  • split
  • v0.23.0 protected
  • v0.22.0 protected
  • v0.21.1 protected
  • v0.21.0 protected
  • v0.20.2 protected
  • v0.20.1 protected
  • v0.20.0 protected
  • v0.19.0 protected
  • v0.18.0 protected
  • v0.17.2 protected
  • v0.17.1 protected
  • v0.17.0 protected
  • v0.16.0 protected
19 results

speechcorpus.jl

Blame
  • speechcorpus.jl 496 B
    # SPDX-License-Identifier: CECILL-2.1
    
    
    """
        abstract type SpeechCorpus end
    
    Abstract type for all speech corpora.
    """
    abstract type SpeechCorpus end
    
    
    """
        lang(corpus)
    
    Return the ISO 639-3 code of the language of the corpus.
    """
    lang
    
    
    """
        name(corpus)
    
    Return the name identifier of the corpus.
    """
    name
    
    
    """
        download(corpus, rootdir)
    
    Download the data of the corpus to `dir`.
    """
    Base.download
    
    """
        prepare(corpus, rootdir)
    
    Prepare the manifests of corpus.
    """
    prepare