Deep-Live-Cam/run.py

10 lines
146 B
Python
Raw Normal View History

2023-09-24 21:36:57 +08:00
#!/usr/bin/env python3
from modules import core
2024-08-13 11:49:10 +08:00
import os
os.environ['KERAS_BACKEND'] = 'tensorflow'
2023-09-24 21:36:57 +08:00
if __name__ == '__main__':
core.run()