awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

12 مستودعات

Awesome GitHub RepositoriesToken Embedding Layers

Trainable lookup tables that map discrete tokens to dense vector representations.

Distinct from Dense Embeddings: Focuses on the lookup table architecture itself, whereas dense embeddings refers to the vector format.

Explore 12 awesome GitHub repositories matching artificial intelligence & ml · Token Embedding Layers. Refine with filters or upvote what's useful.

Awesome Token Embedding Layers GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • dennybritz/cnn-text-classification-tfالصورة الرمزية لـ dennybritz

    dennybritz/cnn-text-classification-tf

    5,684عرض على GitHub↗

    هذا المشروع عبارة عن تنفيذ TensorFlow لشبكة عصبية تلافيفية مصممة لتصنيف النصوص. يعمل كمصنف نصوص للتعلم العميق يقوم بتعيين تسميات محددة مسبقاً لمستندات النص من خلال تحديد وتحليل الأنماط المتعلمة داخل مجموعات التدريب. يستخدم النموذج تسلسلاً من تحويل النصوص إلى متجهات (vectorization) في طبقة التضمين، وطبقات تلافيفية لاستخراج الميزات، وتقليل أخذ العينات (max-pooling) لمعالجة بيانات النص. يتم تحديد احتمالات الفئة النهائية من خلال نظام تصنيف الطبقة الكثيفة. يغطي سير العمل دورة حياة التعلم الآلي من البداية إلى النهاية، بما في ذلك تعلم النص الخاضع للإشراف، وتدريب النموذج مع أبعاد تضمين وأحجام فلاتر قابلة للتكوين، وتقييم الأداء باستخدام مجموعات بيانات التحقق واستمرارية النموذج القائمة على نقاط التفتيش (checkpoints).

    Uses trainable embedding layers to transform discrete text tokens into dense vector representations.

    Python
    عرض على GitHub↗5,684
  • flashlight/flashlightالصورة الرمزية لـ flashlight

    flashlight/flashlight

    5,443عرض على GitHub↗

    Flashlight هي مكتبة تعلم آلي مستقلة بلغة C++ ومكتبة موترات تستخدم لبناء وتدريب الشبكات العصبية. تعمل كإطار عمل شامل للشبكات العصبية ومحرك للتمايز التلقائي، مما يوفر الأدوات لبناء رسوم بيانية للحساب وحساب التدرجات عبر الانتشار العكسي. يعمل المشروع كإطار عمل للتدريب الموزع، حيث يستخدم عمليات (All-reduce) لمزامنة التدرجات والمعلمات عبر عقد حساب وأجهزة متعددة. يتميز بالتكامل العميق لمعالجة الموترات عالية الأداء، وقابلية التشغيل البيني لذاكرة الجهاز الأصلية، ونظام لمزامنة الأوزان عبر العمال الموزعين لتسريع تدريب النماذج واسعة النطاق. يغطي إطار العمل مجموعة واسعة من قدرات التعلم العميق، بما في ذلك تكوين الطبقات المعيارية لتصميم بنيات معقدة مثل الكتل المتبقية (Residual blocks) والخلايا المتكررة. يوفر أدوات واسعة النطاق لإدارة البيانات للاستيعاب والجلب المسبق، إلى جانب أنظمة التسلسل لحفظ حالات النموذج. بالإضافة إلى ذلك، يتضمن مجموعة من أدوات المراقبة وقابلية المراقبة لتتبع مقاييس التدريب وقياس أخطاء التسلسل. تم تنفيذ المكتبة بلغة C++.

    Implements embedding lookups to retrieve vectors from learnable dictionaries using index lists.

    C++
    عرض على GitHub↗5,443
  • macanv/bert-bilsmt-crf-nerالصورة الرمزية لـ macanv

    macanv/BERT-BiLSMT-CRF-NER

    4,906عرض على GitHub↗

    This project is a natural language processing system designed for named entity recognition and text classification. It uses a machine learning approach to identify specific names and key information from raw text to organize unstructured content into a structured format. The system implements a multi-layer architecture that combines a pre-trained transformer for embeddings, bidirectional long short-term memory for sequence modeling, and a conditional random field for label transitions. It supports transfer learning through the fine-tuning of these models on task-specific datasets. The projec

    Implements a BERT-based layer to map tokens to dense vector representations for downstream sequence modeling.

    Python
    عرض على GitHub↗4,906
  • macanv/bert-bilstm-crf-nerالصورة الرمزية لـ macanv

    macanv/BERT-BiLSTM-CRF-NER

    4,904عرض على GitHub↗

    This project is a named entity recognition framework and TensorFlow-based natural language processing model. It provides a pipeline for adapting pre-trained language models to specific entity recognition and text classification tasks. The system implements a sequence labeling architecture that combines transformer-based embeddings with bidirectional sequence modeling and conditional random field decoding. It includes tools for fine-tuning model weights and training the network to identify and categorize entities within unstructured text. The framework also includes a client-server architectu

    Utilizes a BERT-based embedding layer to convert raw text into dense contextual vector representations.

    Python
    عرض على GitHub↗4,904
  • karpathy/ng-video-lectureالصورة الرمزية لـ karpathy

    karpathy/ng-video-lecture

    4,798عرض على GitHub↗

    هذا المشروع هو تنفيذ تعليمي لمحول (transformer) توليدي صغير الحجم مصمم لتدريس أساسيات معمارية الشبكات العصبية والتدريب. يعمل كتنفيذ مرجعي ودرس تعليمي لبناء شبكة عصبية توليدية للنصوص من الصفر. يوضح الكود المصدري آليات الترميز (tokenization)، والانتباه الذاتي (self-attention)، وبناء نموذج لغة خفيف الوزن. يركز على عملية بناء نموذج توليدي خطوة بخطوة لتوضيح كيفية بناء نماذج اللغة الكبيرة. يغطي التنفيذ المعمارية القائمة على المحولات، بما في ذلك الانتباه متعدد الرؤوس، والشبكات التغذية الأمامية، والقناع السببي. يستخدم PyTorch لحساب الموترات ويستخدم التعلم القائم على الانتشار العكسي (backpropagation) لتدريب النموذج على بيانات نصية متسلسلة.

    Provides token embedding layers that map discrete characters to high-dimensional dense vectors.

    Python
    عرض على GitHub↗4,798
  • deepseek-ai/engramالصورة الرمزية لـ deepseek-ai

    deepseek-ai/Engram

    4,462عرض على GitHub↗

    Engram is a dynamic knowledge retrieval system and memory augmentation framework for large language models. It functions as a scalable memory lookup layer and sparse architecture component designed to fuse static model knowledge with dynamic external states to improve factuality and reduce hallucinations. The system utilizes conditional memory retrieval and differentiable memory addressing to map input tokens to specific indices within a large-scale associative memory store. This allows the model to increase its total available parameters by storing weights in external lookup tables and activ

    Provides a scalable lookup layer for conditional memory retrieval of external knowledge.

    Python
    عرض على GitHub↗4,462
  • datawhalechina/tiny-universeالصورة الرمزية لـ datawhalechina

    datawhalechina/tiny-universe

    4,505عرض على GitHub↗

    Tiny Universe is an educational monorepo that delivers multiple independent implementations of core AI subsystems as self-contained Jupyter notebooks. It provides from-scratch constructions of foundational architectures including a complete Transformer model built from the original paper specification, a denoising diffusion probabilistic model for image generation, and a ReAct-style autonomous agent framework that equips an LLM with tools for planning and multi-step task execution. The project distinguishes itself by covering the full lifecycle of modern AI systems through hands-on implementa

    Maps token indices to dense vectors using a learnable lookup table for continuous representations.

    Jupyter Notebookagentdiffusionevaluation-metrics
    عرض على GitHub↗4,505
  • binroot/tensorflow-bookالصورة الرمزية لـ BinRoot

    BinRoot/TensorFlow-Book

    4,431عرض على GitHub↗

    هذا المشروع عبارة عن مجموعة من أمثلة تعلم الآلة TensorFlow التي توفر تطبيقات مرجعية لنماذج شبكة عصبية مختلفة. يغطي نماذج التعلم الخاضع للإشراف، وغير الخاضع للإشراف، والتعزيزي، والمتسلسل. يتضمن المستودع تطبيقات للشبكات العصبية التلافيفية التي تركز على تصنيف الصور وترتيبها، بالإضافة إلى الشبكات العصبية المتكررة للتنبؤ بالسلاسل الزمنية والترجمة من تسلسل إلى تسلسل. كما يوفر أمثلة لوكلاء التعلم التعزيزي المدربين عبر تحسين المكافأة وتقنيات التعلم غير الخاضع للإشراف مثل أجهزة التشفير التلقائي والخرائط ذاتية التنظيم لتجميع البيانات. تغطي القدرات الإضافية الانحدار والتصنيف الخاضع للإشراف، وتوليد التضمين الدلالي، واستخدام نماذج ماركوف المخفية لنمذجة البيانات المتسلسلة. يتضمن المشروع أيضاً أدوات لإدارة عمليات الموتر وتصور أداء النموذج عبر لوحات المعلومات. يتم تقديم المحتوى كسلسلة من دفاتر Jupyter.

    Provides neural network layers for retrieving dense vectors from learnable dictionaries using indices.

    Jupyter Notebookautoencoderbookclassification
    عرض على GitHub↗4,431
  • skyzh/tiny-llmالصورة الرمزية لـ skyzh

    skyzh/tiny-llm

    4,304عرض على GitHub↗

    tiny-llm is a large language model inference engine and transformer model implementation. It serves as a quantized model runtime and paged key-value cache manager, providing a specialized inference stack optimized for Apple Silicon. The system distinguishes itself through high-throughput execution techniques, including continuous batching and paged attention. It utilizes a paged memory system to eliminate fragmentation during token generation and employs on-the-fly dequantization of compressed weights to reduce the memory footprint during matrix multiplication. The project covers a broad ran

    Implements token embedding layers that map discrete token IDs to dense vector representations.

    Pythoncourselarge-language-modelllm
    عرض على GitHub↗4,304
  • datawhalechina/llms-from-scratch-cnالصورة الرمزية لـ datawhalechina

    datawhalechina/llms-from-scratch-cn

    4,211عرض على GitHub↗

    هذا المشروع عبارة عن دورة تعليمية ومجموعة من المواد الإرشادية لبناء نماذج لغوية كبيرة (LLMs) من الصفر باستخدام Python. يقدم دليلاً خطوة بخطوة ودروساً عملية تركز على الآليات الداخلية لهياكل المحولات (Transformers) وسير عمل التدريب المسبق. يتميز المستودع بإطار عمل لتنفيذ ومقارنة عائلات نماذج متنوعة، بما في ذلك Llama و GLM و RWKV. يستخدم نهج التجميع القائم على التكوين لتحليل الاختلافات الهيكلية والآليات الداخلية لهذه البنى المختلفة. يغطي الكود المصدري خط أنابيب التطوير الكامل، بما في ذلك معالجة النصوص مسبقاً، وترميز أزواج البايتات (BPE)، وتنفيذ الانتباه متعدد الرؤوس (Multi-head attention) مع القناع السببي (Causal masking). كما يتضمن أدوات تدريب مثل قص التدرج (Gradient clipping)، وجدولة معدل التعلم، وتحسين المعلمات الفائقة للتدريب المسبق على مجموعات بيانات غير مصنفة. تم تنفيذ المشروع باستخدام Jupyter Notebooks.

    Demonstrates the mathematical equivalence between embedding layers and fully connected layers using one-hot encoded vectors.

    Jupyter Notebookglmllamallm
    عرض على GitHub↗4,211
  • skindhu/build-a-large-language-model-cnالصورة الرمزية لـ skindhu

    skindhu/Build-A-Large-Language-Model-CN

    3,242عرض على GitHub↗

    This project is a generative AI educational resource and natural language processing course. It serves as a technical implementation guide for building, pre-training, and fine-tuning a large language model from scratch using PyTorch. The curriculum provides a step-by-step tutorial on large language model development, focusing specifically on the design of transformer-based text generation models. It includes dedicated instruction on parameter-efficient fine-tuning to optimize training by updating only a small subset of model weights. The material covers the end-to-end generative AI training

    Implements token embedding layers that map discrete text tokens to high-dimensional semantic vectors.

    HTML
    عرض على GitHub↗3,242
  • transformerlensorg/transformerlensالصورة الرمزية لـ TransformerLensOrg

    TransformerLensOrg/TransformerLens

    3,098عرض على GitHub↗

    TransformerLens is a library for mechanistic interpretability research designed to reverse engineer the learned algorithms within large language models. It provides a standardized framework for wrapping diverse transformer architectures, allowing researchers to extract, manipulate, and analyze internal activations and weights through a consistent interface. The project distinguishes itself through a comprehensive system of activation hooks that can capture, patch, and ablate internal tensors during the forward pass. It includes specialized utilities for decomposing fused projections, material

    Transforms input token IDs into dense vector representations using trainable lookup tables.

    Python
    عرض على GitHub↗3,098
  1. Home
  2. Artificial Intelligence & ML
  3. Vector Embeddings
  4. Dense Embeddings
  5. Token Embedding Layers

استكشف الوسوم الفرعية

  • Embedding Lookup Layers1 وسم فرعيNeural network layers that perform retrieval of dense vectors from a learnable dictionary using indices. **Distinct from Token Embedding Layers:** Focuses on the operational lookup mechanism rather than the representation of the embeddings themselves