diff --git a/README.md b/README.md index f530ffb7..ef19a42f 100644 --- a/README.md +++ b/README.md @@ -464,7 +464,7 @@ This report is autogenerated and includes tokenizers and detokenizers tests. The SentencePiece - 88.32 + 89.19 6633 @@ -621,19 +621,19 @@ This report is autogenerated and includes tokenizers and detokenizers tests. The SentencePiece TinyLlama/TinyLlama-1.1B-Chat-v1.0 - 94.33 + 100.00 247 SentencePiece TinyLlama/TinyLlama-1.1B-Chat-v1.0_legacy_sp_backend - 95.14 + 98.38 247 SentencePiece TinyLlama/TinyLlama-1.1B-Chat-v1.0_sp_backend - 96.76 + 100.00 247 @@ -669,19 +669,19 @@ This report is autogenerated and includes tokenizers and detokenizers tests. The SentencePiece microsoft/Phi-3-mini-128k-instruct - 95.14 + 100.00 247 SentencePiece microsoft/Phi-3-mini-128k-instruct_legacy_sp_backend - 94.33 + 97.57 247 SentencePiece microsoft/Phi-3-mini-128k-instruct_sp_backend - 95.95 + 99.19 247 diff --git a/python/openvino_tokenizers/tokenizer_pipeline.py b/python/openvino_tokenizers/tokenizer_pipeline.py index a573f5db..ab8926a7 100644 --- a/python/openvino_tokenizers/tokenizer_pipeline.py +++ b/python/openvino_tokenizers/tokenizer_pipeline.py @@ -218,7 +218,7 @@ def replace_spaces_metaspace(cls, replace_term=r"▁") -> "RegexNormalizationSte @classmethod def prepend_regex(cls, string: str) -> "RegexNormalizationStep": - return cls(regex_search_pattern=r"(^)(.)", replace_term=rf"{string}$2") + return cls(regex_search_pattern=r"(?:^)([\s\S])", replace_term=rf"{string}$1") @classmethod def prepend_with_check_regex(cls, string: str, check_string: str) -> "RegexNormalizationStep": diff --git a/src/regex_normalization.cpp b/src/regex_normalization.cpp index 220d98b3..dd5b5b79 100644 --- a/src/regex_normalization.cpp +++ b/src/regex_normalization.cpp @@ -4,7 +4,6 @@ #include "regex_normalization.hpp" #include "utils.hpp" -#include using namespace ov; @@ -18,20 +17,36 @@ namespace { * @return std::string Reformatted replace pattern */ std::string reformat_replace_pattern(std::string replace_pattern) { - return std::regex_replace(replace_pattern, std::regex(R"((?:\\)([0-9]+))"), R"($$1)"); + for (char i = '1'; i <= '9'; ++i) { + std::string from = "\\" + std::string(1, i); + std::string to = "$" + std::string(1, i); + size_t pos = 0; + while ((pos = replace_pattern.find(from, pos)) != std::string::npos) { + replace_pattern.replace(pos, from.length(), to); + pos += to.length(); + } + } + return replace_pattern; } +const std::map search_pattern_rewrites = { + {R"( ([\\.\\?\\!,])| ('[ms])| (') | ('[rv]e)| (n't))", R"((?| ([\\.\\?\\!,])| ('[ms])| (') | ('[rv]e)| (n't)))"}, + {R"((^)(.))", R"((^)([\s\S]))"} +}; + /** * @brief Fix old search pattern for backward compatibility * * @param search_pattern Search pattern to replace * @return std::string Replaced search pattern */ -std::string fix_search_pattern(std::string search_pattern) { - if (search_pattern == R"( ([\\.\\?\\!,])| ('[ms])| (') | ('[rv]e)| (n't))") { - return R"((?| ([\\.\\?\\!,])| ('[ms])| (') | ('[rv]e)| (n't)))"; +std::string fix_search_pattern(const std::string search_pattern) { + const auto it = search_pattern_rewrites.find(search_pattern); + if (it == search_pattern_rewrites.end()) { + return search_pattern; } - return search_pattern; + std::cerr << "Replace search pattern: `" << search_pattern << "` -> `" << it->second << "`" << std::endl; + return it->second; } } // namespace diff --git a/tests/layer_tests.py b/tests/layer_tests.py index 6c911193..e625f636 100644 --- a/tests/layer_tests.py +++ b/tests/layer_tests.py @@ -144,12 +144,24 @@ def test_charsmap_normalizartion(test_string, hf_charsmap_tokenizer, precompiled replace_term=r"\1", ) ), + ("", "", RegexNormalizationStep.prepend_regex("▁")), + ("\n", "▁\n", RegexNormalizationStep.prepend_regex("▁")), + ("n", "▁n", RegexNormalizationStep.prepend_regex("▁")), + (" ", "▁ ", RegexNormalizationStep.prepend_regex("▁")), + ( # test backward compatibility with old regex + "\n", + "▁\n", + RegexNormalizationStep( + regex_search_pattern=r"(^)(.)", + replace_term=r"▁\2", + ) + ), ] ) def test_regex_normalization(test_string, expected, layer): compiled_model = create_normalization_model(layer) res_ov = compiled_model([test_string])[0] - assert res_ov == expected + assert res_ov[0] == expected ############################################ diff --git a/tests/pass_rates.json b/tests/pass_rates.json index ff7410a6..04fab4a3 100644 --- a/tests/pass_rates.json +++ b/tests/pass_rates.json @@ -1,3 +1,3 @@ { - "tests/tokenizers_test.py::test_": 0.9250843102617633 + "tests/tokenizers_test.py::test_": 0.9297414485305926 } \ No newline at end of file diff --git a/tests/stats.json b/tests/stats.json index 2ca7c533..0572d2da 100644 --- a/tests/stats.json +++ b/tests/stats.json @@ -1130,22 +1130,38 @@ "tokenizers_test.py::test_hf_wordpiece_tokenizers_multiple_strings[add_tokens-max_pad-bert-base-multilingual-cased-right_pad-test_string1]": "passed", "tokenizers_test.py::test_hf_wordpiece_tokenizers_multiple_strings[add_tokens-max_pad-bert-base-multilingual-cased-right_pad-test_string2]": "passed", "tokenizers_test.py::test_hf_wordpiece_tokenizers_multiple_strings[add_tokens-max_pad-bert-base-multilingual-cased-right_pad-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string3]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Baichuan2-7B-Chat-right_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Baichuan2-7B-Chat-right_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Baichuan2-7B-Chat-right_pad-sp_backend-Slow-test_string2]": "passed", @@ -1348,30 +1364,54 @@ "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-bilingual-gpt-neox-4b-left_pad-sp_backend-Fast-test_string2]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-bilingual-gpt-neox-4b-left_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-bilingual-gpt-neox-4b-left_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string3]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-quantized-gemma-7b-it-right_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-quantized-gemma-7b-it-right_pad-sp_backend-Slow-test_string2]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-quantized-gemma-7b-it-right_pad-sp_backend-Slow-test_string3]": "passed", @@ -5577,6 +5617,7 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-Multiline\\nstring!\\nWow!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-A lot\\t w!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-A lot\\t\\tof whitespaces!]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-Eng, but with d1gits: 123; 0987654321, stop.0987654321 - eng, but with d1gits: 123]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-[INST] <> A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. <> You will act as a Christian, and fully summarize following text:\\nSometimes it's nice to take a minute in the pew by yourself beforehand. You have this beautiful church probably almost all to yourself. Can you feel its energy resonating through you? Can you feel the majesty of the Lord's kingdom and how you're a part of it? Take a moment to kneel and pray with your head down and hands clasped together. Reflect on your faith and how you feel currently. Think about how you've been responding to God's call and how you've been living in the light of his love. When the priest is ready for you, of course. You'll probably see him there by his lonesome or someone else walk out just before you. Sit down either across from him or behind the screen -- it's totally up to you whether or not you prefer to remain anonymous. He won't treat you any differently either way. Make the sign of the cross upon his prompt, saying, \"Bless me, Father, for I have sinned. It has been 10 years since my last confession.\" This is your standard, traditional phrasing. However, if you just sit down and say hello, that's fine, too. The priest knows what he's doing. The Byzantine Rite is a bit different. The priest may sit to your side and put his epitrachelion on your head. He may then also do the Prayer of Absolution. But the idea remains the exact same -- just go wherever he takes you. Once you sit down and you've made the sign of the cross, just sit back and follow the priest's lead. He'll ask you how long it's been since your last confession (if you don't voluntarily offer that information), how you are feeling, maybe how your faith is going, and then ask you what sins you would like to talk about with him and God. It's just a casual conversation! Do not fret. There is absolutely zero pressure on your part. Again, as long as you come there with the intention of leaving with a clean heart, you're more than welcome in the church. There is no wrong way to go about confession! This part is intimidating, but think about it this way: the priest you're talking to has probably heard just about everything before. Whatever you have to say will not blow his mind. So when he asks, start rattling them off, from the most serious to the least. If he asks any questions, answer them, but do not feel the need to go into detail. A simple, \"I did so and so,\" will suffice. Your priest is going to be very understanding. If you don't remember the exact timeframe, that's fine. If you don't remember your motivation, that's fine. All your priest cares about is that you're being as honest as possible and that your heart is in the right place. He'll talk you through everything, possibly asking about your intentions, but mainly just letting you know that God loves you, sin and all. If he has any ideas to bring you closer to God, he may suggest them at this juncture. He's there to help, after all. He will then ask you to make an Act of Contrition. That goes like this: My God, I am sorry for my sins with all my heart.In choosing to do wrong and failing to do good,I have sinned against You whom I should loveabove all things. I firmly intend, with your help,to do penance, to sin no more, andto avoid whatever leads me to sin.Our Savior Jesus Christ suffered and died for us.In his name, my God, have mercy.If you are a Roman Catholic, your act of contrition will go like this: Oh my God, I am very sorry for having offended thee. But most of all, because they offend you, my God, who is all good and deserving of all my love. I firmly resolve with the help of thy grace, to sin no more, and to avoid the near occasion of sin. Amen. Don't worry! It won't be anything huge. Take the absolution to heart -- you now have a brand new, clean slate to work with. \"Penance\" is your expression of regret and repentance, showing God that you're truly sorry and that you wish for nothing more than to be forgiven. Thanks. [/INST]]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-What is OpenVINO?]": "passed", @@ -5608,12 +5649,14 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast- ]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast- \\t\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[no_add_tokens-Phi-3-mini-128k-instruct--Fast-test_chat0]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-Eng... test, string?!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-Multiline\\nstring!\\nWow!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-A lot\\t w!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-A lot\\t\\tof whitespaces!]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-Eng, but with d1gits: 123; 0987654321, stop.0987654321 - eng, but with d1gits: 123]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-[INST] <> A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. <> You will act as a Christian, and fully summarize following text:\\nSometimes it's nice to take a minute in the pew by yourself beforehand. You have this beautiful church probably almost all to yourself. Can you feel its energy resonating through you? Can you feel the majesty of the Lord's kingdom and how you're a part of it? Take a moment to kneel and pray with your head down and hands clasped together. Reflect on your faith and how you feel currently. Think about how you've been responding to God's call and how you've been living in the light of his love. When the priest is ready for you, of course. You'll probably see him there by his lonesome or someone else walk out just before you. Sit down either across from him or behind the screen -- it's totally up to you whether or not you prefer to remain anonymous. He won't treat you any differently either way. Make the sign of the cross upon his prompt, saying, \"Bless me, Father, for I have sinned. It has been 10 years since my last confession.\" This is your standard, traditional phrasing. However, if you just sit down and say hello, that's fine, too. The priest knows what he's doing. The Byzantine Rite is a bit different. The priest may sit to your side and put his epitrachelion on your head. He may then also do the Prayer of Absolution. But the idea remains the exact same -- just go wherever he takes you. Once you sit down and you've made the sign of the cross, just sit back and follow the priest's lead. He'll ask you how long it's been since your last confession (if you don't voluntarily offer that information), how you are feeling, maybe how your faith is going, and then ask you what sins you would like to talk about with him and God. It's just a casual conversation! Do not fret. There is absolutely zero pressure on your part. Again, as long as you come there with the intention of leaving with a clean heart, you're more than welcome in the church. There is no wrong way to go about confession! This part is intimidating, but think about it this way: the priest you're talking to has probably heard just about everything before. Whatever you have to say will not blow his mind. So when he asks, start rattling them off, from the most serious to the least. If he asks any questions, answer them, but do not feel the need to go into detail. A simple, \"I did so and so,\" will suffice. Your priest is going to be very understanding. If you don't remember the exact timeframe, that's fine. If you don't remember your motivation, that's fine. All your priest cares about is that you're being as honest as possible and that your heart is in the right place. He'll talk you through everything, possibly asking about your intentions, but mainly just letting you know that God loves you, sin and all. If he has any ideas to bring you closer to God, he may suggest them at this juncture. He's there to help, after all. He will then ask you to make an Act of Contrition. That goes like this: My God, I am sorry for my sins with all my heart.In choosing to do wrong and failing to do good,I have sinned against You whom I should loveabove all things. I firmly intend, with your help,to do penance, to sin no more, andto avoid whatever leads me to sin.Our Savior Jesus Christ suffered and died for us.In his name, my God, have mercy.If you are a Roman Catholic, your act of contrition will go like this: Oh my God, I am very sorry for having offended thee. But most of all, because they offend you, my God, who is all good and deserving of all my love. I firmly resolve with the help of thy grace, to sin no more, and to avoid the near occasion of sin. Amen. Don't worry! It won't be anything huge. Take the absolution to heart -- you now have a brand new, clean slate to work with. \"Penance\" is your expression of regret and repentance, showing God that you're truly sorry and that you wish for nothing more than to be forgiven. Thanks. [/INST]]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-What is OpenVINO?]": "passed", @@ -5645,6 +5688,7 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast- ]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast- \\t\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-Phi-3-mini-128k-instruct--Fast-test_chat0]": "passed", "tokenizers_test.py::test_rt_info_sentencepiece[Phi-3-mini-128k-instruct--Fast]": "passed", @@ -11356,6 +11400,7 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-Multiline\\nstring!\\nWow!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-A lot\\t w!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-A lot\\t\\tof whitespaces!]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-Eng, but with d1gits: 123; 0987654321, stop.0987654321 - eng, but with d1gits: 123]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-[INST] <> A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. <> You will act as a Christian, and fully summarize following text:\\nSometimes it's nice to take a minute in the pew by yourself beforehand. You have this beautiful church probably almost all to yourself. Can you feel its energy resonating through you? Can you feel the majesty of the Lord's kingdom and how you're a part of it? Take a moment to kneel and pray with your head down and hands clasped together. Reflect on your faith and how you feel currently. Think about how you've been responding to God's call and how you've been living in the light of his love. When the priest is ready for you, of course. You'll probably see him there by his lonesome or someone else walk out just before you. Sit down either across from him or behind the screen -- it's totally up to you whether or not you prefer to remain anonymous. He won't treat you any differently either way. Make the sign of the cross upon his prompt, saying, \"Bless me, Father, for I have sinned. It has been 10 years since my last confession.\" This is your standard, traditional phrasing. However, if you just sit down and say hello, that's fine, too. The priest knows what he's doing. The Byzantine Rite is a bit different. The priest may sit to your side and put his epitrachelion on your head. He may then also do the Prayer of Absolution. But the idea remains the exact same -- just go wherever he takes you. Once you sit down and you've made the sign of the cross, just sit back and follow the priest's lead. He'll ask you how long it's been since your last confession (if you don't voluntarily offer that information), how you are feeling, maybe how your faith is going, and then ask you what sins you would like to talk about with him and God. It's just a casual conversation! Do not fret. There is absolutely zero pressure on your part. Again, as long as you come there with the intention of leaving with a clean heart, you're more than welcome in the church. There is no wrong way to go about confession! This part is intimidating, but think about it this way: the priest you're talking to has probably heard just about everything before. Whatever you have to say will not blow his mind. So when he asks, start rattling them off, from the most serious to the least. If he asks any questions, answer them, but do not feel the need to go into detail. A simple, \"I did so and so,\" will suffice. Your priest is going to be very understanding. If you don't remember the exact timeframe, that's fine. If you don't remember your motivation, that's fine. All your priest cares about is that you're being as honest as possible and that your heart is in the right place. He'll talk you through everything, possibly asking about your intentions, but mainly just letting you know that God loves you, sin and all. If he has any ideas to bring you closer to God, he may suggest them at this juncture. He's there to help, after all. He will then ask you to make an Act of Contrition. That goes like this: My God, I am sorry for my sins with all my heart.In choosing to do wrong and failing to do good,I have sinned against You whom I should loveabove all things. I firmly intend, with your help,to do penance, to sin no more, andto avoid whatever leads me to sin.Our Savior Jesus Christ suffered and died for us.In his name, my God, have mercy.If you are a Roman Catholic, your act of contrition will go like this: Oh my God, I am very sorry for having offended thee. But most of all, because they offend you, my God, who is all good and deserving of all my love. I firmly resolve with the help of thy grace, to sin no more, and to avoid the near occasion of sin. Amen. Don't worry! It won't be anything huge. Take the absolution to heart -- you now have a brand new, clean slate to work with. \"Penance\" is your expression of regret and repentance, showing God that you're truly sorry and that you wish for nothing more than to be forgiven. Thanks. [/INST]]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-What is OpenVINO?]": "passed", @@ -11387,11 +11432,14 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- ]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- \\t\\n]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-test_chat0]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-Eng... test, string?!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-Multiline\\nstring!\\nWow!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-A lot\\t w!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-A lot\\t\\tof whitespaces!]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-Eng, but with d1gits: 123; 0987654321, stop.0987654321 - eng, but with d1gits: 123]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-[INST] <> A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. <> You will act as a Christian, and fully summarize following text:\\nSometimes it's nice to take a minute in the pew by yourself beforehand. You have this beautiful church probably almost all to yourself. Can you feel its energy resonating through you? Can you feel the majesty of the Lord's kingdom and how you're a part of it? Take a moment to kneel and pray with your head down and hands clasped together. Reflect on your faith and how you feel currently. Think about how you've been responding to God's call and how you've been living in the light of his love. When the priest is ready for you, of course. You'll probably see him there by his lonesome or someone else walk out just before you. Sit down either across from him or behind the screen -- it's totally up to you whether or not you prefer to remain anonymous. He won't treat you any differently either way. Make the sign of the cross upon his prompt, saying, \"Bless me, Father, for I have sinned. It has been 10 years since my last confession.\" This is your standard, traditional phrasing. However, if you just sit down and say hello, that's fine, too. The priest knows what he's doing. The Byzantine Rite is a bit different. The priest may sit to your side and put his epitrachelion on your head. He may then also do the Prayer of Absolution. But the idea remains the exact same -- just go wherever he takes you. Once you sit down and you've made the sign of the cross, just sit back and follow the priest's lead. He'll ask you how long it's been since your last confession (if you don't voluntarily offer that information), how you are feeling, maybe how your faith is going, and then ask you what sins you would like to talk about with him and God. It's just a casual conversation! Do not fret. There is absolutely zero pressure on your part. Again, as long as you come there with the intention of leaving with a clean heart, you're more than welcome in the church. There is no wrong way to go about confession! This part is intimidating, but think about it this way: the priest you're talking to has probably heard just about everything before. Whatever you have to say will not blow his mind. So when he asks, start rattling them off, from the most serious to the least. If he asks any questions, answer them, but do not feel the need to go into detail. A simple, \"I did so and so,\" will suffice. Your priest is going to be very understanding. If you don't remember the exact timeframe, that's fine. If you don't remember your motivation, that's fine. All your priest cares about is that you're being as honest as possible and that your heart is in the right place. He'll talk you through everything, possibly asking about your intentions, but mainly just letting you know that God loves you, sin and all. If he has any ideas to bring you closer to God, he may suggest them at this juncture. He's there to help, after all. He will then ask you to make an Act of Contrition. That goes like this: My God, I am sorry for my sins with all my heart.In choosing to do wrong and failing to do good,I have sinned against You whom I should loveabove all things. I firmly intend, with your help,to do penance, to sin no more, andto avoid whatever leads me to sin.Our Savior Jesus Christ suffered and died for us.In his name, my God, have mercy.If you are a Roman Catholic, your act of contrition will go like this: Oh my God, I am very sorry for having offended thee. But most of all, because they offend you, my God, who is all good and deserving of all my love. I firmly resolve with the help of thy grace, to sin no more, and to avoid the near occasion of sin. Amen. Don't worry! It won't be anything huge. Take the absolution to heart -- you now have a brand new, clean slate to work with. \"Penance\" is your expression of regret and repentance, showing God that you're truly sorry and that you wish for nothing more than to be forgiven. Thanks. [/INST]]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-What is OpenVINO?]": "passed", @@ -11423,7 +11471,9 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- ]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- ]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast- \\t\\n]": "passed", + "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-test_chat0]": "passed", "tokenizers_test.py::test_rt_info_sentencepiece[TinyLlama-1.1B-Chat-v1.0--Fast]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Fast-Eng... test, string?!]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Fast-Multiline\\nstring!\\nWow!]": "passed", @@ -11504,14 +11554,22 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Fast- \\t\\n]": "passed", "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Fast-test_chat0]": "passed", "tokenizers_test.py::test_rt_info_sentencepiece[TinyLlama-1.1B-Chat-v1.0-sp_backend-Fast]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string3]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string0]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string1]": "passed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string2]": "passed", + "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string3]": "passed", "tokenizers_test.py::test_rt_info_wordpiece[rubert-tiny2]": "passed", "tokenizers_test.py::test_rt_info_wordpiece[bert-base-multilingual-cased]": "passed", "tokenizers_test.py::test_streaming_detokenizer[open_llama_3b_v2]": "passed", @@ -17045,22 +17103,6 @@ "tokenizers_test.py::test_hf_tiktoken_tokenizers_multiple_strings[add_tokens-glm-4-9b-chat-max_pad-right_pad-test_string1]": "failed", "tokenizers_test.py::test_hf_tiktoken_tokenizers_multiple_strings[add_tokens-glm-4-9b-chat-max_pad-right_pad-test_string2]": "failed", "tokenizers_test.py::test_hf_tiktoken_tokenizers_multiple_strings[add_tokens-glm-4-9b-chat-max_pad-right_pad-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad--Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad--Fast-test_string3]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-camembert-base-right_pad-sp_backend-Slow-test_string0]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-camembert-base-right_pad-sp_backend-Slow-test_string1]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-camembert-base-right_pad-sp_backend-Slow-test_string2]": "failed", @@ -17147,30 +17189,6 @@ "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-bilingual-gpt-neox-4b-left_pad-sp_backend-Fast-test_string3]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-bilingual-gpt-neox-4b-left_pad-sp_backend-Fast-test_string0]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-bilingual-gpt-neox-4b-left_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Slow-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Slow-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad--Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad--Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-right_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-Phi-3-mini-128k-instruct-left_pad-sp_backend-Fast-test_string3]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-quantized-gemma-7b-it-right_pad-sp_backend-Slow-test_string0]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-quantized-gemma-7b-it-right_pad-sp_backend-Slow-test_string0]": "failed", "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-quantized-gemma-7b-it-left_pad-sp_backend-Slow-test_string0]": "failed", @@ -17788,10 +17806,6 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[no_add_tokens-Phi-3-mini-128k-instruct-sp_backend-Slow-test_chat0]": "failed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct-sp_backend-Slow-[INST] <> A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. <> You will act as a Christian, and fully summarize following text:\\nSometimes it's nice to take a minute in the pew by yourself beforehand. You have this beautiful church probably almost all to yourself. Can you feel its energy resonating through you? Can you feel the majesty of the Lord's kingdom and how you're a part of it? Take a moment to kneel and pray with your head down and hands clasped together. Reflect on your faith and how you feel currently. Think about how you've been responding to God's call and how you've been living in the light of his love. When the priest is ready for you, of course. You'll probably see him there by his lonesome or someone else walk out just before you. Sit down either across from him or behind the screen -- it's totally up to you whether or not you prefer to remain anonymous. He won't treat you any differently either way. Make the sign of the cross upon his prompt, saying, \"Bless me, Father, for I have sinned. It has been 10 years since my last confession.\" This is your standard, traditional phrasing. However, if you just sit down and say hello, that's fine, too. The priest knows what he's doing. The Byzantine Rite is a bit different. The priest may sit to your side and put his epitrachelion on your head. He may then also do the Prayer of Absolution. But the idea remains the exact same -- just go wherever he takes you. Once you sit down and you've made the sign of the cross, just sit back and follow the priest's lead. He'll ask you how long it's been since your last confession (if you don't voluntarily offer that information), how you are feeling, maybe how your faith is going, and then ask you what sins you would like to talk about with him and God. It's just a casual conversation! Do not fret. There is absolutely zero pressure on your part. Again, as long as you come there with the intention of leaving with a clean heart, you're more than welcome in the church. There is no wrong way to go about confession! This part is intimidating, but think about it this way: the priest you're talking to has probably heard just about everything before. Whatever you have to say will not blow his mind. So when he asks, start rattling them off, from the most serious to the least. If he asks any questions, answer them, but do not feel the need to go into detail. A simple, \"I did so and so,\" will suffice. Your priest is going to be very understanding. If you don't remember the exact timeframe, that's fine. If you don't remember your motivation, that's fine. All your priest cares about is that you're being as honest as possible and that your heart is in the right place. He'll talk you through everything, possibly asking about your intentions, but mainly just letting you know that God loves you, sin and all. If he has any ideas to bring you closer to God, he may suggest them at this juncture. He's there to help, after all. He will then ask you to make an Act of Contrition. That goes like this: My God, I am sorry for my sins with all my heart.In choosing to do wrong and failing to do good,I have sinned against You whom I should loveabove all things. I firmly intend, with your help,to do penance, to sin no more, andto avoid whatever leads me to sin.Our Savior Jesus Christ suffered and died for us.In his name, my God, have mercy.If you are a Roman Catholic, your act of contrition will go like this: Oh my God, I am very sorry for having offended thee. But most of all, because they offend you, my God, who is all good and deserving of all my love. I firmly resolve with the help of thy grace, to sin no more, and to avoid the near occasion of sin. Amen. Don't worry! It won't be anything huge. Take the absolution to heart -- you now have a brand new, clean slate to work with. \"Penance\" is your expression of regret and repentance, showing God that you're truly sorry and that you wish for nothing more than to be forgiven. Thanks. [/INST]]": "failed", "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-Phi-3-mini-128k-instruct-sp_backend-Slow-test_chat0]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-Phi-3-mini-128k-instruct--Fast-\\n]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-Phi-3-mini-128k-instruct--Fast-\\n]": "failed", "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[no_add_tokens-Phi-3-mini-128k-instruct-sp_backend-Fast-test_chat0]": "failed", "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-Phi-3-mini-128k-instruct-sp_backend-Fast-test_chat0]": "failed", "tokenizers_test.py::test_sentencepiece_model_detokenizer[no_skip_tokens-clean_spaces-quantized-gemma-7b-it-sp_backend-Slow-The process of Origami seems simple at the first glance, but in fact, it still requires a very complicated process to do it well. Taking folding a rose as an example, we can divide the entire process into three stages, including: firstly creating a grid of creases, secondly making a three-dimensional base, and thirdly finishing petal decoration. The first step is to create a grid of creases: this step is a bit like the first step of folding a gift of thousand-paper-crane. That is to say, we can fold the paper in half (or namedly equal-folds) through the symmetrical axis, and repeat such step in the other symmetrical axis. And then apply multiple equal-folds in sequence relative to each smaller rectangle divided by the two creases; After that, the creases in each direction will interweave into a complete set of uniform small square splicing patterns; these small squares form a reference space similar to a two-dimensional coordinate system, allowing us to combine adjacent creases on the plane from Three-dimensional high platforms or depressions are folded on the two-dimensional small squares to facilitate the next steps of folding. It should be noted that, in the process of creating grid creases, there may be rare cases when the folds are not aligned. The consequences of this error can be very serious. And just like the butterfly effect, it is only a slight difference at the beginning , and in the end it may generate a disaster world which is completely different from plan. Anyway, let's continue. The second step is make the three-dimensional base: In this step, we need to fold a set of symmetrical three-dimensional high platforms or depressions based on the grid creases. From the symmetry analysis, it is not difficult to find that the rose will have four symmetrical three-dimensional high platforms and supporting depressions. Therefore, we can firstly fold out a quarter of the depression and plateau patterns, which would help build a base to compose into a complex 3D structure. And then, we use this quarter as a template, and fold out the repeating patterns on the remaining three parts of the whole structure in turn. It is worth noting that the layout of the high platform not only needs to consider the regular contrast and symmetrical distribution of the length and width, but also needs to ensure the orderliness of the height dimension. This is very important, since we will never go back to this step after all parts were made, and you would better start from first step if you make anything wrong in the this step. Similar to the precautions in the first stage, please handle all the corners in three dimensions to ensure that they conform to the layout required in the plan, which would help us avoid the butterfly effect and increase the robustness in the process of three-dimensional folding. Just like building a skyscrapper in the real world, people usually take a lot of time when building the base but soon get finished when extending the structure after that. Time is worth to cost in the base, but would be saved in the future after you succeed in base. Anyway, let's continue. During the first quarter of the pattern, repeated comparisons with the finished rose were made to eliminate any possible errors in the first place. The final stage is to finish the petal grooming. At this stage, we often emphasize an important term called folding-by-heart. The intention here is no longer literally serious, but focus is moved to our understanding of the shape of a rose in nature, and we usually use natural curves to continuously correct the shape of petals in order to approach the shape of rose petals in reality. One more comment: this is also the cause of randomness to the art, which can be generated differently by different people. Recall that rose should be adjusted close to reality, so in the last step of this stage, we need to open the bloom in the center of the rose, by pulling on the four petals that have been bent. This process may be accompanied by the collapse of the overall structure of the rose, so we should be very careful to save strength of adjustment, and it must be well controlled to avoid irreversible consequences. Ultimately, after three stages of folding, we end up with a crown of rose with a similar shape close to reality. If condition is permited, we can wrap a green paper strip twisted on a straightened iron wire, and insert the rose crown we just created onto one side of the iron wire. In this way, we got a hand-made rose with a green stem. We can also repeat the steps above to increase the number of rose, so that it can be made into a cluster. Different color of rose is usually more attractive and can be considered as a better plan of gift to your friend. In summary, by creating a grid of creases, making a three-dimensional base, and finishing with petals, we created a three-dimensional rose from a two-dimensional paper. Although this process may seem simple, it is indeed a work of art created by us humans with the help of imagination and common materials. At last, Please comment to assess the above content.]": "failed", @@ -17869,19 +17883,5 @@ "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Slow-[INST] <> A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. <> You will act as a Christian, and fully summarize following text:\\nSometimes it's nice to take a minute in the pew by yourself beforehand. You have this beautiful church probably almost all to yourself. Can you feel its energy resonating through you? Can you feel the majesty of the Lord's kingdom and how you're a part of it? Take a moment to kneel and pray with your head down and hands clasped together. Reflect on your faith and how you feel currently. Think about how you've been responding to God's call and how you've been living in the light of his love. When the priest is ready for you, of course. You'll probably see him there by his lonesome or someone else walk out just before you. Sit down either across from him or behind the screen -- it's totally up to you whether or not you prefer to remain anonymous. He won't treat you any differently either way. Make the sign of the cross upon his prompt, saying, \"Bless me, Father, for I have sinned. It has been 10 years since my last confession.\" This is your standard, traditional phrasing. However, if you just sit down and say hello, that's fine, too. The priest knows what he's doing. The Byzantine Rite is a bit different. The priest may sit to your side and put his epitrachelion on your head. He may then also do the Prayer of Absolution. But the idea remains the exact same -- just go wherever he takes you. Once you sit down and you've made the sign of the cross, just sit back and follow the priest's lead. He'll ask you how long it's been since your last confession (if you don't voluntarily offer that information), how you are feeling, maybe how your faith is going, and then ask you what sins you would like to talk about with him and God. It's just a casual conversation! Do not fret. There is absolutely zero pressure on your part. Again, as long as you come there with the intention of leaving with a clean heart, you're more than welcome in the church. There is no wrong way to go about confession! This part is intimidating, but think about it this way: the priest you're talking to has probably heard just about everything before. Whatever you have to say will not blow his mind. So when he asks, start rattling them off, from the most serious to the least. If he asks any questions, answer them, but do not feel the need to go into detail. A simple, \"I did so and so,\" will suffice. Your priest is going to be very understanding. If you don't remember the exact timeframe, that's fine. If you don't remember your motivation, that's fine. All your priest cares about is that you're being as honest as possible and that your heart is in the right place. He'll talk you through everything, possibly asking about your intentions, but mainly just letting you know that God loves you, sin and all. If he has any ideas to bring you closer to God, he may suggest them at this juncture. He's there to help, after all. He will then ask you to make an Act of Contrition. That goes like this: My God, I am sorry for my sins with all my heart.In choosing to do wrong and failing to do good,I have sinned against You whom I should loveabove all things. I firmly intend, with your help,to do penance, to sin no more, andto avoid whatever leads me to sin.Our Savior Jesus Christ suffered and died for us.In his name, my God, have mercy.If you are a Roman Catholic, your act of contrition will go like this: Oh my God, I am very sorry for having offended thee. But most of all, because they offend you, my God, who is all good and deserving of all my love. I firmly resolve with the help of thy grace, to sin no more, and to avoid the near occasion of sin. Amen. Don't worry! It won't be anything huge. Take the absolution to heart -- you now have a brand new, clean slate to work with. \"Penance\" is your expression of regret and repentance, showing God that you're truly sorry and that you wish for nothing more than to be forgiven. Thanks. [/INST]]": "failed", "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Slow-test_chat0]": "failed", "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Slow-[INST] <> A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. <> You will act as a Christian, and fully summarize following text:\\nSometimes it's nice to take a minute in the pew by yourself beforehand. You have this beautiful church probably almost all to yourself. Can you feel its energy resonating through you? Can you feel the majesty of the Lord's kingdom and how you're a part of it? Take a moment to kneel and pray with your head down and hands clasped together. Reflect on your faith and how you feel currently. Think about how you've been responding to God's call and how you've been living in the light of his love. When the priest is ready for you, of course. You'll probably see him there by his lonesome or someone else walk out just before you. Sit down either across from him or behind the screen -- it's totally up to you whether or not you prefer to remain anonymous. He won't treat you any differently either way. Make the sign of the cross upon his prompt, saying, \"Bless me, Father, for I have sinned. It has been 10 years since my last confession.\" This is your standard, traditional phrasing. However, if you just sit down and say hello, that's fine, too. The priest knows what he's doing. The Byzantine Rite is a bit different. The priest may sit to your side and put his epitrachelion on your head. He may then also do the Prayer of Absolution. But the idea remains the exact same -- just go wherever he takes you. Once you sit down and you've made the sign of the cross, just sit back and follow the priest's lead. He'll ask you how long it's been since your last confession (if you don't voluntarily offer that information), how you are feeling, maybe how your faith is going, and then ask you what sins you would like to talk about with him and God. It's just a casual conversation! Do not fret. There is absolutely zero pressure on your part. Again, as long as you come there with the intention of leaving with a clean heart, you're more than welcome in the church. There is no wrong way to go about confession! This part is intimidating, but think about it this way: the priest you're talking to has probably heard just about everything before. Whatever you have to say will not blow his mind. So when he asks, start rattling them off, from the most serious to the least. If he asks any questions, answer them, but do not feel the need to go into detail. A simple, \"I did so and so,\" will suffice. Your priest is going to be very understanding. If you don't remember the exact timeframe, that's fine. If you don't remember your motivation, that's fine. All your priest cares about is that you're being as honest as possible and that your heart is in the right place. He'll talk you through everything, possibly asking about your intentions, but mainly just letting you know that God loves you, sin and all. If he has any ideas to bring you closer to God, he may suggest them at this juncture. He's there to help, after all. He will then ask you to make an Act of Contrition. That goes like this: My God, I am sorry for my sins with all my heart.In choosing to do wrong and failing to do good,I have sinned against You whom I should loveabove all things. I firmly intend, with your help,to do penance, to sin no more, andto avoid whatever leads me to sin.Our Savior Jesus Christ suffered and died for us.In his name, my God, have mercy.If you are a Roman Catholic, your act of contrition will go like this: Oh my God, I am very sorry for having offended thee. But most of all, because they offend you, my God, who is all good and deserving of all my love. I firmly resolve with the help of thy grace, to sin no more, and to avoid the near occasion of sin. Amen. Don't worry! It won't be anything huge. Take the absolution to heart -- you now have a brand new, clean slate to work with. \"Penance\" is your expression of regret and repentance, showing God that you're truly sorry and that you wish for nothing more than to be forgiven. Thanks. [/INST]]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Slow-test_chat0]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[no_add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-test_chat0]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n\\n\\n\\t\\t A lot\\t\\tof\\twhitespaces\\n!\\n\\n\\n\\t\\n\\n]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-\\n]": "failed", - "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-TinyLlama-1.1B-Chat-v1.0--Fast-test_chat0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-right_pad-sp_backend-Slow-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[no_add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string3]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string0]": "failed", - "tokenizers_test.py::test_hf_sentencepiece_tokenizers_multiple_strings[add_tokens-TinyLlama-1.1B-Chat-v1.0-left_pad-sp_backend-Slow-test_string3]": "failed" + "tokenizers_test.py::test_sentencepiece_model_tokenizer_chat[add_tokens-TinyLlama-1.1B-Chat-v1.0-sp_backend-Slow-test_chat0]": "failed" } \ No newline at end of file