Spaces:
Runtime error
Runtime error
Lucas Hansen
commited on
Commit
•
fc6660c
1
Parent(s):
6b58a69
Update facefusion/processors/frame/modules/face_enhancer.py
Browse files
facefusion/processors/frame/modules/face_enhancer.py
CHANGED
@@ -83,9 +83,9 @@ def get_frame_processor() -> Any:
|
|
83 |
if FRAME_PROCESSOR is None:
|
84 |
model_path = get_options('model').get('path')
|
85 |
# FRAME_PROCESSOR = onnxruntime.InferenceSession(model_path, providers = [ 'CUDAExecutionProvider' ])
|
86 |
-
FRAME_PROCESSOR = onnxruntime.InferenceSession(model_path, providers = facefusion.globals.execution_providers)
|
87 |
-
|
88 |
-
|
89 |
return FRAME_PROCESSOR
|
90 |
|
91 |
|
|
|
83 |
if FRAME_PROCESSOR is None:
|
84 |
model_path = get_options('model').get('path')
|
85 |
# FRAME_PROCESSOR = onnxruntime.InferenceSession(model_path, providers = [ 'CUDAExecutionProvider' ])
|
86 |
+
# FRAME_PROCESSOR = onnxruntime.InferenceSession(model_path, providers = facefusion.globals.execution_providers)
|
87 |
+
model_path = get_options('model').get('path')
|
88 |
+
FRAME_PROCESSOR = onnxruntime.InferenceSession(model_path, providers = [ 'CPUExecutionProvider' ])
|
89 |
return FRAME_PROCESSOR
|
90 |
|
91 |
|