summaryrefslogtreecommitdiff
path: root/app/relay/modules
diff options
context:
space:
mode:
Diffstat (limited to 'app/relay/modules')
-rw-r--r--app/relay/modules/samplernn.js10
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,
+ },
}