Fix EdgeTPU output directory (#7399)
Browse files* Fix EdgeTPU output directory
Outputs to same directory as --weights
* Update export.py
export.py
CHANGED
@@ -387,7 +387,7 @@ def export_edgetpu(keras_model, im, file, prefix=colorstr('Edge TPU:')):
|
|
387 |
f = str(file).replace('.pt', '-int8_edgetpu.tflite') # Edge TPU model
|
388 |
f_tfl = str(file).replace('.pt', '-int8.tflite') # TFLite model
|
389 |
|
390 |
-
cmd = f"edgetpu_compiler -s {f_tfl}"
|
391 |
subprocess.run(cmd, shell=True, check=True)
|
392 |
|
393 |
LOGGER.info(f'{prefix} export success, saved as {f} ({file_size(f):.1f} MB)')
|
|
|
387 |
f = str(file).replace('.pt', '-int8_edgetpu.tflite') # Edge TPU model
|
388 |
f_tfl = str(file).replace('.pt', '-int8.tflite') # TFLite model
|
389 |
|
390 |
+
cmd = f"edgetpu_compiler -s -o {file.parent} {f_tfl}"
|
391 |
subprocess.run(cmd, shell=True, check=True)
|
392 |
|
393 |
LOGGER.info(f'{prefix} export success, saved as {f} ({file_size(f):.1f} MB)')
|