summaryrefslogtreecommitdiff
path: root/app/relay/modules/pix2pixhd.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/relay/modules/pix2pixhd.js')
-rw-r--r--app/relay/modules/pix2pixhd.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js
index 0391480..3bdf705 100644
--- a/app/relay/modules/pix2pixhd.js
+++ b/app/relay/modules/pix2pixhd.js
@@ -207,11 +207,14 @@ const render_recursive = {
script: 'dir-to-movie.pl',
params: (task) => {
if (!!task.opt.mov) {
+ console.log('will not render mov')
return 'CANCEL'
}
+ const tag = task.checkpoint + '/' + task.dataset + '_' + pad(task.augment_take, 5) + '_' + pad(task.augment_make, 5)
+ console.log('rendering recursve path:', tag)
return [
'--path', 'recursive',
- '--tag', task.checkpoint + '/' + task.dataset + '_' + pad(task.augment_take, 5) + '_' + pad(task.augment_make, 5),
+ '--tag', tag,
'--module', task.module,
'--endpoint', process.env.API_REMOTE + '/api/folder/' + task.opt.folder_id + '/upload/',
]