-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove convert_tokenizer #425
Remove convert_tokenizer #425
Conversation
auto [draft_input_ids, draft_attention_mask] = tokenize(tokenizer, argv[3]); | ||
ov::InferRequest detokenizer = core.compile_model( | ||
std::string{argv[1]} + "/openvino_detokenizer.xml", "CPU").create_infer_request(); | ||
std::string{argv[1]} + "/openvino_tokenizer/openvino_detokenizer.xml", "CPU").create_infer_request(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@apaniukov
why extra subfolder is created? and why is it names openvino_tokenizer
not just tokenizer
like here https://huggingface.co/SimianLuo/LCM_Dreamshaper_v7/tree/main/tokenizer ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tokenizer
and tokenizer_2
are from a stable diffusion repo structure. The openvino_tokenizer
folder is just an arbitrary name: huggingface/optimum-intel#580 (comment), can be changed at any time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would keep folders structure as in HF
No description provided.