diff options
| -rw-r--r-- | app/client/modules/pix2pixhd/pix2pixhd.actions.js | 2 | ||||
| -rw-r--r-- | app/relay/modules/pix2pixhd.js | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/client/modules/pix2pixhd/pix2pixhd.actions.js b/app/client/modules/pix2pixhd/pix2pixhd.actions.js index 5a00741..5ee6759 100644 --- a/app/client/modules/pix2pixhd/pix2pixhd.actions.js +++ b/app/client/modules/pix2pixhd/pix2pixhd.actions.js @@ -156,7 +156,7 @@ export const load_results = (id) => (dispatch) => { const module = pix2pixhdModule.name util.allProgress([ actions.folder.index({ name: 'results' }), - actions.file.index({ module, generated: 1 }), + actions.file.index({ module, generated: 1, limit: 250 }), actions.socket.list_directory({ module, dir: 'renders' }), actions.socket.list_sequences({ module, dir: 'results' }), ], (percent, i, n) => { diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js index 80bf38c..9569454 100644 --- a/app/relay/modules/pix2pixhd.js +++ b/app/relay/modules/pix2pixhd.js @@ -267,6 +267,7 @@ const uprez = { } return [ '--folder', folder, + '--dataset', task.dataset, '--out_fn', task.dataset + "_" + Date.now(), ] } |
