{"id":3415,"date":"2025-04-28T10:51:51","date_gmt":"2025-04-28T07:51:51","guid":{"rendered":"https:\/\/factcheck.lt\/?p=3415"},"modified":"2025-05-02T09:34:52","modified_gmt":"2025-05-02T06:34:52","slug":"","status":"publish","type":"post","link":"https:\/\/factcheck.lt\/eng\/news\/nltk_openai_tiktok_content\/","title":{"rendered":"Artificial Intelligence vs. Manipulation: Comparing Approaches to Detecting Manipulative Content","raw":"Artificial Intelligence vs. Manipulation: Comparing Approaches to Detecting Manipulative Content"},"content":{"rendered":"<p>In the era of information wars and mass disinformation, automatic content analysis systems are becoming an indispensable tool for fact-checkers and media researchers. In this article, we compare two common approaches to identifying manipulative content \u2014 classical natural language processing (NLP) methods and the latest technologies based on large language models (LLM).<br \/>\nAs part of the research, a corpus of video content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> from the TikTok social network was analyzed. The analysis period was from March 20 to April 21, 2025. <a href=\"https:\/\/exolyt.com\/\">Exolyt &#8211; TikTok Social Intelligence Platform<\/a> was used for data collection. The titles, descriptions, and tags of the videos were analyzed. But the main interest is not the content itself, but how different technological approaches evaluate the same data.<\/p>\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div>\n<div class=\"grid-cols-1 grid gap-2.5 [&amp;_&gt;_*]:min-w-0 !gap-3.5\">\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Research Methodology<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">To compare the two approaches, we used a common dataset \u2014 a corpus of 12,252 videos with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong>, including titles, descriptions, and metadata. Two different algorithms were applied to the same data, which allowed us to directly compare their effectiveness, strengths, and weaknesses. The main analysis parameters included keyword extraction (tokens), frequency analysis of the most used words and phrases, assessment of emotional coloring in three categories (negative, positive, neutral), and determining the level of content manipulativeness.<\/p>\n<blockquote class=\"wp-block-quote is-style-info is-layout-flow wp-block-quote-is-layout-flow\"><p>\nNLTK (Natural Language Toolkit) is a leading open-source platform for natural language processing in Python, created in 2001 and actively developed by the community. The library provides easy-to-use interfaces for working with more than 50 text corpora and lexical resources, as well as a rich set of tools for text processing: tokenization, stemming, lemmatization, part-of-speech tagging, syntactic analysis, named entity extraction, and semantic analysis. NLTK includes extensive documentation and educational materials, making it popular among both researchers and developers who apply NLP methods to solve practical problems \u2014 from sentiment analysis and text classification to building chatbots and information retrieval systems. Thanks to its modular architecture and flexibility, NLTK continues to be one of the main tools in the arsenal of specialists in computational linguistics and text analysis, despite the emergence of new libraries focused on deep learning.<\/p><\/blockquote>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Detailed Methodology of the Two Approaches<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Classical Approach Using NLTK<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Technology<\/strong>: Open Natural Language Toolkit (NLTK) library with additional tokenization and analysis algorithms.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Data Processing<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The first stage of text preprocessing included converting text to lowercase, removing punctuation and special characters, removing numbers and extra spaces, as well as combining text fields (title, description, tags).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This was followed by tokenization \u2013 breaking text into individual words using NLTK word_tokenize, removing stop words from Russian and English languages (prepositions, conjunctions, etc.), and filtering words shorter than 3 characters.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Emotional analysis was carried out by searching for words from predefined dictionaries of emotional markers, counting the number of words in each category, and determining the dominant emotion by the maximum number of markers.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">For manipulation assessment, the formula was applied: <code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulation_score = emotion_negative * 1.5 - emotion_positive<\/code> with subsequent normalization of the indicator relative to the average value and determination of the manipulation threshold (mean + standard deviation).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The final stage was the process of forming the results, which included frequency analysis of words and bigrams (word pairs), classification of content by emotional coloring, and identification of potentially manipulative content.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Implementation Features<\/strong>: Data processing was carried out in parts to save memory, a backup tokenization system was provided in the absence of NLTK, and visualization of results was carried out using matplotlib\/plotly.<\/p>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Modern Approach Using OpenAI Models<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Technology<\/strong>: OpenAI API with GPT-4o-mini model<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Data Processing<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The initial stage included query formation \u2013 combining text fields (title, description, tags) and sending the full text without preprocessing.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This was followed by working with a system prompt for the model, which contained instructions for text analysis, keyword extraction, emotional coloring assessment, and determining the level of manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Processing the model&#8217;s response involved extracting structured data from the JSON response, saving tokens, emotional ratings, and manipulativeness indicator, as well as determining the dominant emotion based on the model&#8217;s ratings.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The final stage \u2013 aggregation of results included counting the frequency of tokens and bigrams, calculating average indicators for emotional categories, determining the manipulation threshold, and identifying content with a high level of manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Implementation Features<\/strong>: A structured response format (JSON) was used, pauses between requests were provided to comply with API limits, and error handling mechanisms with return to neutral values in case of failures.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Comparative Analysis of Results<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Keywords and Frequency Analysis<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">Both methods identified similar keywords in the content, which indicates a basic level of consistency. The word clouds from the reports show that the word &#8220;belarus&#8221; is the most frequent in both cases, followed by &#8220;news&#8221;, &#8220;recommendations&#8221;, &#8220;minsk&#8221;, &#8220;lukashenko&#8221;.<\/p>\n<p>NLTK:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3419\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud.png\" alt=\"\" width=\"608\" height=\"312\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud.png 1716w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud-300x154.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud-1024x526.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud-768x395.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud-1536x789.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud-778x400.png 778w\" sizes=\"(max-width: 608px) 100vw, 608px\" \/><meta itemprop=\"width\" content=\"608\"><meta itemprop=\"height\" content=\"312\"><\/span><\/div>\n<p>OpenAI:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3420\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds.png\" alt=\"\" width=\"596\" height=\"307\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds.png 1716w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds-300x155.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds-1024x528.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds-768x396.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds-1536x792.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds-776x400.png 776w\" sizes=\"(max-width: 596px) 100vw, 596px\" \/><meta itemprop=\"width\" content=\"596\"><meta itemprop=\"height\" content=\"307\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\">Notably, the visual representation of word clouds looks very similar in both approaches, despite the difference in methodology. This may be explained by the fact that the word cloud visualization algorithm was identical in both scripts, and the main frequently occurring words indeed coincide. This coincidence confirms the basic reliability of both approaches in highlighting key content themes, even with significant differences in assessing emotional coloring and manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">However, on closer examination of frequency histograms, differences are noticeable:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the NLTK method, the word &#8220;belarus&#8221; occurs about 14,025 times, and the next word &#8220;news&#8221; \u2014 3,189 times. In the OpenAI method, the word &#8220;belarus&#8221; occurs about 8,258 times, &#8220;news&#8221; \u2014 2,652 times.<\/p>\n<p>NLTK:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3422\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20.png\" alt=\"\" width=\"679\" height=\"495\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20.png 1737w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20-300x219.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20-1024x746.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20-768x560.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20-1536x1120.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20-549x400.png 549w\" sizes=\"(max-width: 679px) 100vw, 679px\" \/><meta itemprop=\"width\" content=\"679\"><meta itemprop=\"height\" content=\"495\"><\/span><br \/>\nOpenAI:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3423\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20.png\" alt=\"\" width=\"664\" height=\"480\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20.png 1761w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20-300x217.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20-1024x740.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20-768x555.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20-1536x1109.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20-554x400.png 554w\" sizes=\"(max-width: 664px) 100vw, 664px\" \/><meta itemprop=\"width\" content=\"664\"><meta itemprop=\"height\" content=\"480\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\">These differences are explained by different principles of tokenization and keyword extraction. The OpenAI model seeks to highlight more meaningful words with information load, while the NLTK method works with the formal frequency of occurrence.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the top 15 word pairs, there are also significant differences: the NLTK method highlights pairs: &#8220;brest minsk&#8221; (385), &#8220;economy politics&#8221; (371), &#8220;politics MFA&#8221; (369), while the OpenAI method highlights: &#8220;belarus belarus&#8221; (1,723), &#8220;belarus lukashenko&#8221; (615), &#8220;minsk belarus&#8221; (527).<\/p>\n<p>NLTK:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3424\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram.png\" alt=\"\" width=\"661\" height=\"432\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram.png 1737w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram-300x196.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram-1024x669.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram-768x501.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram-1536x1003.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram-613x400.png 613w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram-335x220.png 335w\" sizes=\"(max-width: 661px) 100vw, 661px\" \/><meta itemprop=\"width\" content=\"661\"><meta itemprop=\"height\" content=\"432\"><\/span><br \/>\nOpenAI:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3425\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram.png\" alt=\"\" width=\"717\" height=\"488\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram.png 1755w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram-300x204.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram-1024x697.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram-768x523.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram-1536x1045.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram-588x400.png 588w\" sizes=\"(max-width: 717px) 100vw, 717px\" \/><meta itemprop=\"width\" content=\"717\"><meta itemprop=\"height\" content=\"488\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\">This demonstrates different approaches to forming bigrams: OpenAI takes into account the proximity of words in the text, while the NLTK method analyzes thematic connectivity rather.<\/p>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Striking Differences in Emotional Coloring Assessment<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">The most dramatic divergence between the two systems concerns the assessment of the emotional coloring of content. When we analyzed the same dataset of videos with the hashtag <strong>#belarus<\/strong>, the results were distributed as follows:<\/p>\n<p>NLTK:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3427\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions.png\" alt=\"\" width=\"507\" height=\"340\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions.png 1674w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions-300x201.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions-1024x686.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions-768x515.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions-1536x1030.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions-597x400.png 597w\" sizes=\"(max-width: 507px) 100vw, 507px\" \/><meta itemprop=\"width\" content=\"507\"><meta itemprop=\"height\" content=\"340\"><\/span><\/div>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK method<\/strong> showed an extremely unbalanced distribution with a predominance of negative assessment:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n<li class=\"whitespace-normal break-words\">96.3% negative (11,796 videos)<\/li>\n<li class=\"whitespace-normal break-words\">3.1% positive (388 videos)<\/li>\n<li class=\"whitespace-normal break-words\">0.6% neutral (68 videos)<\/li>\n<\/ul>\n<p><span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3428\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions.png\" alt=\"\" width=\"513\" height=\"323\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions.png 1743w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions-300x189.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions-1024x645.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions-768x484.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions-1536x968.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions-635x400.png 635w\" sizes=\"(max-width: 513px) 100vw, 513px\" \/><meta itemprop=\"width\" content=\"513\"><meta itemprop=\"height\" content=\"323\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\">However, <strong>OpenAI method<\/strong> gave a completely different, more balanced picture:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n<li class=\"whitespace-normal break-words\">51.5% neutral (6,308 videos)<\/li>\n<li class=\"whitespace-normal break-words\">30.2% positive (3,702 videos)<\/li>\n<li class=\"whitespace-normal break-words\">18.3% negative (2,236 videos)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">This discrepancy can be explained by different approaches to determining emotional coloring. The NLTK approach relies on dictionaries of emotional markers and automatically classifies most political content as negative due to the presence of certain keywords, without taking into account their context. In turn, the OpenAI approach takes into account a broader context and is able to identify neutral informational messages even in the presence of political topics.<\/p>\n<p>NLTK:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3429\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average.png\" alt=\"\" width=\"495\" height=\"329\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average.png 1695w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average-300x199.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average-1024x680.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average-768x510.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average-1536x1019.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average-603x400.png 603w\" sizes=\"(max-width: 495px) 100vw, 495px\" \/><meta itemprop=\"width\" content=\"495\"><meta itemprop=\"height\" content=\"329\"><\/span><br \/>\nOpenAI:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3430\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average.png\" alt=\"\" width=\"514\" height=\"340\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average.png 1728w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average-300x198.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average-1024x677.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average-768x508.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average-1536x1016.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average-605x400.png 605w\" sizes=\"(max-width: 514px) 100vw, 514px\" \/><meta itemprop=\"width\" content=\"514\"><meta itemprop=\"height\" content=\"340\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\">It is also interesting to consider the average emotional coloring scores, which demonstrate different scales:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n<li class=\"whitespace-normal break-words\">In NLTK method: negative &#8211; 0.03, positive &#8211; 0.05, neutral &#8211; 0.01<\/li>\n<li class=\"whitespace-normal break-words\">In OpenAI method: neutral &#8211; 5.01, positive &#8211; 3.32, negative &#8211; 1.74<\/li>\n<\/ul>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Assessment of Content Manipulativeness<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">In assessing content manipulativeness, the methods also demonstrated significant differences:<\/p>\n<p>NLTK:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3431\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation.png\" alt=\"\" width=\"570\" height=\"366\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation.png 1722w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation-300x192.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation-1024x657.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation-768x492.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation-1536x985.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation-624x400.png 624w\" sizes=\"(max-width: 570px) 100vw, 570px\" \/><meta itemprop=\"width\" content=\"570\"><meta itemprop=\"height\" content=\"366\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK method<\/strong> showed a unimodal distribution with concentration of most assessments in the area of low values (1-2 on a scale from 0 to 10) and only a small amount of content with high values of manipulativeness. This is explained by the fact that the method uses a simple mathematical formula (<code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulativeness = negative*1.5 - positive<\/code>), which gives an unambiguous correlation with emotional coloring.<\/p>\n<p>OpenAI:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3432\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation.png\" alt=\"\" width=\"581\" height=\"373\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation.png 1755w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation-300x192.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation-1024x656.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation-768x492.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation-1536x985.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation-624x400.png 624w\" sizes=\"(max-width: 581px) 100vw, 581px\" \/><meta itemprop=\"width\" content=\"581\"><meta itemprop=\"height\" content=\"373\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>OpenAI method<\/strong> demonstrated a multimodal distribution with several peaks in the area of values 5.0, 6.0, and 7.0 on the manipulativeness scale, with a manipulation threshold of about 7.20. This reflects a more complex approach to manipulation analysis, taking into account not only emotional coloring, but also various rhetorical techniques, logical manipulations, and other subtle aspects of influence.<\/p>\n<p>NLTK:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3434\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions.png\" alt=\"\" width=\"484\" height=\"361\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions.png 1737w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions-300x223.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions-1024x762.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions-768x572.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions-1536x1143.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions-537x400.png 537w\" sizes=\"(max-width: 484px) 100vw, 484px\" \/><meta itemprop=\"width\" content=\"484\"><meta itemprop=\"height\" content=\"361\"><\/span><br \/>\nOpenAI:<br \/>\n<span itemprop=\"image\" itemscope itemtype=\"https:\/\/schema.org\/ImageObject\"><img itemprop=\"url image\" loading=\"lazy\" decoding=\"async\" class=\"alignnone  wp-image-3433\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions.png\" alt=\"\" width=\"485\" height=\"356\"  srcset=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions.png 1740w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions-300x220.png 300w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions-1024x752.png 1024w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions-768x564.png 768w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions-1536x1128.png 1536w, https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions-545x400.png 545w\" sizes=\"(max-width: 485px) 100vw, 485px\" \/><meta itemprop=\"width\" content=\"485\"><meta itemprop=\"height\" content=\"356\"><\/span><\/p>\n<p class=\"whitespace-pre-wrap break-words\">The emotional profile of potentially manipulative content also differs:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n<li class=\"whitespace-normal break-words\">According to NLTK method: predominance of negative (1.06), very low ratings of neutrality (0.07) and positive (0.02)<\/li>\n<li class=\"whitespace-normal break-words\">According to OpenAI method: high ratings of negative (6.46), medium ratings of neutrality (2.55) and low positive (1.75)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">These differences clearly demonstrate how differently the two methods approach the identification of manipulativeness in content, which has serious implications for the practical application of these tools in fact-checking.<\/p>\n<\/div>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Interpretation of Results: What Did the Two Different Methods Show?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Such significant discrepancies in the results of the two methods require careful analysis and interpretation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different understanding of text &#8220;emotionality&#8221; is manifested in the fact that the NLTK approach determines emotional coloring based on the presence of specific marker words from a predefined dictionary, without taking into account the context of their use. The word &#8220;war&#8221; is automatically classified as negative, regardless of context, which leads to an overestimation of negativity in the analysis of political topics. The OpenAI approach evaluates emotional coloring based on a more complex understanding of the text, is able to distinguish nuances and shades of meaning in a specific context.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">An example from our data corpus: &#8220;Belarus: regional news, political situation, analytical materials&#8221;. NLTK classifies this text as negative due to the presence of political topics, while OpenAI can classify it as neutral, considering the informational, rather than evaluative nature of the content.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different concepts of &#8220;manipulativeness&#8221; are manifested in the fact that the NLTK approach defines manipulativeness through a simplified mathematical formula based on the quantitative ratio of emotionally colored words. The OpenAI approach evaluates manipulativeness based on a more complex analysis that takes into account rhetorical techniques, logical structures, and other signs of manipulation that a simple dictionary approach may not capture.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The political context of content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> plays a significant role in such a dramatic divergence of results. NLTK, relying on dictionaries of emotional markers, tends to classify political topics as negative due to frequently encountered terms related to conflicts, power, and confrontation. OpenAI, with a more developed understanding of context, is able to distinguish neutral informational coverage from emotionally colored propaganda.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Interpretation of Results: What Did the Two Different Methods Show?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Such significant discrepancies in the results of the two methods require careful analysis and interpretation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different understanding of text &#8220;emotionality&#8221; is manifested in the fact that the NLTK approach determines emotional coloring based on the presence of specific marker words from a predefined dictionary. The word &#8220;war&#8221; is automatically classified as negative, &#8220;victory&#8221; \u2014 as positive, regardless of context. The OpenAI approach evaluates emotional coloring based on a comprehensive understanding of the text, including context, subtext, and hidden meanings. The phrase &#8220;another brilliant victory&#8221; can be recognized as irony and classified as negative.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">An example from our data corpus: &#8220;Belarus: regional news, political situation, analytical materials&#8221;. NLTK classifies this text as neutral, as it has no obvious emotional markers. OpenAI can classify it as potentially negative, considering the context of political news in the current situation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different concepts of &#8220;manipulativeness&#8221; are manifested in the fact that the NLTK approach defines manipulativeness through a mathematical formula based on the ratio of negative and positive words. This approach assumes that manipulative content is predominantly negative content. The OpenAI approach evaluates manipulativeness based on a complex understanding of rhetorical techniques, logical errors, emotional pressure, distortion of facts, and other signs of manipulation that may be present even in formally positive or neutral text.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The political context of content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> may play a significant role in such a dramatic divergence of results. A large language model trained on a huge corpus of texts, including news and analytical materials, can &#8220;understand&#8221; the complex political context and capture hidden meanings and subtexts related to the coverage of the political situation in the region.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">What This Means for Fact-checking and Media Literacy<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">The identified discrepancies between the two approaches have serious implications for the work of fact-checkers and media researchers.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Methodological challenges include the problem of the &#8220;gold standard&#8221;, that is, the question of which method is closer to the truth, and it is quite likely that the truth is somewhere in the middle or requires a fundamentally different approach; subjectivity of assessments, when even advanced algorithms reflect subjective ideas about what is considered manipulation and what is legitimate persuasion; contextual dependence, which manifests itself in the fact that the assessment of manipulativeness depends heavily on the cultural, social, and political context, which makes it difficult to create universal algorithms.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Based on our research, we recommend that fact-checking organizations apply triangulation of methods, using several different algorithmic approaches to verify the consistency of results; adjust threshold values, calibrating the threshold of &#8220;manipulativeness&#8221; based on expert assessment of a sample of content; implement human control, since automatic systems should act as a decision support tool for experts, not their replacement; take into account the strengths of different approaches, taking into account that the NLTK approach gives a more balanced assessment of emotional coloring, and the OpenAI approach can be useful for identifying hidden manipulative techniques; adapt technologies to the local context, developing specialized dictionaries of emotional markers for specific topics and languages; ensure transparency of methodology, publicly disclosing the analysis methods used and their limitations when publishing fact-checking results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The results of our study emphasize the need to educate a wide audience on recognizing various types of manipulations that go beyond explicitly negative emotional coloring; developing critical thinking and media content analysis skills; understanding that automatic analysis systems, including advanced AI models, have their limitations and biases.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Technical Evaluation of Two Approaches: Cost, Scalability, Accessibility<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">For making informed decisions about technology implementation, it is important to consider not only their accuracy but also practical aspects of use.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of cost and resources, the NLTK approach is completely free, uses only open-source software, works locally without internet connection, requires moderate computing resources, and processing 12,252 videos took about 20 minutes. The OpenAI approach requires payment for API requests (approximate cost of analyzing our corpus ~$100-150), depends on a stable internet connection, creates minimal load on local resources, and processing the same amount of data took about 1-2 hours, taking into account API delays.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of scalability and performance, the NLTK approach easily scales to process large volumes of data, its performance can be increased through parallel processing, and processing speed is directly proportional to available computing resources. The OpenAI approach is limited by quotas and API speed, its scaling increases cost in proportion to the volume of data, requires request queue management and error handling.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Flexibility and customization in the NLTK approach is manifested in complete transparency and customizability, the ability to modify dictionaries of emotional markers, change tokenization algorithms and evaluation formulas, but requires expertise in Python and NLP for significant modifications. The OpenAI approach offers limited customization options through prompt engineering, the internal workings of the model are not transparent (black box), the model is regularly updated by the provider, which can affect results, but does not require deep technical expertise for basic use.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of accessibility and infrastructure requirements, the NLTK approach works on any computer with Python, does not require specialized equipment, can be deployed in an isolated network, and is suitable for processing confidential data. The OpenAI approach requires a constant internet connection, data is sent to third-party servers, may be limited by geopolitical factors, and is not suitable for processing strictly confidential information.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Practical Application Scenarios: When Is Each Approach Better<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Based on our comparative analysis, we can identify optimal usage scenarios for each approach.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The OpenAI approach is optimal for a more balanced assessment of the emotional coloring of content, especially when working with politically colored topics; for in-depth analysis of complex content, when investigating sophisticated information campaigns, for identifying hidden manipulations and subtexts, when working with content that requires understanding of cultural context; for organizations with limited technical expertise, when there are no in-house NLP specialists, when there is a need to quickly launch an analytical system.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The NLTK approach is optimal for primary screening of large volumes of data to identify potentially negative content that requires further analysis; for work in conditions of limited network access, in regions with unstable internet connection, in organizations with strict information security policies, when working with confidential or sensitive data; for creating specialized solutions when precise customization for a specific topic or language is required, when full control over the algorithm is needed, for integration into existing monitoring systems. It should be noted that this method tends to classify most political content as negative.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">A hybrid approach is recommended for professional fact-checking organizations \u2013 using NLTK for primary identification of potentially problematic content, followed by deeper analysis using OpenAI for a more balanced assessment, culminating in expert evaluation for final conclusions and publications; for research centers and analytical agencies \u2013 comparative analysis of results from different approaches, combining quantitative and qualitative methods, developing new metrics and methodologies based on best practices from both approaches, in educational projects on media literacy.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">A hybrid approach is recommended for professional fact-checking organizations \u2013 NLTK for primary screening and selection of suspicious content, OpenAI for in-depth analysis of selected materials, expert evaluation for final conclusions and publications; for research centers and analytical agencies \u2013 comparative analysis of results from different approaches, combining quantitative and qualitative methods, developing new metrics and methodologies based on best practices from both approaches.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Conclusion and Prospects for the Development of Automated Media Content Analysis<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Our research clearly demonstrates that automated analysis of media content is at a crossroads of traditional algorithmic approaches and new possibilities of artificial intelligence. Each method has its strengths and weaknesses, and there is no perfect solution suitable for all tasks.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The dramatic difference in the results of evaluating the same data corpus by two different methods emphasizes the need for a critical attitude towards automated analysis tools. It is particularly illustrative that the NLTK method classified the vast majority of content (96.3%) as negative, while the OpenAI method gave a more balanced assessment with a predominance of neutral content (51.5%).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This discrepancy demonstrates how strongly the results of analysis can depend on the chosen method, which has serious implications for media space researchers and fact-checkers. When using automated systems for monitoring media content, it is necessary to be aware of the possible bias of algorithms and take it into account when interpreting results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">No algorithm can replace expert evaluation and critical thinking, but the competent application of technology can significantly increase the efficiency of fact-checkers and media researchers. The most productive approach seems to be combining different analysis methods with subsequent expert evaluation of results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the coming years, we are likely to see the development of several directions: specialized models for media content analysis, trained on examples of manipulative techniques; local versions of large language models that do not require sending data to external servers; interactive tools combining automatic analysis with expert evaluation; educational platforms using AI to teach citizens media literacy.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Regardless of technological progress, the key success factor will remain human expertise, critical thinking, and commitment to high ethical standards in combating disinformation and manipulation. Automated systems should be viewed as decision support tools, not as a replacement for expert evaluation.<\/p>\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div><\/div>\n<\/div>\n<p><i>This publication was developed by a research team under the leadership of Mikhail Doroshevich, PhD.<\/i><\/p>\n","protected":false,"raw":"In the era of information wars and mass disinformation, automatic content analysis systems are becoming an indispensable tool for fact-checkers and media researchers. In this article, we compare two common approaches to identifying manipulative content \u2014 classical natural language processing (NLP) methods and the latest technologies based on large language models (LLM).\nAs part of the research, a corpus of video content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> from the TikTok social network was analyzed. The analysis period was from March 20 to April 21, 2025. <a href=\"https:\/\/exolyt.com\/\">Exolyt - TikTok Social Intelligence Platform<\/a> was used for data collection. The titles, descriptions, and tags of the videos were analyzed. But the main interest is not the content itself, but how different technological approaches evaluate the same data.\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div>\n<div class=\"grid-cols-1 grid gap-2.5 [&amp;_&gt;_*]:min-w-0 !gap-3.5\">\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Research Methodology<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">To compare the two approaches, we used a common dataset \u2014 a corpus of 12,252 videos with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong>, including titles, descriptions, and metadata. Two different algorithms were applied to the same data, which allowed us to directly compare their effectiveness, strengths, and weaknesses. The main analysis parameters included keyword extraction (tokens), frequency analysis of the most used words and phrases, assessment of emotional coloring in three categories (negative, positive, neutral), and determining the level of content manipulativeness.<\/p>\n\n<blockquote class=\"wp-block-quote is-style-info is-layout-flow wp-block-quote-is-layout-flow\">\nNLTK (Natural Language Toolkit) is a leading open-source platform for natural language processing in Python, created in 2001 and actively developed by the community. The library provides easy-to-use interfaces for working with more than 50 text corpora and lexical resources, as well as a rich set of tools for text processing: tokenization, stemming, lemmatization, part-of-speech tagging, syntactic analysis, named entity extraction, and semantic analysis. NLTK includes extensive documentation and educational materials, making it popular among both researchers and developers who apply NLP methods to solve practical problems \u2014 from sentiment analysis and text classification to building chatbots and information retrieval systems. Thanks to its modular architecture and flexibility, NLTK continues to be one of the main tools in the arsenal of specialists in computational linguistics and text analysis, despite the emergence of new libraries focused on deep learning.<\/blockquote>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Detailed Methodology of the Two Approaches<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Classical Approach Using NLTK<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Technology<\/strong>: Open Natural Language Toolkit (NLTK) library with additional tokenization and analysis algorithms.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Data Processing<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The first stage of text preprocessing included converting text to lowercase, removing punctuation and special characters, removing numbers and extra spaces, as well as combining text fields (title, description, tags).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This was followed by tokenization \u2013 breaking text into individual words using NLTK word_tokenize, removing stop words from Russian and English languages (prepositions, conjunctions, etc.), and filtering words shorter than 3 characters.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Emotional analysis was carried out by searching for words from predefined dictionaries of emotional markers, counting the number of words in each category, and determining the dominant emotion by the maximum number of markers.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">For manipulation assessment, the formula was applied: <code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulation_score = emotion_negative * 1.5 - emotion_positive<\/code> with subsequent normalization of the indicator relative to the average value and determination of the manipulation threshold (mean + standard deviation).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The final stage was the process of forming the results, which included frequency analysis of words and bigrams (word pairs), classification of content by emotional coloring, and identification of potentially manipulative content.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Implementation Features<\/strong>: Data processing was carried out in parts to save memory, a backup tokenization system was provided in the absence of NLTK, and visualization of results was carried out using matplotlib\/plotly.<\/p>\n\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Modern Approach Using OpenAI Models<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Technology<\/strong>: OpenAI API with GPT-4o-mini model<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Data Processing<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The initial stage included query formation \u2013 combining text fields (title, description, tags) and sending the full text without preprocessing.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This was followed by working with a system prompt for the model, which contained instructions for text analysis, keyword extraction, emotional coloring assessment, and determining the level of manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Processing the model's response involved extracting structured data from the JSON response, saving tokens, emotional ratings, and manipulativeness indicator, as well as determining the dominant emotion based on the model's ratings.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The final stage \u2013 aggregation of results included counting the frequency of tokens and bigrams, calculating average indicators for emotional categories, determining the manipulation threshold, and identifying content with a high level of manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Implementation Features<\/strong>: A structured response format (JSON) was used, pauses between requests were provided to comply with API limits, and error handling mechanisms with return to neutral values in case of failures.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Comparative Analysis of Results<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Keywords and Frequency Analysis<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">Both methods identified similar keywords in the content, which indicates a basic level of consistency. The word clouds from the reports show that the word \"belarus\" is the most frequent in both cases, followed by \"news\", \"recommendations\", \"minsk\", \"lukashenko\".<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3419\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud.png\" alt=\"\" width=\"608\" height=\"312\" \/><\/div>\nOpenAI:\n<img class=\"alignnone  wp-image-3420\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds.png\" alt=\"\" width=\"596\" height=\"307\" \/>\n<p class=\"whitespace-pre-wrap break-words\">Notably, the visual representation of word clouds looks very similar in both approaches, despite the difference in methodology. This may be explained by the fact that the word cloud visualization algorithm was identical in both scripts, and the main frequently occurring words indeed coincide. This coincidence confirms the basic reliability of both approaches in highlighting key content themes, even with significant differences in assessing emotional coloring and manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">However, on closer examination of frequency histograms, differences are noticeable:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the NLTK method, the word \"belarus\" occurs about 14,025 times, and the next word \"news\" \u2014 3,189 times. In the OpenAI method, the word \"belarus\" occurs about 8,258 times, \"news\" \u2014 2,652 times.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3422\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20.png\" alt=\"\" width=\"679\" height=\"495\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3423\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20.png\" alt=\"\" width=\"664\" height=\"480\" \/>\n<p class=\"whitespace-pre-wrap break-words\">These differences are explained by different principles of tokenization and keyword extraction. The OpenAI model seeks to highlight more meaningful words with information load, while the NLTK method works with the formal frequency of occurrence.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the top 15 word pairs, there are also significant differences: the NLTK method highlights pairs: \"brest minsk\" (385), \"economy politics\" (371), \"politics MFA\" (369), while the OpenAI method highlights: \"belarus belarus\" (1,723), \"belarus lukashenko\" (615), \"minsk belarus\" (527).<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3424\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram.png\" alt=\"\" width=\"661\" height=\"432\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3425\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram.png\" alt=\"\" width=\"717\" height=\"488\" \/>\n<p class=\"whitespace-pre-wrap break-words\">This demonstrates different approaches to forming bigrams: OpenAI takes into account the proximity of words in the text, while the NLTK method analyzes thematic connectivity rather.<\/p>\n\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Striking Differences in Emotional Coloring Assessment<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">The most dramatic divergence between the two systems concerns the assessment of the emotional coloring of content. When we analyzed the same dataset of videos with the hashtag <strong>#belarus<\/strong>, the results were distributed as follows:<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3427\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions.png\" alt=\"\" width=\"507\" height=\"340\" \/><\/div>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK method<\/strong> showed an extremely unbalanced distribution with a predominance of negative assessment:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">96.3% negative (11,796 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">3.1% positive (388 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">0.6% neutral (68 videos)<\/li>\n<\/ul>\n<img class=\"alignnone  wp-image-3428\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions.png\" alt=\"\" width=\"513\" height=\"323\" \/>\n<p class=\"whitespace-pre-wrap break-words\">However, <strong>OpenAI method<\/strong> gave a completely different, more balanced picture:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">51.5% neutral (6,308 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">30.2% positive (3,702 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">18.3% negative (2,236 videos)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">This discrepancy can be explained by different approaches to determining emotional coloring. The NLTK approach relies on dictionaries of emotional markers and automatically classifies most political content as negative due to the presence of certain keywords, without taking into account their context. In turn, the OpenAI approach takes into account a broader context and is able to identify neutral informational messages even in the presence of political topics.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3429\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average.png\" alt=\"\" width=\"495\" height=\"329\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3430\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average.png\" alt=\"\" width=\"514\" height=\"340\" \/>\n<p class=\"whitespace-pre-wrap break-words\">It is also interesting to consider the average emotional coloring scores, which demonstrate different scales:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">In NLTK method: negative - 0.03, positive - 0.05, neutral - 0.01<\/li>\n \t<li class=\"whitespace-normal break-words\">In OpenAI method: neutral - 5.01, positive - 3.32, negative - 1.74<\/li>\n<\/ul>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Assessment of Content Manipulativeness<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">In assessing content manipulativeness, the methods also demonstrated significant differences:<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3431\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation.png\" alt=\"\" width=\"570\" height=\"366\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK method<\/strong> showed a unimodal distribution with concentration of most assessments in the area of low values (1-2 on a scale from 0 to 10) and only a small amount of content with high values of manipulativeness. This is explained by the fact that the method uses a simple mathematical formula (<code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulativeness = negative*1.5 - positive<\/code>), which gives an unambiguous correlation with emotional coloring.<\/p>\nOpenAI:\n<img class=\"alignnone  wp-image-3432\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation.png\" alt=\"\" width=\"581\" height=\"373\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>OpenAI method<\/strong> demonstrated a multimodal distribution with several peaks in the area of values 5.0, 6.0, and 7.0 on the manipulativeness scale, with a manipulation threshold of about 7.20. This reflects a more complex approach to manipulation analysis, taking into account not only emotional coloring, but also various rhetorical techniques, logical manipulations, and other subtle aspects of influence.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3434\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions.png\" alt=\"\" width=\"484\" height=\"361\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3433\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions.png\" alt=\"\" width=\"485\" height=\"356\" \/>\n<p class=\"whitespace-pre-wrap break-words\">The emotional profile of potentially manipulative content also differs:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">According to NLTK method: predominance of negative (1.06), very low ratings of neutrality (0.07) and positive (0.02)<\/li>\n \t<li class=\"whitespace-normal break-words\">According to OpenAI method: high ratings of negative (6.46), medium ratings of neutrality (2.55) and low positive (1.75)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">These differences clearly demonstrate how differently the two methods approach the identification of manipulativeness in content, which has serious implications for the practical application of these tools in fact-checking.<\/p>\n\n<\/div>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Interpretation of Results: What Did the Two Different Methods Show?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Such significant discrepancies in the results of the two methods require careful analysis and interpretation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different understanding of text \"emotionality\" is manifested in the fact that the NLTK approach determines emotional coloring based on the presence of specific marker words from a predefined dictionary, without taking into account the context of their use. The word \"war\" is automatically classified as negative, regardless of context, which leads to an overestimation of negativity in the analysis of political topics. The OpenAI approach evaluates emotional coloring based on a more complex understanding of the text, is able to distinguish nuances and shades of meaning in a specific context.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">An example from our data corpus: \"Belarus: regional news, political situation, analytical materials\". NLTK classifies this text as negative due to the presence of political topics, while OpenAI can classify it as neutral, considering the informational, rather than evaluative nature of the content.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different concepts of \"manipulativeness\" are manifested in the fact that the NLTK approach defines manipulativeness through a simplified mathematical formula based on the quantitative ratio of emotionally colored words. The OpenAI approach evaluates manipulativeness based on a more complex analysis that takes into account rhetorical techniques, logical structures, and other signs of manipulation that a simple dictionary approach may not capture.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The political context of content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> plays a significant role in such a dramatic divergence of results. NLTK, relying on dictionaries of emotional markers, tends to classify political topics as negative due to frequently encountered terms related to conflicts, power, and confrontation. OpenAI, with a more developed understanding of context, is able to distinguish neutral informational coverage from emotionally colored propaganda.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Interpretation of Results: What Did the Two Different Methods Show?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Such significant discrepancies in the results of the two methods require careful analysis and interpretation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different understanding of text \"emotionality\" is manifested in the fact that the NLTK approach determines emotional coloring based on the presence of specific marker words from a predefined dictionary. The word \"war\" is automatically classified as negative, \"victory\" \u2014 as positive, regardless of context. The OpenAI approach evaluates emotional coloring based on a comprehensive understanding of the text, including context, subtext, and hidden meanings. The phrase \"another brilliant victory\" can be recognized as irony and classified as negative.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">An example from our data corpus: \"Belarus: regional news, political situation, analytical materials\". NLTK classifies this text as neutral, as it has no obvious emotional markers. OpenAI can classify it as potentially negative, considering the context of political news in the current situation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different concepts of \"manipulativeness\" are manifested in the fact that the NLTK approach defines manipulativeness through a mathematical formula based on the ratio of negative and positive words. This approach assumes that manipulative content is predominantly negative content. The OpenAI approach evaluates manipulativeness based on a complex understanding of rhetorical techniques, logical errors, emotional pressure, distortion of facts, and other signs of manipulation that may be present even in formally positive or neutral text.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The political context of content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> may play a significant role in such a dramatic divergence of results. A large language model trained on a huge corpus of texts, including news and analytical materials, can \"understand\" the complex political context and capture hidden meanings and subtexts related to the coverage of the political situation in the region.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">What This Means for Fact-checking and Media Literacy<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">The identified discrepancies between the two approaches have serious implications for the work of fact-checkers and media researchers.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Methodological challenges include the problem of the \"gold standard\", that is, the question of which method is closer to the truth, and it is quite likely that the truth is somewhere in the middle or requires a fundamentally different approach; subjectivity of assessments, when even advanced algorithms reflect subjective ideas about what is considered manipulation and what is legitimate persuasion; contextual dependence, which manifests itself in the fact that the assessment of manipulativeness depends heavily on the cultural, social, and political context, which makes it difficult to create universal algorithms.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Based on our research, we recommend that fact-checking organizations apply triangulation of methods, using several different algorithmic approaches to verify the consistency of results; adjust threshold values, calibrating the threshold of \"manipulativeness\" based on expert assessment of a sample of content; implement human control, since automatic systems should act as a decision support tool for experts, not their replacement; take into account the strengths of different approaches, taking into account that the NLTK approach gives a more balanced assessment of emotional coloring, and the OpenAI approach can be useful for identifying hidden manipulative techniques; adapt technologies to the local context, developing specialized dictionaries of emotional markers for specific topics and languages; ensure transparency of methodology, publicly disclosing the analysis methods used and their limitations when publishing fact-checking results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The results of our study emphasize the need to educate a wide audience on recognizing various types of manipulations that go beyond explicitly negative emotional coloring; developing critical thinking and media content analysis skills; understanding that automatic analysis systems, including advanced AI models, have their limitations and biases.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Technical Evaluation of Two Approaches: Cost, Scalability, Accessibility<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">For making informed decisions about technology implementation, it is important to consider not only their accuracy but also practical aspects of use.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of cost and resources, the NLTK approach is completely free, uses only open-source software, works locally without internet connection, requires moderate computing resources, and processing 12,252 videos took about 20 minutes. The OpenAI approach requires payment for API requests (approximate cost of analyzing our corpus ~$100-150), depends on a stable internet connection, creates minimal load on local resources, and processing the same amount of data took about 1-2 hours, taking into account API delays.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of scalability and performance, the NLTK approach easily scales to process large volumes of data, its performance can be increased through parallel processing, and processing speed is directly proportional to available computing resources. The OpenAI approach is limited by quotas and API speed, its scaling increases cost in proportion to the volume of data, requires request queue management and error handling.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Flexibility and customization in the NLTK approach is manifested in complete transparency and customizability, the ability to modify dictionaries of emotional markers, change tokenization algorithms and evaluation formulas, but requires expertise in Python and NLP for significant modifications. The OpenAI approach offers limited customization options through prompt engineering, the internal workings of the model are not transparent (black box), the model is regularly updated by the provider, which can affect results, but does not require deep technical expertise for basic use.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of accessibility and infrastructure requirements, the NLTK approach works on any computer with Python, does not require specialized equipment, can be deployed in an isolated network, and is suitable for processing confidential data. The OpenAI approach requires a constant internet connection, data is sent to third-party servers, may be limited by geopolitical factors, and is not suitable for processing strictly confidential information.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Practical Application Scenarios: When Is Each Approach Better<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Based on our comparative analysis, we can identify optimal usage scenarios for each approach.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The OpenAI approach is optimal for a more balanced assessment of the emotional coloring of content, especially when working with politically colored topics; for in-depth analysis of complex content, when investigating sophisticated information campaigns, for identifying hidden manipulations and subtexts, when working with content that requires understanding of cultural context; for organizations with limited technical expertise, when there are no in-house NLP specialists, when there is a need to quickly launch an analytical system.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The NLTK approach is optimal for primary screening of large volumes of data to identify potentially negative content that requires further analysis; for work in conditions of limited network access, in regions with unstable internet connection, in organizations with strict information security policies, when working with confidential or sensitive data; for creating specialized solutions when precise customization for a specific topic or language is required, when full control over the algorithm is needed, for integration into existing monitoring systems. It should be noted that this method tends to classify most political content as negative.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">A hybrid approach is recommended for professional fact-checking organizations \u2013 using NLTK for primary identification of potentially problematic content, followed by deeper analysis using OpenAI for a more balanced assessment, culminating in expert evaluation for final conclusions and publications; for research centers and analytical agencies \u2013 comparative analysis of results from different approaches, combining quantitative and qualitative methods, developing new metrics and methodologies based on best practices from both approaches, in educational projects on media literacy.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">A hybrid approach is recommended for professional fact-checking organizations \u2013 NLTK for primary screening and selection of suspicious content, OpenAI for in-depth analysis of selected materials, expert evaluation for final conclusions and publications; for research centers and analytical agencies \u2013 comparative analysis of results from different approaches, combining quantitative and qualitative methods, developing new metrics and methodologies based on best practices from both approaches.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Conclusion and Prospects for the Development of Automated Media Content Analysis<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Our research clearly demonstrates that automated analysis of media content is at a crossroads of traditional algorithmic approaches and new possibilities of artificial intelligence. Each method has its strengths and weaknesses, and there is no perfect solution suitable for all tasks.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The dramatic difference in the results of evaluating the same data corpus by two different methods emphasizes the need for a critical attitude towards automated analysis tools. It is particularly illustrative that the NLTK method classified the vast majority of content (96.3%) as negative, while the OpenAI method gave a more balanced assessment with a predominance of neutral content (51.5%).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This discrepancy demonstrates how strongly the results of analysis can depend on the chosen method, which has serious implications for media space researchers and fact-checkers. When using automated systems for monitoring media content, it is necessary to be aware of the possible bias of algorithms and take it into account when interpreting results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">No algorithm can replace expert evaluation and critical thinking, but the competent application of technology can significantly increase the efficiency of fact-checkers and media researchers. The most productive approach seems to be combining different analysis methods with subsequent expert evaluation of results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the coming years, we are likely to see the development of several directions: specialized models for media content analysis, trained on examples of manipulative techniques; local versions of large language models that do not require sending data to external servers; interactive tools combining automatic analysis with expert evaluation; educational platforms using AI to teach citizens media literacy.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Regardless of technological progress, the key success factor will remain human expertise, critical thinking, and commitment to high ethical standards in combating disinformation and manipulation. Automated systems should be viewed as decision support tools, not as a replacement for expert evaluation.<\/p>\n\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div><\/div>\n<\/div>\n<i>This publication was developed by a research team under the leadership of Mikhail Doroshevich, PhD.<\/i>\n"},"excerpt":{"rendered":"","protected":false,"raw":""},"author":1,"featured_media":3416,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_ru_post_content":"\u0412 \u044d\u043f\u043e\u0445\u0443 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0432\u043e\u0439\u043d \u0438 \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0439 \u0434\u0435\u0437\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u043d\u0435\u0437\u0430\u043c\u0435\u043d\u0438\u043c\u044b\u043c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u043c \u0434\u043b\u044f \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0435\u0440\u043e\u0432 \u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0421\u041c\u0418. \u0412 \u044d\u0442\u043e\u0439 \u0441\u0442\u0430\u0442\u044c\u0435 \u043c\u044b \u0441\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0435\u043c \u0434\u0432\u0430 \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u0430 \u043a \u0432\u044b\u044f\u0432\u043b\u0435\u043d\u0438\u044e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u2014 \u043a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043c\u0435\u0442\u043e\u0434\u044b \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u044f\u0437\u044b\u043a\u0430 (NLP) \u0438 \u043d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u043d\u0430 \u0431\u0430\u0437\u0435 \u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u044f\u0437\u044b\u043a\u043e\u0432\u044b\u0445 \u043c\u043e\u0434\u0435\u043b\u0435\u0439 (LLM).\n\u0412 \u0440\u0430\u043c\u043a\u0430\u0445 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u0431\u044b\u043b \u043f\u0440\u043e\u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d \u043a\u043e\u0440\u043f\u0443\u0441 \u0432\u0438\u0434\u0435\u043e\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u0445\u0435\u0448\u0442\u0435\u0433\u043e\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 TikTok. \u0410\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0443\u0435\u043c\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434 \u0441 20 \u043c\u0430\u0440\u0442\u0430 \u043f\u043e 21 \u0430\u043f\u0440\u0435\u043b\u044f 2025. \u0414\u043b\u044f \u0441\u0431\u043e\u0440\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b\u0441\u044f <a href=\"https:\/\/exolyt.com\/\">Exolyt - TikTok Social Intelligence Platform<\/a>. \u0410\u043d\u0430\u043b\u0438\u0437\u0443 \u043f\u043e\u0434\u0432\u0435\u0440\u0433\u043b\u0438\u0441\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0438 \u043c\u0435\u0442\u043a\u0438 \u0432\u0438\u0434\u0435\u043e\u0440\u043e\u043b\u0438\u043a\u043e\u0432. \u041d\u043e \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u0440\u0435\u0441 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0430 \u0442\u043e, \u043a\u0430\u043a \u0440\u0430\u0437\u043d\u044b\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044b \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u044e\u0442 \u043e\u0434\u043d\u0438 \u0438 \u0442\u0435 \u0436\u0435 \u0434\u0430\u043d\u043d\u044b\u0435.\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div>\n<div class=\"grid-cols-1 grid gap-2.5 [&amp;_&gt;_*]:min-w-0 !gap-3.5\">\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u041c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u044f \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u043b\u044f \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f \u0434\u0432\u0443\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432 \u043c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b\u0438 \u043e\u0431\u0449\u0438\u0439 \u043d\u0430\u0431\u043e\u0440 \u0434\u0430\u043d\u043d\u044b\u0445 \u2014 \u043a\u043e\u0440\u043f\u0443\u0441 \u0438\u0437 12,252 \u0432\u0438\u0434\u0435\u043e \u0441 \u0445\u0435\u0448\u0442\u0435\u0433\u043e\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u044f \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435. \u0414\u0432\u0430 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0431\u044b\u043b\u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u044b \u043a \u043e\u0434\u043d\u0438\u043c \u0438 \u0442\u0435\u043c \u0436\u0435 \u0434\u0430\u043d\u043d\u044b\u043c, \u0447\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u043b\u043e \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0445 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c, \u0441\u0438\u043b\u044c\u043d\u044b\u0435 \u0438 \u0441\u043b\u0430\u0431\u044b\u0435 \u0441\u0442\u043e\u0440\u043e\u043d\u044b. \u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0432\u043a\u043b\u044e\u0447\u0430\u043b\u0438 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0441\u043b\u043e\u0432 (\u0442\u043e\u043a\u0435\u043d\u043e\u0432), \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u044f\u0435\u043c\u044b\u0445 \u0441\u043b\u043e\u0432 \u0438 \u0441\u043b\u043e\u0432\u043e\u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0439, \u043e\u0446\u0435\u043d\u043a\u0443 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438 \u043f\u043e \u0442\u0440\u0435\u043c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u043c (\u043d\u0435\u0433\u0430\u0442\u0438\u0432, \u043f\u043e\u0437\u0438\u0442\u0438\u0432, \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e) \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0443\u0440\u043e\u0432\u043d\u044f \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.<\/p>\n\n<blockquote class=\"wp-block-quote is-style-info is-layout-flow wp-block-quote-is-layout-flow\">\nNLTK (Natural Language Toolkit) \u2014 \u044d\u0442\u043e \u0432\u0435\u0434\u0443\u0449\u0430\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u043c \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u043c \u043a\u043e\u0434\u043e\u043c \u0434\u043b\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u044f\u0437\u044b\u043a\u0430 \u043d\u0430 Python, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u0430\u044f \u0432 2001 \u0433\u043e\u0434\u0443 \u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u043c\u0430\u044f \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u043c. \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u043f\u0440\u043e\u0441\u0442\u044b\u0435 \u0432 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u044b \u0434\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0431\u043e\u043b\u0435\u0435 \u0447\u0435\u043c 50 \u043a\u043e\u0440\u043f\u0443\u0441\u0430\u043c\u0438 \u0442\u0435\u043a\u0441\u0442\u043e\u0432 \u0438 \u043b\u0435\u043a\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u043c\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u043c\u0438, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0431\u043e\u0433\u0430\u0442\u044b\u0439 \u043d\u0430\u0431\u043e\u0440 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0434\u043b\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0430: \u0442\u043e\u043a\u0435\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0441\u0442\u0435\u043c\u043c\u0438\u043d\u0433\u0430, \u043b\u0435\u043c\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0447\u0430\u0441\u0442\u0435\u0439 \u0440\u0435\u0447\u0438, \u0441\u0438\u043d\u0442\u0430\u043a\u0441\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u044f \u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0441\u0443\u0449\u043d\u043e\u0441\u0442\u0435\u0439 \u0438 \u0441\u0435\u043c\u0430\u043d\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430. NLTK \u0432\u043a\u043b\u044e\u0447\u0430\u0435\u0442 \u043e\u0431\u0448\u0438\u0440\u043d\u0443\u044e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044e \u0438 \u0443\u0447\u0435\u0431\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b, \u0447\u0442\u043e \u0434\u0435\u043b\u0430\u0435\u0442 \u0435\u0451 \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u043e\u0439 \u043a\u0430\u043a \u0441\u0440\u0435\u0434\u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u0442\u0430\u043a \u0438 \u0441\u0440\u0435\u0434\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432, \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u044e\u0449\u0438\u0445 \u043c\u0435\u0442\u043e\u0434\u044b NLP \u0434\u043b\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0437\u0430\u0434\u0430\u0447 \u2014 \u043e\u0442 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0442\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0438 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0442\u0435\u043a\u0441\u0442\u043e\u0432 \u0434\u043e \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u044f \u0447\u0430\u0442-\u0431\u043e\u0442\u043e\u0432 \u0438 \u0441\u0438\u0441\u0442\u0435\u043c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u043f\u043e\u0438\u0441\u043a\u0430. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0441\u0432\u043e\u0435\u0439 \u043c\u043e\u0434\u0443\u043b\u044c\u043d\u043e\u0439 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0435 \u0438 \u0433\u0438\u0431\u043a\u043e\u0441\u0442\u0438, NLTK \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442 \u043e\u0441\u0442\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u043e\u0434\u043d\u0438\u043c \u0438\u0437 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u0430\u0440\u0441\u0435\u043d\u0430\u043b\u0435 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0441\u0442\u043e\u0432 \u043f\u043e \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043d\u043e\u0439 \u043b\u0438\u043d\u0433\u0432\u0438\u0441\u0442\u0438\u043a\u0435 \u0438 \u0430\u043d\u0430\u043b\u0438\u0437\u0443 \u0442\u0435\u043a\u0441\u0442\u043e\u0432, \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u043f\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a, \u043e\u0440\u0438\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043d\u0430 \u0433\u043b\u0443\u0431\u043e\u043a\u043e\u0435 \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u0435.<\/blockquote>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0414\u0435\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u044f \u0434\u0432\u0443\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u041a\u043b\u0430\u0441\u0441\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c NLTK<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f<\/strong>: \u041e\u0442\u043a\u0440\u044b\u0442\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 Natural Language Toolkit (NLTK) \u0441 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430\u043c\u0438 \u0442\u043e\u043a\u0435\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438 \u0430\u043d\u0430\u043b\u0438\u0437\u0430.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0435\u0440\u0432\u044b\u0439 \u044d\u0442\u0430\u043f \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0430 \u0432\u043a\u043b\u044e\u0447\u0430\u043b \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430 \u043a \u043d\u0438\u0436\u043d\u0435\u043c\u0443 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0443, \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043f\u0443\u043d\u043a\u0442\u0443\u0430\u0446\u0438\u0438 \u0438 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432, \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0446\u0438\u0444\u0440 \u0438 \u043b\u0438\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u043f\u043e\u043b\u0435\u0439 (\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u043c\u0435\u0442\u043a\u0438).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0417\u0430\u0442\u0435\u043c \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043b\u0430 \u0442\u043e\u043a\u0435\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u2013 \u0440\u0430\u0437\u0431\u0438\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0430 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c NLTK word_tokenize, \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u043e\u043f-\u0441\u043b\u043e\u0432 \u0438\u0437 \u0440\u0443\u0441\u0441\u043a\u043e\u0433\u043e \u0438 \u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u043e\u0433\u043e \u044f\u0437\u044b\u043a\u043e\u0432 (\u043f\u0440\u0435\u0434\u043b\u043e\u0433\u0438, \u0441\u043e\u044e\u0437\u044b \u0438 \u0442.\u0434.) \u0438 \u0444\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u0441\u043b\u043e\u0432 \u043a\u043e\u0440\u043e\u0447\u0435 3 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u043b\u0441\u044f \u043f\u0443\u0442\u0435\u043c \u043f\u043e\u0438\u0441\u043a\u0430 \u0441\u043b\u043e\u0432 \u0438\u0437 \u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0441\u043b\u043e\u0432\u0430\u0440\u0435\u0439 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432, \u043f\u043e\u0434\u0441\u0447\u0435\u0442\u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u0441\u043b\u043e\u0432 \u043a\u0430\u0436\u0434\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u043c\u0438\u043d\u0438\u0440\u0443\u044e\u0449\u0435\u0439 \u044d\u043c\u043e\u0446\u0438\u0438 \u043f\u043e \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0443 \u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u043b\u044f \u043e\u0446\u0435\u043d\u043a\u0438 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u043b\u0430\u0441\u044c \u0444\u043e\u0440\u043c\u0443\u043b\u0430: <code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulation_score = emotion_\u043d\u0435\u0433\u0430\u0442\u0438\u0432 * 1.5 - emotion_\u043f\u043e\u0437\u0438\u0442\u0438\u0432<\/code> \u0441 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0439 \u043d\u043e\u0440\u043c\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044f \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0441\u0440\u0435\u0434\u043d\u0435\u0433\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435\u043c \u043f\u043e\u0440\u043e\u0433\u0430 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 (\u0441\u0440\u0435\u0434\u043d\u0435\u0435 + \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0435 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0417\u0430\u0432\u0435\u0440\u0448\u0430\u044e\u0449\u0435\u0439 \u0441\u0442\u0430\u0434\u0438\u0435\u0439 \u0431\u044b\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432, \u0432\u043a\u043b\u044e\u0447\u0430\u0432\u0448\u0438\u0439 \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0441\u043b\u043e\u0432 \u0438 \u0431\u0438\u0433\u0440\u0430\u043c\u043c (\u043f\u0430\u0440 \u0441\u043b\u043e\u0432), \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043f\u043e \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0435 \u0438 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u041e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438<\/strong>: \u041e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u0440\u043e\u0432\u043e\u0434\u0438\u043b\u0430\u0441\u044c \u0447\u0430\u0441\u0442\u044f\u043c\u0438 \u0434\u043b\u044f \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0438 \u043f\u0430\u043c\u044f\u0442\u0438, \u0431\u044b\u043b\u0430 \u043f\u0440\u0435\u0434\u0443\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0430 \u0437\u0430\u043f\u0430\u0441\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0442\u043e\u043a\u0435\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u0440\u0438 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 NLTK, \u0430 \u0432\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043e\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043b\u044f\u043b\u0430\u0441\u044c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e matplotlib\/plotly.<\/p>\n\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u0421\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043c\u043e\u0434\u0435\u043b\u0435\u0439 OpenAI<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u0422\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f<\/strong>: API OpenAI \u0441 \u043c\u043e\u0434\u0435\u043b\u044c\u044e GPT-4o-mini<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0439 \u044d\u0442\u0430\u043f \u0432\u043a\u043b\u044e\u0447\u0430\u043b \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 \u2013 \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u043f\u043e\u043b\u0435\u0439 (\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a, \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435, \u043c\u0435\u0442\u043a\u0438) \u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0443 \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430 \u0431\u0435\u0437 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u0430\u043b\u0435\u0435 \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043b\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 \u0441 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u043c \u043f\u0440\u043e\u043c\u043f\u0442\u043e\u043c \u0434\u043b\u044f \u043c\u043e\u0434\u0435\u043b\u0438, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043b\u0438\u0441\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043f\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0443 \u0442\u0435\u043a\u0441\u0442\u0430, \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u044e \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0441\u043b\u043e\u0432, \u043e\u0446\u0435\u043d\u043a\u0435 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438 \u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044e \u0443\u0440\u043e\u0432\u043d\u044f \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043e\u0442\u0432\u0435\u0442\u0430 \u043c\u043e\u0434\u0435\u043b\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u043b\u0430 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 JSON-\u043e\u0442\u0432\u0435\u0442\u0430, \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0442\u043e\u043a\u0435\u043d\u043e\u0432, \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u043e\u0446\u0435\u043d\u043e\u043a \u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044f \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0434\u043e\u043c\u0438\u043d\u0438\u0440\u0443\u044e\u0449\u0435\u0439 \u044d\u043c\u043e\u0446\u0438\u0438 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043e\u0446\u0435\u043d\u043e\u043a \u043c\u043e\u0434\u0435\u043b\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0424\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u044d\u0442\u0430\u043f \u2013 \u0430\u0433\u0440\u0435\u0433\u0430\u0446\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0432\u043a\u043b\u044e\u0447\u0430\u043b \u043f\u043e\u0434\u0441\u0447\u0435\u0442 \u0447\u0430\u0441\u0442\u043e\u0442\u044b \u0442\u043e\u043a\u0435\u043d\u043e\u0432 \u0438 \u0431\u0438\u0433\u0440\u0430\u043c\u043c, \u0440\u0430\u0441\u0447\u0435\u0442 \u0441\u0440\u0435\u0434\u043d\u0438\u0445 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0435\u0439 \u043f\u043e \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u043c \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u043c, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u043e\u0433\u0430 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0438 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u0432\u044b\u0441\u043e\u043a\u0438\u043c \u0443\u0440\u043e\u0432\u043d\u0435\u043c \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u041e\u0441\u043e\u0431\u0435\u043d\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438<\/strong>: \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043b\u0441\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 \u043e\u0442\u0432\u0435\u0442\u0430 (JSON), \u0431\u044b\u043b\u0438 \u043f\u0440\u0435\u0434\u0443\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u044b \u043f\u0430\u0443\u0437\u044b \u043c\u0435\u0436\u0434\u0443 \u0437\u0430\u043f\u0440\u043e\u0441\u0430\u043c\u0438 \u0434\u043b\u044f \u0441\u043e\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u044f \u043b\u0438\u043c\u0438\u0442\u043e\u0432 API \u0438 \u043c\u0435\u0445\u0430\u043d\u0438\u0437\u043c\u044b \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043e\u0448\u0438\u0431\u043e\u043a \u0441 \u0432\u043e\u0437\u0432\u0440\u0430\u0442\u043e\u043c \u043a \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043c \u043f\u0440\u0438 \u0441\u0431\u043e\u044f\u0445.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0421\u0440\u0430\u0432\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0438 \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">\u041e\u0431\u0430 \u043c\u0435\u0442\u043e\u0434\u0430 \u0432\u044b\u0434\u0435\u043b\u0438\u043b\u0438 \u043f\u043e\u0445\u043e\u0436\u0438\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0432 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0435, \u0447\u0442\u043e \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0443\u0435\u0442 \u043e \u0431\u0430\u0437\u043e\u0432\u043e\u043c \u0443\u0440\u043e\u0432\u043d\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u043e\u0441\u0442\u0438. \u041d\u0430 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043e\u0431\u043b\u0430\u043a\u0430\u0445 \u0441\u043b\u043e\u0432 \u0438\u0437 \u043e\u0442\u0447\u0435\u0442\u043e\u0432 \u0432\u0438\u0434\u043d\u043e, \u0447\u0442\u043e \u0441\u043b\u043e\u0432\u043e \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b\u043c \u0432 \u043e\u0431\u043e\u0438\u0445 \u0441\u043b\u0443\u0447\u0430\u044f\u0445, \u0437\u0430 \u043d\u0438\u043c \u0441\u043b\u0435\u0434\u0443\u044e\u0442 \"\u043d\u043e\u0432\u043e\u0441\u0442\u0438\", \"\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438\", \"\u043c\u0438\u043d\u0441\u043a\", \"\u043b\u0443\u043a\u0430\u0448\u0435\u043d\u043a\u043e\".<\/p>\nNLTK:\n\n<img class=\"alignnone  wp-image-3419\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud.png\" alt=\"\" width=\"608\" height=\"312\" \/>\n\n<\/div>\nOpenAI:\n\n<img class=\"alignnone  wp-image-3420\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds.png\" alt=\"\" width=\"596\" height=\"307\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u043e, \u0447\u0442\u043e \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u0431\u043b\u0430\u043a\u043e\u0432 \u0441\u043b\u043e\u0432 \u0432\u044b\u0433\u043b\u044f\u0434\u0438\u0442 \u043e\u0447\u0435\u043d\u044c \u043f\u043e\u0445\u043e\u0436\u0438\u043c \u043f\u0440\u0438 \u043e\u0431\u043e\u0438\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u0430\u0445, \u043d\u0435\u0441\u043c\u043e\u0442\u0440\u044f \u043d\u0430 \u0440\u0430\u0437\u043d\u0438\u0446\u0443 \u0432 \u043c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u0438. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043e\u0431\u044a\u044f\u0441\u043d\u044f\u0442\u044c\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c \u0432\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 \u043e\u0431\u043b\u0430\u043a\u0430 \u0441\u043b\u043e\u0432 \u0431\u044b\u043b \u0438\u0434\u0435\u043d\u0442\u0438\u0447\u043d\u044b\u043c \u0432 \u043e\u0431\u043e\u0438\u0445 \u0441\u043a\u0440\u0438\u043f\u0442\u0430\u0445, \u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u043e \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u043b\u043e\u0432\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u044e\u0442. \u041f\u043e\u0434\u043e\u0431\u043d\u043e\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0430\u0435\u0442 \u0431\u0430\u0437\u043e\u0432\u0443\u044e \u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u043d\u043e\u0441\u0442\u044c \u043e\u0431\u043e\u0438\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432 \u0432 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0438 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0442\u0435\u043c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0434\u0430\u0436\u0435 \u043f\u0440\u0438 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0440\u0430\u0437\u043b\u0438\u0447\u0438\u044f\u0445 \u0432 \u043e\u0446\u0435\u043d\u043a\u0435 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438 \u0438 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041e\u0434\u043d\u0430\u043a\u043e \u043f\u0440\u0438 \u0431\u043e\u043b\u0435\u0435 \u0434\u0435\u0442\u0430\u043b\u044c\u043d\u043e\u043c \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0438 \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b\u0445 \u0433\u0438\u0441\u0442\u043e\u0433\u0440\u0430\u043c\u043c \u0437\u0430\u043c\u0435\u0442\u043d\u044b \u0440\u0430\u0437\u043b\u0438\u0447\u0438\u044f:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412 NLTK-\u043c\u0435\u0442\u043e\u0434\u0435 \u0441\u043b\u043e\u0432\u043e \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u0435\u0442\u0441\u044f \u043e\u043a\u043e\u043b\u043e 14,025 \u0440\u0430\u0437, \u0430 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 \u0437\u0430 \u043d\u0438\u043c \u0441\u043b\u043e\u0432\u043e \"\u043d\u043e\u0432\u043e\u0441\u0442\u0438\" \u2014 3,189 \u0440\u0430\u0437. \u0412 OpenAI-\u043c\u0435\u0442\u043e\u0434\u0435 \u0441\u043b\u043e\u0432\u043e \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u0435\u0442\u0441\u044f \u043e\u043a\u043e\u043b\u043e 8,258 \u0440\u0430\u0437, \"\u043d\u043e\u0432\u043e\u0441\u0442\u0438\" \u2014 2,652 \u0440\u0430\u0437.<\/p>\nNLTK:\n\n<img class=\"alignnone  wp-image-3422\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20.png\" alt=\"\" width=\"679\" height=\"495\" \/>\n\nOpenAI:\n\n<img class=\"alignnone  wp-image-3423\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20.png\" alt=\"\" width=\"664\" height=\"480\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u0442\u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u0438\u044f \u043e\u0431\u044a\u044f\u0441\u043d\u044f\u044e\u0442\u0441\u044f \u0440\u0430\u0437\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0430\u043c\u0438 \u0442\u043e\u043a\u0435\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0441\u043b\u043e\u0432. \u041c\u043e\u0434\u0435\u043b\u044c OpenAI \u0441\u0442\u0440\u0435\u043c\u0438\u0442\u0441\u044f \u0432\u044b\u0434\u0435\u043b\u044f\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u0437\u043d\u0430\u0447\u0438\u043c\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0441 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u043e\u0439, \u0442\u043e\u0433\u0434\u0430 \u043a\u0430\u043a NLTK-\u043c\u0435\u0442\u043e\u0434 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0441 \u0444\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u0447\u0430\u0441\u0442\u043e\u0442\u043e\u0439 \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u0435\u043c\u043e\u0441\u0442\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412 \u0442\u043e\u043f-15 \u043f\u0430\u0440 \u0441\u043b\u043e\u0432 \u0442\u0430\u043a\u0436\u0435 \u043d\u0430\u0431\u043b\u044e\u0434\u0430\u044e\u0442\u0441\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u043e\u0442\u043b\u0438\u0447\u0438\u044f: NLTK-\u043c\u0435\u0442\u043e\u0434 \u0432\u044b\u0434\u0435\u043b\u044f\u0435\u0442 \u043f\u0430\u0440\u044b: \"\u0431\u0440\u0435\u0441\u0442 \u043c\u0438\u043d\u0441\u043a\" (385), \"\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0430 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430\" (371), \"\u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u041c\u0418\u0414\" (369), \u0430 OpenAI-\u043c\u0435\u0442\u043e\u0434 \u0432\u044b\u0434\u0435\u043b\u044f\u0435\u0442: \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c \u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" (1,723), \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c \u043b\u0443\u043a\u0430\u0448\u0435\u043d\u043a\u043e\" (615), \"\u043c\u0438\u043d\u0441\u043a \u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" (527).<\/p>\nNLTK:\n\n<img class=\"alignnone  wp-image-3424\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram.png\" alt=\"\" width=\"661\" height=\"432\" \/>\n\nOpenAI:\n\n<img class=\"alignnone  wp-image-3425\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram.png\" alt=\"\" width=\"717\" height=\"488\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u0442\u043e \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u0443\u0435\u0442 \u043e \u0440\u0430\u0437\u043d\u044b\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u0430\u0445 \u043a \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u0431\u0438\u0433\u0440\u0430\u043c\u043c: OpenAI \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u0435\u0442 \u0431\u043b\u0438\u0437\u043e\u0441\u0442\u044c \u0441\u043b\u043e\u0432 \u0432 \u0442\u0435\u043a\u0441\u0442\u0435, \u0442\u043e\u0433\u0434\u0430 \u043a\u0430\u043a NLTK-\u043c\u0435\u0442\u043e\u0434 \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0443\u0435\u0442 \u0441\u043a\u043e\u0440\u0435\u0435 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u0441\u0442\u044c.<\/p>\n\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u0420\u0430\u0437\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043e\u0442\u043b\u0438\u0447\u0438\u044f \u0432 \u043e\u0446\u0435\u043d\u043a\u0435 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0434\u0440\u0430\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0435 \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u0434\u0432\u0443\u043c\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u043c\u0438 \u043a\u0430\u0441\u0430\u0435\u0442\u0441\u044f \u043e\u0446\u0435\u043d\u043a\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430. \u041a\u043e\u0433\u0434\u0430 \u043c\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043b\u0438 \u043e\u0434\u0438\u043d \u0438 \u0442\u043e\u0442 \u0436\u0435 \u043d\u0430\u0431\u043e\u0440 \u0434\u0430\u043d\u043d\u044b\u0445 \u043e \u0432\u0438\u0434\u0435\u043e \u0441 \u0445\u0435\u0448\u0442\u0435\u0433\u043e\u043c <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong>, \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u043b\u0438\u0441\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c:<\/p>\nNLTK:\n\n<img class=\"alignnone  wp-image-3427\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions.png\" alt=\"\" width=\"507\" height=\"340\" \/>\n\n<\/div>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK-\u043c\u0435\u0442\u043e\u0434<\/strong> \u043f\u043e\u043a\u0430\u0437\u0430\u043b \u043a\u0440\u0430\u0439\u043d\u0435 \u043d\u0435\u0441\u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0441 \u043f\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u0430\u043d\u0438\u0435\u043c \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u0438:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">96.3% \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e (11,796 \u0432\u0438\u0434\u0435\u043e)<\/li>\n \t<li class=\"whitespace-normal break-words\">3.1% \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u043e\u0433\u043e (388 \u0432\u0438\u0434\u0435\u043e)<\/li>\n \t<li class=\"whitespace-normal break-words\">0.6% \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0433\u043e (68 \u0432\u0438\u0434\u0435\u043e)<\/li>\n<\/ul>\n<img class=\"alignnone  wp-image-3428\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions.png\" alt=\"\" width=\"513\" height=\"323\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u041e\u0434\u043d\u0430\u043a\u043e <strong>OpenAI-\u043c\u0435\u0442\u043e\u0434<\/strong> \u0434\u0430\u043b \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u043d\u043e \u0438\u043d\u0443\u044e, \u0431\u043e\u043b\u0435\u0435 \u0441\u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u043a\u0430\u0440\u0442\u0438\u043d\u0443:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">51.5% \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0433\u043e (6,308 \u0432\u0438\u0434\u0435\u043e)<\/li>\n \t<li class=\"whitespace-normal break-words\">30.2% \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u043e\u0433\u043e (3,702 \u0432\u0438\u0434\u0435\u043e)<\/li>\n \t<li class=\"whitespace-normal break-words\">18.3% \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e (2,236 \u0432\u0438\u0434\u0435\u043e)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u0442\u043e \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u043d\u043e \u043e\u0431\u044a\u044f\u0441\u043d\u0438\u0442\u044c \u0440\u0430\u0437\u043d\u044b\u043c\u0438 \u043f\u043e\u0434\u0445\u043e\u0434\u0430\u043c\u0438 \u043a \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044e \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438. NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u043f\u0438\u0440\u0430\u0435\u0442\u0441\u044f \u043d\u0430 \u0441\u043b\u043e\u0432\u0430\u0440\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432 \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u0443\u0435\u0442 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0437-\u0437\u0430 \u043d\u0430\u043b\u0438\u0447\u0438\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0445 \u0441\u043b\u043e\u0432, \u0431\u0435\u0437 \u0443\u0447\u0435\u0442\u0430 \u0438\u0445 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430. \u0412 \u0441\u0432\u043e\u044e \u043e\u0447\u0435\u0440\u0435\u0434\u044c, OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u0435\u0442 \u0431\u043e\u043b\u0435\u0435 \u0448\u0438\u0440\u043e\u043a\u0438\u0439 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u0438 \u0441\u043f\u043e\u0441\u043e\u0431\u0435\u043d \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f \u0434\u0430\u0436\u0435 \u043f\u0440\u0438 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0438.<\/p>\nNLTK:\n\n<img class=\"alignnone  wp-image-3429\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average.png\" alt=\"\" width=\"495\" height=\"329\" \/>\n\nOpenAI:\n\n<img class=\"alignnone  wp-image-3430\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average.png\" alt=\"\" width=\"514\" height=\"340\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u0418\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e \u0442\u0430\u043a\u0436\u0435 \u0440\u0430\u0441\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441\u0440\u0435\u0434\u043d\u0438\u0435 \u043e\u0446\u0435\u043d\u043a\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u0443\u044e\u0442 \u0440\u0430\u0437\u043d\u044b\u0435 \u0448\u043a\u0430\u043b\u044b:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">\u0412 NLTK-\u043c\u0435\u0442\u043e\u0434\u0435: \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u0430\u044f - 0.03, \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u0430\u044f - 0.05, \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f - 0.01<\/li>\n \t<li class=\"whitespace-normal break-words\">\u0412 OpenAI-\u043c\u0435\u0442\u043e\u0434\u0435: \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f - 5.01, \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u0430\u044f - 3.32, \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u0430\u044f - 1.74<\/li>\n<\/ul>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u041e\u0446\u0435\u043d\u043a\u0430 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">\u0412 \u043e\u0446\u0435\u043d\u043a\u0435 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043c\u0435\u0442\u043e\u0434\u044b \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u043e\u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b\u0438 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u0438\u044f:<\/p>\nNLTK:\n\n<img class=\"alignnone  wp-image-3431\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation.png\" alt=\"\" width=\"570\" height=\"366\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK-\u043c\u0435\u0442\u043e\u0434<\/strong> \u043f\u043e\u043a\u0430\u0437\u0430\u043b \u043e\u0434\u043d\u043e\u043c\u043e\u0434\u0430\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0441 \u043a\u043e\u043d\u0446\u0435\u043d\u0442\u0440\u0430\u0446\u0438\u0435\u0439 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u0430 \u043e\u0446\u0435\u043d\u043e\u043a \u0432 \u0440\u0430\u0439\u043e\u043d\u0435 \u043d\u0438\u0437\u043a\u0438\u0445 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 (1-2 \u043f\u043e \u0448\u043a\u0430\u043b\u0435 \u043e\u0442 0 \u0434\u043e 10) \u0438 \u043b\u0438\u0448\u044c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u0432\u044b\u0441\u043e\u043a\u0438\u043c\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043c\u0438 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438. \u042d\u0442\u043e \u043e\u0431\u044a\u044f\u0441\u043d\u044f\u0435\u0442\u0441\u044f \u0442\u0435\u043c, \u0447\u0442\u043e \u043c\u0435\u0442\u043e\u0434 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442 \u043f\u0440\u043e\u0441\u0442\u0443\u044e \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0444\u043e\u0440\u043c\u0443\u043b\u0443 (<code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">\u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c = \u043d\u0435\u0433\u0430\u0442\u0438\u0432*1.5 - \u043f\u043e\u0437\u0438\u0442\u0438\u0432<\/code>), \u0447\u0442\u043e \u0434\u0430\u0435\u0442 \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u0443\u044e \u043a\u043e\u0440\u0440\u0435\u043b\u044f\u0446\u0438\u044e \u0441 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u043e\u0439.<\/p>\nOpenAI:\n\n<img class=\"alignnone  wp-image-3432\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation.png\" alt=\"\" width=\"581\" height=\"373\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>OpenAI-\u043c\u0435\u0442\u043e\u0434<\/strong> \u043f\u0440\u043e\u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043b \u043c\u043d\u043e\u0433\u043e\u043c\u043e\u0434\u0430\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0441 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c\u0438 \u043f\u0438\u043a\u0430\u043c\u0438 \u0432 \u0440\u0430\u0439\u043e\u043d\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 5.0, 6.0 \u0438 7.0 \u043f\u043e \u0448\u043a\u0430\u043b\u0435 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438, \u0441 \u043f\u043e\u0440\u043e\u0433\u043e\u043c \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043e\u043a\u043e\u043b\u043e 7.20. \u042d\u0442\u043e \u043e\u0442\u0440\u0430\u0436\u0430\u0435\u0442 \u0431\u043e\u043b\u0435\u0435 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u043a \u0430\u043d\u0430\u043b\u0438\u0437\u0443 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438, \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0449\u0438\u0439 \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0443\u044e \u043e\u043a\u0440\u0430\u0441\u043a\u0443, \u043d\u043e \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u0440\u0438\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u0438\u0435\u043c\u044b, \u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0438 \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0442\u043e\u043d\u043a\u0438\u0435 \u0430\u0441\u043f\u0435\u043a\u0442\u044b \u0432\u043e\u0437\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f.<\/p>\nNLTK:\n\n<img class=\"alignnone  wp-image-3434\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions.png\" alt=\"\" width=\"484\" height=\"361\" \/>\n\nOpenAI:\n\n<img class=\"alignnone  wp-image-3433\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions.png\" alt=\"\" width=\"485\" height=\"356\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0442\u0430\u043a\u0436\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u0430\u0435\u0442\u0441\u044f:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">\u041f\u043e NLTK-\u043c\u0435\u0442\u043e\u0434\u0443: \u043f\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u0430\u043d\u0438\u0435 \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u0430 (1.06), \u043e\u0447\u0435\u043d\u044c \u043d\u0438\u0437\u043a\u0438\u0435 \u043e\u0446\u0435\u043d\u043a\u0438 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438 (0.07) \u0438 \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u0430 (0.02)<\/li>\n \t<li class=\"whitespace-normal break-words\">\u041f\u043e OpenAI-\u043c\u0435\u0442\u043e\u0434\u0443: \u0432\u044b\u0441\u043e\u043a\u0438\u0435 \u043e\u0446\u0435\u043d\u043a\u0438 \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u0430 (6.46), \u0441\u0440\u0435\u0434\u043d\u0438\u0435 \u043e\u0446\u0435\u043d\u043a\u0438 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438 (2.55) \u0438 \u043d\u0438\u0437\u043a\u0438\u0435 \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u0430 (1.75)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u0442\u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u0438\u044f \u043d\u0430\u0433\u043b\u044f\u0434\u043d\u043e \u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u0443\u044e\u0442, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043f\u043e-\u0440\u0430\u0437\u043d\u043e\u043c\u0443 \u0434\u0432\u0430 \u043c\u0435\u0442\u043e\u0434\u0430 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0442 \u043a \u0432\u044b\u044f\u0432\u043b\u0435\u043d\u0438\u044e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0432 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0435, \u0447\u0442\u043e \u0438\u043c\u0435\u0435\u0442 \u0441\u0435\u0440\u044c\u0435\u0437\u043d\u044b\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u044d\u0442\u0438\u0445 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0438\u043d\u0433\u0435.<\/p>\n\n<\/div>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0418\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0446\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432: \u0447\u0442\u043e \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0438 \u0434\u0432\u0430 \u0440\u0430\u0437\u043d\u044b\u0445 \u043c\u0435\u0442\u043e\u0434\u0430?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0421\u0442\u043e\u043b\u044c \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u0445 \u0434\u0432\u0443\u0445 \u043c\u0435\u0442\u043e\u0434\u043e\u0432 \u0442\u0440\u0435\u0431\u0443\u044e\u0442 \u0442\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0438 \u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0446\u0438\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \"\u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438\" \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0443\u044e \u043e\u043a\u0440\u0430\u0441\u043a\u0443 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u044f \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u044b\u0445 \u0441\u043b\u043e\u0432-\u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432 \u0438\u0437 \u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u0440\u044f, \u0431\u0435\u0437 \u0443\u0447\u0435\u0442\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u0438\u0445 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u044f. \u0421\u043b\u043e\u0432\u043e \"\u0432\u043e\u0439\u043d\u0430\" \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0435, \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430, \u0447\u0442\u043e \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u0442 \u043a \u0437\u0430\u0432\u044b\u0448\u0435\u043d\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u0435 \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438 \u0430\u043d\u0430\u043b\u0438\u0437\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0442\u0435\u043c. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0435\u0442 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0443\u044e \u043e\u043a\u0440\u0430\u0441\u043a\u0443 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043e\u043b\u0435\u0435 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043d\u043e\u0433\u043e \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u0430, \u0441\u043f\u043e\u0441\u043e\u0431\u0435\u043d \u0440\u0430\u0437\u043b\u0438\u0447\u0430\u0442\u044c \u043d\u044e\u0430\u043d\u0441\u044b \u0438 \u043e\u0442\u0442\u0435\u043d\u043a\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u043c \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0435.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0440\u0438\u043c\u0435\u0440 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u043a\u043e\u0440\u043f\u0443\u0441\u0430 \u0434\u0430\u043d\u043d\u044b\u0445: \"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c: \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u0440\u0435\u0433\u0438\u043e\u043d\u0430, \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u044f, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b\". NLTK \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u0443\u0435\u0442 \u044d\u0442\u043e\u0442 \u0442\u0435\u043a\u0441\u0442 \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0438\u0437-\u0437\u0430 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0438, \u0442\u043e\u0433\u0434\u0430 \u043a\u0430\u043a OpenAI \u043c\u043e\u0436\u0435\u0442 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0433\u043e \u043a\u0430\u043a \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439, \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u0443\u044e, \u0430 \u043d\u0435 \u043e\u0446\u0435\u043d\u043e\u0447\u043d\u0443\u044e \u043f\u0440\u0438\u0440\u043e\u0434\u0443 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u0430\u0437\u043d\u044b\u0435 \u043a\u043e\u043d\u0446\u0435\u043f\u0446\u0438\u0438 \"\u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438\" \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u0443\u043f\u0440\u043e\u0449\u0435\u043d\u043d\u0443\u044e \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0444\u043e\u0440\u043c\u0443\u043b\u0443, \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u043d\u0430 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u043c \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e \u043e\u043a\u0440\u0430\u0448\u0435\u043d\u043d\u044b\u0445 \u0441\u043b\u043e\u0432. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0435\u0442 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0431\u043e\u043b\u0435\u0435 \u0441\u043b\u043e\u0436\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430, \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0449\u0435\u0433\u043e \u0440\u0438\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043f\u0440\u0438\u0435\u043c\u044b, \u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u0438 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0441\u043b\u043e\u0432\u0430\u0440\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0443\u043b\u043e\u0432\u0438\u0442\u044c.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0443\u044e \u0440\u043e\u043b\u044c \u0432 \u0442\u0430\u043a\u043e\u043c \u0434\u0440\u0430\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u043c \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0438\u0433\u0440\u0430\u0435\u0442 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u0445\u0435\u0448\u0442\u0435\u0433\u043e\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c. NLTK, \u043e\u043f\u0438\u0440\u0430\u044e\u0449\u0438\u0439\u0441\u044f \u043d\u0430 \u0441\u043b\u043e\u0432\u0430\u0440\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432, \u0441\u043a\u043b\u043e\u043d\u0435\u043d \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0443 \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u0443\u044e \u0438\u0437-\u0437\u0430 \u0447\u0430\u0441\u0442\u043e \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u044e\u0449\u0438\u0445\u0441\u044f \u0442\u0435\u0440\u043c\u0438\u043d\u043e\u0432, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0445 \u0441 \u043a\u043e\u043d\u0444\u043b\u0438\u043a\u0442\u0430\u043c\u0438, \u0432\u043b\u0430\u0441\u0442\u044c\u044e, \u043f\u0440\u043e\u0442\u0438\u0432\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u043c. OpenAI, \u0438\u043c\u0435\u044e\u0449\u0438\u0439 \u0431\u043e\u043b\u0435\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u043e\u0435 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430, \u0441\u043f\u043e\u0441\u043e\u0431\u0435\u043d \u0440\u0430\u0437\u043b\u0438\u0447\u0430\u0442\u044c \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0435 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435 \u043e\u0442 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e \u043e\u043a\u0440\u0430\u0448\u0435\u043d\u043d\u043e\u0439 \u043f\u0440\u043e\u043f\u0430\u0433\u0430\u043d\u0434\u044b.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0418\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0446\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432: \u0447\u0442\u043e \u043f\u043e\u043a\u0430\u0437\u0430\u043b\u0438 \u0434\u0432\u0430 \u0440\u0430\u0437\u043d\u044b\u0445 \u043c\u0435\u0442\u043e\u0434\u0430?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0421\u0442\u043e\u043b\u044c \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u0445 \u0434\u0432\u0443\u0445 \u043c\u0435\u0442\u043e\u0434\u043e\u0432 \u0442\u0440\u0435\u0431\u0443\u044e\u0442 \u0442\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0438 \u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0446\u0438\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u0430\u0437\u043b\u0438\u0447\u043d\u043e\u0435 \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \"\u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438\" \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0443\u044e \u043e\u043a\u0440\u0430\u0441\u043a\u0443 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u044f \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u044b\u0445 \u0441\u043b\u043e\u0432-\u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432 \u0438\u0437 \u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0441\u043b\u043e\u0432\u0430\u0440\u044f. \u0421\u043b\u043e\u0432\u043e \"\u0432\u043e\u0439\u043d\u0430\" \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0435, \"\u043f\u043e\u0431\u0435\u0434\u0430\" \u2014 \u043a\u0430\u043a \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u043e\u0435, \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0435\u0442 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0443\u044e \u043e\u043a\u0440\u0430\u0441\u043a\u0443 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0441\u043e\u0432\u043e\u043a\u0443\u043f\u043d\u043e\u0433\u043e \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u044f \u0442\u0435\u043a\u0441\u0442\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442, \u043f\u043e\u0434\u0442\u0435\u043a\u0441\u0442 \u0438 \u0441\u043a\u0440\u044b\u0442\u044b\u0435 \u0441\u043c\u044b\u0441\u043b\u044b. \u0424\u0440\u0430\u0437\u0430 \"\u043e\u0447\u0435\u0440\u0435\u0434\u043d\u0430\u044f \u0431\u043b\u0435\u0441\u0442\u044f\u0449\u0430\u044f \u043f\u043e\u0431\u0435\u0434\u0430\" \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0430 \u043a\u0430\u043a \u0438\u0440\u043e\u043d\u0438\u044f \u0438 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u0430\u044f.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0440\u0438\u043c\u0435\u0440 \u0438\u0437 \u043d\u0430\u0448\u0435\u0433\u043e \u043a\u043e\u0440\u043f\u0443\u0441\u0430 \u0434\u0430\u043d\u043d\u044b\u0445: \"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c: \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u0440\u0435\u0433\u0438\u043e\u043d\u0430, \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u044f, \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b\". NLTK \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u0443\u0435\u0442 \u044d\u0442\u043e\u0442 \u0442\u0435\u043a\u0441\u0442 \u043a\u0430\u043a \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439, \u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u0432 \u043d\u0435\u043c \u043d\u0435\u0442 \u043e\u0447\u0435\u0432\u0438\u0434\u043d\u044b\u0445 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432. OpenAI \u043c\u043e\u0436\u0435\u0442 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0433\u043e \u043a\u0430\u043a \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u044b\u0439, \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044f \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043d\u043e\u0432\u043e\u0441\u0442\u0435\u0439 \u0432 \u0442\u0435\u043a\u0443\u0449\u0435\u0439 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u0430\u0437\u043d\u044b\u0435 \u043a\u043e\u043d\u0446\u0435\u043f\u0446\u0438\u0438 \"\u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438\" \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0444\u043e\u0440\u043c\u0443\u043b\u0443, \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u043d\u0430 \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0438 \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u0438 \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u044b\u0445 \u0441\u043b\u043e\u0432. \u042d\u0442\u043e\u0442 \u043f\u043e\u0434\u0445\u043e\u0434 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u0435\u0442, \u0447\u0442\u043e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442 \u2014 \u044d\u0442\u043e \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043d\u0442. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0435\u0442 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0441\u043b\u043e\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u044f \u0440\u0438\u0442\u043e\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043f\u0440\u0438\u0435\u043c\u043e\u0432, \u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043e\u0448\u0438\u0431\u043e\u043a, \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0434\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u0438\u0441\u043a\u0430\u0436\u0435\u043d\u0438\u044f \u0444\u0430\u043a\u0442\u043e\u0432 \u0438 \u0434\u0440\u0443\u0433\u0438\u0445 \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u043e\u0432 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u0436\u0435 \u0432 \u0444\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e \u043f\u043e\u0437\u0438\u0442\u0438\u0432\u043d\u043e\u043c \u0438\u043b\u0438 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u043c \u0442\u0435\u043a\u0441\u0442\u0435.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0443\u044e \u0440\u043e\u043b\u044c \u0432 \u0442\u0430\u043a\u043e\u043c \u0434\u0440\u0430\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u043c \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043c\u043e\u0436\u0435\u0442 \u0438\u0433\u0440\u0430\u0442\u044c \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u0445\u0435\u0448\u0442\u0435\u0433\u043e\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c. \u0411\u043e\u043b\u044c\u0448\u0430\u044f \u044f\u0437\u044b\u043a\u043e\u0432\u0430\u044f \u043c\u043e\u0434\u0435\u043b\u044c, \u043e\u0431\u0443\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043e\u0433\u0440\u043e\u043c\u043d\u043e\u043c \u043a\u043e\u0440\u043f\u0443\u0441\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043d\u043e\u0432\u043e\u0441\u0442\u043d\u044b\u0435 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b, \u043c\u043e\u0436\u0435\u0442 \"\u043f\u043e\u043d\u0438\u043c\u0430\u0442\u044c\" \u0441\u043b\u043e\u0436\u043d\u044b\u0439 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442 \u0438 \u0443\u043b\u0430\u0432\u043b\u0438\u0432\u0430\u0442\u044c \u0441\u043a\u0440\u044b\u0442\u044b\u0435 \u0441\u043c\u044b\u0441\u043b\u044b \u0438 \u043f\u043e\u0434\u0442\u0435\u043a\u0441\u0442\u044b, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0441 \u043e\u0441\u0432\u0435\u0449\u0435\u043d\u0438\u0435\u043c \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438 \u0432 \u0440\u0435\u0433\u0438\u043e\u043d\u0435.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0427\u0442\u043e \u044d\u0442\u043e \u0437\u043d\u0430\u0447\u0438\u0442 \u0434\u043b\u044f \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0438\u043d\u0433\u0430 \u0438 \u043c\u0435\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043e\u0442\u043d\u043e\u0441\u0442\u0438<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0412\u044b\u044f\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u043c\u0435\u0436\u0434\u0443 \u0434\u0432\u0443\u043c\u044f \u043f\u043e\u0434\u0445\u043e\u0434\u0430\u043c\u0438 \u0438\u043c\u0435\u044e\u0442 \u0441\u0435\u0440\u044c\u0435\u0437\u043d\u044b\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f \u0434\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0435\u0440\u043e\u0432 \u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043c\u0435\u0434\u0438\u0430.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u044b\u0437\u043e\u0432\u044b \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0442 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0443 \"\u0437\u043e\u043b\u043e\u0442\u043e\u0433\u043e \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0430\", \u0442\u043e \u0435\u0441\u0442\u044c \u0432\u043e\u043f\u0440\u043e\u0441 \u043e \u0442\u043e\u043c, \u043a\u0430\u043a\u043e\u0439 \u0438\u0437 \u043c\u0435\u0442\u043e\u0434\u043e\u0432 \u0431\u043b\u0438\u0436\u0435 \u043a \u0438\u0441\u0442\u0438\u043d\u0435, \u043f\u0440\u0438 \u044d\u0442\u043e\u043c \u0432\u043f\u043e\u043b\u043d\u0435 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e, \u0447\u0442\u043e \u0438\u0441\u0442\u0438\u043d\u0430 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0433\u0434\u0435-\u0442\u043e \u043f\u043e\u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435 \u0438\u043b\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0438\u0430\u043b\u044c\u043d\u043e \u0438\u043d\u043e\u0433\u043e \u043f\u043e\u0434\u0445\u043e\u0434\u0430; \u0441\u0443\u0431\u044a\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u043e\u0446\u0435\u043d\u043e\u043a, \u043a\u043e\u0433\u0434\u0430 \u0434\u0430\u0436\u0435 \u043f\u0440\u043e\u0434\u0432\u0438\u043d\u0443\u0442\u044b\u0435 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b \u043e\u0442\u0440\u0430\u0436\u0430\u044e\u0442 \u0441\u0443\u0431\u044a\u0435\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0441\u0447\u0438\u0442\u0430\u0442\u044c \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0435\u0439, \u0430 \u0447\u0442\u043e \u2014 \u043b\u0435\u0433\u0438\u0442\u0438\u043c\u043d\u044b\u043c \u0443\u0431\u0435\u0436\u0434\u0435\u043d\u0438\u0435\u043c; \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0443\u0430\u043b\u044c\u043d\u0443\u044e \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u044c, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043e\u0446\u0435\u043d\u043a\u0430 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0441\u0438\u043b\u044c\u043d\u043e \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u043d\u043e\u0433\u043e, \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0438 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430, \u0447\u0442\u043e \u0437\u0430\u0442\u0440\u0443\u0434\u043d\u044f\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u043e\u0432.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043d\u0430\u0448\u0435\u0433\u043e \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u044b \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0438\u043d\u0433\u043e\u0432\u044b\u043c \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f\u043c \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0442\u0440\u0438\u0430\u043d\u0433\u0443\u043b\u044f\u0446\u0438\u044e \u043c\u0435\u0442\u043e\u0434\u043e\u0432, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0430\u0437\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432 \u0434\u043b\u044f \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u043e\u0441\u0442\u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432; \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0442\u044c \u043f\u043e\u0440\u043e\u0433\u043e\u0432\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f, \u043a\u0430\u043b\u0438\u0431\u0440\u0443\u044f \u043f\u043e\u0440\u043e\u0433 \"\u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438\" \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u0438 \u0432\u044b\u0431\u043e\u0440\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430; \u0432\u043d\u0435\u0434\u0440\u044f\u0442\u044c \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u043a\u0438\u0439 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c, \u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0442\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043e\u0432, \u0430 \u043d\u0435 \u0438\u0445 \u0437\u0430\u043c\u0435\u043d\u043e\u0439; \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0441\u0438\u043b\u044c\u043d\u044b\u0435 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u0440\u0430\u0437\u043d\u044b\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432, \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u044f \u0432\u043e \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u0434\u0430\u0435\u0442 \u0431\u043e\u043b\u0435\u0435 \u0441\u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u043e\u0446\u0435\u043d\u043a\u0443 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438, \u0430 OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u043e\u043b\u0435\u0437\u0435\u043d \u0434\u043b\u044f \u0432\u044b\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u0438\u043a; \u0430\u0434\u0430\u043f\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u043f\u043e\u0434 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442, \u0440\u0430\u0437\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u044f \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u043b\u043e\u0432\u0430\u0440\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432 \u0434\u043b\u044f \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u044b\u0445 \u0442\u0435\u043c \u0438 \u044f\u0437\u044b\u043a\u043e\u0432; \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u043e\u0441\u0442\u044c \u043c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u0438, \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e \u0440\u0430\u0441\u043a\u0440\u044b\u0432\u0430\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0435 \u043c\u0435\u0442\u043e\u0434\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0438 \u0438\u0445 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u043f\u0440\u0438 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0438\u043d\u0433\u0430.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043d\u0430\u0448\u0435\u0433\u043e \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u044e\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u0448\u0438\u0440\u043e\u043a\u043e\u0439 \u0430\u0443\u0434\u0438\u0442\u043e\u0440\u0438\u0438 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438\u044e \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0442\u0438\u043f\u043e\u0432 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0439, \u0432\u044b\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0437\u0430 \u0440\u0430\u043c\u043a\u0438 \u044f\u0432\u043d\u043e \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043e\u043a\u0440\u0430\u0448\u0438\u0432\u0430\u043d\u0438\u044f; \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u043a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u044f \u0438 \u043d\u0430\u0432\u044b\u043a\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043c\u0435\u0434\u0438\u0430\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430; \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u044f, \u0447\u0442\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043f\u0440\u043e\u0434\u0432\u0438\u043d\u0443\u0442\u044b\u0435 \u0418\u0418-\u043c\u043e\u0434\u0435\u043b\u0438, \u0438\u043c\u0435\u044e\u0442 \u0441\u0432\u043e\u0438 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u0438 \u043f\u0440\u0435\u0434\u0432\u0437\u044f\u0442\u043e\u0441\u0442\u0438.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0422\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430 \u0434\u0432\u0443\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432: \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c, \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043c\u043e\u0441\u0442\u044c, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u043b\u044f \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u043e\u0431\u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439 \u043e \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u0438\u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u0432\u0430\u0436\u043d\u043e \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0438\u0445 \u0442\u043e\u0447\u043d\u043e\u0441\u0442\u044c, \u043d\u043e \u0438 \u043f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0430\u0441\u043f\u0435\u043a\u0442\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u0438 \u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0435 \u041f\u041e, \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e \u0431\u0435\u0437 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443, \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u0443\u043c\u0435\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u044b\u0447\u0438\u0441\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b, \u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 12,252 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043d\u044f\u043b\u0430 \u043e\u043a\u043e\u043b\u043e 20 \u043c\u0438\u043d\u0443\u0442. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043e\u043f\u043b\u0430\u0442\u044b API-\u0437\u0430\u043f\u0440\u043e\u0441\u043e\u0432 (\u043f\u0440\u0438\u043c\u0435\u0440\u043d\u0430\u044f \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043d\u0430\u0448\u0435\u0433\u043e \u043a\u043e\u0440\u043f\u0443\u0441\u0430 ~$100-150), \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0433\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f, \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u043c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b, \u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0442\u043e\u0433\u043e \u0436\u0435 \u043e\u0431\u044a\u0435\u043c\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043d\u044f\u043b\u0430 \u043e\u043a\u043e\u043b\u043e 1-2 \u0447\u0430\u0441\u043e\u0432 \u0441 \u0443\u0447\u0435\u0442\u043e\u043c \u0437\u0430\u0434\u0435\u0440\u0436\u0435\u043a API.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412 \u043f\u043b\u0430\u043d\u0435 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043c\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u043b\u0435\u0433\u043a\u043e \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u043e\u0431\u044a\u0435\u043c\u043e\u0432 \u0434\u0430\u043d\u043d\u044b\u0445, \u0435\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043c\u043e\u0436\u043d\u043e \u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u0437\u0430 \u0441\u0447\u0435\u0442 \u043f\u0430\u0440\u0430\u043b\u043b\u0435\u043b\u044c\u043d\u043e\u0439 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438, \u0430 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043f\u0440\u044f\u043c\u043e \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432\u044b\u0447\u0438\u0441\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u043c. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d \u043a\u0432\u043e\u0442\u0430\u043c\u0438 \u0438 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c\u044e API, \u0435\u0433\u043e \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u043e\u0432\u044b\u0448\u0430\u0435\u0442 \u0441\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e \u043e\u0431\u044a\u0435\u043c\u0443 \u0434\u0430\u043d\u043d\u044b\u0445, \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u0447\u0435\u0440\u0435\u0434\u044f\u043c\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u043e\u0432 \u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043e\u0448\u0438\u0431\u043e\u043a.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u0438\u0431\u043a\u043e\u0441\u0442\u044c \u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432 NLTK-\u043f\u043e\u0434\u0445\u043e\u0434\u0435 \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u043f\u043e\u043b\u043d\u043e\u0439 \u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u043e\u0441\u0442\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u043e\u0441\u0442\u0438, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u043e\u0432\u0430\u0440\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u043e\u0432, \u0438\u0437\u043c\u0435\u043d\u044f\u0442\u044c \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u044b \u0442\u043e\u043a\u0435\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438 \u0444\u043e\u0440\u043c\u0443\u043b\u044b \u043e\u0446\u0435\u043d\u043a\u0438, \u043d\u043e \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0438\u0437\u0430 \u0432 Python \u0438 NLP \u0434\u043b\u044f \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043c\u043e\u0434\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0439. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0447\u0435\u0440\u0435\u0437 \u043f\u0440\u043e\u043c\u043f\u0442-\u0438\u043d\u0436\u0438\u043d\u0438\u0440\u0438\u043d\u0433, \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u044f\u044f \u0440\u0430\u0431\u043e\u0442\u0430 \u043c\u043e\u0434\u0435\u043b\u0438 \u043d\u0435\u043f\u0440\u043e\u0437\u0440\u0430\u0447\u043d\u0430 (\u0447\u0435\u0440\u043d\u044b\u0439 \u044f\u0449\u0438\u043a), \u043c\u043e\u0434\u0435\u043b\u044c \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440\u043e\u043c, \u0447\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0432\u043b\u0438\u044f\u0442\u044c \u043d\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b, \u043d\u043e \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u0433\u043b\u0443\u0431\u043e\u043a\u043e\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0438\u0437\u044b \u0434\u043b\u044f \u0431\u0430\u0437\u043e\u0432\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412 \u0430\u0441\u043f\u0435\u043a\u0442\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u0438 \u0438 \u0442\u0440\u0435\u0431\u043e\u0432\u0430\u043d\u0438\u0439 \u043a \u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0435 NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043d\u0430 \u043b\u044e\u0431\u043e\u043c \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0435 \u0441 Python, \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u043e\u0440\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u044f, \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442 \u0432 \u0438\u0437\u043e\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0438 \u043f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u0434\u043b\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0434\u0430\u043d\u043d\u044b\u0445. OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0433\u043e \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0443, \u0434\u0430\u043d\u043d\u044b\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u044b \u0442\u0440\u0435\u0442\u044c\u0435\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d \u0433\u0435\u043e\u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u043c\u0438 \u0444\u0430\u043a\u0442\u043e\u0440\u0430\u043c\u0438 \u0438 \u043d\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u0434\u043b\u044f \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0441\u0442\u0440\u043e\u0433\u043e \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u041f\u0440\u0430\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f: \u043a\u043e\u0433\u0434\u0430 \u043a\u0430\u043a\u043e\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u043b\u0443\u0447\u0448\u0435<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043d\u0430\u0448\u0435\u0433\u043e \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u043e\u043f\u0442\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u043f\u043e\u0434\u0445\u043e\u0434\u0430.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">OpenAI-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u043f\u0442\u0438\u043c\u0430\u043b\u0435\u043d \u0434\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u0441\u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u0438 \u044d\u043c\u043e\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u043a\u0440\u0430\u0441\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u0441\u043e\u0431\u0435\u043d\u043d\u043e \u043f\u0440\u0438 \u0440\u0430\u0431\u043e\u0442\u0435 \u0441 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043e\u043a\u0440\u0430\u0448\u0435\u043d\u043d\u044b\u043c\u0438 \u0442\u0435\u043c\u0430\u043c\u0438; \u0434\u043b\u044f \u0443\u0433\u043b\u0443\u0431\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0441\u043b\u043e\u0436\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043f\u0440\u0438 \u0440\u0430\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0438 \u0438\u0437\u043e\u0449\u0440\u0435\u043d\u043d\u044b\u0445 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u043a\u0430\u043c\u043f\u0430\u043d\u0438\u0439, \u0434\u043b\u044f \u0432\u044b\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0439 \u0438 \u043f\u043e\u0434\u0442\u0435\u043a\u0441\u0442\u043e\u0432, \u043f\u0440\u0438 \u0440\u0430\u0431\u043e\u0442\u0435 \u0441 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u043e\u043c, \u0442\u0440\u0435\u0431\u0443\u044e\u0449\u0438\u043c \u043f\u043e\u043d\u0438\u043c\u0430\u043d\u0438\u044f \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430; \u0434\u043b\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0439 \u0441 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0439 \u0442\u0435\u0445\u043d\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0438\u0437\u043e\u0439, \u043a\u043e\u0433\u0434\u0430 \u043d\u0435\u0442 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0441\u0442\u043e\u0432 \u043f\u043e NLP, \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">NLTK-\u043f\u043e\u0434\u0445\u043e\u0434 \u043e\u043f\u0442\u0438\u043c\u0430\u043b\u0435\u043d \u0434\u043b\u044f \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u0441\u043a\u0440\u0438\u043d\u0438\u043d\u0433\u0430 \u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u043e\u0431\u044a\u0435\u043c\u043e\u0432 \u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u0446\u0435\u043b\u044c\u044e \u0432\u044b\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u0442\u0440\u0435\u0431\u0443\u044e\u0449\u0435\u0433\u043e \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430; \u0434\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0445 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0441\u0435\u0442\u0438, \u0432 \u0440\u0435\u0433\u0438\u043e\u043d\u0430\u0445 \u0441 \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u044b\u043c \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435\u043c, \u0432 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f\u0445 \u0441 \u0441\u0442\u0440\u043e\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430\u043c\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0438 \u0440\u0430\u0431\u043e\u0442\u0435 \u0441 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0438\u043b\u0438 \u0447\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u043c\u0438; \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0440\u0435\u0448\u0435\u043d\u0438\u0439, \u043a\u043e\u0433\u0434\u0430 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u0447\u043d\u0430\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043f\u043e\u0434 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u0443\u044e \u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0443 \u0438\u043b\u0438 \u044f\u0437\u044b\u043a, \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u043d\u0430\u0434 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u043e\u043c, \u0434\u043b\u044f \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0432 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430. \u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0435\u043d\u0434\u0435\u043d\u0446\u0438\u044e \u044d\u0442\u043e\u0433\u043e \u043c\u0435\u0442\u043e\u0434\u0430 \u043a \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0444\u0435\u0441\u0441\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0439 \u2013 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 NLTK \u0434\u043b\u044f \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u0432\u044b\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u0442\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u0441 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u0431\u043e\u043b\u0435\u0435 \u0433\u043b\u0443\u0431\u043e\u043a\u0438\u043c \u0430\u043d\u0430\u043b\u0438\u0437\u043e\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e OpenAI \u0434\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u0441\u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u0438, \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0435\u043c\u043e\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u043e\u0439 \u0434\u043b\u044f \u0438\u0442\u043e\u0433\u043e\u0432\u044b\u0445 \u0432\u044b\u0432\u043e\u0434\u043e\u0432 \u0438 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0439; \u0434\u043b\u044f \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u0446\u0435\u043d\u0442\u0440\u043e\u0432 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432 \u2013 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0440\u0430\u0437\u043d\u044b\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432, \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043c\u0435\u0442\u043e\u0434\u043e\u0432, \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043d\u043e\u0432\u044b\u0445 \u043c\u0435\u0442\u0440\u0438\u043a \u0438 \u043c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u0439 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043b\u0443\u0447\u0448\u0438\u0445 \u043f\u0440\u0430\u043a\u0442\u0438\u043a \u043e\u0431\u043e\u0438\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432.\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u0438\u043a, \u0432 \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u0445 \u043f\u043e \u043c\u0435\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043e\u0442\u043d\u043e\u0441\u0442\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u0438\u0431\u0440\u0438\u0434\u043d\u044b\u0439 \u043f\u043e\u0434\u0445\u043e\u0434 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0444\u0435\u0441\u0441\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0445 \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0438\u043d\u0433\u043e\u0432\u044b\u0445 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0439 \u2013 NLTK \u0434\u043b\u044f \u043f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0433\u043e \u0441\u043a\u0440\u0438\u043d\u0438\u043d\u0433\u0430 \u0438 \u043e\u0442\u0431\u043e\u0440\u0430 \u043f\u043e\u0434\u043e\u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, OpenAI \u0434\u043b\u044f \u0443\u0433\u043b\u0443\u0431\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430 \u0434\u043b\u044f \u0438\u0442\u043e\u0433\u043e\u0432\u044b\u0445 \u0432\u044b\u0432\u043e\u0434\u043e\u0432 \u0438 \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0439; \u0434\u043b\u044f \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u0446\u0435\u043d\u0442\u0440\u043e\u0432 \u0438 \u0430\u043d\u0430\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432 \u2013 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0440\u0430\u0437\u043d\u044b\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432, \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043c\u0435\u0442\u043e\u0434\u043e\u0432, \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043d\u043e\u0432\u044b\u0445 \u043c\u0435\u0442\u0440\u0438\u043a \u0438 \u043c\u0435\u0442\u043e\u0434\u043e\u043b\u043e\u0433\u0438\u0439 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043b\u0443\u0447\u0448\u0438\u0445 \u043f\u0440\u0430\u043a\u0442\u0438\u043a \u043e\u0431\u043e\u0438\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0417\u0430\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0438 \u043f\u0435\u0440\u0441\u043f\u0435\u043a\u0442\u0438\u0432\u044b \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043c\u0435\u0434\u0438\u0430\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430\u0448\u0435 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u0430\u0433\u043b\u044f\u0434\u043d\u043e \u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u0443\u0435\u0442, \u0447\u0442\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u0435\u0440\u0435\u043f\u0443\u0442\u044c\u0435 \u0442\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432 \u0438 \u043d\u043e\u0432\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0430. \u041a\u0430\u0436\u0434\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0438\u043c\u0435\u0435\u0442 \u0441\u0432\u043e\u0438 \u0441\u0438\u043b\u044c\u043d\u044b\u0435 \u0438 \u0441\u043b\u0430\u0431\u044b\u0435 \u0441\u0442\u043e\u0440\u043e\u043d\u044b, \u0438 \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0435\u0448\u0435\u043d\u0438\u044f, \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u0433\u043e \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0437\u0430\u0434\u0430\u0447, \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u0440\u0430\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0440\u0430\u0437\u043d\u0438\u0446\u0430 \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u0445 \u043e\u0446\u0435\u043d\u043a\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0438 \u0442\u043e\u0433\u043e \u0436\u0435 \u043a\u043e\u0440\u043f\u0443\u0441\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u0432\u0443\u043c\u044f \u0440\u0430\u0437\u043d\u044b\u043c\u0438 \u043c\u0435\u0442\u043e\u0434\u0430\u043c\u0438 \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u0435\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u043a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u044f \u043a \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u043c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u043c \u0430\u043d\u0430\u043b\u0438\u0437\u0430. \u041e\u0441\u043e\u0431\u0435\u043d\u043d\u043e \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e, \u0447\u0442\u043e NLTK-\u043c\u0435\u0442\u043e\u0434 \u043a\u043b\u0430\u0441\u0441\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u043b \u043f\u043e\u0434\u0430\u0432\u043b\u044f\u044e\u0449\u0435\u0435 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 (96.3%) \u043a\u0430\u043a \u043d\u0435\u0433\u0430\u0442\u0438\u0432\u043d\u044b\u0439, \u0432 \u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u0430\u043a OpenAI-\u043c\u0435\u0442\u043e\u0434 \u0434\u0430\u043b \u0431\u043e\u043b\u0435\u0435 \u0441\u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u043e\u0446\u0435\u043d\u043a\u0443 \u0441 \u043f\u0440\u0435\u043e\u0431\u043b\u0430\u0434\u0430\u043d\u0438\u0435\u043c \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 (51.5%).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u0442\u043e \u0440\u0430\u0441\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u0435 \u0434\u0435\u043c\u043e\u043d\u0441\u0442\u0440\u0438\u0440\u0443\u0435\u0442, \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0438\u043b\u044c\u043d\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043c\u043e\u0433\u0443\u0442 \u0437\u0430\u0432\u0438\u0441\u0435\u0442\u044c \u043e\u0442 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u043c\u0435\u0442\u043e\u0434\u0430, \u0447\u0442\u043e \u0438\u043c\u0435\u0435\u0442 \u0441\u0435\u0440\u044c\u0435\u0437\u043d\u044b\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f \u0434\u043b\u044f \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u0438 \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0435\u0440\u043e\u0432. \u041f\u0440\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c \u0434\u043b\u044f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u043c\u0435\u0434\u0438\u0430\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043e\u0441\u043e\u0437\u043d\u0430\u0432\u0430\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0443\u044e \u043f\u0440\u0435\u0434\u0432\u0437\u044f\u0442\u043e\u0441\u0442\u044c \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u043e\u0432 \u0438 \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u044c \u0435\u0435 \u0432\u043e \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \u043f\u0440\u0438 \u0438\u043d\u0442\u0435\u0440\u043f\u0440\u0435\u0442\u0430\u0446\u0438\u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0438 \u043e\u0434\u0438\u043d \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0443\u044e \u043e\u0446\u0435\u043d\u043a\u0443 \u0438 \u043a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435, \u043d\u043e \u0433\u0440\u0430\u043c\u043e\u0442\u043d\u043e\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0439 \u043c\u043e\u0436\u0435\u0442 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e\u0432\u044b\u0441\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u044b \u0444\u0430\u043a\u0442\u0447\u0435\u043a\u0435\u0440\u043e\u0432 \u0438 \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043c\u0435\u0434\u0438\u0430. \u041d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0432\u043d\u044b\u043c \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u043c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u043c\u0435\u0442\u043e\u0434\u043e\u0432 \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u0441 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u043e\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0438\u0435 \u0433\u043e\u0434\u044b \u043c\u044b, \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e, \u0443\u0432\u0438\u0434\u0438\u043c \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0439: \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043c\u043e\u0434\u0435\u043b\u0435\u0439 \u0434\u043b\u044f \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043c\u0435\u0434\u0438\u0430\u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430, \u043e\u0431\u0443\u0447\u0435\u043d\u043d\u044b\u0445 \u043d\u0430 \u043f\u0440\u0438\u043c\u0435\u0440\u0430\u0445 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u044b\u0445 \u0442\u0435\u0445\u043d\u0438\u043a; \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0432 \u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u044f\u0437\u044b\u043a\u043e\u0432\u044b\u0445 \u043c\u043e\u0434\u0435\u043b\u0435\u0439, \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u044e\u0449\u0438\u0445 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0430 \u0432\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u044b; \u0438\u043d\u0442\u0435\u0440\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0445 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432, \u0441\u043e\u0447\u0435\u0442\u0430\u044e\u0449\u0438\u0445 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0441 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u043e\u0439; \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0449\u0438\u0445 \u0418\u0418 \u0434\u043b\u044f \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0436\u0434\u0430\u043d \u043c\u0435\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043e\u0442\u043d\u043e\u0441\u0442\u0438.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412\u043d\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430, \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u043c \u0444\u0430\u043a\u0442\u043e\u0440\u043e\u043c \u0443\u0441\u043f\u0435\u0445\u0430 \u043e\u0441\u0442\u0430\u043d\u0435\u0442\u0441\u044f \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u043a\u0430\u044f \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0438\u0437\u0430, \u043a\u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435 \u0438 \u043f\u0440\u0438\u0432\u0435\u0440\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u0432\u044b\u0441\u043e\u043a\u0438\u043c \u044d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u043c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0430\u043c \u0432 \u0431\u043e\u0440\u044c\u0431\u0435 \u0441 \u0434\u0435\u0437\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u0438 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u044f\u043c\u0438. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0440\u0430\u0441\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u044f \u0440\u0435\u0448\u0435\u043d\u0438\u0439, \u0430 \u043d\u0435 \u043a\u0430\u043a \u0437\u0430\u043c\u0435\u043d\u0430 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u043e\u0439 \u043e\u0446\u0435\u043d\u043a\u0435.<\/p>\n\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div><\/div>\n<\/div>","_ru_post_name":"nltk_openai_tiktok_content","_ru_post_excerpt":"","_ru_post_title":"\u0418\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442 \u043f\u0440\u043e\u0442\u0438\u0432 \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0439: \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u043e\u0432 \u043a \u0432\u044b\u044f\u0432\u043b\u0435\u043d\u0438\u044e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0430","_eng_post_content":"In the era of information wars and mass disinformation, automatic content analysis systems are becoming an indispensable tool for fact-checkers and media researchers. In this article, we compare two common approaches to identifying manipulative content \u2014 classical natural language processing (NLP) methods and the latest technologies based on large language models (LLM).\nAs part of the research, a corpus of video content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> from the TikTok social network was analyzed. The analysis period was from March 20 to April 21, 2025. <a href=\"https:\/\/exolyt.com\/\">Exolyt - TikTok Social Intelligence Platform<\/a> was used for data collection. The titles, descriptions, and tags of the videos were analyzed. But the main interest is not the content itself, but how different technological approaches evaluate the same data.\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div>\n<div class=\"grid-cols-1 grid gap-2.5 [&amp;_&gt;_*]:min-w-0 !gap-3.5\">\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Research Methodology<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">To compare the two approaches, we used a common dataset \u2014 a corpus of 12,252 videos with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong>, including titles, descriptions, and metadata. Two different algorithms were applied to the same data, which allowed us to directly compare their effectiveness, strengths, and weaknesses. The main analysis parameters included keyword extraction (tokens), frequency analysis of the most used words and phrases, assessment of emotional coloring in three categories (negative, positive, neutral), and determining the level of content manipulativeness.<\/p>\n\n<blockquote class=\"wp-block-quote is-style-info is-layout-flow wp-block-quote-is-layout-flow\">\nNLTK (Natural Language Toolkit) is a leading open-source platform for natural language processing in Python, created in 2001 and actively developed by the community. The library provides easy-to-use interfaces for working with more than 50 text corpora and lexical resources, as well as a rich set of tools for text processing: tokenization, stemming, lemmatization, part-of-speech tagging, syntactic analysis, named entity extraction, and semantic analysis. NLTK includes extensive documentation and educational materials, making it popular among both researchers and developers who apply NLP methods to solve practical problems \u2014 from sentiment analysis and text classification to building chatbots and information retrieval systems. Thanks to its modular architecture and flexibility, NLTK continues to be one of the main tools in the arsenal of specialists in computational linguistics and text analysis, despite the emergence of new libraries focused on deep learning.<\/blockquote>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Detailed Methodology of the Two Approaches<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Classical Approach Using NLTK<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Technology<\/strong>: Open Natural Language Toolkit (NLTK) library with additional tokenization and analysis algorithms.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Data Processing<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The first stage of text preprocessing included converting text to lowercase, removing punctuation and special characters, removing numbers and extra spaces, as well as combining text fields (title, description, tags).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This was followed by tokenization \u2013 breaking text into individual words using NLTK word_tokenize, removing stop words from Russian and English languages (prepositions, conjunctions, etc.), and filtering words shorter than 3 characters.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Emotional analysis was carried out by searching for words from predefined dictionaries of emotional markers, counting the number of words in each category, and determining the dominant emotion by the maximum number of markers.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">For manipulation assessment, the formula was applied: <code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulation_score = emotion_negative * 1.5 - emotion_positive<\/code> with subsequent normalization of the indicator relative to the average value and determination of the manipulation threshold (mean + standard deviation).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The final stage was the process of forming the results, which included frequency analysis of words and bigrams (word pairs), classification of content by emotional coloring, and identification of potentially manipulative content.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Implementation Features<\/strong>: Data processing was carried out in parts to save memory, a backup tokenization system was provided in the absence of NLTK, and visualization of results was carried out using matplotlib\/plotly.<\/p>\n\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Modern Approach Using OpenAI Models<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Technology<\/strong>: OpenAI API with GPT-4o-mini model<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Data Processing<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The initial stage included query formation \u2013 combining text fields (title, description, tags) and sending the full text without preprocessing.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This was followed by working with a system prompt for the model, which contained instructions for text analysis, keyword extraction, emotional coloring assessment, and determining the level of manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Processing the model's response involved extracting structured data from the JSON response, saving tokens, emotional ratings, and manipulativeness indicator, as well as determining the dominant emotion based on the model's ratings.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The final stage \u2013 aggregation of results included counting the frequency of tokens and bigrams, calculating average indicators for emotional categories, determining the manipulation threshold, and identifying content with a high level of manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>Implementation Features<\/strong>: A structured response format (JSON) was used, pauses between requests were provided to comply with API limits, and error handling mechanisms with return to neutral values in case of failures.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Comparative Analysis of Results<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Keywords and Frequency Analysis<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">Both methods identified similar keywords in the content, which indicates a basic level of consistency. The word clouds from the reports show that the word \"belarus\" is the most frequent in both cases, followed by \"news\", \"recommendations\", \"minsk\", \"lukashenko\".<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3419\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud.png\" alt=\"\" width=\"608\" height=\"312\" \/><\/div>\nOpenAI:\n<img class=\"alignnone  wp-image-3420\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds.png\" alt=\"\" width=\"596\" height=\"307\" \/>\n<p class=\"whitespace-pre-wrap break-words\">Notably, the visual representation of word clouds looks very similar in both approaches, despite the difference in methodology. This may be explained by the fact that the word cloud visualization algorithm was identical in both scripts, and the main frequently occurring words indeed coincide. This coincidence confirms the basic reliability of both approaches in highlighting key content themes, even with significant differences in assessing emotional coloring and manipulativeness.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">However, on closer examination of frequency histograms, differences are noticeable:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the NLTK method, the word \"belarus\" occurs about 14,025 times, and the next word \"news\" \u2014 3,189 times. In the OpenAI method, the word \"belarus\" occurs about 8,258 times, \"news\" \u2014 2,652 times.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3422\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20.png\" alt=\"\" width=\"679\" height=\"495\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3423\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20.png\" alt=\"\" width=\"664\" height=\"480\" \/>\n<p class=\"whitespace-pre-wrap break-words\">These differences are explained by different principles of tokenization and keyword extraction. The OpenAI model seeks to highlight more meaningful words with information load, while the NLTK method works with the formal frequency of occurrence.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the top 15 word pairs, there are also significant differences: the NLTK method highlights pairs: \"brest minsk\" (385), \"economy politics\" (371), \"politics MFA\" (369), while the OpenAI method highlights: \"belarus belarus\" (1,723), \"belarus lukashenko\" (615), \"minsk belarus\" (527).<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3424\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram.png\" alt=\"\" width=\"661\" height=\"432\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3425\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram.png\" alt=\"\" width=\"717\" height=\"488\" \/>\n<p class=\"whitespace-pre-wrap break-words\">This demonstrates different approaches to forming bigrams: OpenAI takes into account the proximity of words in the text, while the NLTK method analyzes thematic connectivity rather.<\/p>\n\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Striking Differences in Emotional Coloring Assessment<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">The most dramatic divergence between the two systems concerns the assessment of the emotional coloring of content. When we analyzed the same dataset of videos with the hashtag <strong>#belarus<\/strong>, the results were distributed as follows:<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3427\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions.png\" alt=\"\" width=\"507\" height=\"340\" \/><\/div>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK method<\/strong> showed an extremely unbalanced distribution with a predominance of negative assessment:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">96.3% negative (11,796 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">3.1% positive (388 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">0.6% neutral (68 videos)<\/li>\n<\/ul>\n<img class=\"alignnone  wp-image-3428\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions.png\" alt=\"\" width=\"513\" height=\"323\" \/>\n<p class=\"whitespace-pre-wrap break-words\">However, <strong>OpenAI method<\/strong> gave a completely different, more balanced picture:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">51.5% neutral (6,308 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">30.2% positive (3,702 videos)<\/li>\n \t<li class=\"whitespace-normal break-words\">18.3% negative (2,236 videos)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">This discrepancy can be explained by different approaches to determining emotional coloring. The NLTK approach relies on dictionaries of emotional markers and automatically classifies most political content as negative due to the presence of certain keywords, without taking into account their context. In turn, the OpenAI approach takes into account a broader context and is able to identify neutral informational messages even in the presence of political topics.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3429\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average.png\" alt=\"\" width=\"495\" height=\"329\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3430\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average.png\" alt=\"\" width=\"514\" height=\"340\" \/>\n<p class=\"whitespace-pre-wrap break-words\">It is also interesting to consider the average emotional coloring scores, which demonstrate different scales:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">In NLTK method: negative - 0.03, positive - 0.05, neutral - 0.01<\/li>\n \t<li class=\"whitespace-normal break-words\">In OpenAI method: neutral - 5.01, positive - 3.32, negative - 1.74<\/li>\n<\/ul>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">Assessment of Content Manipulativeness<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">In assessing content manipulativeness, the methods also demonstrated significant differences:<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3431\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation.png\" alt=\"\" width=\"570\" height=\"366\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK method<\/strong> showed a unimodal distribution with concentration of most assessments in the area of low values (1-2 on a scale from 0 to 10) and only a small amount of content with high values of manipulativeness. This is explained by the fact that the method uses a simple mathematical formula (<code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulativeness = negative*1.5 - positive<\/code>), which gives an unambiguous correlation with emotional coloring.<\/p>\nOpenAI:\n<img class=\"alignnone  wp-image-3432\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation.png\" alt=\"\" width=\"581\" height=\"373\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>OpenAI method<\/strong> demonstrated a multimodal distribution with several peaks in the area of values 5.0, 6.0, and 7.0 on the manipulativeness scale, with a manipulation threshold of about 7.20. This reflects a more complex approach to manipulation analysis, taking into account not only emotional coloring, but also various rhetorical techniques, logical manipulations, and other subtle aspects of influence.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3434\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions.png\" alt=\"\" width=\"484\" height=\"361\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3433\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions.png\" alt=\"\" width=\"485\" height=\"356\" \/>\n<p class=\"whitespace-pre-wrap break-words\">The emotional profile of potentially manipulative content also differs:<\/p>\n\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">According to NLTK method: predominance of negative (1.06), very low ratings of neutrality (0.07) and positive (0.02)<\/li>\n \t<li class=\"whitespace-normal break-words\">According to OpenAI method: high ratings of negative (6.46), medium ratings of neutrality (2.55) and low positive (1.75)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">These differences clearly demonstrate how differently the two methods approach the identification of manipulativeness in content, which has serious implications for the practical application of these tools in fact-checking.<\/p>\n\n<\/div>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Interpretation of Results: What Did the Two Different Methods Show?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Such significant discrepancies in the results of the two methods require careful analysis and interpretation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different understanding of text \"emotionality\" is manifested in the fact that the NLTK approach determines emotional coloring based on the presence of specific marker words from a predefined dictionary, without taking into account the context of their use. The word \"war\" is automatically classified as negative, regardless of context, which leads to an overestimation of negativity in the analysis of political topics. The OpenAI approach evaluates emotional coloring based on a more complex understanding of the text, is able to distinguish nuances and shades of meaning in a specific context.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">An example from our data corpus: \"Belarus: regional news, political situation, analytical materials\". NLTK classifies this text as negative due to the presence of political topics, while OpenAI can classify it as neutral, considering the informational, rather than evaluative nature of the content.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different concepts of \"manipulativeness\" are manifested in the fact that the NLTK approach defines manipulativeness through a simplified mathematical formula based on the quantitative ratio of emotionally colored words. The OpenAI approach evaluates manipulativeness based on a more complex analysis that takes into account rhetorical techniques, logical structures, and other signs of manipulation that a simple dictionary approach may not capture.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The political context of content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> plays a significant role in such a dramatic divergence of results. NLTK, relying on dictionaries of emotional markers, tends to classify political topics as negative due to frequently encountered terms related to conflicts, power, and confrontation. OpenAI, with a more developed understanding of context, is able to distinguish neutral informational coverage from emotionally colored propaganda.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Interpretation of Results: What Did the Two Different Methods Show?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Such significant discrepancies in the results of the two methods require careful analysis and interpretation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different understanding of text \"emotionality\" is manifested in the fact that the NLTK approach determines emotional coloring based on the presence of specific marker words from a predefined dictionary. The word \"war\" is automatically classified as negative, \"victory\" \u2014 as positive, regardless of context. The OpenAI approach evaluates emotional coloring based on a comprehensive understanding of the text, including context, subtext, and hidden meanings. The phrase \"another brilliant victory\" can be recognized as irony and classified as negative.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">An example from our data corpus: \"Belarus: regional news, political situation, analytical materials\". NLTK classifies this text as neutral, as it has no obvious emotional markers. OpenAI can classify it as potentially negative, considering the context of political news in the current situation.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Different concepts of \"manipulativeness\" are manifested in the fact that the NLTK approach defines manipulativeness through a mathematical formula based on the ratio of negative and positive words. This approach assumes that manipulative content is predominantly negative content. The OpenAI approach evaluates manipulativeness based on a complex understanding of rhetorical techniques, logical errors, emotional pressure, distortion of facts, and other signs of manipulation that may be present even in formally positive or neutral text.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The political context of content with the hashtag <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong> may play a significant role in such a dramatic divergence of results. A large language model trained on a huge corpus of texts, including news and analytical materials, can \"understand\" the complex political context and capture hidden meanings and subtexts related to the coverage of the political situation in the region.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">What This Means for Fact-checking and Media Literacy<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">The identified discrepancies between the two approaches have serious implications for the work of fact-checkers and media researchers.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Methodological challenges include the problem of the \"gold standard\", that is, the question of which method is closer to the truth, and it is quite likely that the truth is somewhere in the middle or requires a fundamentally different approach; subjectivity of assessments, when even advanced algorithms reflect subjective ideas about what is considered manipulation and what is legitimate persuasion; contextual dependence, which manifests itself in the fact that the assessment of manipulativeness depends heavily on the cultural, social, and political context, which makes it difficult to create universal algorithms.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Based on our research, we recommend that fact-checking organizations apply triangulation of methods, using several different algorithmic approaches to verify the consistency of results; adjust threshold values, calibrating the threshold of \"manipulativeness\" based on expert assessment of a sample of content; implement human control, since automatic systems should act as a decision support tool for experts, not their replacement; take into account the strengths of different approaches, taking into account that the NLTK approach gives a more balanced assessment of emotional coloring, and the OpenAI approach can be useful for identifying hidden manipulative techniques; adapt technologies to the local context, developing specialized dictionaries of emotional markers for specific topics and languages; ensure transparency of methodology, publicly disclosing the analysis methods used and their limitations when publishing fact-checking results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The results of our study emphasize the need to educate a wide audience on recognizing various types of manipulations that go beyond explicitly negative emotional coloring; developing critical thinking and media content analysis skills; understanding that automatic analysis systems, including advanced AI models, have their limitations and biases.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Technical Evaluation of Two Approaches: Cost, Scalability, Accessibility<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">For making informed decisions about technology implementation, it is important to consider not only their accuracy but also practical aspects of use.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of cost and resources, the NLTK approach is completely free, uses only open-source software, works locally without internet connection, requires moderate computing resources, and processing 12,252 videos took about 20 minutes. The OpenAI approach requires payment for API requests (approximate cost of analyzing our corpus ~$100-150), depends on a stable internet connection, creates minimal load on local resources, and processing the same amount of data took about 1-2 hours, taking into account API delays.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of scalability and performance, the NLTK approach easily scales to process large volumes of data, its performance can be increased through parallel processing, and processing speed is directly proportional to available computing resources. The OpenAI approach is limited by quotas and API speed, its scaling increases cost in proportion to the volume of data, requires request queue management and error handling.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Flexibility and customization in the NLTK approach is manifested in complete transparency and customizability, the ability to modify dictionaries of emotional markers, change tokenization algorithms and evaluation formulas, but requires expertise in Python and NLP for significant modifications. The OpenAI approach offers limited customization options through prompt engineering, the internal workings of the model are not transparent (black box), the model is regularly updated by the provider, which can affect results, but does not require deep technical expertise for basic use.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In terms of accessibility and infrastructure requirements, the NLTK approach works on any computer with Python, does not require specialized equipment, can be deployed in an isolated network, and is suitable for processing confidential data. The OpenAI approach requires a constant internet connection, data is sent to third-party servers, may be limited by geopolitical factors, and is not suitable for processing strictly confidential information.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Practical Application Scenarios: When Is Each Approach Better<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Based on our comparative analysis, we can identify optimal usage scenarios for each approach.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The OpenAI approach is optimal for a more balanced assessment of the emotional coloring of content, especially when working with politically colored topics; for in-depth analysis of complex content, when investigating sophisticated information campaigns, for identifying hidden manipulations and subtexts, when working with content that requires understanding of cultural context; for organizations with limited technical expertise, when there are no in-house NLP specialists, when there is a need to quickly launch an analytical system.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The NLTK approach is optimal for primary screening of large volumes of data to identify potentially negative content that requires further analysis; for work in conditions of limited network access, in regions with unstable internet connection, in organizations with strict information security policies, when working with confidential or sensitive data; for creating specialized solutions when precise customization for a specific topic or language is required, when full control over the algorithm is needed, for integration into existing monitoring systems. It should be noted that this method tends to classify most political content as negative.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">A hybrid approach is recommended for professional fact-checking organizations \u2013 using NLTK for primary identification of potentially problematic content, followed by deeper analysis using OpenAI for a more balanced assessment, culminating in expert evaluation for final conclusions and publications; for research centers and analytical agencies \u2013 comparative analysis of results from different approaches, combining quantitative and qualitative methods, developing new metrics and methodologies based on best practices from both approaches, in educational projects on media literacy.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">A hybrid approach is recommended for professional fact-checking organizations \u2013 NLTK for primary screening and selection of suspicious content, OpenAI for in-depth analysis of selected materials, expert evaluation for final conclusions and publications; for research centers and analytical agencies \u2013 comparative analysis of results from different approaches, combining quantitative and qualitative methods, developing new metrics and methodologies based on best practices from both approaches.<\/p>\n\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">Conclusion and Prospects for the Development of Automated Media Content Analysis<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">Our research clearly demonstrates that automated analysis of media content is at a crossroads of traditional algorithmic approaches and new possibilities of artificial intelligence. Each method has its strengths and weaknesses, and there is no perfect solution suitable for all tasks.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">The dramatic difference in the results of evaluating the same data corpus by two different methods emphasizes the need for a critical attitude towards automated analysis tools. It is particularly illustrative that the NLTK method classified the vast majority of content (96.3%) as negative, while the OpenAI method gave a more balanced assessment with a predominance of neutral content (51.5%).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">This discrepancy demonstrates how strongly the results of analysis can depend on the chosen method, which has serious implications for media space researchers and fact-checkers. When using automated systems for monitoring media content, it is necessary to be aware of the possible bias of algorithms and take it into account when interpreting results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">No algorithm can replace expert evaluation and critical thinking, but the competent application of technology can significantly increase the efficiency of fact-checkers and media researchers. The most productive approach seems to be combining different analysis methods with subsequent expert evaluation of results.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">In the coming years, we are likely to see the development of several directions: specialized models for media content analysis, trained on examples of manipulative techniques; local versions of large language models that do not require sending data to external servers; interactive tools combining automatic analysis with expert evaluation; educational platforms using AI to teach citizens media literacy.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">Regardless of technological progress, the key success factor will remain human expertise, critical thinking, and commitment to high ethical standards in combating disinformation and manipulation. Automated systems should be viewed as decision support tools, not as a replacement for expert evaluation.<\/p>\n\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div><\/div>\n<\/div>\n<i>This publication was developed by a research team under the leadership of Mikhail Doroshevich, PhD.<\/i>\n","_eng_post_name":"","_eng_post_excerpt":"","_eng_post_title":"Artificial Intelligence vs. Manipulation: Comparing Approaches to Detecting Manipulative Content","_bel_post_content":"\u0423 \u044d\u043f\u043e\u0445\u0443 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u0432\u043e\u0439\u043d\u0430\u045e \u0456 \u043c\u0430\u0441\u0430\u0432\u0430\u0439 \u0434\u044d\u0437\u044b\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0456 \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u044b\u044f \u0441\u0456\u0441\u0442\u044d\u043c\u044b \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0446\u0446\u0430 \u043d\u0435\u0437\u0430\u043c\u0435\u043d\u043d\u044b\u043c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0435\u0440\u0430\u045e \u0456 \u0434\u0430\u0441\u043b\u0435\u0434\u0447\u044b\u043a\u0430\u045e \u0421\u041c\u0406. \u0423 \u0433\u044d\u0442\u044b\u043c \u0430\u0440\u0442\u044b\u043a\u0443\u043b\u0435 \u043c\u044b \u043f\u0430\u0440\u0430\u045e\u043d\u043e\u045e\u0432\u0430\u0435\u043c \u0434\u0432\u0430 \u0440\u0430\u0441\u043f\u0430\u045e\u0441\u044e\u0434\u0436\u0430\u043d\u044b\u044f \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u044b \u0434\u0430 \u0432\u044b\u044f\u045e\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u2014 \u043a\u043b\u0430\u0441\u0456\u0447\u043d\u044b\u044f \u043c\u0435\u0442\u0430\u0434\u044b \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u043d\u0430\u0442\u0443\u0440\u0430\u043b\u044c\u043d\u0430\u0439 \u043c\u043e\u0432\u044b (NLP) \u0456 \u043d\u0430\u0439\u043d\u043e\u045e\u0448\u044b\u044f \u0442\u044d\u0445\u043d\u0430\u043b\u043e\u0433\u0456\u0456 \u043d\u0430 \u0431\u0430\u0437\u0435 \u0432\u044f\u043b\u0456\u043a\u0456\u0445 \u043c\u043e\u045e\u043d\u044b\u0445 \u043c\u0430\u0434\u044d\u043b\u044f\u045e (LLM).\n\u0423 \u0440\u0430\u043c\u043a\u0430\u0445 \u0434\u0430\u0441\u043b\u0435\u0434\u0430\u0432\u0430\u043d\u043d\u044f \u0431\u044b\u045e \u043f\u0440\u0430\u0430\u043d\u0430\u043b\u0456\u0437\u0430\u0432\u0430\u043d\u044b \u043a\u043e\u0440\u043f\u0443\u0441 \u0432\u0456\u0434\u044d\u0430\u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0437 \u0445\u044d\u0448\u0442\u044d\u0433\u0430\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c \u0441\u0430\u0446\u044b\u044f\u043b\u044c\u043d\u0430\u0439 \u0441\u0435\u0442\u043a\u0456 TikTok. \u0410\u043d\u0430\u043b\u0456\u0437\u0443\u0435\u043c\u044b \u043f\u0435\u0440\u044b\u044f\u0434 \u0437 20 \u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430 \u043f\u0430 21 \u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430 2025. \u0414\u043b\u044f \u0437\u0431\u043e\u0440\u0443 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u045e\u0441\u044f <a href=\"https:\/\/exolyt.com\/\">Exolyt - TikTok Social Intelligence Platform<\/a>. \u0410\u043d\u0430\u043b\u0456\u0437\u0443 \u043f\u0430\u0434\u0432\u0435\u0440\u0433\u043b\u0456\u0441\u044f \u043d\u0430\u0437\u0432\u044b, \u0430\u043f\u0456\u0441\u0430\u043d\u043d\u0456 \u0456 \u043c\u0435\u0442\u043a\u0456 \u0432\u0456\u0434\u044d\u0430\u0440\u043e\u043b\u0456\u043a\u0430\u045e. \u0410\u043b\u0435 \u0433\u0430\u043b\u043e\u045e\u043d\u044b \u0456\u043d\u0442\u0430\u0440\u044d\u0441 \u0443\u044f\u045e\u043b\u044f\u0435 \u043d\u0435 \u0437\u043c\u0435\u0441\u0442 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443, \u0430 \u0442\u043e\u0435, \u044f\u043a \u0440\u043e\u0437\u043d\u044b\u044f \u0442\u044d\u0445\u043d\u0430\u043b\u0430\u0433\u0456\u0447\u043d\u044b\u044f \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u044b \u0430\u0446\u044d\u043d\u044c\u0432\u0430\u044e\u0446\u044c \u0430\u0434\u043d\u044b \u0456 \u0442\u044b\u044f \u0436 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u044f.\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div>\n<div class=\"grid-cols-1 grid gap-2.5 [&amp;_&gt;_*]:min-w-0 !gap-3.5\">\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u041c\u0435\u0442\u0430\u0434\u0430\u043b\u043e\u0433\u0456\u044f \u0434\u0430\u0441\u043b\u0435\u0434\u0430\u0432\u0430\u043d\u043d\u044f<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u043b\u044f \u043f\u0430\u0440\u0430\u045e\u043d\u0430\u043d\u043d\u044f \u0434\u0432\u0443\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e \u043c\u044b \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u043b\u0456 \u0430\u0433\u0443\u043b\u044c\u043d\u044b \u043d\u0430\u0431\u043e\u0440 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u2014 \u043a\u043e\u0440\u043f\u0443\u0441 \u0437 12,252 \u0432\u0456\u0434\u044d\u0430 \u0437 \u0445\u044d\u0448\u0442\u044d\u0433\u0430\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c, \u0443\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u044b \u0437\u0430\u0433\u0430\u043b\u043e\u045e\u043a\u0456, \u0430\u043f\u0456\u0441\u0430\u043d\u043d\u0456 \u0456 \u043c\u0435\u0442\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u044b\u044f. \u0414\u0432\u0430 \u0440\u043e\u0437\u043d\u044b\u044f \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u044b \u0431\u044b\u043b\u0456 \u045e\u0436\u044b\u0442\u044b \u0434\u0430 \u0430\u0434\u043d\u044b\u0445 \u0456 \u0442\u044b\u0445 \u0436\u0430 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445, \u0448\u0442\u043e \u0434\u0430\u0437\u0432\u043e\u043b\u0456\u043b\u0430 \u043d\u0430\u043f\u0440\u0430\u043c\u0443\u044e \u0441\u0443\u043f\u0430\u0441\u0442\u0430\u0432\u0456\u0446\u044c \u0456\u0445 \u044d\u0444\u0435\u043a\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c, \u043c\u043e\u0446\u043d\u044b\u044f \u0456 \u0441\u043b\u0430\u0431\u044b\u044f \u0431\u0430\u043a\u0456. \u0410\u0441\u043d\u043e\u045e\u043d\u044b\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u045e\u043a\u043b\u044e\u0447\u0430\u043b\u0456 \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u0435 \u043a\u043b\u044e\u0447\u0430\u0432\u044b\u0445 \u0441\u043b\u043e\u045e (\u0442\u043e\u043a\u0435\u043d\u0430\u045e), \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u043d\u0430\u0439\u0431\u043e\u043b\u044c\u0448 \u0443\u0436\u044b\u0432\u0430\u043d\u044b\u0445 \u0441\u043b\u043e\u045e \u0456 \u0441\u043b\u043e\u0432\u0430\u0437\u043b\u0443\u0447\u044d\u043d\u043d\u044f\u045e, \u0430\u0446\u044d\u043d\u043a\u0443 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456 \u043f\u0430 \u0442\u0440\u043e\u0445 \u043a\u0430\u0442\u044d\u0433\u043e\u0440\u044b\u044f\u0445 (\u043d\u0435\u0433\u0430\u0442\u044b\u045e, \u043f\u0430\u0437\u0456\u0442\u044b\u045e, \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430) \u0456 \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u0435 \u045e\u0437\u0440\u043e\u045e\u043d\u044e \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443.<\/p>\n<blockquote class=\"wp-block-quote is-style-info is-layout-flow wp-block-quote-is-layout-flow\">\nNLTK (Natural Language Toolkit) \u2014 \u0433\u044d\u0442\u0430 \u0432\u044f\u0434\u0443\u0447\u0430\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430 \u0437 \u0430\u0434\u043a\u0440\u044b\u0442\u044b\u043c \u0437\u044b\u0445\u043e\u0434\u043d\u044b\u043c \u043a\u043e\u0434\u0430\u043c \u0434\u043b\u044f \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u043d\u0430\u0442\u0443\u0440\u0430\u043b\u044c\u043d\u0430\u0439 \u043c\u043e\u0432\u044b \u043d\u0430 Python, \u0441\u0442\u0432\u043e\u0440\u0430\u043d\u0430\u044f \u045e 2001 \u0433\u043e\u0434\u0437\u0435 \u0456 \u0430\u043a\u0442\u044b\u045e\u043d\u0430 \u0440\u0430\u0441\u043f\u0440\u0430\u0446\u043e\u045e\u0432\u0430\u0435\u043c\u0430\u044f \u0441\u0443\u043f\u043e\u043b\u044c\u043d\u0430\u0441\u0446\u044e. \u0411\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u043f\u0440\u0430\u0434\u0430\u0441\u0442\u0430\u045e\u043b\u044f\u0435 \u043f\u0440\u043e\u0441\u0442\u044b\u044f \u045e \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u0456 \u0456\u043d\u0442\u044d\u0440\u0444\u0435\u0439\u0441\u044b \u0434\u043b\u044f \u043f\u0440\u0430\u0446\u044b \u0437 \u0431\u043e\u043b\u044c\u0448 \u0447\u044b\u043c 50 \u043a\u043e\u0440\u043f\u0443\u0441\u0430\u043c\u0456 \u0442\u044d\u043a\u0441\u0442\u0430\u045e \u0456 \u043b\u0435\u043a\u0441\u0456\u0447\u043d\u044b\u043c\u0456 \u0440\u044d\u0441\u0443\u0440\u0441\u0430\u043c\u0456, \u0430 \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u0431\u0430\u0433\u0430\u0442\u044b \u043d\u0430\u0431\u043e\u0440 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u045e \u0434\u043b\u044f \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u0442\u044d\u043a\u0441\u0442\u0443: \u0442\u0430\u043a\u0435\u043d\u0456\u0437\u0430\u0446\u044b\u0456, \u0441\u0442\u044d\u043c\u0456\u043d\u0433\u0443, \u043b\u0435\u043c\u0430\u0442\u044b\u0437\u0430\u0446\u044b\u0456, \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f \u0447\u0430\u0441\u0442\u0430\u043a \u043c\u043e\u0432\u044b, \u0441\u0456\u043d\u0442\u0430\u043a\u0441\u0456\u0447\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443, \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u044f \u0456\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u044b\u0445 \u0441\u0443\u0442\u043d\u0430\u0441\u0446\u0435\u0439 \u0456 \u0441\u0435\u043c\u0430\u043d\u0442\u044b\u0447\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443. NLTK \u0443\u043a\u043b\u044e\u0447\u0430\u0435 \u0448\u044b\u0440\u043e\u043a\u0443\u044e \u0434\u0430\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u044b\u044e \u0456 \u043d\u0430\u0432\u0443\u0447\u0430\u043b\u044c\u043d\u044b\u044f \u043c\u0430\u0442\u044d\u0440\u044b\u044f\u043b\u044b, \u0448\u0442\u043e \u0440\u043e\u0431\u0456\u0446\u044c \u044f\u0435 \u043f\u0430\u043f\u0443\u043b\u044f\u0440\u043d\u0430\u0439 \u044f\u043a \u0441\u044f\u0440\u043e\u0434 \u0434\u0430\u0441\u043b\u0435\u0434\u0447\u044b\u043a\u0430\u045e, \u0442\u0430\u043a \u0456 \u0441\u044f\u0440\u043e\u0434 \u0440\u0430\u0441\u043f\u0440\u0430\u0446\u043e\u045e\u0448\u0447\u044b\u043a\u0430\u045e, \u044f\u043a\u0456\u044f \u043f\u0440\u044b\u043c\u044f\u043d\u044f\u044e\u0446\u044c \u043c\u0435\u0442\u0430\u0434\u044b NLP \u0434\u043b\u044f \u0432\u044b\u0440\u0430\u0448\u044d\u043d\u043d\u044f \u043f\u0440\u0430\u043a\u0442\u044b\u0447\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447 \u2014 \u0430\u0434 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0442\u0430\u043d\u0430\u043b\u044c\u043d\u0430\u0441\u0446\u0456 \u0456 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0446\u044b\u0456 \u0442\u044d\u043a\u0441\u0442\u0430\u045e \u0434\u0430 \u043f\u0430\u0431\u0443\u0434\u043e\u0432\u044b \u0447\u0430\u0442-\u0431\u043e\u0442\u0430\u045e \u0456 \u0441\u0456\u0441\u0442\u044d\u043c \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0433\u0430 \u043f\u043e\u0448\u0443\u043a\u0443. \u0414\u0437\u044f\u043a\u0443\u044e\u0447\u044b \u0441\u0432\u0430\u0451\u0439 \u043c\u0430\u0434\u0443\u043b\u044c\u043d\u0430\u0439 \u0430\u0440\u0445\u0456\u0442\u044d\u043a\u0442\u0443\u0440\u044b \u0456 \u0433\u043d\u0443\u0442\u043a\u0430\u0441\u0446\u0456, NLTK \u043f\u0440\u0430\u0446\u044f\u0433\u0432\u0430\u0435 \u0437\u0430\u0441\u0442\u0430\u0432\u0430\u0446\u0446\u0430 \u0430\u0434\u043d\u044b\u043c \u0437 \u0430\u0441\u043d\u043e\u045e\u043d\u044b\u0445 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u045e \u0443 \u0430\u0440\u0441\u0435\u043d\u0430\u043b\u0435 \u0441\u043f\u0435\u0446\u044b\u044f\u043b\u0456\u0441\u0442\u0430\u045e \u043f\u0430 \u043a\u0430\u043c\u043f'\u044e\u0442\u0430\u0440\u043d\u0430\u0439 \u043b\u0456\u043d\u0433\u0432\u0456\u0441\u0442\u044b\u0446\u044b \u0456 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0442\u044d\u043a\u0441\u0442\u0430\u045e, \u043d\u044f\u0433\u043b\u0435\u0434\u0437\u044f\u0447\u044b \u043d\u0430 \u0437'\u044f\u045e\u043b\u0435\u043d\u043d\u0435 \u043d\u043e\u0432\u044b\u0445 \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a, \u0430\u0440\u044b\u0435\u043d\u0442\u0430\u0432\u0430\u043d\u044b\u0445 \u043d\u0430 \u0433\u043b\u044b\u0431\u043e\u043a\u0430\u0435 \u043d\u0430\u0432\u0443\u0447\u0430\u043d\u043d\u0435.<\/blockquote>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0414\u044d\u0442\u0430\u043b\u0451\u0432\u0430\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043b\u043e\u0433\u0456\u044f \u0434\u0432\u0443\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u041a\u043b\u0430\u0441\u0456\u0447\u043d\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0437 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u0435\u043c NLTK<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u0422\u044d\u0445\u043d\u0430\u043b\u043e\u0433\u0456\u044f<\/strong>: \u0410\u0434\u043a\u0440\u044b\u0442\u0430\u044f \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430 Natural Language Toolkit (NLTK) \u0437 \u0434\u0430\u0434\u0430\u0442\u043a\u043e\u0432\u044b\u043c\u0456 \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u0430\u043c\u0456 \u0442\u0430\u043a\u0435\u043d\u0456\u0437\u0430\u0446\u044b\u0456 \u0456 \u0430\u043d\u0430\u043b\u0456\u0437\u0443.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u041f\u0440\u0430\u0446\u044d\u0441 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0435\u0440\u0448\u044b \u044d\u0442\u0430\u043f \u043f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u0439 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u0442\u044d\u043a\u0441\u0442\u0443 \u045e\u043a\u043b\u044e\u0447\u0430\u045e \u043f\u0440\u044b\u0432\u044f\u0434\u0437\u0435\u043d\u043d\u0435 \u0442\u044d\u043a\u0441\u0442\u0443 \u0434\u0430 \u043d\u0456\u0436\u043d\u044f\u0433\u0430 \u0440\u044d\u0433\u0456\u0441\u0442\u0440\u0430, \u0432\u044b\u0434\u0430\u043b\u0435\u043d\u043d\u0435 \u043f\u0443\u043d\u043a\u0442\u0443\u0430\u0446\u044b\u0456 \u0456 \u0441\u043f\u0435\u0446\u044b\u044f\u043b\u044c\u043d\u044b\u0445 \u0441\u0456\u043c\u0432\u0430\u043b\u0430\u045e, \u0432\u044b\u0434\u0430\u043b\u0435\u043d\u043d\u0435 \u043b\u0456\u0447\u0431\u0430\u045e \u0456 \u043b\u0456\u0448\u043d\u0456\u0445 \u043f\u0440\u0430\u0431\u0435\u043b\u0430\u045e, \u0430 \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u0430\u0431'\u044f\u0434\u043d\u0430\u043d\u043d\u0435 \u0442\u044d\u043a\u0441\u0442\u0430\u0432\u044b\u0445 \u043f\u0430\u043b\u0451\u045e (\u0437\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a, \u0430\u043f\u0456\u0441\u0430\u043d\u043d\u0435, \u043c\u0435\u0442\u043a\u0456).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0417\u0430\u0442\u044b\u043c \u0456\u0448\u043b\u0430 \u0442\u0430\u043a\u0435\u043d\u0456\u0437\u0430\u0446\u044b\u044f \u2013 \u0440\u0430\u0437\u0431\u0456\u0446\u0446\u0451 \u0442\u044d\u043a\u0441\u0442\u0443 \u043d\u0430 \u0430\u0441\u043e\u0431\u043d\u044b\u044f \u0441\u043b\u043e\u0432\u044b \u0437 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u0435\u043c NLTK word_tokenize, \u0432\u044b\u0434\u0430\u043b\u0435\u043d\u043d\u0435 \u0441\u0442\u043e\u043f-\u0441\u043b\u043e\u045e \u0437 \u0440\u0443\u0441\u043a\u0430\u0439 \u0456 \u0430\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0430\u0439 \u043c\u043e\u045e (\u043f\u0440\u044b\u043d\u0430\u0437\u043e\u045e\u043d\u0456\u043a\u0456, \u0437\u043b\u0443\u0447\u043d\u0456\u043a\u0456 \u0456 \u0433.\u0434.) \u0456 \u0444\u0456\u043b\u044c\u0442\u0440\u0430\u0446\u044b\u044f \u0441\u043b\u043e\u045e \u043a\u0430\u0440\u0430\u0446\u0435\u0439 \u0437\u0430 3 \u0441\u0456\u043c\u0432\u0430\u043b\u044b.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u043c\u0430\u0446\u044b\u0439\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u0430\u0436\u044b\u0446\u0446\u044f\u045e\u043b\u044f\u045e\u0441\u044f \u0448\u043b\u044f\u0445\u0430\u043c \u043f\u043e\u0448\u0443\u043a\u0443 \u0441\u043b\u043e\u045e \u0437 \u0437\u0430\u0433\u0430\u0434\u0437\u044f \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u043d\u044b\u0445 \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0430\u045e \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e, \u043f\u0430\u0434\u043b\u0456\u043a\u0443 \u043a\u043e\u043b\u044c\u043a\u0430\u0441\u0446\u0456 \u0441\u043b\u043e\u045e \u043a\u043e\u0436\u043d\u0430\u0439 \u043a\u0430\u0442\u044d\u0433\u043e\u0440\u044b\u0456 \u0456 \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f \u0434\u0430\u043c\u0456\u043d\u0443\u044e\u0447\u0430\u0439 \u044d\u043c\u043e\u0446\u044b\u0456 \u043f\u0430 \u043c\u0430\u043a\u0441\u0456\u043c\u0430\u043b\u044c\u043d\u0430\u0439 \u043a\u043e\u043b\u044c\u043a\u0430\u0441\u0446\u0456 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u043b\u044f \u0430\u0446\u044d\u043d\u043a\u0456 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u045e\u0436\u044b\u0432\u0430\u043b\u0430\u0441\u044f \u0444\u043e\u0440\u043c\u0443\u043b\u0430: <code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">manipulation_score = emotion_\u043d\u0435\u0433\u0430\u0442\u044b\u045e * 1.5 - emotion_\u043f\u0430\u0437\u0456\u0442\u044b\u045e<\/code> \u0437 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0439 \u043d\u0430\u0440\u043c\u0430\u043b\u0456\u0437\u0430\u0446\u044b\u044f\u0439 \u043f\u0430\u043a\u0430\u0437\u0447\u044b\u043a\u0430 \u0430\u0434\u043d\u043e\u0441\u043d\u0430 \u0441\u044f\u0440\u044d\u0434\u043d\u044f\u0433\u0430 \u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f \u0456 \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u0435\u043c \u043f\u0430\u0440\u043e\u0433\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 (\u0441\u044f\u0440\u044d\u0434\u043d\u044f\u0435 + \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u0435 \u0430\u0434\u0445\u0456\u043b\u0435\u043d\u043d\u0435).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0417\u0430\u0432\u044f\u0440\u0448\u0430\u043b\u044c\u043d\u0430\u0439 \u0441\u0442\u0430\u0434\u044b\u044f\u0439 \u0431\u044b\u045e \u043f\u0440\u0430\u0446\u044d\u0441 \u0444\u0430\u0440\u043c\u0456\u0440\u0430\u0432\u0430\u043d\u043d\u044f \u0432\u044b\u043d\u0456\u043a\u0430\u045e, \u044f\u043a\u0456 \u045e\u043a\u043b\u044e\u0447\u0430\u045e \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u0441\u043b\u043e\u045e \u0456 \u0431\u0456\u0433\u0440\u0430\u043c (\u043f\u0430\u0440 \u0441\u043b\u043e\u045e), \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0446\u044b\u044e \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u043f\u0430 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u0446\u044b \u0456 \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u0435 \u043f\u0430\u0442\u044d\u043d\u0446\u044b\u0439\u043d\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u0410\u0441\u0430\u0431\u043b\u0456\u0432\u0430\u0441\u0446\u0456 \u0440\u044d\u0430\u043b\u0456\u0437\u0430\u0446\u044b\u0456<\/strong>: \u0410\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0430 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u043f\u0440\u0430\u0432\u043e\u0434\u0437\u0456\u043b\u0430\u0441\u044f \u0447\u0430\u0441\u0442\u043a\u0430\u043c\u0456 \u0434\u043b\u044f \u044d\u043a\u0430\u043d\u043e\u043c\u0456\u0456 \u043f\u0430\u043c\u044f\u0446\u0456, \u0431\u044b\u043b\u0430 \u043f\u0440\u0430\u0434\u0443\u0433\u043b\u0435\u0434\u0436\u0430\u043d\u0430 \u0437\u0430\u043f\u0430\u0441\u043d\u0430\u044f \u0441\u0456\u0441\u0442\u044d\u043c\u0430 \u0442\u0430\u043a\u0435\u043d\u0456\u0437\u0430\u0446\u044b\u0456 \u043f\u0440\u044b \u0430\u0434\u0441\u0443\u0442\u043d\u0430\u0441\u0446\u0456 NLTK, \u0430 \u0432\u0456\u0437\u0443\u0430\u043b\u0456\u0437\u0430\u0446\u044b\u044f \u0432\u044b\u043d\u0456\u043a\u0430\u045e \u0430\u0436\u044b\u0446\u0446\u044f\u045e\u043b\u044f\u043b\u0430\u0441\u044f \u0437 \u0434\u0430\u043f\u0430\u043c\u043e\u0433\u0430\u0439 matplotlib\/plotly.<\/p>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u0421\u0443\u0447\u0430\u0441\u043d\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0437 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u0435\u043c \u043c\u0430\u0434\u044d\u043b\u044f\u045e OpenAI<\/h3>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u0422\u044d\u0445\u043d\u0430\u043b\u043e\u0433\u0456\u044f<\/strong>: API OpenAI \u0437 \u043c\u0430\u0434\u044d\u043b\u043b\u044e GPT-4o-mini<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u041f\u0440\u0430\u0446\u044d\u0441 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445<\/strong>:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0430\u0447\u0430\u0442\u043a\u043e\u0432\u044b \u044d\u0442\u0430\u043f \u0443\u043a\u043b\u044e\u0447\u0430\u045e \u0444\u0430\u0440\u043c\u0456\u0440\u0430\u0432\u0430\u043d\u043d\u0435 \u0437\u0430\u043f\u044b\u0442\u0443 \u2013 \u0430\u0431'\u044f\u0434\u043d\u0430\u043d\u043d\u0435 \u0442\u044d\u043a\u0441\u0442\u0430\u0432\u044b\u0445 \u043f\u0430\u043b\u0451\u045e (\u0437\u0430\u0433\u0430\u043b\u043e\u0432\u0430\u043a, \u0430\u043f\u0456\u0441\u0430\u043d\u043d\u0435, \u043c\u0435\u0442\u043a\u0456) \u0456 \u0430\u0434\u043f\u0440\u0430\u045e\u043a\u0443 \u043f\u043e\u045e\u043d\u0430\u0433\u0430 \u0442\u044d\u043a\u0441\u0442\u0443 \u0431\u0435\u0437 \u043f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u0439 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u0430\u043b\u0435\u0439 \u0456\u0448\u043b\u0430 \u043f\u0440\u0430\u0446\u0430 \u0437 \u0441\u0456\u0441\u0442\u044d\u043c\u043d\u044b\u043c \u043f\u0440\u043e\u043c\u043f\u0442\u0430\u043c \u0434\u043b\u044f \u043c\u0430\u0434\u044d\u043b\u0456, \u0443 \u044f\u043a\u0456\u043c \u0437\u043c\u044f\u0448\u0447\u0430\u043b\u0456\u0441\u044f \u0456\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u044b\u0456 \u043f\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0435 \u0442\u044d\u043a\u0441\u0442\u0443, \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u0456 \u043a\u043b\u044e\u0447\u0430\u0432\u044b\u0445 \u0441\u043b\u043e\u045e, \u0430\u0446\u044d\u043d\u0446\u044b \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456 \u0456 \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u0456 \u045e\u0437\u0440\u043e\u045e\u043d\u044e \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0410\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0430 \u0430\u0434\u043a\u0430\u0437\u0443 \u043c\u0430\u0434\u044d\u043b\u0456 \u043f\u0440\u0430\u0434\u0443\u0433\u043b\u0435\u0434\u0436\u0432\u0430\u043b\u0430 \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430\u0432\u0430\u043d\u044b\u0445 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u0437 JSON-\u0430\u0434\u043a\u0430\u0437\u0443, \u0437\u0430\u0445\u0430\u0432\u0430\u043d\u043d\u0435 \u0442\u043e\u043a\u0435\u043d\u0430\u045e, \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u0430\u0446\u044d\u043d\u0430\u043a \u0456 \u043f\u0430\u043a\u0430\u0437\u0447\u044b\u043a\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456, \u0430 \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u0435 \u0434\u0430\u043c\u0456\u043d\u0443\u044e\u0447\u0430\u0439 \u044d\u043c\u043e\u0446\u044b\u0456 \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u0430\u0446\u044d\u043d\u0430\u043a \u043c\u0430\u0434\u044d\u043b\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0424\u0456\u043d\u0430\u043b\u044c\u043d\u044b \u044d\u0442\u0430\u043f \u2013 \u0430\u0433\u0440\u044d\u0433\u0430\u0446\u044b\u044f \u0432\u044b\u043d\u0456\u043a\u0430\u045e \u0443\u043a\u043b\u044e\u0447\u0430\u043b\u0430 \u043f\u0430\u0434\u043b\u0456\u043a \u0447\u0430\u0441\u0442\u0430\u0442\u044b \u0442\u043e\u043a\u0435\u043d\u0430\u045e \u0456 \u0431\u0456\u0433\u0440\u0430\u043c, \u0440\u0430\u0437\u043b\u0456\u043a \u0441\u044f\u0440\u044d\u0434\u043d\u0456\u0445 \u043f\u0430\u043a\u0430\u0437\u0447\u044b\u043a\u0430\u045e \u043f\u0430 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043a\u0430\u0442\u044d\u0433\u043e\u0440\u044b\u044f\u0445, \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u0435 \u043f\u0430\u0440\u043e\u0433\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u0456 \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u0435 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0437 \u0432\u044b\u0441\u043e\u043a\u0456\u043c \u0443\u0437\u0440\u043e\u045e\u043d\u0435\u043c \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\"><strong>\u0410\u0441\u0430\u0431\u043b\u0456\u0432\u0430\u0441\u0446\u0456 \u0440\u044d\u0430\u043b\u0456\u0437\u0430\u0446\u044b\u0456<\/strong>: \u0412\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u045e\u0441\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430\u0432\u0430\u043d\u044b \u0444\u0430\u0440\u043c\u0430\u0442 \u0430\u0434\u043a\u0430\u0437\u0443 (JSON), \u0431\u044b\u043b\u0456 \u043f\u0440\u0430\u0434\u0443\u0433\u043b\u0435\u0434\u0436\u0430\u043d\u044b \u043f\u0430\u045e\u0437\u044b \u043f\u0430\u043c\u0456\u0436 \u0437\u0430\u043f\u044b\u0442\u0430\u043c\u0456 \u0434\u043b\u044f \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u043d\u044f \u043b\u0456\u043c\u0456\u0442\u0430\u045e API \u0456 \u043c\u0435\u0445\u0430\u043d\u0456\u0437\u043c\u044b \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u043f\u0430\u043c\u044b\u043b\u0430\u043a \u0437 \u0432\u044f\u0440\u0442\u0430\u043d\u043d\u0435\u043c \u0434\u0430 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0445 \u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f\u045e \u043f\u0440\u044b \u0437\u0431\u043e\u044f\u0445.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u041f\u0430\u0440\u0430\u045e\u043d\u0430\u043b\u044c\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u0432\u044b\u043d\u0456\u043a\u0430\u045e<\/h2>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u041a\u043b\u044e\u0447\u0430\u0432\u044b\u044f \u0441\u043b\u043e\u0432\u044b \u0456 \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">\u0410\u0431\u043e\u0434\u0432\u0430 \u043c\u0435\u0442\u0430\u0434\u044b \u0432\u044b\u043b\u0443\u0447\u044b\u043b\u0456 \u043f\u0430\u0434\u043e\u0431\u043d\u044b\u044f \u043a\u043b\u044e\u0447\u0430\u0432\u044b\u044f \u0441\u043b\u043e\u0432\u044b \u045e \u043a\u0430\u043d\u0442\u044d\u043d\u0446\u0435, \u0448\u0442\u043e \u0441\u0432\u0435\u0434\u0447\u044b\u0446\u044c \u0430\u0431 \u0431\u0430\u0437\u0430\u0432\u044b\u043c \u0443\u0437\u0440\u043e\u045e\u043d\u0456 \u045e\u0437\u0433\u043e\u0434\u043d\u0435\u043d\u0430\u0441\u0446\u0456. \u041d\u0430 \u043f\u0440\u0430\u0434\u0441\u0442\u0430\u045e\u043b\u0435\u043d\u044b\u0445 \u0445\u043c\u0430\u0440\u0430\u0445 \u0441\u043b\u043e\u045e \u0437 \u0441\u043f\u0440\u0430\u0432\u0430\u0437\u0434\u0430\u0447 \u0432\u0456\u0434\u0430\u0446\u044c, \u0448\u0442\u043e \u0441\u043b\u043e\u0432\u0430 \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" \u0437'\u044f\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u043d\u0430\u0439\u0431\u043e\u043b\u044c\u0448 \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b\u043c \u0443 \u0430\u0431\u043e\u0434\u0432\u0443\u0445 \u0432\u044b\u043f\u0430\u0434\u043a\u0430\u0445, \u0437\u0430 \u0456\u043c \u0456\u0434\u0443\u0446\u044c \"\u043d\u0430\u0432\u0456\u043d\u044b\", \"\u0440\u044d\u043a\u0430\u043c\u0435\u043d\u0434\u0430\u0446\u044b\u0456\", \"\u043c\u0456\u043d\u0441\u043a\", \"\u043b\u0443\u043a\u0430\u0448\u044d\u043d\u043a\u0430\".<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3419\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_wordscloud.png\" alt=\"\" width=\"608\" height=\"312\" \/>\n<\/div>\nOpenAI:\n<img class=\"alignnone  wp-image-3420\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_wordclouds.png\" alt=\"\" width=\"596\" height=\"307\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u0417\u0430\u045e\u0432\u0430\u0436\u043d\u0430, \u0448\u0442\u043e \u0432\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0430\u0435 \u043f\u0440\u0430\u0434\u0441\u0442\u0430\u045e\u043b\u0435\u043d\u043d\u0435 \u0445\u043c\u0430\u0440 \u0441\u043b\u043e\u045e \u0432\u044b\u0433\u043b\u044f\u0434\u0430\u0435 \u0432\u0435\u043b\u044c\u043c\u0456 \u043f\u0430\u0434\u043e\u0431\u043d\u044b\u043c \u043f\u0440\u044b \u0430\u0431\u043e\u0434\u0432\u0443\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u0445, \u043d\u044f\u0433\u043b\u0435\u0434\u0437\u044f\u0447\u044b \u043d\u0430 \u0440\u043e\u0437\u043d\u0456\u0446\u0443 \u045e \u043c\u0435\u0442\u0430\u0434\u0430\u043b\u043e\u0433\u0456\u0456. \u0413\u044d\u0442\u0430 \u043c\u043e\u0436\u0430 \u0442\u043b\u0443\u043c\u0430\u0447\u044b\u0446\u0446\u0430 \u0442\u044b\u043c, \u0448\u0442\u043e \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c \u0432\u0456\u0437\u0443\u0430\u043b\u0456\u0437\u0430\u0446\u044b\u0456 \u0445\u043c\u0430\u0440\u044b \u0441\u043b\u043e\u045e \u0431\u044b\u045e \u0456\u0434\u044d\u043d\u0442\u044b\u0447\u043d\u044b\u043c \u0443 \u0430\u0431\u043e\u0434\u0432\u0443\u0445 \u0441\u043a\u0440\u044b\u043f\u0442\u0430\u0445, \u0430 \u0430\u0441\u043d\u043e\u045e\u043d\u044b\u044f \u0447\u0430\u0441\u0442\u0430 \u0441\u0443\u0441\u0442\u0440\u0430\u043a\u0430\u0435\u043c\u044b\u044f \u0441\u043b\u043e\u0432\u044b \u0441\u0430\u043f\u0440\u0430\u045e\u0434\u044b \u0441\u0443\u043f\u0430\u0434\u0430\u044e\u0446\u044c. \u041f\u0430\u0434\u043e\u0431\u043d\u0430\u0435 \u0441\u0443\u043f\u0430\u0434\u0437\u0435\u043d\u043d\u0435 \u043f\u0430\u0446\u0432\u044f\u0440\u0434\u0436\u0430\u0435 \u0431\u0430\u0437\u0430\u0432\u0443\u044e \u0434\u0430\u043a\u043b\u0430\u0434\u043d\u0430\u0441\u0446\u044c \u0430\u0431\u043e\u0434\u0432\u0443\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e \u0443 \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u0456 \u043a\u043b\u044e\u0447\u0430\u0432\u044b\u0445 \u0442\u044d\u043c \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443, \u043d\u0430\u0432\u0430\u0442 \u043f\u0440\u044b \u0456\u0441\u0442\u043e\u0442\u043d\u044b\u0445 \u0430\u0434\u0440\u043e\u0437\u043d\u0435\u043d\u043d\u044f\u0445 \u0443 \u0430\u0446\u044d\u043d\u0446\u044b \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456 \u0456 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0410\u0434\u043d\u0430\u043a \u043f\u0440\u044b \u0431\u043e\u043b\u044c\u0448 \u0434\u044d\u0442\u0430\u043b\u0451\u0432\u044b\u043c \u0440\u0430\u0437\u0433\u043b\u044f\u0434\u0437\u0435 \u0447\u0430\u0441\u0442\u043e\u0442\u043d\u044b\u0445 \u0433\u0456\u0441\u0442\u0430\u0433\u0440\u0430\u043c \u0437\u0430\u045e\u0432\u0430\u0436\u043d\u044b\u044f \u0430\u0434\u0440\u043e\u0437\u043d\u0435\u043d\u043d\u0456:<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0423 NLTK-\u043c\u0435\u0442\u0430\u0434\u0437\u0435 \u0441\u043b\u043e\u0432\u0430 \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" \u0441\u0443\u0441\u0442\u0440\u0430\u043a\u0430\u0435\u0446\u0446\u0430 \u043a\u0430\u043b\u044f 14,025 \u0440\u0430\u0437\u043e\u045e, \u0430 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0435 \u0437\u0430 \u0456\u043c \u0441\u043b\u043e\u0432\u0430 \"\u043d\u0430\u0432\u0456\u043d\u044b\" \u2014 3,189 \u0440\u0430\u0437\u043e\u045e. \u0423 OpenAI-\u043c\u0435\u0442\u0430\u0434\u0437\u0435 \u0441\u043b\u043e\u0432\u0430 \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" \u0441\u0443\u0441\u0442\u0440\u0430\u043a\u0430\u0435\u0446\u0446\u0430 \u043a\u0430\u043b\u044f 8,258 \u0440\u0430\u0437\u043e\u045e, \"\u043d\u0430\u0432\u0456\u043d\u044b\" \u2014 2,652 \u0440\u0430\u0437\u043e\u045e.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3422\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_top20.png\" alt=\"\" width=\"679\" height=\"495\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3423\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_top20.png\" alt=\"\" width=\"664\" height=\"480\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u044d\u0442\u044b\u044f \u0430\u0434\u0440\u043e\u0437\u043d\u0435\u043d\u043d\u0456 \u0442\u043b\u0443\u043c\u0430\u0447\u0430\u0446\u0446\u0430 \u0440\u043e\u0437\u043d\u044b\u043c\u0456 \u043f\u0440\u044b\u043d\u0446\u044b\u043f\u0430\u043c\u0456 \u0442\u0430\u043a\u0435\u043d\u0456\u0437\u0430\u0446\u044b\u0456 \u0456 \u0432\u044b\u043b\u0443\u0447\u044d\u043d\u043d\u044f \u043a\u043b\u044e\u0447\u0430\u0432\u044b\u0445 \u0441\u043b\u043e\u045e. \u041c\u0430\u0434\u044d\u043b\u044c OpenAI \u0456\u043c\u043a\u043d\u0435\u0446\u0446\u0430 \u0432\u044b\u043b\u0443\u0447\u0430\u0446\u044c \u0431\u043e\u043b\u044c\u0448 \u0437\u043d\u0430\u0447\u043d\u044b\u044f \u0441\u043b\u043e\u0432\u044b \u0437 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0430\u0439, \u0442\u0430\u0434\u044b \u044f\u043a NLTK-\u043c\u0435\u0442\u0430\u0434 \u043f\u0440\u0430\u0446\u0443\u0435 \u0437 \u0444\u0430\u0440\u043c\u0430\u043b\u044c\u043d\u0430\u0439 \u0447\u0430\u0441\u0442\u0430\u0442\u043e\u0439 \u0441\u0443\u0441\u0442\u0440\u0430\u043a\u0430\u0435\u043c\u0430\u0441\u0446\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0423 \u0442\u043e\u043f-15 \u043f\u0430\u0440 \u0441\u043b\u043e\u045e \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u043d\u0430\u0437\u0456\u0440\u0430\u044e\u0446\u0446\u0430 \u0456\u0441\u0442\u043e\u0442\u043d\u044b\u044f \u0430\u0434\u0440\u043e\u0437\u043d\u0435\u043d\u043d\u0456: NLTK-\u043c\u0435\u0442\u0430\u0434 \u0432\u044b\u043b\u0443\u0447\u0430\u0435 \u043f\u0430\u0440\u044b: \"\u0431\u0440\u044d\u0441\u0442 \u043c\u0456\u043d\u0441\u043a\" (385), \"\u044d\u043a\u0430\u043d\u043e\u043c\u0456\u043a\u0430 \u043f\u0430\u043b\u0456\u0442\u044b\u043a\u0430\" (371), \"\u043f\u0430\u043b\u0456\u0442\u044b\u043a\u0430 \u041c\u0417\u0421\" (369), \u0430 OpenAI-\u043c\u0435\u0442\u0430\u0434 \u0432\u044b\u043b\u0443\u0447\u0430\u0435: \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c \u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" (1,723), \"\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c \u043b\u0443\u043a\u0430\u0448\u044d\u043d\u043a\u0430\" (615), \"\u043c\u0456\u043d\u0441\u043a \u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c\" (527).<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3424\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_bigram.png\" alt=\"\" width=\"661\" height=\"432\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3425\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_bigram.png\" alt=\"\" width=\"717\" height=\"488\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u044d\u0442\u0430 \u0441\u0432\u0435\u0434\u0447\u044b\u0446\u044c \u0430\u0431 \u0440\u043e\u0437\u043d\u044b\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u0445 \u0434\u0430 \u0444\u0430\u0440\u043c\u0456\u0440\u0430\u0432\u0430\u043d\u043d\u044f \u0431\u0456\u0433\u0440\u0430\u043c: OpenAI \u0443\u043b\u0456\u0447\u0432\u0430\u0435 \u0431\u043b\u0456\u0437\u043a\u0430\u0441\u0446\u044c \u0441\u043b\u043e\u045e \u0443 \u0442\u044d\u043a\u0441\u0446\u0435, \u0442\u0430\u0434\u044b \u044f\u043a NLTK-\u043c\u0435\u0442\u0430\u0434 \u0430\u043d\u0430\u043b\u0456\u0437\u0443\u0435 \u0445\u0443\u0442\u0447\u044d\u0439 \u0442\u044d\u043c\u0430\u0442\u044b\u0447\u043d\u0443\u044e \u0437\u0432\u044f\u0437\u0430\u043d\u0430\u0441\u0446\u044c.<\/p>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u0420\u0430\u0437\u044e\u0447\u044b\u044f \u0430\u0434\u0440\u043e\u0437\u043d\u0435\u043d\u043d\u0456 \u045e \u0430\u0446\u044d\u043d\u0446\u044b \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430\u0439\u0431\u043e\u043b\u044c\u0448 \u0434\u0440\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u0430\u0435 \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0435 \u043f\u0430\u043c\u0456\u0436 \u0434\u0437\u0432\u044e\u043c\u0430 \u0441\u0456\u0441\u0442\u044d\u043c\u0430\u043c\u0456 \u0434\u0430\u0442\u044b\u0447\u044b\u0446\u0446\u0430 \u0430\u0446\u044d\u043d\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443. \u041a\u0430\u043b\u0456 \u043c\u044b \u0430\u043d\u0430\u043b\u0456\u0437\u0430\u0432\u0430\u043b\u0456 \u0430\u0434\u0437\u0456\u043d \u0456 \u0442\u043e\u0439 \u0436\u0430 \u043d\u0430\u0431\u043e\u0440 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u0430\u0431 \u0432\u0456\u0434\u044d\u0430 \u0437 \u0445\u044d\u0448\u0442\u044d\u0433\u0430\u043c <strong>#\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c<\/strong>, \u0432\u044b\u043d\u0456\u043a\u0456 \u0440\u0430\u0437\u043c\u0435\u0440\u043a\u0430\u0432\u0430\u043b\u0456\u0441\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0447\u044b\u043d\u0430\u043c:<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3427\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions.png\" alt=\"\" width=\"507\" height=\"340\" \/>\n<\/div>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK-\u043c\u0435\u0442\u0430\u0434<\/strong> \u043f\u0430\u043a\u0430\u0437\u0430\u045e \u0432\u0435\u043b\u044c\u043c\u0456 \u043d\u044f\u0437\u0431\u0430\u043b\u0430\u043d\u0441\u0430\u0432\u0430\u043d\u0430\u0435 \u0440\u0430\u0437\u043c\u0435\u0440\u043a\u0430\u0432\u0430\u043d\u043d\u0435 \u0437 \u043f\u0435\u0440\u0430\u0432\u0430\u0433\u0430\u0439 \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0456:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">96.3% \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0433\u0430 (11,796 \u0432\u0456\u0434\u044d\u0430)<\/li>\n \t<li class=\"whitespace-normal break-words\">3.1% \u043f\u0430\u0437\u0456\u0442\u044b\u045e\u043d\u0430\u0433\u0430 (388 \u0432\u0456\u0434\u044d\u0430)<\/li>\n \t<li class=\"whitespace-normal break-words\">0.6% \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u0433\u0430 (68 \u0432\u0456\u0434\u044d\u0430)<\/li>\n<\/ul>\n<img class=\"alignnone  wp-image-3428\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions.png\" alt=\"\" width=\"513\" height=\"323\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u0410\u0434\u043d\u0430\u043a <strong>OpenAI-\u043c\u0435\u0442\u0430\u0434<\/strong> \u0434\u0430\u045e \u0437\u0443\u0441\u0456\u043c \u0456\u043d\u0448\u0443\u044e, \u0431\u043e\u043b\u044c\u0448 \u0437\u0431\u0430\u043b\u0430\u043d\u0441\u0430\u0432\u0430\u043d\u0443\u044e \u043a\u0430\u0440\u0446\u0456\u043d\u0443:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">51.5% \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u0433\u0430 (6,308 \u0432\u0456\u0434\u044d\u0430)<\/li>\n \t<li class=\"whitespace-normal break-words\">30.2% \u043f\u0430\u0437\u0456\u0442\u044b\u045e\u043d\u0430\u0433\u0430 (3,702 \u0432\u0456\u0434\u044d\u0430)<\/li>\n \t<li class=\"whitespace-normal break-words\">18.3% \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0433\u0430 (2,236 \u0432\u0456\u0434\u044d\u0430)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u044d\u0442\u0430\u0435 \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0435 \u043c\u043e\u0436\u043d\u0430 \u0440\u0430\u0441\u0442\u043b\u0443\u043c\u0430\u0447\u044b\u0446\u044c \u0440\u043e\u0437\u043d\u044b\u043c\u0456 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u043c\u0456 \u0434\u0430 \u0432\u044b\u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456. NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u0431\u0430\u043f\u0456\u0440\u0430\u0435\u0446\u0446\u0430 \u043d\u0430 \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e \u0456 \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u0430 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0443\u0435 \u0431\u043e\u043b\u044c\u0448\u0430\u0441\u0446\u044c \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u044b \u0437-\u0437\u0430 \u043d\u0430\u044f\u045e\u043d\u0430\u0441\u0446\u0456 \u043f\u044d\u045e\u043d\u044b\u0445 \u043a\u043b\u044e\u0447\u0430\u0432\u044b\u0445 \u0441\u043b\u043e\u045e, \u0431\u0435\u0437 \u0443\u043b\u0456\u043a\u0443 \u0456\u0445 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443. \u0423 \u0441\u0432\u0430\u044e \u0447\u0430\u0440\u0433\u0443, OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0443\u043b\u0456\u0447\u0432\u0430\u0435 \u0431\u043e\u043b\u044c\u0448 \u0448\u044b\u0440\u043e\u043a\u0456 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442 \u0456 \u0437\u0434\u043e\u043b\u044c\u043d\u044b \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u0446\u044c \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u044f \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u044f \u043f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u0456 \u043d\u0430\u0432\u0430\u0442 \u043f\u0440\u044b \u043d\u0430\u044f\u045e\u043d\u0430\u0441\u0446\u0456 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u0439 \u0442\u044d\u043c\u0430\u0442\u044b\u043a\u0456.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3429\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_emotions_average.png\" alt=\"\" width=\"495\" height=\"329\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3430\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_emotions_average.png\" alt=\"\" width=\"514\" height=\"340\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u0426\u0456\u043a\u0430\u0432\u0430 \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u0440\u0430\u0437\u0433\u043b\u0435\u0434\u0437\u0435\u0446\u044c \u0441\u044f\u0440\u044d\u0434\u043d\u0456\u044f \u0430\u0446\u044d\u043d\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456, \u044f\u043a\u0456\u044f \u0434\u044d\u043c\u0430\u043d\u0441\u0442\u0440\u0443\u044e\u0446\u044c \u0440\u043e\u0437\u043d\u044b\u044f \u0448\u043a\u0430\u043b\u044b:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">\u0423 NLTK-\u043c\u0435\u0442\u0430\u0434\u0437\u0435: \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u044f - 0.03, \u043f\u0430\u0437\u0456\u0442\u044b\u045e\u043d\u0430\u044f - 0.05, \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f - 0.01<\/li>\n \t<li class=\"whitespace-normal break-words\">\u0423 OpenAI-\u043c\u0435\u0442\u0430\u0434\u0437\u0435: \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u044f - 5.01, \u043f\u0430\u0437\u0456\u0442\u044b\u045e\u043d\u0430\u044f - 3.32, \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u044f - 1.74<\/li>\n<\/ul>\n<h3 class=\"text-lg font-bold text-text-100 mt-1 -mb-1.5\">\u0410\u0446\u044d\u043d\u043a\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443<\/h3>\n<p class=\"whitespace-pre-wrap break-words\">\u0423 \u0430\u0446\u044d\u043d\u0446\u044b \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u043c\u0435\u0442\u0430\u0434\u044b \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u043f\u0440\u0430\u0434\u044d\u043c\u0430\u043d\u0441\u0442\u0440\u0430\u0432\u0430\u043b\u0456 \u0456\u0441\u0442\u043e\u0442\u043d\u044b\u044f \u0430\u0434\u0440\u043e\u0437\u043d\u0435\u043d\u043d\u0456:<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3431\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation.png\" alt=\"\" width=\"570\" height=\"366\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>NLTK-\u043c\u0435\u0442\u0430\u0434<\/strong> \u043f\u0430\u043a\u0430\u0437\u0430\u045e \u0430\u0434\u043d\u043e\u043c\u0430\u0434\u0430\u043b\u044c\u043d\u0430\u0435 \u0440\u0430\u0437\u043c\u0435\u0440\u043a\u0430\u0432\u0430\u043d\u043d\u0435 \u0437 \u043a\u0430\u043d\u0446\u044d\u043d\u0442\u0440\u0430\u0446\u044b\u044f\u0439 \u0431\u043e\u043b\u044c\u0448\u0430\u0441\u0446\u0456 \u0430\u0446\u044d\u043d\u0430\u043a \u0443 \u0440\u0430\u0451\u043d\u0435 \u043d\u0456\u0437\u043a\u0456\u0445 \u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f\u045e (1-2 \u043f\u0430 \u0448\u043a\u0430\u043b\u0435 \u0430\u0434 0 \u0434\u0430 10) \u0456 \u0442\u043e\u043b\u044c\u043a\u0456 \u043d\u0435\u0432\u044f\u043b\u0456\u043a\u0443\u044e \u043a\u043e\u043b\u044c\u043a\u0430\u0441\u0446\u044c \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0437 \u0432\u044b\u0441\u043e\u043a\u0456\u043c\u0456 \u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f\u043c\u0456 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456. \u0413\u044d\u0442\u0430 \u0442\u043b\u0443\u043c\u0430\u0447\u044b\u0446\u0446\u0430 \u0442\u044b\u043c, \u0448\u0442\u043e \u043c\u0435\u0442\u0430\u0434 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0435 \u043f\u0440\u043e\u0441\u0442\u0443\u044e \u043c\u0430\u0442\u044d\u043c\u0430\u0442\u044b\u0447\u043d\u0443\u044e \u0444\u043e\u0440\u043c\u0443\u043b\u0443 (<code class=\"bg-text-200\/5 border border-0.5 border-border-300 text-danger-000 whitespace-pre-wrap rounded-[0.4rem] px-1 py-px text-[0.9rem]\">\u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c = \u043d\u0435\u0433\u0430\u0442\u044b\u045e*1.5 - \u043f\u0430\u0437\u0456\u0442\u044b\u045e<\/code>), \u0448\u0442\u043e \u0434\u0430\u0435 \u0430\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u043d\u0443\u044e \u043a\u0430\u0440\u044d\u043b\u044f\u0446\u044b\u044e \u0437 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0430\u0439.<\/p>\nOpenAI:\n<img class=\"alignnone  wp-image-3432\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation.png\" alt=\"\" width=\"581\" height=\"373\" \/>\n<p class=\"whitespace-pre-wrap break-words\"><strong>OpenAI-\u043c\u0435\u0442\u0430\u0434<\/strong> \u043f\u0440\u0430\u0434\u044d\u043c\u0430\u043d\u0441\u0442\u0440\u0430\u0432\u0430\u045e \u043c\u0443\u043b\u044c\u0442\u044b\u043c\u0430\u0434\u0430\u043b\u044c\u043d\u0430\u0435 \u0440\u0430\u0437\u043c\u0435\u0440\u043a\u0430\u0432\u0430\u043d\u043d\u0435 \u0437 \u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456\u043c\u0456 \u043f\u0456\u043a\u0430\u043c\u0456 \u045e \u0440\u0430\u0451\u043d\u0435 \u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f\u045e 5.0, 6.0 \u0456 7.0 \u043f\u0430 \u0448\u043a\u0430\u043b\u0435 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456, \u0437 \u043f\u0430\u0440\u043e\u0433\u0430\u043c \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u043a\u0430\u043b\u044f 7.20. \u0413\u044d\u0442\u0430 \u0430\u0434\u043b\u044e\u0441\u0442\u0440\u043e\u045e\u0432\u0430\u0435 \u0431\u043e\u043b\u044c\u0448 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043d\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0434\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456, \u044f\u043a\u0456 \u045e\u043b\u0456\u0447\u0432\u0430\u0435 \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0443\u044e \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0443, \u0430\u043b\u0435 \u0456 \u0440\u043e\u0437\u043d\u044b\u044f \u0440\u044b\u0442\u0430\u0440\u044b\u0447\u043d\u044b\u044f \u043f\u0440\u044b\u0451\u043c\u044b, \u043b\u0430\u0433\u0456\u0447\u043d\u044b\u044f \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u0456 \u0456 \u0456\u043d\u0448\u044b\u044f \u0442\u043e\u043d\u043a\u0456\u044f \u0430\u0441\u043f\u0435\u043a\u0442\u044b \u045e\u0437\u0434\u0437\u0435\u044f\u043d\u043d\u044f.<\/p>\nNLTK:\n<img class=\"alignnone  wp-image-3434\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/nltk_manipulation_emotions.png\" alt=\"\" width=\"484\" height=\"361\" \/>\nOpenAI:\n<img class=\"alignnone  wp-image-3433\" src=\"https:\/\/factcheck.lt\/wp-content\/uploads\/2025\/04\/openai_manipulation_emotions.png\" alt=\"\" width=\"485\" height=\"356\" \/>\n<p class=\"whitespace-pre-wrap break-words\">\u042d\u043c\u0430\u0446\u044b\u0439\u043d\u044b \u043f\u0440\u043e\u0444\u0456\u043b\u044c \u043f\u0430\u0442\u044d\u043d\u0446\u044b\u0439\u043d\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u0430\u0434\u0440\u043e\u0437\u043d\u0456\u0432\u0430\u0435\u0446\u0446\u0430:<\/p>\n<ul class=\"[&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc space-y-1.5 pl-7\">\n \t<li class=\"whitespace-normal break-words\">\u041f\u0430 NLTK-\u043c\u0435\u0442\u0430\u0434\u0437\u0435: \u043f\u0435\u0440\u0430\u0432\u0430\u0433\u0430 \u043d\u0435\u0433\u0430\u0442\u044b\u0432\u0443 (1.06), \u0432\u0435\u043b\u044c\u043c\u0456 \u043d\u0456\u0437\u043a\u0456\u044f \u0430\u0446\u044d\u043d\u043a\u0456 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u0441\u0446\u0456 (0.07) \u0456 \u043f\u0430\u0437\u0456\u0442\u044b\u0432\u0443 (0.02)<\/li>\n \t<li class=\"whitespace-normal break-words\">\u041f\u0430 OpenAI-\u043c\u0435\u0442\u0430\u0434\u0437\u0435: \u0432\u044b\u0441\u043e\u043a\u0456\u044f \u0430\u0446\u044d\u043d\u043a\u0456 \u043d\u0435\u0433\u0430\u0442\u044b\u0432\u0443 (6.46), \u0441\u044f\u0440\u044d\u0434\u043d\u0456\u044f \u0430\u0446\u044d\u043d\u043a\u0456 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u0441\u0446\u0456 (2.55) \u0456 \u043d\u0456\u0437\u043a\u0456\u044f \u043f\u0430\u0437\u0456\u0442\u044b\u0432\u0443 (1.75)<\/li>\n<\/ul>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u044d\u0442\u044b\u044f \u0430\u0434\u0440\u043e\u0437\u043d\u0435\u043d\u043d\u0456 \u043d\u0430\u0433\u043b\u044f\u0434\u043d\u0430 \u0434\u044d\u043c\u0430\u043d\u0441\u0442\u0440\u0443\u044e\u0446\u044c, \u043d\u0430\u043a\u043e\u043b\u044c\u043a\u0456 \u043f\u0430-\u0440\u043e\u0437\u043d\u0430\u043c\u0443 \u0434\u0432\u0430 \u043c\u0435\u0442\u0430\u0434\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0437\u044f\u0446\u044c \u0434\u0430 \u0432\u044b\u044f\u045e\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u045e \u043a\u0430\u043d\u0442\u044d\u043d\u0446\u0435, \u0448\u0442\u043e \u043c\u0430\u0435 \u0441\u0443\u0440'\u0451\u0437\u043d\u044b\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u0441\u0442\u0432\u044b \u0434\u043b\u044f \u043f\u0440\u0430\u043a\u0442\u044b\u0447\u043d\u0430\u0433\u0430 \u043f\u0440\u044b\u043c\u044f\u043d\u0435\u043d\u043d\u044f \u0433\u044d\u0442\u044b\u0445 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u045e \u0443 \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0456\u043d\u0433\u0443.<\/p>\n<\/div>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0406\u043d\u0442\u044d\u0440\u043f\u0440\u044d\u0442\u0430\u0446\u044b\u044f \u0432\u044b\u043d\u0456\u043a\u0430\u045e: \u0448\u0442\u043e \u043f\u0430\u043a\u0430\u0437\u0430\u043b\u0456 \u0434\u0432\u0430 \u0440\u043e\u0437\u043d\u044b\u044f \u043c\u0435\u0442\u0430\u0434\u044b?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0422\u0430\u043a\u0456\u044f \u0437\u043d\u0430\u0447\u043d\u044b\u044f \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0456 \u045e \u0432\u044b\u043d\u0456\u043a\u0430\u0445 \u0434\u0432\u0443\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u045e \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u044e\u0446\u044c \u0441\u0442\u0430\u0440\u0430\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0456 \u0456\u043d\u0442\u044d\u0440\u043f\u0440\u044d\u0442\u0430\u0446\u044b\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u043e\u0437\u043d\u0430\u0435 \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u0435 \"\u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0441\u0446\u0456\" \u0442\u044d\u043a\u0441\u0442\u0443 \u043f\u0440\u0430\u044f\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u045e \u0442\u044b\u043c, \u0448\u0442\u043e NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u0435 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0443\u044e \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0443 \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u044b\u0441\u0443\u0442\u043d\u0430\u0441\u0446\u0456 \u043a\u0430\u043d\u043a\u0440\u044d\u0442\u043d\u044b\u0445 \u0441\u043b\u043e\u045e-\u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e \u0437 \u0437\u0430\u0433\u0430\u0434\u0437\u044f \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u043d\u0430\u0433\u0430 \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0430, \u0431\u0435\u0437 \u0443\u043b\u0456\u043a\u0443 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443 \u0456\u0445 \u0443\u0436\u044b\u0432\u0430\u043d\u043d\u044f. \u0421\u043b\u043e\u0432\u0430 \"\u0432\u0430\u0439\u043d\u0430\" \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u0430 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0443\u0435\u0446\u0446\u0430 \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0435, \u043d\u0435\u0437\u0430\u043b\u0435\u0436\u043d\u0430 \u0430\u0434 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443, \u0448\u0442\u043e \u043f\u0440\u044b\u0432\u043e\u0434\u0437\u0456\u0446\u044c \u0434\u0430 \u0437\u0430\u0432\u044b\u0448\u0430\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0456 \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u043f\u0440\u044b \u0430\u043d\u0430\u043b\u0456\u0437\u0435 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u0445 \u0442\u044d\u043c. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u0446\u044d\u043d\u044c\u0432\u0430\u0435 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0443\u044e \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0443 \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u0431\u043e\u043b\u044c\u0448 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0441\u043d\u0430\u0433\u0430 \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u044f \u0442\u044d\u043a\u0441\u0442\u0443, \u0437\u0434\u043e\u043b\u044c\u043d\u044b \u0430\u0434\u0440\u043e\u0437\u043d\u0456\u0432\u0430\u0446\u044c \u043d\u044e\u0430\u043d\u0441\u044b \u0456 \u0430\u0434\u0446\u0435\u043d\u043d\u0456 \u0437\u043d\u0430\u0447\u044d\u043d\u043d\u044f\u045e \u0443 \u043f\u044d\u045e\u043d\u044b\u043c \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0446\u0435.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0440\u044b\u043a\u043b\u0430\u0434 \u0437 \u043d\u0430\u0448\u0430\u0433\u0430 \u043a\u043e\u0440\u043f\u0443\u0441\u0430 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445: \"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c: \u043d\u0430\u0432\u0456\u043d\u044b \u0440\u044d\u0433\u0456\u0451\u043d\u0430, \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u044f \u0441\u0456\u0442\u0443\u0430\u0446\u044b\u044f, \u0430\u043d\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u044f \u043c\u0430\u0442\u044d\u0440\u044b\u044f\u043b\u044b\". NLTK \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0443\u0435 \u0433\u044d\u0442\u044b \u0442\u044d\u043a\u0441\u0442 \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u044b \u0437-\u0437\u0430 \u043f\u0440\u044b\u0441\u0443\u0442\u043d\u0430\u0441\u0446\u0456 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u0439 \u0442\u044d\u043c\u0430\u0442\u044b\u043a\u0456, \u0442\u0430\u0434\u044b \u044f\u043a OpenAI \u043c\u043e\u0436\u0430 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0432\u0430\u0446\u044c \u044f\u0433\u043e \u044f\u043a \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b, \u0443\u043b\u0456\u0447\u0432\u0430\u044e\u0447\u044b \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u0443\u044e, \u0430 \u043d\u0435 \u0430\u0446\u044d\u043d\u0430\u0447\u043d\u0443\u044e \u043f\u0440\u044b\u0440\u043e\u0434\u0443 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u043e\u0437\u043d\u044b\u044f \u043a\u0430\u043d\u0446\u044d\u043f\u0446\u044b\u0456 \"\u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456\" \u043f\u0440\u0430\u044f\u045e\u043b\u044f\u044e\u0446\u0446\u0430 \u045e \u0442\u044b\u043c, \u0448\u0442\u043e NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u0435 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c \u043f\u0440\u0430\u0437 \u0441\u043f\u0440\u043e\u0448\u0447\u0430\u043d\u0443\u044e \u043c\u0430\u0442\u044d\u043c\u0430\u0442\u044b\u0447\u043d\u0443\u044e \u0444\u043e\u0440\u043c\u0443\u043b\u0443, \u0437\u0430\u0441\u043d\u0430\u0432\u0430\u043d\u0443\u044e \u043d\u0430 \u043a\u043e\u043b\u044c\u043a\u0430\u0441\u043d\u044b\u0445 \u0441\u0443\u0430\u0434\u043d\u043e\u0441\u0456\u043d\u0430\u0445 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430 \u0430\u0444\u0430\u0440\u0431\u0430\u0432\u0430\u043d\u044b\u0445 \u0441\u043b\u043e\u045e. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u0446\u044d\u043d\u044c\u0432\u0430\u0435 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u0431\u043e\u043b\u044c\u0448 \u0441\u043a\u043b\u0430\u0434\u0430\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443, \u044f\u043a\u0456 \u045e\u043b\u0456\u0447\u0432\u0430\u0435 \u0440\u044b\u0442\u0430\u0440\u044b\u0447\u043d\u044b\u044f \u043f\u0440\u044b\u0451\u043c\u044b, \u043b\u0430\u0433\u0456\u0447\u043d\u044b\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0456 \u0456\u043d\u0448\u044b\u044f \u043f\u0440\u044b\u043a\u043c\u0435\u0442\u044b \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u0456, \u044f\u043a\u0456\u044f \u043f\u0440\u043e\u0441\u0442\u044b \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0430\u0432\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043c\u043e\u0436\u0430 \u043d\u0435 \u045e\u043b\u0430\u0432\u0456\u0446\u044c.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0406\u0441\u0442\u043e\u0442\u043d\u0443\u044e \u0440\u043e\u043b\u044e \u045e \u0442\u0430\u043a\u0456\u043c \u0434\u0440\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u044b\u043c \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0456 \u0432\u044b\u043d\u0456\u043a\u0430\u045e \u0430\u0434\u044b\u0433\u0440\u044b\u0432\u0430\u0435 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0437 \u0445\u044d\u0448\u0442\u044d\u0433\u0430\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c. NLTK, \u044f\u043a\u0456 \u0430\u0431\u0430\u043f\u0456\u0440\u0430\u0435\u0446\u0446\u0430 \u043d\u0430 \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e, \u0441\u0445\u0456\u043b\u044c\u043d\u044b \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0432\u0430\u0446\u044c \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0443\u044e \u0442\u044d\u043c\u0430\u0442\u044b\u043a\u0443 \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0443\u044e \u0437-\u0437\u0430 \u0447\u0430\u0441\u0442\u0430 \u0441\u0443\u0441\u0442\u0440\u0430\u043a\u0430\u0435\u043c\u044b\u0445 \u0442\u044d\u0440\u043c\u0456\u043d\u0430\u045e, \u0437\u0432\u044f\u0437\u0430\u043d\u044b\u0445 \u0437 \u043a\u0430\u043d\u0444\u043b\u0456\u043a\u0442\u0430\u043c\u0456, \u0443\u043b\u0430\u0434\u0430\u0439, \u0441\u0443\u043f\u0440\u0430\u0446\u044c\u0441\u0442\u0430\u044f\u043d\u043d\u0435\u043c. OpenAI, \u044f\u043a\u0456 \u043c\u0430\u0435 \u0431\u043e\u043b\u044c\u0448 \u0440\u0430\u0437\u0432\u0456\u0442\u0430\u0435 \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u0435 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443, \u0437\u0434\u043e\u043b\u044c\u043d\u044b \u0430\u0434\u0440\u043e\u0437\u043d\u0456\u0432\u0430\u0446\u044c \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u0435 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0435 \u0430\u0441\u0432\u044f\u0442\u043b\u0435\u043d\u043d\u0435 \u0430\u0434 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430 \u0430\u0444\u0430\u0440\u0431\u0430\u0432\u0430\u043d\u0430\u0439 \u043f\u0440\u0430\u043f\u0430\u0433\u0430\u043d\u0434\u044b.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0406\u043d\u0442\u044d\u0440\u043f\u0440\u044d\u0442\u0430\u0446\u044b\u044f \u0432\u044b\u043d\u0456\u043a\u0430\u045e: \u0448\u0442\u043e \u043f\u0430\u043a\u0430\u0437\u0430\u043b\u0456 \u0434\u0432\u0430 \u0440\u043e\u0437\u043d\u044b\u044f \u043c\u0435\u0442\u0430\u0434\u044b?<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0421\u0442\u043e\u043b\u044c \u0437\u043d\u0430\u0447\u043d\u044b\u044f \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0456 \u045e \u0432\u044b\u043d\u0456\u043a\u0430\u0445 \u0434\u0432\u0443\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u045e \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u044e\u0446\u044c \u0441\u0442\u0430\u0440\u0430\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0456 \u0456\u043d\u0442\u044d\u0440\u043f\u0440\u044d\u0442\u0430\u0446\u044b\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u043e\u0437\u043d\u0430\u0435 \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u0435 \"\u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0441\u0446\u0456\" \u0442\u044d\u043a\u0441\u0442\u0443 \u043f\u0440\u0430\u044f\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u045e \u0442\u044b\u043c, \u0448\u0442\u043e NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u0435 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0443\u044e \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0443 \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u043f\u0440\u044b\u0441\u0443\u0442\u043d\u0430\u0441\u0446\u0456 \u043a\u0430\u043d\u043a\u0440\u044d\u0442\u043d\u044b\u0445 \u0441\u043b\u043e\u045e-\u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e \u0437 \u0437\u0430\u0433\u0430\u0434\u0437\u044f \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u043d\u0430\u0433\u0430 \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0430. \u0421\u043b\u043e\u0432\u0430 \"\u0432\u0430\u0439\u043d\u0430\" \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u0430 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0443\u0435\u0446\u0446\u0430 \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0435, \"\u043f\u0435\u0440\u0430\u043c\u043e\u0433\u0430\" \u2014 \u044f\u043a \u043f\u0430\u0437\u0456\u0442\u044b\u045e\u043d\u0430\u0435, \u043d\u0435\u0437\u0430\u043b\u0435\u0436\u043d\u0430 \u0430\u0434 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u0446\u044d\u043d\u044c\u0432\u0430\u0435 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0443\u044e \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0443 \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u0441\u0443\u043a\u0443\u043f\u043d\u0430\u0433\u0430 \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u044f \u0442\u044d\u043a\u0441\u0442\u0443, \u0443\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u044b \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442, \u043f\u0430\u0434\u0442\u044d\u043a\u0441\u0442 \u0456 \u0441\u0445\u0430\u0432\u0430\u043d\u044b\u044f \u0441\u044d\u043d\u0441\u044b. \u0424\u0440\u0430\u0437\u0430 \"\u0447\u0430\u0440\u0433\u043e\u0432\u0430\u044f \u0431\u043b\u0456\u0441\u043a\u0443\u0447\u0430\u044f \u043f\u0435\u0440\u0430\u043c\u043e\u0433\u0430\" \u043c\u043e\u0436\u0430 \u0431\u044b\u0446\u044c \u0440\u0430\u0441\u043f\u0430\u0437\u043d\u0430\u043d\u0430 \u044f\u043a \u0456\u0440\u043e\u043d\u0456\u044f \u0456 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0432\u0430\u043d\u0430 \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u044f.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041f\u0440\u044b\u043a\u043b\u0430\u0434 \u0437 \u043d\u0430\u0448\u0430\u0433\u0430 \u043a\u043e\u0440\u043f\u0443\u0441\u0430 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445: \"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c: \u043d\u0430\u0432\u0456\u043d\u044b \u0440\u044d\u0433\u0456\u0451\u043d\u0430, \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u044f \u0441\u0456\u0442\u0443\u0430\u0446\u044b\u044f, \u0430\u043d\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u044f \u043c\u0430\u0442\u044d\u0440\u044b\u044f\u043b\u044b\". NLTK \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0443\u0435 \u0433\u044d\u0442\u044b \u0442\u044d\u043a\u0441\u0442 \u044f\u043a \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b, \u043f\u0430\u043a\u043e\u043b\u044c\u043a\u0456 \u045e \u0456\u043c \u043d\u044f\u043c\u0430 \u0432\u0456\u0434\u0430\u0432\u043e\u0447\u043d\u044b\u0445 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e. OpenAI \u043c\u043e\u0436\u0430 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0432\u0430\u0446\u044c \u044f\u0433\u043e \u044f\u043a \u043f\u0430\u0442\u044d\u043d\u0446\u044b\u0439\u043d\u0430 \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u044b, \u0443\u043b\u0456\u0447\u0432\u0430\u044e\u0447\u044b \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u0445 \u043d\u0430\u0432\u0456\u043d \u0443 \u0431\u044f\u0433\u0443\u0447\u0430\u0439 \u0441\u0456\u0442\u0443\u0430\u0446\u044b\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0420\u043e\u0437\u043d\u044b\u044f \u043a\u0430\u043d\u0446\u044d\u043f\u0446\u044b\u0456 \"\u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456\" \u043f\u0440\u0430\u044f\u045e\u043b\u044f\u044e\u0446\u0446\u0430 \u045e \u0442\u044b\u043c, \u0448\u0442\u043e NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u0435 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c \u043f\u0440\u0430\u0437 \u043c\u0430\u0442\u044d\u043c\u0430\u0442\u044b\u0447\u043d\u0443\u044e \u0444\u043e\u0440\u043c\u0443\u043b\u0443, \u0437\u0430\u0441\u043d\u0430\u0432\u0430\u043d\u0443\u044e \u043d\u0430 \u0441\u0443\u0430\u0434\u043d\u043e\u0441\u0456\u043d\u0430\u0445 \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u044b\u0445 \u0456 \u043f\u0430\u0437\u0456\u0442\u044b\u045e\u043d\u044b\u0445 \u0441\u043b\u043e\u045e. \u0413\u044d\u0442\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043c\u044f\u0440\u043a\u0443\u0435, \u0448\u0442\u043e \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u044b \u043a\u0430\u043d\u0442\u044d\u043d\u0442 \u2014 \u0433\u044d\u0442\u0430 \u043f\u0435\u0440\u0430\u0432\u0430\u0436\u043d\u0430 \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u044b \u043a\u0430\u043d\u0442\u044d\u043d\u0442. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u0446\u044d\u043d\u044c\u0432\u0430\u0435 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u0441\u043a\u043b\u0430\u0434\u0430\u043d\u0430\u0433\u0430 \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u044f \u0440\u044b\u0442\u0430\u0440\u044b\u0447\u043d\u044b\u0445 \u043f\u0440\u044b\u0451\u043c\u0430\u045e, \u043b\u0430\u0433\u0456\u0447\u043d\u044b\u0445 \u043f\u0430\u043c\u044b\u043b\u0430\u043a, \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0433\u0430 \u0446\u0456\u0441\u043a\u0443, \u0441\u043a\u0430\u0436\u044d\u043d\u043d\u044f \u0444\u0430\u043a\u0442\u0430\u045e \u0456 \u0456\u043d\u0448\u044b\u0445 \u043f\u0440\u044b\u043a\u043c\u0435\u0442 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u0456, \u044f\u043a\u0456\u044f \u043c\u043e\u0433\u0443\u0446\u044c \u043f\u0440\u044b\u0441\u0443\u0442\u043d\u0456\u0447\u0430\u0446\u044c \u043d\u0430\u0432\u0430\u0442 \u0443 \u0444\u0430\u0440\u043c\u0430\u043b\u044c\u043d\u0430 \u043f\u0430\u0437\u0456\u0442\u044b\u045e\u043d\u044b\u043c \u0430\u0431\u043e \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u043c \u0442\u044d\u043a\u0441\u0446\u0435.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0406\u0441\u0442\u043e\u0442\u043d\u0443\u044e \u0440\u043e\u043b\u044e \u045e \u0442\u0430\u043a\u0456\u043c \u0434\u0440\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u044b\u043c \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0456 \u0432\u044b\u043d\u0456\u043a\u0430\u045e \u043c\u043e\u0436\u0430 \u0430\u0434\u044b\u0433\u0440\u044b\u0432\u0430\u0446\u044c \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0437 \u0445\u044d\u0448\u0442\u044d\u0433\u0430\u043c #\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u044c. \u0412\u044f\u043b\u0456\u043a\u0430\u044f \u043c\u043e\u045e\u043d\u0430\u044f \u043c\u0430\u0434\u044d\u043b\u044c, \u043d\u0430\u0432\u0443\u0447\u0430\u043d\u0430\u044f \u043d\u0430 \u0432\u0435\u043b\u0456\u0437\u0430\u0440\u043d\u044b\u043c \u043a\u043e\u0440\u043f\u0443\u0441\u0435 \u0442\u044d\u043a\u0441\u0442\u0430\u045e, \u0443\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u044b \u043d\u0430\u0432\u0456\u043d\u0430\u0432\u044b\u044f \u0456 \u0430\u043d\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u044f \u043c\u0430\u0442\u044d\u0440\u044b\u044f\u043b\u044b, \u043c\u043e\u0436\u0430 \"\u0440\u0430\u0437\u0443\u043c\u0435\u0446\u044c\" \u0441\u043a\u043b\u0430\u0434\u0430\u043d\u044b \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442 \u0456 \u045e\u043b\u043e\u045e\u043b\u0456\u0432\u0430\u0446\u044c \u0441\u0445\u0430\u0432\u0430\u043d\u044b\u044f \u0441\u044d\u043d\u0441\u044b \u0456 \u043f\u0430\u0434\u0442\u044d\u043a\u0441\u0442\u044b, \u0437\u0432\u044f\u0437\u0430\u043d\u044b\u044f \u0437 \u0430\u0441\u0432\u044f\u0442\u043b\u0435\u043d\u043d\u0435\u043c \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u0439 \u0441\u0456\u0442\u0443\u0430\u0446\u044b\u0456 \u045e \u0440\u044d\u0433\u0456\u0451\u043d\u0435.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0428\u0442\u043e \u0433\u044d\u0442\u0430 \u0437\u043d\u0430\u0447\u044b\u0446\u044c \u0434\u043b\u044f \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0456\u043d\u0433\u0443 \u0456 \u043c\u0435\u0434\u044b\u044f\u0433\u0440\u0430\u043c\u0430\u0442\u043d\u0430\u0441\u0446\u0456<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0412\u044b\u044f\u045e\u043b\u0435\u043d\u044b\u044f \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0456 \u043f\u0430\u043c\u0456\u0436 \u0434\u0432\u0443\u043c\u0430 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u043c\u0456 \u043c\u0430\u044e\u0446\u044c \u0441\u0443\u0440'\u0451\u0437\u043d\u044b\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u0441\u0442\u0432\u044b \u0434\u043b\u044f \u043f\u0440\u0430\u0446\u044b \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0435\u0440\u0430\u045e \u0456 \u0434\u0430\u0441\u043b\u0435\u0434\u0447\u044b\u043a\u0430\u045e \u043c\u0435\u0434\u044b\u044f.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041c\u0435\u0442\u0430\u0434\u0430\u043b\u0430\u0433\u0456\u0447\u043d\u044b\u044f \u0432\u044b\u043a\u043b\u0456\u043a\u0456 \u045e\u043a\u043b\u044e\u0447\u0430\u044e\u0446\u044c \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u0443 \"\u0437\u0430\u043b\u0430\u0442\u043e\u0433\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0443\", \u0433\u044d\u0442\u0430 \u0437\u043d\u0430\u0447\u044b\u0446\u044c \u043f\u044b\u0442\u0430\u043d\u043d\u0435 \u0430\u0431 \u0442\u044b\u043c, \u044f\u043a\u0456 \u0437 \u043c\u0435\u0442\u0430\u0434\u0430\u045e \u0431\u043b\u0456\u0436\u044d\u0439 \u0434\u0430 \u0456\u0441\u0446\u0456\u043d\u044b, \u043f\u0440\u044b \u0433\u044d\u0442\u044b\u043c \u0446\u0430\u043b\u043a\u0430\u043c \u0432\u0435\u0440\u0430\u0433\u043e\u0434\u043d\u0430, \u0448\u0442\u043e \u0456\u0441\u0446\u0456\u043d\u0430 \u0437\u043d\u0430\u0445\u043e\u0434\u0437\u0456\u0446\u0446\u0430 \u043d\u0435\u0434\u0437\u0435 \u043f\u0430\u0441\u044f\u0440\u044d\u0434\u0437\u0456\u043d\u0435 \u0430\u0431\u043e \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u0440\u044b\u043d\u0446\u044b\u043f\u043e\u0432\u0430 \u0456\u043d\u0448\u0430\u0433\u0430 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0443; \u0441\u0443\u0431'\u0435\u043a\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c \u0430\u0446\u044d\u043d\u0430\u043a, \u043a\u0430\u043b\u0456 \u043d\u0430\u0432\u0430\u0442 \u043f\u0440\u0430\u0441\u0443\u043d\u0443\u0442\u044b\u044f \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u044b \u0430\u0434\u043b\u044e\u0441\u0442\u0440\u043e\u045e\u0432\u0430\u044e\u0446\u044c \u0441\u0443\u0431'\u0435\u043a\u0442\u044b\u045e\u043d\u044b\u044f \u045e\u044f\u045e\u043b\u0435\u043d\u043d\u0456 \u0430\u0431 \u0442\u044b\u043c, \u0448\u0442\u043e \u043b\u0456\u0447\u044b\u0446\u044c \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u044f\u0439, \u0430 \u0448\u0442\u043e \u2014 \u043b\u0435\u0433\u0456\u0442\u044b\u043c\u043d\u044b\u043c \u043f\u0435\u0440\u0430\u043a\u0430\u043d\u0430\u043d\u043d\u0435\u043c; \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443\u0430\u043b\u044c\u043d\u0443\u044e \u0437\u0430\u043b\u0435\u0436\u043d\u0430\u0441\u0446\u044c, \u044f\u043a\u0430\u044f \u043f\u0440\u0430\u044f\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u045e \u0442\u044b\u043c, \u0448\u0442\u043e \u0430\u0446\u044d\u043d\u043a\u0430 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456 \u043c\u043e\u0446\u043d\u0430 \u0437\u0430\u043b\u0435\u0436\u044b\u0446\u044c \u0430\u0434 \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u043d\u0430\u0433\u0430, \u0441\u0430\u0446\u044b\u044f\u043b\u044c\u043d\u0430\u0433\u0430 \u0456 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443, \u0448\u0442\u043e \u045e\u0441\u043a\u043b\u0430\u0434\u043d\u044f\u0435 \u0441\u0442\u0432\u0430\u0440\u044d\u043d\u043d\u0435 \u045e\u043d\u0456\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u044b\u0445 \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u0430\u045e.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u043d\u0430\u0448\u0430\u0433\u0430 \u0434\u0430\u0441\u043b\u0435\u0434\u0430\u0432\u0430\u043d\u043d\u044f \u043c\u044b \u0440\u044d\u043a\u0430\u043c\u0435\u043d\u0434\u0443\u0435\u043c \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0456\u043d\u0433\u0430\u0432\u044b\u043c \u0430\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u044b\u044f\u043c \u0443\u0436\u044b\u0432\u0430\u0446\u044c \u0442\u0440\u044b\u044f\u043d\u0433\u0443\u043b\u044f\u0446\u044b\u044e \u043c\u0435\u0442\u0430\u0434\u0430\u045e, \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u044e\u0447\u044b \u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456 \u0440\u043e\u0437\u043d\u044b\u0445 \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u0456\u0447\u043d\u044b\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e \u0434\u043b\u044f \u043f\u0440\u0430\u0432\u0435\u0440\u043a\u0456 \u045e\u0437\u0433\u043e\u0434\u043d\u0435\u043d\u0430\u0441\u0446\u0456 \u0432\u044b\u043d\u0456\u043a\u0430\u045e; \u043d\u0430\u043b\u0430\u0434\u0436\u0432\u0430\u0446\u044c \u043f\u0430\u0440\u043e\u0433\u0430\u0432\u044b\u044f \u0437\u043d\u0430\u0447\u044d\u043d\u043d\u0456, \u043a\u0430\u043b\u0456\u0431\u0440\u0443\u044e\u0447\u044b \u043f\u0430\u0440\u043e\u0433 \"\u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u0456\" \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0456 \u0432\u044b\u0431\u0430\u0440\u043a\u0456 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443; \u0443\u043a\u0430\u0440\u0430\u043d\u044f\u0446\u044c \u0447\u0430\u043b\u0430\u0432\u0435\u0447\u044b \u043a\u0430\u043d\u0442\u0440\u043e\u043b\u044c, \u043f\u0430\u043a\u043e\u043b\u044c\u043a\u0456 \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u044b\u044f \u0441\u0456\u0441\u0442\u044d\u043c\u044b \u043f\u0430\u0432\u0456\u043d\u043d\u044b \u0432\u044b\u0441\u0442\u0443\u043f\u0430\u0446\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u043c \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043a\u0456 \u0440\u0430\u0448\u044d\u043d\u043d\u044f\u045e \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u0430\u045e, \u0430 \u043d\u0435 \u0456\u0445 \u0437\u0430\u043c\u0435\u043d\u0430\u0439; \u0443\u043b\u0456\u0447\u0432\u0430\u0446\u044c \u043c\u043e\u0446\u043d\u044b\u044f \u0431\u0430\u043a\u0456 \u0440\u043e\u0437\u043d\u044b\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e, \u043f\u0440\u044b\u043c\u0430\u044e\u0447\u044b \u043f\u0430\u0434 \u0443\u0432\u0430\u0433\u0443, \u0448\u0442\u043e NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0434\u0430\u0435 \u0431\u043e\u043b\u044c\u0448 \u0437\u0431\u0430\u043b\u0430\u043d\u0441\u0430\u0432\u0430\u043d\u0443\u044e \u0430\u0446\u044d\u043d\u043a\u0443 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456, \u0430 OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043c\u043e\u0436\u0430 \u0431\u044b\u0446\u044c \u043a\u0430\u0440\u044b\u0441\u043d\u044b \u0434\u043b\u044f \u0432\u044b\u044f\u045e\u043b\u0435\u043d\u043d\u044f \u0441\u0445\u0430\u0432\u0430\u043d\u044b\u0445 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u044b\u0445 \u0442\u044d\u0445\u043d\u0456\u043a; \u0430\u0434\u0430\u043f\u0442\u0430\u0432\u0430\u0446\u044c \u0442\u044d\u0445\u043d\u0430\u043b\u043e\u0433\u0456\u0456 \u043f\u0430\u0434 \u043b\u0430\u043a\u0430\u043b\u044c\u043d\u044b \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442, \u0440\u0430\u0441\u043f\u0440\u0430\u0446\u043e\u045e\u0432\u0430\u044e\u0447\u044b \u0441\u043f\u0435\u0446\u044b\u044f\u043b\u0456\u0437\u0430\u0432\u0430\u043d\u044b\u044f \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e \u0434\u043b\u044f \u043a\u0430\u043d\u043a\u0440\u044d\u0442\u043d\u044b\u0445 \u0442\u044d\u043c \u0456 \u043c\u043e\u045e; \u0437\u0430\u0431\u044f\u0441\u043f\u0435\u0447\u0432\u0430\u0446\u044c \u043f\u0440\u0430\u0437\u0440\u044b\u0441\u0442\u0430\u0441\u0446\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043b\u043e\u0433\u0456\u0456, \u043f\u0443\u0431\u043b\u0456\u0447\u043d\u0430 \u0440\u0430\u0441\u043a\u0440\u044b\u0432\u0430\u044e\u0447\u044b \u045e\u0436\u044b\u0432\u0430\u043d\u044b\u044f \u043c\u0435\u0442\u0430\u0434\u044b \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0456 \u0456\u0445 \u0430\u0431\u043c\u0435\u0436\u0430\u0432\u0430\u043d\u043d\u0456 \u043f\u0440\u044b \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u044b\u0456 \u0432\u044b\u043d\u0456\u043a\u0430\u045e \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0456\u043d\u0433\u0443.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0412\u044b\u043d\u0456\u043a\u0456 \u043d\u0430\u0448\u0430\u0433\u0430 \u0434\u0430\u0441\u043b\u0435\u0434\u0430\u0432\u0430\u043d\u043d\u044f \u043f\u0430\u0434\u043a\u0440\u044d\u0441\u043b\u0456\u0432\u0430\u044e\u0446\u044c \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430\u0441\u0446\u044c \u043d\u0430\u0432\u0443\u0447\u0430\u043d\u043d\u044f \u0448\u044b\u0440\u043e\u043a\u0430\u0439 \u0430\u045e\u0434\u044b\u0442\u043e\u0440\u044b\u0456 \u0440\u0430\u0441\u043f\u0430\u0437\u043d\u0430\u0432\u0430\u043d\u043d\u044e \u0440\u043e\u0437\u043d\u044b\u0445 \u0442\u044b\u043f\u0430\u045e \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u0439, \u044f\u043a\u0456\u044f \u0432\u044b\u0445\u043e\u0434\u0437\u044f\u0446\u044c \u0437\u0430 \u0440\u0430\u043c\u043a\u0456 \u044f\u045e\u043d\u0430 \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0433\u0430 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0433\u0430 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u0432\u0430\u043d\u043d\u044f; \u0440\u0430\u0437\u0432\u0456\u0446\u0446\u044f \u043a\u0440\u044b\u0442\u044b\u0447\u043d\u0430\u0433\u0430 \u043c\u044b\u0441\u043b\u0435\u043d\u043d\u044f \u0456 \u043d\u0430\u0432\u044b\u043a\u0430\u045e \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043c\u0435\u0434\u044b\u044f\u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443; \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u044f, \u0448\u0442\u043e \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u044b\u044f \u0441\u0456\u0441\u0442\u044d\u043c\u044b \u0430\u043d\u0430\u043b\u0456\u0437\u0443, \u0443\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u044b \u043f\u0440\u0430\u0441\u0443\u043d\u0443\u0442\u044b\u044f \u0428\u0406-\u043c\u0430\u0434\u044d\u043b\u0456, \u043c\u0430\u044e\u0446\u044c \u0441\u0432\u0430\u0435 \u0430\u0431\u043c\u0435\u0436\u0430\u0432\u0430\u043d\u043d\u0456 \u0456 \u043f\u0435\u0440\u0430\u0434\u0443\u0437\u044f\u0442\u0430\u0441\u0446\u0456.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0422\u044d\u0445\u043d\u0456\u0447\u043d\u0430\u044f \u0430\u0446\u044d\u043d\u043a\u0430 \u0434\u0432\u0443\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e: \u043a\u043e\u0448\u0442, \u043c\u0430\u0448\u0442\u0430\u0431\u0430\u0432\u0430\u043d\u0430\u0441\u0446\u044c, \u0434\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0441\u0446\u044c<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u043b\u044f \u043f\u0440\u044b\u043d\u044f\u0446\u0446\u044f \u0430\u0431\u0433\u0440\u0443\u043d\u0442\u0430\u0432\u0430\u043d\u044b\u0445 \u0440\u0430\u0448\u044d\u043d\u043d\u044f\u045e \u0430\u0431 \u0443\u043a\u0430\u0440\u0430\u043d\u0435\u043d\u043d\u0456 \u0442\u044d\u0445\u043d\u0430\u043b\u043e\u0433\u0456\u0439 \u0432\u0430\u0436\u043d\u0430 \u045e\u043b\u0456\u0447\u0432\u0430\u0446\u044c \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u0456 \u0456\u0445 \u0434\u0430\u043a\u043b\u0430\u0434\u043d\u0430\u0441\u0446\u044c, \u0430\u043b\u0435 \u0456 \u043f\u0440\u0430\u043a\u0442\u044b\u0447\u043d\u044b\u044f \u0430\u0441\u043f\u0435\u043a\u0442\u044b \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u044f.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0423 \u0433\u0430\u043b\u0456\u043d\u0435 \u043a\u043e\u0448\u0442\u0443 \u0456 \u0440\u044d\u0441\u0443\u0440\u0441\u0430\u045e NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0437'\u044f\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u0446\u0430\u043b\u043a\u0430\u043c \u0431\u044f\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c, \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0435 \u0442\u043e\u043b\u044c\u043a\u0456 \u0430\u0434\u043a\u0440\u044b\u0442\u0430\u0435 \u041f\u0417, \u043f\u0440\u0430\u0446\u0443\u0435 \u043b\u0430\u043a\u0430\u043b\u044c\u043d\u0430 \u0431\u0435\u0437 \u043f\u0430\u0434\u043a\u043b\u044e\u0447\u044d\u043d\u043d\u044f \u0434\u0430 \u0456\u043d\u0442\u044d\u0440\u043d\u044d\u0442\u0443, \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u045e\u043c\u0435\u0440\u0430\u043d\u044b\u044f \u0432\u044b\u043b\u0456\u0447\u0430\u043b\u044c\u043d\u044b\u044f \u0440\u044d\u0441\u0443\u0440\u0441\u044b, \u0430 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0430 12,252 \u0432\u0456\u0434\u044d\u0430 \u0437\u0430\u043d\u044f\u043b\u0430 \u043a\u0430\u043b\u044f 20 \u0445\u0432\u0456\u043b\u0456\u043d. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u0430\u043f\u043b\u0430\u0442\u044b API-\u0437\u0430\u043f\u044b\u0442\u0430\u045e (\u043f\u0440\u044b\u0431\u043b\u0456\u0437\u043d\u044b \u043a\u043e\u0448\u0442 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043d\u0430\u0448\u0430\u0433\u0430 \u043a\u043e\u0440\u043f\u0443\u0441\u0430 ~$100-150), \u0437\u0430\u043b\u0435\u0436\u044b\u0446\u044c \u0430\u0434 \u0441\u0442\u0430\u0431\u0456\u043b\u044c\u043d\u0430\u0433\u0430 \u0456\u043d\u0442\u044d\u0440\u043d\u044d\u0442-\u0437\u043b\u0443\u0447\u044d\u043d\u043d\u044f, \u0441\u0442\u0432\u0430\u0440\u0430\u0435 \u043c\u0456\u043d\u0456\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u043b\u0430\u043a\u0430\u043b\u044c\u043d\u044b\u044f \u0440\u044d\u0441\u0443\u0440\u0441\u044b, \u0430 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0430 \u0442\u0430\u0433\u043e \u0436 \u0430\u0431'\u0451\u043c\u0443 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u0437\u0430\u043d\u044f\u043b\u0430 \u043a\u0430\u043b\u044f 1-2 \u0433\u0430\u0434\u0437\u0456\u043d \u0437 \u0443\u043b\u0456\u043a\u0430\u043c \u0437\u0430\u0442\u0440\u044b\u043c\u0430\u043a API.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0423 \u043f\u043b\u0430\u043d\u0435 \u043c\u0430\u0448\u0442\u0430\u0431\u0430\u0432\u0430\u043d\u0430\u0441\u0446\u0456 \u0456 \u043f\u0440\u0430\u0434\u0443\u043a\u0446\u044b\u0439\u043d\u0430\u0441\u0446\u0456 NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043b\u0451\u0433\u043a\u0430 \u043c\u0430\u0448\u0442\u0430\u0431\u0443\u0435\u0446\u0446\u0430 \u0434\u043b\u044f \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u0432\u044f\u043b\u0456\u043a\u0456\u0445 \u0430\u0431'\u0451\u043c\u0430\u045e \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445, \u044f\u0433\u043e \u043f\u0440\u0430\u0434\u0443\u043a\u0446\u044b\u0439\u043d\u0430\u0441\u0446\u044c \u043c\u043e\u0436\u043d\u0430 \u043f\u0430\u0432\u044f\u043b\u0456\u0447\u044b\u0446\u044c \u0437\u0430 \u043a\u043e\u0448\u0442 \u043f\u0430\u0440\u0430\u043b\u0435\u043b\u044c\u043d\u0430\u0439 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456, \u0430 \u0445\u0443\u0442\u043a\u0430\u0441\u0446\u044c \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u043f\u0440\u0430\u043c\u0430 \u043f\u0440\u0430\u043f\u0430\u0440\u0446\u044b\u0439\u043d\u0430\u044f \u0434\u0430\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0432\u044b\u043b\u0456\u0447\u0430\u043b\u044c\u043d\u044b\u043c \u0440\u044d\u0441\u0443\u0440\u0441\u0430\u043c. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u0431\u043c\u0435\u0436\u0430\u0432\u0430\u043d\u044b \u043a\u0432\u043e\u0442\u0430\u043c\u0456 \u0456 \u0445\u0443\u0442\u043a\u0430\u0441\u0446\u044e API, \u044f\u0433\u043e \u043c\u0430\u0448\u0442\u0430\u0431\u0430\u0432\u0430\u043d\u043d\u0435 \u043f\u0430\u0432\u044b\u0448\u0430\u0435 \u043a\u043e\u0448\u0442 \u043f\u0440\u0430\u043f\u0430\u0440\u0446\u044b\u0439\u043d\u0430 \u0430\u0431'\u0451\u043c\u0443 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445, \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435\u0446\u0446\u0430 \u043a\u0456\u0440\u0430\u0432\u0430\u043d\u043d\u0435 \u0447\u044d\u0440\u0433\u0430\u043c\u0456 \u0437\u0430\u043f\u044b\u0442\u0430\u045e \u0456 \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0430 \u043f\u0430\u043c\u044b\u043b\u0430\u043a.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u043d\u0443\u0442\u043a\u0430\u0441\u0446\u044c \u0456 \u043c\u0430\u0433\u0447\u044b\u043c\u0430\u0441\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u045e NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0437\u0435 \u043f\u0440\u0430\u044f\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u045e \u043f\u043e\u045e\u043d\u0430\u0439 \u043f\u0440\u0430\u0437\u0440\u044b\u0441\u0442\u0430\u0441\u0446\u0456 \u0456 \u043d\u0430\u043b\u0430\u0434\u0436\u0432\u0430\u043b\u044c\u043d\u0430\u0441\u0446\u0456, \u043c\u0430\u0433\u0447\u044b\u043c\u0430\u0441\u0446\u0456 \u043c\u0430\u0434\u044b\u0444\u0456\u043a\u0430\u0432\u0430\u0446\u044c \u0441\u043b\u043e\u045e\u043d\u0456\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043c\u0430\u0440\u043a\u0435\u0440\u0430\u045e, \u0437\u043c\u044f\u043d\u044f\u0446\u044c \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u044b \u0442\u0430\u043a\u0435\u043d\u0456\u0437\u0430\u0446\u044b\u0456 \u0456 \u0444\u043e\u0440\u043c\u0443\u043b\u044b \u0430\u0446\u044d\u043d\u043a\u0456, \u0430\u043b\u0435 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435\u0446\u0446\u0430 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u044b\u0437\u0430 \u045e Python \u0456 NLP \u0434\u043b\u044f \u0456\u0441\u0442\u043e\u0442\u043d\u044b\u0445 \u043c\u0430\u0434\u044b\u0444\u0456\u043a\u0430\u0446\u044b\u0439. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043f\u0440\u0430\u043f\u0430\u043d\u0443\u0435 \u0430\u0431\u043c\u0435\u0436\u0430\u0432\u0430\u043d\u044b\u044f \u043c\u0430\u0433\u0447\u044b\u043c\u0430\u0441\u0446\u0456 \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u043f\u0440\u0430\u0437 \u043f\u0440\u043e\u043c\u043f\u0442-\u0456\u043d\u0436\u044b\u043d\u0456\u0440\u044b\u043d\u0433, \u0443\u043d\u0443\u0442\u0440\u0430\u043d\u0430\u044f \u043f\u0440\u0430\u0446\u0430 \u043c\u0430\u0434\u044d\u043b\u0456 \u043d\u0435\u043f\u0440\u0430\u0437\u0440\u044b\u0441\u0442\u0430\u044f (\u0447\u043e\u0440\u043d\u044b \u044f\u0449\u044b\u043a), \u043c\u0430\u0434\u044d\u043b\u044c \u0440\u044d\u0433\u0443\u043b\u044f\u0440\u043d\u0430 \u0430\u0431\u043d\u0430\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u043f\u0440\u0430\u0432\u0430\u0439\u0434\u044d\u0440\u0430\u043c, \u0448\u0442\u043e \u043c\u043e\u0436\u0430 \u045e\u043f\u043b\u044b\u0432\u0430\u0446\u044c \u043d\u0430 \u0432\u044b\u043d\u0456\u043a\u0456, \u0430\u043b\u0435 \u043d\u0435 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u0433\u043b\u044b\u0431\u043e\u043a\u0430\u0439 \u0442\u044d\u0445\u043d\u0456\u0447\u043d\u0430\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u044b\u0437\u044b \u0434\u043b\u044f \u0431\u0430\u0437\u0430\u0432\u0430\u0433\u0430 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u044f.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0423 \u0430\u0441\u043f\u0435\u043a\u0446\u0435 \u0434\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0441\u0446\u0456 \u0456 \u043f\u0430\u0442\u0440\u0430\u0431\u0430\u0432\u0430\u043d\u043d\u044f\u045e \u0434\u0430 \u0456\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043f\u0440\u0430\u0446\u0443\u0435 \u043d\u0430 \u043b\u044e\u0431\u044b\u043c \u043a\u0430\u043c\u043f'\u044e\u0442\u0430\u0440\u044b \u0437 Python, \u043d\u0435 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u0441\u043f\u0435\u0446\u044b\u044f\u043b\u0456\u0437\u0430\u0432\u0430\u043d\u0430\u0433\u0430 \u0430\u0431\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u043d\u043d\u044f, \u043c\u043e\u0436\u0430 \u0431\u044b\u0446\u044c \u0440\u0430\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u044b \u045e \u0456\u0437\u0430\u043b\u044f\u0432\u0430\u043d\u0430\u0439 \u0441\u0435\u0442\u0446\u044b \u0456 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0437\u0456\u0446\u044c \u0434\u043b\u044f \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u043a\u0430\u043d\u0444\u0456\u0434\u044d\u043d\u0446\u044b\u0439\u043d\u044b\u0445 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445. OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u0430\u0441\u0442\u0430\u044f\u043d\u043d\u0430\u0433\u0430 \u043f\u0430\u0434\u043a\u043b\u044e\u0447\u044d\u043d\u043d\u044f \u0434\u0430 \u0456\u043d\u0442\u044d\u0440\u043d\u044d\u0442\u0443, \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u044f \u0430\u0434\u043f\u0440\u0430\u045e\u043b\u044f\u044e\u0446\u0446\u0430 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u044b \u0442\u0440\u044d\u0446\u044f\u0433\u0430 \u0431\u043e\u043a\u0443, \u043c\u043e\u0436\u0430 \u0431\u044b\u0446\u044c \u0430\u0431\u043c\u0435\u0436\u0430\u0432\u0430\u043d\u044b \u0433\u0435\u0430\u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u043c\u0456 \u0444\u0430\u043a\u0442\u0430\u0440\u0430\u043c\u0456 \u0456 \u043d\u0435 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0437\u0456\u0446\u044c \u0434\u043b\u044f \u0430\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456 \u0441\u0442\u0440\u043e\u0433\u0430 \u043a\u0430\u043d\u0444\u0456\u0434\u044d\u043d\u0446\u044b\u0439\u043d\u0430\u0439 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0456.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u041f\u0440\u0430\u043a\u0442\u044b\u0447\u043d\u044b\u044f \u0441\u0446\u044d\u043d\u0430\u0440\u044b\u0456 \u043f\u0440\u044b\u043c\u044f\u043d\u0435\u043d\u043d\u044f: \u043a\u0430\u043b\u0456 \u044f\u043a\u0456 \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u043b\u0435\u043f\u0448<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u043d\u0430\u0448\u0430\u0433\u0430 \u043f\u0430\u0440\u0430\u045e\u043d\u0430\u043b\u044c\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043c\u043e\u0436\u043d\u0430 \u0432\u044b\u043b\u0443\u0447\u044b\u0446\u044c \u0430\u043f\u0442\u044b\u043c\u0430\u043b\u044c\u043d\u044b\u044f \u0441\u0446\u044d\u043d\u0430\u0440\u044b\u0456 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u044f \u0434\u043b\u044f \u043a\u043e\u0436\u043d\u0430\u0433\u0430 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0443.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">OpenAI-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u043f\u0442\u044b\u043c\u0430\u043b\u044c\u043d\u044b \u0434\u043b\u044f \u0431\u043e\u043b\u044c\u0448 \u0437\u0431\u0430\u043b\u0430\u043d\u0441\u0430\u0432\u0430\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0456 \u044d\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0430\u0444\u0430\u0440\u0431\u043e\u045e\u043a\u0456 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443, \u0430\u0441\u0430\u0431\u043b\u0456\u0432\u0430 \u043f\u0440\u044b \u043f\u0440\u0430\u0446\u044b \u0437 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430 \u0430\u0444\u0430\u0440\u0431\u0430\u0432\u0430\u043d\u044b\u043c\u0456 \u0442\u044d\u043c\u0430\u043c\u0456; \u0434\u043b\u044f \u043f\u0430\u0433\u043b\u044b\u0431\u043b\u0435\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0441\u043a\u043b\u0430\u0434\u0430\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443, \u043f\u0440\u044b \u0440\u0430\u0441\u0441\u043b\u0435\u0434\u0430\u0432\u0430\u043d\u043d\u0456 \u0432\u044b\u0442\u0430\u043d\u0447\u0430\u043d\u044b\u0445 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043a\u0430\u043c\u043f\u0430\u043d\u0456\u0439, \u0434\u043b\u044f \u0432\u044b\u044f\u045e\u043b\u0435\u043d\u043d\u044f \u0441\u0445\u0430\u0432\u0430\u043d\u044b\u0445 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u0439 \u0456 \u043f\u0430\u0434\u0442\u044d\u043a\u0441\u0442\u0430\u045e, \u043f\u0440\u044b \u043f\u0440\u0430\u0446\u044b \u0437 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0430\u043c, \u044f\u043a\u0456 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u0440\u0430\u0437\u0443\u043c\u0435\u043d\u043d\u044f \u043a\u0443\u043b\u044c\u0442\u0443\u0440\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043a\u0441\u0442\u0443; \u0434\u043b\u044f \u0430\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u044b\u0439 \u0437 \u0430\u0431\u043c\u0435\u0436\u0430\u0432\u0430\u043d\u0430\u0439 \u0442\u044d\u0445\u043d\u0456\u0447\u043d\u0430\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u044b\u0437\u0430\u0439, \u043a\u0430\u043b\u0456 \u043d\u044f\u043c\u0430 \u045e\u043b\u0430\u0441\u043d\u044b\u0445 \u0441\u043f\u0435\u0446\u044b\u044f\u043b\u0456\u0441\u0442\u0430\u045e \u043f\u0430 NLP, \u043f\u0440\u044b \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430\u0441\u0446\u0456 \u0445\u0443\u0442\u043a\u0430\u0433\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0443 \u0430\u043d\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u0439 \u0441\u0456\u0441\u0442\u044d\u043c\u044b.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">NLTK-\u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0430\u043f\u0442\u044b\u043c\u0430\u043b\u044c\u043d\u044b \u0434\u043b\u044f \u043f\u0435\u0440\u0448\u0430\u0441\u043d\u0430\u0433\u0430 \u0441\u043a\u0440\u044b\u043d\u0456\u043d\u0433\u0443 \u0432\u044f\u043b\u0456\u043a\u0456\u0445 \u0430\u0431'\u0451\u043c\u0430\u045e \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u0437 \u043c\u044d\u0442\u0430\u0439 \u0432\u044b\u044f\u045e\u043b\u0435\u043d\u043d\u044f \u043f\u0430\u0442\u044d\u043d\u0446\u044b\u0439\u043d\u0430 \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443, \u044f\u043a\u0456 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u0434\u0430\u043b\u0435\u0439\u0448\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443; \u0434\u043b\u044f \u043f\u0440\u0430\u0446\u044b \u0432\u0430 \u045e\u043c\u043e\u0432\u0430\u0445 \u0430\u0431\u043c\u0435\u0436\u0430\u0432\u0430\u043d\u0430\u0433\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u0434\u0430 \u0441\u0435\u0442\u043a\u0456, \u0443 \u0440\u044d\u0433\u0456\u0451\u043d\u0430\u0445 \u0437 \u043d\u0435\u0441\u0442\u0430\u0431\u0456\u043b\u044c\u043d\u044b\u043c \u0456\u043d\u0442\u044d\u0440\u043d\u044d\u0442-\u0437\u043b\u0443\u0447\u044d\u043d\u043d\u0435\u043c, \u0443 \u0430\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u044b\u044f\u0445 \u0437 \u0441\u0442\u0440\u043e\u0433\u0456\u043c\u0456 \u043f\u0430\u043b\u0456\u0442\u044b\u043a\u0430\u043c\u0456 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0439\u043d\u0430\u0439 \u0431\u044f\u0441\u043f\u0435\u043a\u0456, \u043f\u0440\u044b \u043f\u0440\u0430\u0446\u044b \u0437 \u043a\u0430\u043d\u0444\u0456\u0434\u044d\u043d\u0446\u044b\u0439\u043d\u044b\u043c\u0456 \u0430\u0431\u043e \u0430\u0434\u0447\u0443\u0432\u0430\u043b\u044c\u043d\u044b\u043c\u0456 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u043c\u0456; \u0434\u043b\u044f \u0441\u0442\u0432\u0430\u0440\u044d\u043d\u043d\u044f \u0441\u043f\u0435\u0446\u044b\u044f\u043b\u0456\u0437\u0430\u0432\u0430\u043d\u044b\u0445 \u0440\u0430\u0448\u044d\u043d\u043d\u044f\u045e, \u043a\u0430\u043b\u0456 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435\u0446\u0446\u0430 \u0434\u0430\u043a\u043b\u0430\u0434\u043d\u0430\u044f \u043d\u0430\u043b\u0430\u0434\u043a\u0430 \u043f\u0430\u0434 \u043a\u0430\u043d\u043a\u0440\u044d\u0442\u043d\u0443\u044e \u0442\u044d\u043c\u0430\u0442\u044b\u043a\u0443 \u0430\u0431\u043e \u043c\u043e\u0432\u0443, \u043f\u0440\u044b \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430\u0441\u0446\u0456 \u043f\u043e\u045e\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u0440\u043e\u043b\u044e \u043d\u0430\u0434 \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u0430\u043c, \u0434\u043b\u044f \u0456\u043d\u0442\u044d\u0433\u0440\u0430\u0446\u044b\u0456 \u045e \u0456\u0441\u043d\u0443\u044e\u0447\u044b\u044f \u0441\u0456\u0441\u0442\u044d\u043c\u044b \u043c\u0430\u043d\u0456\u0442\u043e\u0440\u044b\u043d\u0433\u0443. \u041f\u0440\u044b \u0433\u044d\u0442\u044b\u043c \u0432\u0430\u0440\u0442\u0430 \u045e\u043b\u0456\u0447\u0432\u0430\u0446\u044c \u0442\u044d\u043d\u0434\u044d\u043d\u0446\u044b\u044e \u0433\u044d\u0442\u0430\u0433\u0430 \u043c\u0435\u0442\u0430\u0434\u0443 \u0434\u0430 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0446\u044b\u0456 \u0431\u043e\u043b\u044c\u0448\u0430\u0441\u0446\u0456 \u043f\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u0430\u0433\u0430.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u0456\u0431\u0440\u044b\u0434\u043d\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0440\u044d\u043a\u0430\u043c\u0435\u043d\u0434\u0443\u0435\u0446\u0446\u0430 \u0434\u043b\u044f \u043f\u0440\u0430\u0444\u0435\u0441\u0456\u0439\u043d\u044b\u0445 \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0456\u043d\u0433\u0430\u0432\u044b\u0445 \u0430\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u044b\u0439 \u2013 \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u0435 NLTK \u0434\u043b\u044f \u043f\u0435\u0440\u0448\u0430\u0441\u043d\u0430\u0433\u0430 \u0432\u044b\u044f\u045e\u043b\u0435\u043d\u043d\u044f \u043f\u0430\u0442\u044d\u043d\u0446\u044b\u0439\u043d\u0430 \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0437 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0431\u043e\u043b\u044c\u0448 \u0433\u043b\u044b\u0431\u043e\u043a\u0456\u043c \u0430\u043d\u0430\u043b\u0456\u0437\u0430\u043c \u0437 \u0434\u0430\u043f\u0430\u043c\u043e\u0433\u0430\u0439 OpenAI \u0434\u043b\u044f \u0431\u043e\u043b\u044c\u0448 \u0437\u0431\u0430\u043b\u0430\u043d\u0441\u0430\u0432\u0430\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0456, \u0437\u0430\u0432\u044f\u0440\u0448\u0430\u0435\u043c\u0430\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0430\u0439 \u0434\u043b\u044f \u0432\u044b\u043d\u0456\u043a\u043e\u0432\u044b\u0445 \u0432\u044b\u0441\u043d\u043e\u045e \u0456 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u044b\u0439; \u0434\u043b\u044f \u0434\u0430\u0441\u043b\u0435\u0434\u0447\u044b\u0445 \u0446\u044d\u043d\u0442\u0440\u0430\u045e \u0456 \u0430\u043d\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u0445 \u0430\u0433\u0435\u043d\u0446\u0442\u0432\u0430\u045e \u2013 \u043f\u0430\u0440\u0430\u045e\u043d\u0430\u043b\u044c\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u0432\u044b\u043d\u0456\u043a\u0430\u045e \u0440\u043e\u0437\u043d\u044b\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e, \u043a\u0430\u043c\u0431\u0456\u043d\u0430\u0432\u0430\u043d\u043d\u0435 \u043a\u043e\u043b\u044c\u043a\u0430\u0441\u043d\u044b\u0445 \u0456 \u044f\u043a\u0430\u0441\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u045e, \u0440\u0430\u0441\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0430 \u043d\u043e\u0432\u044b\u0445 \u043c\u0435\u0442\u0440\u044b\u043a \u0456 \u043c\u0435\u0442\u0430\u0434\u0430\u043b\u043e\u0433\u0456\u0439 \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u043b\u0435\u043f\u0448\u044b\u0445 \u043f\u0440\u0430\u043a\u0442\u044b\u043a \u0430\u0431\u043e\u0434\u0432\u0443\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u0456\u0431\u0440\u044b\u0434\u043d\u044b \u043f\u0430\u0434\u044b\u0445\u043e\u0434 \u0440\u044d\u043a\u0430\u043c\u0435\u043d\u0434\u0443\u0435\u0446\u0446\u0430 \u0434\u043b\u044f \u043f\u0440\u0430\u0444\u0435\u0441\u0456\u0439\u043d\u044b\u0445 \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0456\u043d\u0433\u0430\u0432\u044b\u0445 \u0430\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u044b\u0439 \u2013 NLTK \u0434\u043b\u044f \u043f\u0435\u0440\u0448\u0430\u0441\u043d\u0430\u0433\u0430 \u0441\u043a\u0440\u044b\u043d\u0456\u043d\u0433\u0443 \u0456 \u0430\u0434\u0431\u043e\u0440\u0443 \u043f\u0430\u0434\u0430\u0437\u0440\u043e\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443, OpenAI \u0434\u043b\u044f \u043f\u0430\u0433\u043b\u044b\u0431\u043b\u0435\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0430\u0434\u0430\u0431\u0440\u0430\u043d\u044b\u0445 \u043c\u0430\u0442\u044d\u0440\u044b\u044f\u043b\u0430\u045e, \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0430\u044f \u0430\u0446\u044d\u043d\u043a\u0430 \u0434\u043b\u044f \u0432\u044b\u043d\u0456\u043a\u043e\u0432\u044b\u0445 \u0432\u044b\u0441\u043d\u043e\u045e \u0456 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u044b\u0439; \u0434\u043b\u044f \u0434\u0430\u0441\u043b\u0435\u0434\u0447\u044b\u0445 \u0446\u044d\u043d\u0442\u0440\u0430\u045e \u0456 \u0430\u043d\u0430\u043b\u0456\u0442\u044b\u0447\u043d\u044b\u0445 \u0430\u0433\u0435\u043d\u0446\u0442\u0432\u0430\u045e \u2013 \u043f\u0430\u0440\u0430\u045e\u043d\u0430\u043b\u044c\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u0432\u044b\u043d\u0456\u043a\u0430\u045e \u0440\u043e\u0437\u043d\u044b\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e, \u043a\u0430\u043c\u0431\u0456\u043d\u0430\u0432\u0430\u043d\u043d\u0435 \u043a\u043e\u043b\u044c\u043a\u0430\u0441\u043d\u044b\u0445 \u0456 \u044f\u043a\u0430\u0441\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u045e, \u0440\u0430\u0441\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0430 \u043d\u043e\u0432\u044b\u0445 \u043c\u0435\u0442\u0440\u044b\u043a \u0456 \u043c\u0435\u0442\u0430\u0434\u0430\u043b\u043e\u0433\u0456\u0439 \u043d\u0430 \u0430\u0441\u043d\u043e\u0432\u0435 \u043b\u0435\u043f\u0448\u044b\u0445 \u043f\u0440\u0430\u043a\u0442\u044b\u043a \u0430\u0431\u043e\u0434\u0432\u0443\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e.<\/p>\n<h2 class=\"text-xl font-bold text-text-100 mt-1 -mb-0.5\">\u0417\u0430\u043a\u043b\u044e\u0447\u044d\u043d\u043d\u0435 \u0456 \u043f\u0435\u0440\u0441\u043f\u0435\u043a\u0442\u044b\u0432\u044b \u0440\u0430\u0437\u0432\u0456\u0446\u0446\u044f \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0437\u0430\u0432\u0430\u043d\u0430\u0433\u0430 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043c\u0435\u0434\u044b\u044f\u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443<\/h2>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0430\u0448\u0430 \u0434\u0430\u0441\u043b\u0435\u0434\u0430\u0432\u0430\u043d\u043d\u0435 \u043d\u0430\u0433\u043b\u044f\u0434\u043d\u0430 \u0434\u044d\u043c\u0430\u043d\u0441\u0442\u0440\u0443\u0435, \u0448\u0442\u043e \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0437\u0430\u0432\u0430\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u043c\u0435\u0434\u044b\u044f\u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u0437\u043d\u0430\u0445\u043e\u0434\u0437\u0456\u0446\u0446\u0430 \u043d\u0430 \u0440\u043e\u0441\u0442\u0430\u043d\u044f\u0445 \u0442\u0440\u0430\u0434\u044b\u0446\u044b\u0439\u043d\u044b\u0445 \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u0456\u0447\u043d\u044b\u0445 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e \u0456 \u043d\u043e\u0432\u044b\u0445 \u043c\u0430\u0433\u0447\u044b\u043c\u0430\u0441\u0446\u044f\u045e \u0448\u0442\u0443\u0447\u043d\u0430\u0433\u0430 \u0456\u043d\u0442\u044d\u043b\u0435\u043a\u0442\u0443. \u041a\u043e\u0436\u043d\u044b \u043c\u0435\u0442\u0430\u0434 \u043c\u0430\u0435 \u0441\u0432\u0430\u0435 \u043c\u043e\u0446\u043d\u044b\u044f \u0456 \u0441\u043b\u0430\u0431\u044b\u044f \u0431\u0430\u043a\u0456, \u0456 \u0456\u0434\u044d\u0430\u043b\u044c\u043d\u0430\u0433\u0430 \u0440\u0430\u0448\u044d\u043d\u043d\u044f, \u043f\u0440\u044b\u0434\u0430\u0442\u043d\u0430\u0433\u0430 \u0434\u043b\u044f \u045e\u0441\u0456\u0445 \u0437\u0430\u0434\u0430\u0447, \u043d\u0435 \u0456\u0441\u043d\u0443\u0435.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0414\u0440\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u0430\u044f \u0440\u043e\u0437\u043d\u0456\u0446\u0430 \u045e \u0432\u044b\u043d\u0456\u043a\u0430\u0445 \u0430\u0446\u044d\u043d\u043a\u0456 \u0430\u0434\u043d\u0430\u0433\u043e \u0456 \u0442\u0430\u0433\u043e \u0436 \u043a\u043e\u0440\u043f\u0443\u0441\u0430 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u0434\u0432\u0443\u043c\u0430 \u0440\u043e\u0437\u043d\u044b\u043c\u0456 \u043c\u0435\u0442\u0430\u0434\u0430\u043c\u0456 \u043f\u0430\u0434\u043a\u0440\u044d\u0441\u043b\u0456\u0432\u0430\u0435 \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430\u0441\u0446\u044c \u043a\u0440\u044b\u0442\u044b\u0447\u043d\u0430\u0433\u0430 \u0441\u0442\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u0434\u0430 \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0437\u0430\u0432\u0430\u043d\u044b\u0445 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u045e \u0430\u043d\u0430\u043b\u0456\u0437\u0443. \u0410\u0441\u0430\u0431\u043b\u0456\u0432\u0430 \u043f\u0430\u043a\u0430\u0437\u0430\u043b\u044c\u043d\u0430, \u0448\u0442\u043e NLTK-\u043c\u0435\u0442\u0430\u0434 \u043a\u043b\u0430\u0441\u0456\u0444\u0456\u043a\u0430\u0432\u0430\u045e \u043f\u0435\u0440\u0430\u0432\u0430\u0436\u043d\u0443\u044e \u0431\u043e\u043b\u044c\u0448\u0430\u0441\u0446\u044c \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 (96.3%) \u044f\u043a \u043d\u0435\u0433\u0430\u0442\u044b\u045e\u043d\u044b, \u0443 \u0442\u043e\u0439 \u0447\u0430\u0441 \u044f\u043a OpenAI-\u043c\u0435\u0442\u0430\u0434 \u0434\u0430\u045e \u0431\u043e\u043b\u044c\u0448 \u0437\u0431\u0430\u043b\u0430\u043d\u0441\u0430\u0432\u0430\u043d\u0443\u044e \u0430\u0446\u044d\u043d\u043a\u0443 \u0437 \u043f\u0435\u0440\u0430\u0432\u0430\u0433\u0430\u0439 \u043d\u0435\u0439\u0442\u0440\u0430\u043b\u044c\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 (51.5%).<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0413\u044d\u0442\u0430\u0435 \u0440\u0430\u0437\u044b\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0435 \u0434\u044d\u043c\u0430\u043d\u0441\u0442\u0440\u0443\u0435, \u043d\u0430\u043a\u043e\u043b\u044c\u043a\u0456 \u043c\u043e\u0446\u043d\u0430 \u0432\u044b\u043d\u0456\u043a\u0456 \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043c\u043e\u0433\u0443\u0446\u044c \u0437\u0430\u043b\u0435\u0436\u0430\u0446\u044c \u0430\u0434 \u0432\u044b\u0431\u0440\u0430\u043d\u0430\u0433\u0430 \u043c\u0435\u0442\u0430\u0434\u0443, \u0448\u0442\u043e \u043c\u0430\u0435 \u0441\u0443\u0440'\u0451\u0437\u043d\u044b\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u0441\u0442\u0432\u044b \u0434\u043b\u044f \u0434\u0430\u0441\u043b\u0435\u0434\u0447\u044b\u043a\u0430\u045e \u043c\u0435\u0434\u044b\u044f\u043f\u0440\u0430\u0441\u0442\u043e\u0440\u044b \u0456 \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0435\u0440\u0430\u045e. \u041f\u0440\u044b \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u0456 \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0437\u0430\u0432\u0430\u043d\u044b\u0445 \u0441\u0456\u0441\u0442\u044d\u043c \u0434\u043b\u044f \u043c\u0430\u043d\u0456\u0442\u043e\u0440\u044b\u043d\u0433\u0443 \u043c\u0435\u0434\u044b\u044f\u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443 \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430 \u045e\u0441\u0432\u0435\u0434\u0430\u043c\u043b\u044f\u0446\u044c \u043c\u0430\u0433\u0447\u044b\u043c\u0443\u044e \u043f\u0435\u0440\u0430\u0434\u0443\u0437\u044f\u0442\u0430\u0441\u0446\u044c \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c\u0430\u045e \u0456 \u043f\u0440\u044b\u043c\u0430\u0446\u044c \u044f\u0435 \u043f\u0430\u0434 \u0443\u0432\u0430\u0433\u0443 \u043f\u0440\u044b \u0456\u043d\u0442\u044d\u0440\u043f\u0440\u044d\u0442\u0430\u0446\u044b\u0456 \u0432\u044b\u043d\u0456\u043a\u0430\u045e.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0456 \u0430\u0434\u0437\u0456\u043d \u0430\u043b\u0433\u0430\u0440\u044b\u0442\u043c \u043d\u0435 \u043c\u043e\u0436\u0430 \u0437\u0430\u043c\u044f\u043d\u0456\u0446\u044c \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0443\u044e \u0430\u0446\u044d\u043d\u043a\u0443 \u0456 \u043a\u0440\u044b\u0442\u044b\u0447\u043d\u0430\u0435 \u043c\u044b\u0441\u043b\u0435\u043d\u043d\u0435, \u0430\u043b\u0435 \u043f\u0456\u0441\u044c\u043c\u0435\u043d\u043d\u0430\u0435 \u043f\u0440\u044b\u043c\u044f\u043d\u0435\u043d\u043d\u0435 \u0442\u044d\u0445\u043d\u0430\u043b\u043e\u0433\u0456\u0439 \u043c\u043e\u0436\u0430 \u0456\u0441\u0442\u043e\u0442\u043d\u0430 \u043f\u0430\u0432\u044b\u0441\u0456\u0446\u044c \u044d\u0444\u0435\u043a\u0442\u044b\u045e\u043d\u0430\u0441\u0446\u044c \u043f\u0440\u0430\u0446\u044b \u0444\u0430\u043a\u0442\u0447\u044d\u043a\u0435\u0440\u0430\u045e \u0456 \u0434\u0430\u0441\u043b\u0435\u0434\u0447\u044b\u043a\u0430\u045e \u043c\u0435\u0434\u044b\u044f. \u041d\u0430\u0439\u0431\u043e\u043b\u044c\u0448 \u043f\u0440\u0430\u0434\u0443\u043a\u0442\u044b\u045e\u043d\u044b\u043c \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u043c \u0443\u044f\u045e\u043b\u044f\u0435\u0446\u0446\u0430 \u043a\u0430\u043c\u0431\u0456\u043d\u0430\u0432\u0430\u043d\u043d\u0435 \u0440\u043e\u0437\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u045e \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u0437 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0439 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0430\u0439 \u0432\u044b\u043d\u0456\u043a\u0430\u045e.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u0423 \u0431\u043b\u0456\u0436\u044d\u0439\u0448\u044b\u044f \u0433\u0430\u0434\u044b \u043c\u044b, \u0432\u0435\u0440\u0430\u0433\u043e\u0434\u043d\u0430, \u0443\u0431\u0430\u0447\u044b\u043c \u0440\u0430\u0437\u0432\u0456\u0446\u0446\u0451 \u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456\u0445 \u043d\u0430\u043f\u0440\u0430\u043c\u043a\u0430\u045e: \u0441\u043f\u0435\u0446\u044b\u044f\u043b\u0456\u0437\u0430\u0432\u0430\u043d\u044b\u0445 \u043c\u0430\u0434\u044d\u043b\u044f\u045e \u0434\u043b\u044f \u0430\u043d\u0430\u043b\u0456\u0437\u0443 \u043c\u0435\u0434\u044b\u044f\u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443, \u043d\u0430\u0432\u0443\u0447\u0430\u043d\u044b\u0445 \u043d\u0430 \u043f\u0440\u044b\u043a\u043b\u0430\u0434\u0430\u0445 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u044b\u0445 \u0442\u044d\u0445\u043d\u0456\u043a; \u043b\u0430\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u0432\u0430\u0440\u044b\u044f\u043d\u0442\u0430\u045e \u0432\u044f\u043b\u0456\u043a\u0456\u0445 \u043c\u043e\u045e\u043d\u044b\u0445 \u043c\u0430\u0434\u044d\u043b\u044f\u045e, \u044f\u043a\u0456\u044f \u043d\u0435 \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u044e\u0446\u044c \u0430\u0434\u043f\u0440\u0430\u045e\u043a\u0456 \u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445 \u043d\u0430 \u0437\u043d\u0435\u0448\u043d\u0456\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u044b; \u0456\u043d\u0442\u044d\u0440\u0430\u043a\u0442\u044b\u045e\u043d\u044b\u0445 \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430\u045e, \u044f\u043a\u0456\u044f \u0441\u043f\u0430\u043b\u0443\u0447\u0430\u044e\u0446\u044c \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u044b \u0430\u043d\u0430\u043b\u0456\u0437 \u0437 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u043a\u0430\u0439; \u0430\u0434\u0443\u043a\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430\u045e, \u044f\u043a\u0456\u044f \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u044e\u0446\u044c \u0428\u0406 \u0434\u043b\u044f \u043d\u0430\u0432\u0443\u0447\u0430\u043d\u043d\u044f \u0433\u0440\u0430\u043c\u0430\u0434\u0437\u044f\u043d \u043c\u0435\u0434\u044b\u044f\u0433\u0440\u0430\u043c\u0430\u0442\u043d\u0430\u0441\u0446\u0456.<\/p>\n<p class=\"whitespace-pre-wrap break-words\">\u041d\u0435\u0437\u0430\u043b\u0435\u0436\u043d\u0430 \u0430\u0434 \u0442\u044d\u0445\u043d\u0430\u043b\u0430\u0433\u0456\u0447\u043d\u0430\u0433\u0430 \u043f\u0440\u0430\u0433\u0440\u044d\u0441\u0443, \u043a\u043b\u044e\u0447\u0430\u0432\u044b\u043c \u0444\u0430\u043a\u0442\u0430\u0440\u0430\u043c \u043f\u043e\u0441\u043f\u0435\u0445\u0443 \u0437\u0430\u0441\u0442\u0430\u043d\u0435\u0446\u0446\u0430 \u0447\u0430\u043b\u0430\u0432\u0435\u0447\u0430\u044f \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u044b\u0437\u0430, \u043a\u0440\u044b\u0442\u044b\u0447\u043d\u0430\u0435 \u043c\u044b\u0441\u043b\u0435\u043d\u043d\u0435 \u0456 \u043f\u0440\u044b\u0445\u0456\u043b\u044c\u043d\u0430\u0441\u0446\u044c \u0432\u044b\u0441\u043e\u043a\u0456\u043c \u044d\u0442\u044b\u0447\u043d\u044b\u043c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0430\u043c \u0443 \u0431\u0430\u0440\u0430\u0446\u044c\u0431\u0435 \u0437 \u0434\u044d\u0437\u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u044f\u0439 \u0456 \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u044f\u043c\u0456. \u0410\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0437\u0430\u0432\u0430\u043d\u044b\u044f \u0441\u0456\u0441\u0442\u044d\u043c\u044b \u043f\u0430\u0432\u0456\u043d\u043d\u044b \u0440\u0430\u0437\u0433\u043b\u044f\u0434\u0430\u0446\u0446\u0430 \u044f\u043a \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043a\u0456 \u043f\u0440\u044b\u043d\u044f\u0446\u0446\u044f \u0440\u0430\u0448\u044d\u043d\u043d\u044f\u045e, \u0430 \u043d\u0435 \u044f\u043a \u0437\u0430\u043c\u0435\u043d\u0430 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043d\u0430\u0439 \u0430\u0446\u044d\u043d\u0446\u044b.<\/p>\n<div id=\"markdown-artifact\" class=\"font-claude-message mx-auto w-full max-w-3xl leading-[1.65rem] -tracking-[0.015em] px-6 pt-4 md:pt-6 md:px-11\" tabindex=\"0\">\n<div><\/div>\n<\/div>","_bel_post_name":"","_bel_post_excerpt":"","_bel_post_title":"\u0428\u0442\u0443\u0447\u043d\u044b \u0456\u043d\u0442\u044d\u043b\u0435\u043a\u0442 \u0441\u0443\u043f\u0440\u0430\u0446\u044c \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0446\u044b\u0439: \u043f\u0430\u0440\u0430\u045e\u043d\u0430\u043d\u043d\u0435 \u043f\u0430\u0434\u044b\u0445\u043e\u0434\u0430\u045e \u0434\u0430 \u0432\u044b\u044f\u045e\u043b\u0435\u043d\u043d\u044f \u043c\u0430\u043d\u0456\u043f\u0443\u043b\u044f\u0442\u044b\u045e\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0442\u044d\u043d\u0442\u0443","_lt_post_content":"","_lt_post_name":"","_lt_post_excerpt":"","_lt_post_title":"","edit_language":"eng","footnotes":""},"categories":[3,1],"tags":[],"_links":{"self":[{"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/posts\/3415"}],"collection":[{"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/comments?post=3415"}],"version-history":[{"count":9,"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/posts\/3415\/revisions"}],"predecessor-version":[{"id":3439,"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/posts\/3415\/revisions\/3439"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/media\/3416"}],"wp:attachment":[{"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/media?parent=3415"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/categories?post=3415"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/factcheck.lt\/eng\/wp-json\/wp\/v2\/tags?post=3415"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}