mirror of
https://github.com/koush/scrypted.git
synced 2026-06-13 22:10:25 +01:00
9 lines
152 B
Python
9 lines
152 B
Python
from ort import ONNXPlugin
|
|
import predict
|
|
|
|
def create_scrypted_plugin():
|
|
return ONNXPlugin()
|
|
|
|
async def fork():
|
|
return predict.Fork(ONNXPlugin)
|