diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-01 04:41:48 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-01 04:41:48 +0200 |
| commit | 3824c7b35dfa6ef74d396c54306afbbb6d557fe0 (patch) | |
| tree | ef89bcc29a68d0b8ddac974d54b4202a181dd117 /app/relay/modules/samplernn.js | |
| parent | 527c51c22a50720e5c28fe2d6b5bd3151bc688c9 (diff) | |
relay can run scripts too
Diffstat (limited to 'app/relay/modules/samplernn.js')
| -rw-r--r-- | app/relay/modules/samplernn.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/app/relay/modules/samplernn.js b/app/relay/modules/samplernn.js index 01a3b82..08550ed 100644 --- a/app/relay/modules/samplernn.js +++ b/app/relay/modules/samplernn.js @@ -25,6 +25,12 @@ const train = { // --keep_old_checkpoints False \ // --epoch_limit $epoch_limit \ } +const report = { + type: 'perl', + script: 'latest.pl', + params: ['-v'], + isScript: true, +} const generate = { type: 'pytorch', script: 'generate.py', @@ -50,6 +56,6 @@ const publish = { export default { name, cwd, activities: { - fetch, train, generate, - } + fetch, train, generate, report, + }, } |
