1
0
mirror of https://github.com/vladmandic/sdnext.git synced 2026-01-27 15:02:48 +03:00
Files
sdnext/javascript/textualInversion.js
2023-06-14 13:54:23 -04:00

10 lines
383 B
JavaScript

function start_training_textual_inversion() {
gradioApp().querySelector('#ti_error').innerHTML=''
var id = randomId()
const onProgress = (progress) => gradioApp().getElementById('ti_progress').innerHTML = progress.textinfo;
requestProgress(id, gradioApp().getElementById('ti_gallery'), null, onProgress, false)
var res = Array.from(arguments);
res[0] = id
return res
}