mirror of
https://github.com/koush/scrypted.git
synced 2026-03-06 11:21:58 +00: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)
|