Move weights to canonical location
This commit is contained in:
parent
f9de6912d8
commit
fcb21ff0b9
@ -75,7 +75,7 @@
|
||||
" for sample in pb(predictions_view):\n",
|
||||
" image = Image.open(sample.filepath)\n",
|
||||
" w, h = image.size\n",
|
||||
" pred = detect(sample.filepath, 'yolo.onnx', 'resnet.onnx')\n",
|
||||
" pred = detect(sample.filepath, '../weights/yolo.onnx', '../weights/resnet.onnx')\n",
|
||||
"\n",
|
||||
" detections = []\n",
|
||||
" for _, row in pred.iterrows():\n",
|
||||
|
||||
@ -25,7 +25,7 @@ with fo.ProgressBar() as pb:
|
||||
for sample in pb(predictions_view):
|
||||
image = Image.open(sample.filepath)
|
||||
w, h = image.size
|
||||
pred = detect(sample.filepath, 'yolo.onnx', 'resnet.onnx')
|
||||
pred = detect(sample.filepath, '../weights/yolo.onnx', '../weights/resnet.onnx')
|
||||
|
||||
detections = []
|
||||
for _, row in pred.iterrows():
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user