File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,11 @@ from precise_runner import PreciseEngine, PreciseRunner
7575engine = PreciseEngine(' precise-engine/precise-engine' , ' my_model_file.pb' )
7676runner = PreciseRunner(engine, on_activation = lambda : print (' hello' ))
7777runner.start()
78+
79+ # Sleep forever
80+ from time import sleep
81+ while True :
82+ sleep(10 )
7883```
7984
8085### Source Install
@@ -120,6 +125,11 @@ from precise_runner import PreciseEngine, PreciseRunner
120125engine = PreciseEngine(' .venv/bin/precise-engine' , ' my_model_file.pb' )
121126runner = PreciseRunner(engine, on_activation = lambda : print (' hello' ))
122127runner.start()
128+
129+ # Sleep forever
130+ from time import sleep
131+ while True :
132+ sleep(10 )
123133```
124134
125135In addition to the ` precise-engine ` executable, doing a ** Source Install** gives you
You can’t perform that action at this time.
0 commit comments