dgarrett-synaptics commited on
Commit
1cf579f
·
verified ·
1 Parent(s): 65118ce

Delete tests/test_ultralytics.py

Browse files
Files changed (1) hide show
  1. tests/test_ultralytics.py +0 -18
tests/test_ultralytics.py DELETED
@@ -1,18 +0,0 @@
1
- from os import chdir
2
- from synet.backends import get_backend
3
- from synet.quantize import main
4
-
5
-
6
- backend = get_backend("ultralytics")
7
-
8
-
9
- def test_quantize(tmp_path):
10
- chdir(tmp_path)
11
- for config in backend.get_configs():
12
- main(("--backend=ultralytics",
13
- "--model="+config,
14
- "--number=1"))
15
- main(("--backend=ultralytics",
16
- "--model="+config,
17
- "--number=1",
18
- "--image-shape", "321", "319"))