We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2084d9 commit e8cc0e9Copy full SHA for e8cc0e9
optimum/commands/export/openvino.py
@@ -324,7 +324,9 @@ def run(self):
324
325
maybe_save_preprocessors(self.args.model, self.args.output, trust_remote_code=self.args.trust_remote_code)
326
if not self.args.disable_convert_tokenizer:
327
- preprocessors = maybe_load_preprocessors(self.args.model, trust_remote_code=self.args.trust_remote_code)
+ preprocessors = maybe_load_preprocessors(
328
+ self.args.model, trust_remote_code=self.args.trust_remote_code
329
+ )
330
maybe_convert_tokenizers(library_name, self.args.output, preprocessors=preprocessors)
331
else:
332
# TODO : add input shapes
0 commit comments