Skip to content

Commit

Permalink
[Kaldi] Work around conversion for stateful Kaldi models with Python>…
Browse files Browse the repository at this point in the history
…3.8 (#26824)

**Details:** Work around conversion for stateful Kaldi models with
Python>3.8. Now it fails for unknown reason on higher numpy versions.
Since this is quite legacy stuff and will removed in 2025.0. we decided
not to invest our time for proper resolution. So we proceed with
easy-fix.

**Ticket:** 153367

---------

Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
  • Loading branch information
rkazants authored Sep 27, 2024
1 parent 3dee83e commit f6fa29b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/mo/requirements_kaldi.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
-c ../constraints.txt
numpy>=1.16.6,<1.27
# wa: conversion for stateful models is failed on higher numpy versions
numpy>=1.16.6,<1.25; python_version<"3.12"
numpy>=1.16.6,<1.27; python_version>="3.12"
networkx
defusedxml
requests
Expand Down

0 comments on commit f6fa29b

Please sign in to comment.