Skip to content

Commit b9d5075

Browse files
authored
Fix open in colab (#263)
1 parent 1915603 commit b9d5075

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

functions/colab.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ exports.handler = async function (event, _) {
9494
`!wget ${zipRes}\n`,
9595
`!unzip ${template}.zip\n`,
9696
'!pip install -r requirements.txt\n',
97-
'!python main.py\n'
97+
'!python main.py config.yaml\n'
9898
]
9999
}
100100
]

src/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const store = reactive({
4343
template: '',
4444
include_test: false,
4545
output_dir: './logs',
46-
log_every_iters: 2
46+
log_every_iters: 10
4747
}
4848
})
4949

0 commit comments

Comments
 (0)