summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-09-07 15:28:16 +0200
committerJules Laplace <julescarbon@gmail.com>2018-09-07 15:28:16 +0200
commit31533c330e416c9d3d092291c11c10fa5f75d0fc (patch)
tree1e0ed7a08146b53e8d3acc800b4887e78e335bde /app
parent1aa6ca7489cda50926532fcd82373e9b8b210e51 (diff)
deploy bundle
Diffstat (limited to 'app')
-rw-r--r--app/client/common/currentTask.component.js2
-rw-r--r--app/relay/modules/pix2pixhd.js3
2 files changed, 2 insertions, 3 deletions
diff --git a/app/client/common/currentTask.component.js b/app/client/common/currentTask.component.js
index 9bb9c0d..a4d9750 100644
--- a/app/client/common/currentTask.component.js
+++ b/app/client/common/currentTask.component.js
@@ -25,7 +25,7 @@ function CurrentTask ({ cpu, gpu, processor }) {
<div>
#{pid}: <b>{module} {activity}</b> <i>{dataset}</i>
{epochs
- ? <span>{epochs} epoch{util.courtesy_s(epochs)}</span>
+ ? <span>{epoch} epoch{util.courtesy_s(epoch)}</span>
: ""}
{epoch
? <span>(currently #{epoch})</span>
diff --git a/app/relay/modules/pix2pixhd.js b/app/relay/modules/pix2pixhd.js
index 54f916d..7a8c7f4 100644
--- a/app/relay/modules/pix2pixhd.js
+++ b/app/relay/modules/pix2pixhd.js
@@ -141,8 +141,7 @@ const clear_recursive = {
params: (task) => {
const dataset = task.dataset.toLowerCase()
return [
- '--name', dataset,
- '--epoch', epoch,
+ '--dataset', dataset,
]
},
}