diff options
Diffstat (limited to 'app/relay/modules/test.js')
| -rw-r--r-- | app/relay/modules/test.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app/relay/modules/test.js b/app/relay/modules/test.js new file mode 100644 index 0000000..bfac514 --- /dev/null +++ b/app/relay/modules/test.js @@ -0,0 +1,36 @@ +import path from 'path' + +const name = 'test' +const cwd = process.env.TEST_CWD || './test/module/' + +const dataset = { + type: 'perl', + script: 'test.pl', + params: (task) => { + } +} +const train = { + type: 'perl', + script: 'test.pl', + params: (task) => { + } +} +const generate = { + type: 'perl', + script: 'test.pl', +} +const render = { + type: 'perl', + script: 'test.pl', +} +const live = { + type: 'pytorch', + script: 'test.py', +} + +export default { + name, cwd, + activities: { + dataset, train, generate, render, live, + } +} |
