awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
Back to google-research/albert

Open-source alternatives to ALBERT

30 open-source projects similar to google-research/albert, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best ALBERT alternative.

  • google-research/bertgoogle-research avatar

    google-research/bert

    39,869View on GitHub↗

    This project is a transformer-based language model and natural language processing toolkit designed to generate deep contextual representations of text. By utilizing a transformer-based encoder architecture, the system processes input sequences through stacked self-attention layers to capture the semantic meaning of tokens based on their surrounding sentence structure. The model distinguishes itself through bidirectional contextual processing, which analyzes text in both directions simultaneously, and masked language modeling, which trains the system by predicting hidden tokens within a seque

    Pythongooglenatural-language-processingnatural-language-understanding
    View on GitHub↗39,869
  • jzhang38/tinyllamajzhang38 avatar

    jzhang38/TinyLlama

    8,994View on GitHub↗

    TinyLlama is a compact 1.1B parameter language model pretrained on a dataset of 3 trillion tokens. It is an edge AI model designed for high-performance text generation on memory-constrained devices. The project provides a distributed pretraining framework for training small language models across multiple GPUs and nodes. It also includes a finetuning toolkit for full-parameter weight adjustments to adapt the base model for chat and specific tasks. The system supports distributed large language model training and on-device text generation. Its architectural components include rotary positiona

    Python
    View on GitHub↗8,994
  • allenai/longformerallenai avatar

    allenai/longformer

    2,196View on GitHub↗

    Longformer and LongformerEncoderDecoder (LED) are pretrained transformer models for long documents.

    Python
    View on GitHub↗2,196
  • ari-holtzman/degenA

    ari-holtzman/degen

    0View on GitHub↗
    View on GitHub↗0

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Find more with AI search
  • chenfei-wu/taskmatrixchenfei-wu avatar

    chenfei-wu/TaskMatrix

    34,082View on GitHub↗

    TaskMatrix is a multimodal AI chat interface and visual task orchestrator. It combines language models with visual recognition to enable the exchange, analysis, and modification of images within a conversational environment. The system coordinates multiple foundation models through orchestration pipelines that chain language, detection, and segmentation models. This allows for complex visual operations, such as using text instructions to guide image masking and executing modular inpainting workflows to edit specific image regions. The project includes a computer vision toolset for object det

    Python
    View on GitHub↗34,082
  • chiang-yuan/llampchiang-yuan avatar

    chiang-yuan/llamp

    99View on GitHub↗

    Large Language Model Made Powerful for High-fidelity Materials Knowledge Retrieval and Distillation

    Jupyter Notebook
    View on GitHub↗99
  • cvlab-columbia/vipercvlab-columbia avatar

    cvlab-columbia/viper

    1,717View on GitHub↗

    Code for the paper "ViperGPT: Visual Inference via Python Execution for Reasoning"

    Jupyter Notebook
    View on GitHub↗1,717
  • databrickslabs/dollydatabrickslabs avatar

    databrickslabs/dolly

    10,795View on GitHub↗

    Dolly is an instruction-tuned large language model designed to follow complex natural language directions. It operates as a causal language model that predicts the next token in a sequence to generate coherent conversational responses and perform tasks such as brainstorming, classification, and question answering. The project focuses on the development of models using open datasets suitable for commercial application. It enables the creation of instruction-following models by utilizing curated collections of human-generated instruction-response pairs. The repository provides capabilities for

    Python
    View on GitHub↗10,795
  • facebookresearch/detrfacebookresearch avatar

    facebookresearch/detr

    15,305View on GitHub↗

    This project provides a transformer-based object detection model that treats the task as a direct set prediction problem. It implements a vision system capable of predicting bounding boxes and class labels for objects within an image, as well as frameworks for instance and panoptic segmentation. The architecture utilizes a transformer encoder and decoder to perform end-to-end set prediction, employing a Hungarian matcher to assign predicted boxes to ground truth objects. It incorporates a convolutional backbone for feature extraction and a system of learnable object queries to probe image loc

    Python
    View on GitHub↗15,305
  • facebookresearch/fairseqfacebookresearch avatar

    facebookresearch/fairseq

    32,228View on GitHub↗

    Fairseq is a PyTorch toolkit for sequence-to-sequence modeling, specializing in neural machine translation, automatic speech recognition, and large-scale language model training. It provides a framework for processing and aligning diverse data sources, including text, audio, and video, to support tasks such as speech-to-text conversion and multimodal sequence learning. The project is distinguished by its distributed training capabilities, which utilize parameter sharding, mixed-precision training, and CPU offloading to handle models that exceed single-device memory. It also includes specializ

    Python
    View on GitHub↗32,228
  • facebookresearch/spanbertfacebookresearch avatar

    facebookresearch/SpanBERT

    907View on GitHub↗

    This repository contains code and models for the paper: SpanBERT: Improving Pre-training by Representing and Predicting Spans. If you prefer to use Huggingface, please check out this link -- https://huggingface.co/SpanBERT

    Python
    View on GitHub↗907
  • facebookresearch/xlmfacebookresearch avatar

    facebookresearch/XLM

    2,930View on GitHub↗

    PyTorch original implementation of Cross-lingual Language Model Pretraining.

    Python
    View on GitHub↗2,930
  • ggerganov/llama.cppggerganov avatar

    ggerganov/llama.cpp

    116,912View on GitHub↗

    llama.cpp is a high-performance C++ inference engine and runtime for executing large language models locally across various hardware architectures. It provides the core components for local model execution, including a dedicated model quantizer for compressing weights into the GGUF format and a system for generating text embeddings for semantic search. The project distinguishes itself through specialized memory and execution optimizations, such as block-wise weight quantization to reduce memory footprints and memory-mapped model loading. It supports structured text generation by using formal

    C++
    View on GitHub↗116,912
  • google-research/electragoogle-research avatar

    google-research/electra

    2,368View on GitHub↗

    ELECTRA: Pre-training Text Encoders as Discriminators Rather Than Generators

    Pythondeep-learningnlptensorflow
    View on GitHub↗2,368
  • google-research/scenicgoogle-research avatar

    google-research/scenic

    3,807View on GitHub↗

    Scenic is a research framework designed for the development and training of deep learning models, with a specific focus on computer vision and multimodal transformer architectures. It provides a comprehensive toolkit for defining neural network structures, managing large-scale data pipelines, and executing training workflows across distributed hardware environments. The framework is built upon a functional programming paradigm that utilizes hardware-agnostic tensor abstractions and just-in-time compilation to maximize computational efficiency. By employing modular layer composition, it allows

    Python
    View on GitHub↗3,807
  • google-research/text-to-text-transfer-transformergoogle-research avatar

    google-research/text-to-text-transfer-transformer

    6,528View on GitHub↗

    This is a machine learning framework for treating diverse natural language processing tasks as a unified text-to-text problem. It provides a toolkit for pre-training and fine-tuning large-scale transformer models, utilizing a system where both inputs and outputs are formatted as raw text sequences. The framework is distinguished by its distributed training system, which uses mesh-based strategies to scale model weights and training batches across multiple TPU cores. It supports multi-task learning by combining diverse datasets into a single training stream using configurable mixture rates, al

    Python
    View on GitHub↗6,528
  • huggingface/swift-coreml-transformershuggingface avatar

    huggingface/swift-coreml-transformers

    1,682View on GitHub↗

    Swift Core ML 3 implementations of GPT-2, DistilGPT-2, BERT, and DistilBERT for Question answering. Other Transformers coming soon!

    Swift
    View on GitHub↗1,682
  • huggingface/transformershuggingface avatar

    huggingface/transformers

    161,630View on GitHub↗

    Transformers is a comprehensive library for machine learning that provides a unified interface for training, fine-tuning, and deploying transformer-based models. It supports a wide range of tasks, including text classification, language modeling, question answering, and sequence-to-sequence translation, while offering specialized architectures for both text and vision processing. The framework includes tools for managing the entire model lifecycle, from data preprocessing and tokenization to distributed training and inference. The library features extensive support for model optimization and

    Pythonaudiodeep-learningdeepseek
    View on GitHub↗161,630
  • idea-research/grounding-dino-1.5-apiIDEA-Research avatar

    IDEA-Research/Grounding-DINO-1.5-API

    1,127View on GitHub↗

    Grounding DINO 1.5

    Python
    View on GitHub↗1,127
  • juncongmoo/chatllamajuncongmoo avatar

    juncongmoo/chatllama

    1,201View on GitHub↗

    ChatLLaMA 📢 Open source implementation for LLaMA-based ChatGPT runnable in a single GPU. 15x faster training process than ChatGPT

    Python
    View on GitHub↗1,201
  • kaiminghe/deep-residual-networksKaimingHe avatar

    KaimingHe/deep-residual-networks

    6,738View on GitHub↗

    This project provides a deep residual network framework and pre-trained PyTorch models designed for high-accuracy image recognition. It implements a neural network architecture that utilizes skip connections to enable the training of very deep models without gradient degradation. The system is designed for computer vision tasks, including image classification, object detection, and visual data segmentation. It includes weights trained on ImageNet to support transfer learning and the fine-tuning of models on custom image datasets. The architectural design focuses on residual learning blocks,

    View on GitHub↗6,738
  • kimiyoung/transformer-xlkimiyoung avatar

    kimiyoung/transformer-xl

    3,703View on GitHub↗

    This project is an implementation of the Transformer-XL language model, a neural network architecture designed for long-context language modeling. It provides frameworks for training and deploying models that capture long-term dependencies and relationships in text sequences that extend beyond a fixed context window. The implementation supports both PyTorch and TensorFlow, allowing for distributed training across multiple GPUs and host nodes. It employs a recurrent mechanism to maintain coherence in extended sequences, utilizing segment-level recurrence and state-based memory reuse. The code

    Python
    View on GitHub↗3,703
  • lamalab-org/chembenchlamalab-org avatar

    lamalab-org/chembench

    142View on GitHub↗

    ChemBench

    Python
    View on GitHub↗142
  • lianjiatech/belleLianjiaTech avatar

    LianjiaTech/BELLE

    8,273View on GitHub↗

    BELLE is a specialized implementation of Chinese conversational large language models, encompassing a full instruction tuning framework. It provides a pipeline for training, evaluating, and deploying models optimized for natural language understanding and dialogue tasks in the Chinese language. The project is distinguished by its integrated approach to model refinement, combining the curation of multi-million entry instruction datasets with a distributed training pipeline. This pipeline supports both full fine-tuning and low-rank adaptation to optimize conversational performance. The system

    HTMLbloomchinese-nlpgpt-evaluation
    View on GitHub↗8,273
  • lich99/chatglm-finetune-loralich99 avatar

    lich99/ChatGLM-finetune-LoRA

    716View on GitHub↗

    Code for fintune ChatGLM-6b using low-rank adaptation (LoRA)

    Jupyter Notebook
    View on GitHub↗716
  • llava-vl/llava-plus-codebaseLLaVA-VL avatar

    LLaVA-VL/LLaVA-Plus-Codebase

    767View on GitHub↗

    Learning to Use Tools For Creating Multimodal Agents.

    Python
    View on GitHub↗767
  • lm-sys/fastchatlm-sys avatar

    lm-sys/FastChat

    39,472View on GitHub↗

    FastChat is a training and serving platform for large language models that provides an integrated toolkit for fine-tuning, hosting, and benchmarking chatbots. It functions as an inference server capable of hosting multiple models and exposing them via a standardized API for chat applications. The platform distinguishes itself through a distributed model controller that manages worker nodes and routes requests across a hardware-agnostic inference layer supporting various accelerators. It includes a dedicated evaluation framework for assessing model quality using automated judges, multi-turn di

    Python
    View on GitHub↗39,472
  • locuslab/tcnlocuslab avatar

    locuslab/TCN

    4,525View on GitHub↗

    TCN is a deep learning sequence framework and library for building temporal convolutional networks. It provides a toolkit for implementing purely convolutional architectures to model sequential data as an alternative to recurrent neural networks. The project includes a sequence modeling benchmark suite designed to evaluate the accuracy and processing speed of architectures. This suite utilizes standardized tasks, including memory problems, digit classification, music, and language tasks, to quantify performance. The framework covers a range of structural components for sequence processing, s

    Python
    View on GitHub↗4,525
  • mcg-nju/videomaeMCG-NJU avatar

    MCG-NJU/VideoMAE

    1,760View on GitHub↗

    NeurIPS 2022 Spotlight VideoMAE: Masked Autoencoders are Data-Efficient Learners for Self-Supervised Video Pre-Training

    Python
    View on GitHub↗1,760
  • microsoft/jarvismicrosoft avatar

    microsoft/JARVIS

    24,854View on GitHub↗

    JARVIS is a system for large language model task orchestration, deployment management, and automation benchmarking. It utilizes a task orchestrator to decompose complex requests into actionable steps and coordinates various expert models to synthesize final responses. The project includes an AI model deployment manager to handle the local deployment of expert models across different hardware scales. It further provides an AI workflow API consisting of web endpoints used to trigger automated task workflows and retrieve results from model selection stages. The framework incorporates an automat

    Python
    View on GitHub↗24,854