-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TOKENIZERS] Ported PRs from master (#801)
* [TOKENIZERS] Disabled C4703 (#796) * disabled error C4703 * Update modules/custom_operations/user_ie_extensions/tokenizer/CMakeLists.txt --------- Co-authored-by: Ilya Lavrenov <[email protected]> * [Tokenizer] Add CLI Tokenizer Converter (#792) * Add CLI Tokenizer Converter * Fix space * Add more flags to CLI tool * [TOKENIZERS] Update license field and version (#793) * update license field and version * flex dependency in master * removed version of openvino in master * [TOKENIZERS] Extended extension searching paths (#797) * extended site-packages pathes * Apply suggestions from code review Co-authored-by: Artur Paniukov <[email protected]> --------- Co-authored-by: Artur Paniukov <[email protected]> * [TOKENIZERS] added build of tokenizers in wheel (#798) * added build tokenizers for wheel * fixed azure pipeline * [Tokenizers] Update README.md (#799) * Fix --streaming-detokenizer flag * Rewrite README.md * Rewrite README.md * Rewrite README.md --------- Co-authored-by: Mikhail Ryzhov <[email protected]> Co-authored-by: Artur Paniukov <[email protected]>
- Loading branch information
1 parent
99a9928
commit b32281d
Showing
11 changed files
with
290 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
[project] | ||
name = "openvino-tokenizers" | ||
version = "2023.3.0" | ||
version = "2023.3.0.0" | ||
description = "Convert tokenizers into OpenVINO models" | ||
requires-python = ">=3.8" | ||
readme = {file = "user_ie_extensions/tokenizer/python/README.md", content-type="text/markdown"} | ||
license = {text = "OSI Approved :: Apache Software License"} | ||
|
||
authors = [ | ||
{ name = "OpenVINO Developers", email = "[email protected]" }, | ||
|
@@ -17,8 +18,7 @@ classifiers = [ | |
] | ||
|
||
dependencies = [ | ||
"openvino", | ||
"numpy" | ||
'openvino' | ||
] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -39,6 +39,9 @@ all = [ | |
"openvino_tokenizers[dev,transformers,tiktoken]" | ||
] | ||
|
||
[project.scripts] | ||
convert_tokenizer = "openvino_tokenizers.cli:convert_hf_tokenizer" | ||
|
||
[tool.ruff] | ||
ignore = ["C901", "E501", "E741", "W605"] | ||
select = ["C", "E", "F", "I", "W"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.