bugfix: initialize gpu
This commit is contained in:
parent
f98d4a38e0
commit
7ab7dba5c8
@ -233,7 +233,7 @@ class RVC(VoiceChangerModel):
|
||||
self.initialize()
|
||||
|
||||
output_file_simple = export2onnx(self.settings.gpu, modelSlot)
|
||||
|
||||
|
||||
return {
|
||||
"status": "ok",
|
||||
"path": f"/tmp/{output_file_simple}",
|
||||
|
@ -81,6 +81,8 @@ class VoiceChangerManager(ServerDeviceCallbacks):
|
||||
self.stored_setting = json.load(open(STORED_SETTING_FILE, "r", encoding="utf-8"))
|
||||
if "modelSlotIndex" in self.stored_setting:
|
||||
self.update_settings("modelSlotIndex", self.stored_setting["modelSlotIndex"])
|
||||
if "gpu" not in self.stored_setting:
|
||||
self.update_settings("gpu", 0)
|
||||
# for key, val in self.stored_setting.items():
|
||||
# self.update_settings(key, val)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user