aboutsummaryrefslogtreecommitdiff
path: root/javascript/textualInversion.js
blob: 37e3d0756c4458d6209729bab6854f4d26d21db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17



function start_training_textual_inversion() {
    gradioApp().querySelector('#ti_error').innerHTML = '';

    var id = randomId();
    requestProgress(id, gradioApp().getElementById('ti_output'), gradioApp().getElementById('ti_gallery'), function() {}, function(progress) {
        gradioApp().getElementById('ti_progress').innerHTML = progress.textinfo;
    });

    var res = args_to_array(arguments);

    res[0] = id;

    return res;
}