https://github.com/idiap/iss
Scripts for speech processing
https://github.com/idiap/iss
Last synced: 4 months ago
JSON representation
Scripts for speech processing
- Host: GitHub
- URL: https://github.com/idiap/iss
- Owner: idiap
- License: bsd-3-clause
- Created: 2013-07-11T14:02:35.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2018-11-22T20:02:14.000Z (over 7 years ago)
- Last Synced: 2025-04-07T21:41:26.489Z (about 1 year ago)
- Language: Shell
- Size: 252 KB
- Stars: 11
- Watchers: 8
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Model training and evaluation scripts
## Overview
This is a collection of scripts for training and running speech
recognition and (one day) synthesis. It is largely based on HTS
rather than HTK.
The scripts themselves are written mainly in `zsh`, which is like `sh`
or `bash`, but it handles arrays like `csh`. Basically, if you know
`bash` then just pretend it's `bash`. The place where this will come
undone is arrays: In `bash` the first element is `${array[0]}`, in
`zsh` it is `$array[1]`. `bash`'s `${array[*]}` is just `$array` in
`zsh`. `zsh` is nicer :-)
These scripts will run under SGE simply by setting
```
export USE_GE=1
```
In this case, the sequence of working scripts called at top level form
a graph of SGE jobs. Each working script is held until the previous
one completes.
## Documentation
For more documentation, please see the [iss
wiki](https://github.com/idiap/iss/wiki) on GitHub.
There is no mailing list (yet), but feel free to use the
[juicer](https://github.com/idiap/juicer) list: To subscribe, send a
message to mailto:juicer-list-request@idiap.ch with `subscribe` in the
body.
[Phil Garner](http://www.idiap.ch/~pgarner),
Idiap,
October 2010