<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>2.1.1: Tokenization | GenAI Learning</title>
    <link>https://genai.gitpull.in/2-intro-genai/2.1-key-concept/1-tokenization/index.html</link>
    <description>Tokenization Tokenization is the process of converting text into smaller units, typically words or subwords, that can be processed by machine learning models. In natural language processing (NLP), tokens are the basic building blocks for understanding and generating language. Tokenization helps the model “understand” the text by converting it into a format that can be fed into the neural network.&#xA;Word-level tokenization splits text into words. Example: &#34;I love AI&#34; → [&#34;I&#34;, &#34;love&#34;, &#34;AI&#34;]. Subword-level tokenization (used in models like GPT) splits words into smaller parts or subwords. This is more efficient and handles unknown words better, as the model can understand smaller pieces of a word. Example, “delightful”→[“delight”, “ful”]`. Character-Level Tokenization Splits text into individual characters. Example: &#34;AI&#34; → [&#34;A&#34;, &#34;I&#34;]. Hands-On: Tokenization Tokenization Example</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <atom:link href="https://genai.gitpull.in/2-intro-genai/2.1-key-concept/1-tokenization/index.xml" rel="self" type="application/rss+xml" />
  </channel>
</rss>