From 2d8629e67ba4939f1ab9638f3c887d876a3d8254 Mon Sep 17 00:00:00 2001 From: Ella Charlaix Date: Tue, 21 Jan 2025 19:04:22 +0100 Subject: [PATCH] remove executorch command --- optimum/commands/export/base.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/optimum/commands/export/base.py b/optimum/commands/export/base.py index e5ed4c90ff..07737cb8ea 100644 --- a/optimum/commands/export/base.py +++ b/optimum/commands/export/base.py @@ -15,7 +15,6 @@ """optimum.exporters command-line interface base classes.""" from .. import BaseOptimumCLICommand, CommandInfo -from .executorch import ExecuTorchExportCommand from .onnx import ONNXExportCommand from .tflite import TFLiteExportCommand @@ -26,11 +25,6 @@ class ExportCommand(BaseOptimumCLICommand): help="Export PyTorch and TensorFlow models to several format.", ) SUBCOMMANDS = ( - CommandInfo( - name="executorch", - help="Export PyTorch model to ExecuTorch.", - subcommand_class=ExecuTorchExportCommand, - ), CommandInfo( name="onnx", help="Export PyTorch and TensorFlow to ONNX.",