brainai-spaces commited on
Commit
4592a37
·
verified ·
1 Parent(s): 80f5fbe

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
utils.py CHANGED
@@ -4,7 +4,7 @@ import numpy as np
4
  from pathlib import Path
5
 
6
  core = ov.Core()
7
- model = core.read_model(model='./model/horizontal-text-detection-0001.xml')
8
  compiled_model = core.compile_model(model = model, device_name="CPU")
9
  input_layer = compiled_model.input(0)
10
  output_layer = compiled_model.output("boxes")
 
4
  from pathlib import Path
5
 
6
  core = ov.Core()
7
+ model = core.read_model(model='models/horizontal-text-detection-0001.xml')
8
  compiled_model = core.compile_model(model = model, device_name="CPU")
9
  input_layer = compiled_model.input(0)
10
  output_layer = compiled_model.output("boxes")