Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • fast/speechdatasets.jl
  • PTAL/Datasets/SpeechDatasets.jl
2 results
Show changes
Commits on Source (1)
......@@ -4,7 +4,7 @@ A Julia package to download and prepare speech corpus.
## Installation
Make sure to add the [FAST registry](https://gitlab.lisn.upsaclay.fr/fast/registry)
Make sure to add the [PTAL registry](https://gitlab.lisn.upsaclay.fr/ptal/registry)
to your julia installation. Then, install the package as usual:
```
pkg> add SpeechDatasets
......@@ -46,5 +46,5 @@ julia> TIMITDICT("/path/to/timit/dir")
## License
This software is provided under the CeCILL 2.1 license (see the [`/LICENSE`](/LICENSE))
This software is provided under the [CeCILL-C license](https://cecill.info/licences.en.html) (see [`/license`](/license))
This diff is collapsed.
This diff is collapsed.
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
module SpeechDatasets
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
function avid_recordings(dir::AbstractString)
checkdir(dir)
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
function ina_diachrony_recordings(dir::AbstractString)
checkdir(dir)
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: .1
#######################################################################
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
struct MultilingualLibriSpeech <: SpeechCorpus
lang
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
function speech2tex_recordings(dir::AbstractString)
checkdir(dir)
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
#######################################################################
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
struct SpeechDataset <: MLUtils.AbstractDataContainer
idxs::Vector{AbstractString}
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
const CMUDICT_URL = "http://svn.code.sf.net/p/cmusphinx/code/trunk/cmudict/sphinxdict/cmudict_SPHINX_40"
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
#=====================================================================#
# JSON serialization of a manifest item
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
"""
abstract type ManifestItem end
......
# SPDX-License-Identifier: CECILL-2.1
# SPDX-License-Identifier: CECILL-C
"""
......