saved layer value fix
This commit is contained in:
parent
da53d7edb3
commit
d8ab58892d
|
@ -2570,6 +2570,8 @@ def get_message(msg):
|
||||||
elif(msg['cmd'] == 'list_model'):
|
elif(msg['cmd'] == 'list_model'):
|
||||||
sendModelSelection(menu=msg['data'])
|
sendModelSelection(menu=msg['data'])
|
||||||
elif(msg['cmd'] == 'load_model'):
|
elif(msg['cmd'] == 'load_model'):
|
||||||
|
if not os.path.exists("settings/" + vars.model.replace('/', '_') + ".breakmodel"):
|
||||||
|
os.mkdir("settings")
|
||||||
f = open("settings/" + vars.model.replace('/', '_') + ".breakmodel", "w")
|
f = open("settings/" + vars.model.replace('/', '_') + ".breakmodel", "w")
|
||||||
f.write(msg['gpu_layers'])
|
f.write(msg['gpu_layers'])
|
||||||
f.close()
|
f.close()
|
||||||
|
|
Loading…
Reference in New Issue