mirror of
https://github.com/koush/scrypted.git
synced 2026-05-06 22:20:28 +01:00
9 lines
185 B
Python
9 lines
185 B
Python
from tflite import TensorFlowLitePlugin
|
|
import predict
|
|
|
|
def create_scrypted_plugin():
|
|
return TensorFlowLitePlugin()
|
|
|
|
async def fork():
|
|
return predict.Fork(TensorFlowLitePlugin)
|