-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c86f607
commit 62ba58a
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openvino_tokenizers
updated
22 files
+2 −1 | .github/workflows/linux.yml | |
+2 −1 | .github/workflows/mac.yml | |
+1 −0 | .github/workflows/sdl.yml | |
+2 −1 | .github/workflows/windows.yml | |
+3 −0 | Jenkinsfile | |
+1 −1 | pyproject.toml | |
+7 −5 | python/openvino_tokenizers/__init__.py | |
+76 −0 | python/openvino_tokenizers/build_tokenizer.py | |
+3 −1 | python/openvino_tokenizers/cli.py | |
+7 −7 | python/openvino_tokenizers/hf_parser.py | |
+1 −1 | python/openvino_tokenizers/str_pack.py | |
+54 −6 | python/openvino_tokenizers/tokenizer_pipeline.py | |
+4 −2 | python/openvino_tokenizers/utils.py | |
+1 −1 | requirements-build.txt | |
+40 −0 | src/fuze.cpp | |
+35 −0 | src/fuze.hpp | |
+3 −1 | src/ov_extension.cpp | |
+68 −31 | src/tensorflow_translators.cpp | |
+1 −1 | src/tensorflow_translators.hpp | |
+2 −0 | src/tokenizer.hpp | |
+111 −0 | src/trie_tokenizer.cpp | |
+54 −0 | src/trie_tokenizer.hpp |