# giga-models **Repository Path**: devdz/giga-models ## Basic Information - **Project Name**: giga-models - **Description**: GigaModels: A Comprehensive Repository and Platform for Multi-modal, Generative, and Perceptual Models - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-09 - **Last Updated**: 2026-03-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

GigaModels

A Comprehensive Repository for Multi-modal, Generative, and Perceptual Models

| Quick Start | Contributing | License | Citation |

## πŸ”₯ Latest News - **\[2025.12.08\]** 😊 We provide a refactored version of the [Cosmos-Predict2.5 and Cosmos-Transfer2.5](./projects/diffusion/cosmos-2.5) training and inference code, which makes the code more concise and readable and easier to use. - **\[2025.11.27\]** πŸŽ‰ We released **[GigaBrain-0](https://github.com/open-gigaai/giga-brain-0)**, a novel VLA foundation model empowered by world model-generated data. - **\[2025.11.26\]** πŸŽ‰ We released **[GigaWorld-0](https://github.com/open-gigaai/giga-world-0)**, a unified world model framework designed explicitly as a data engine to advance embodied AI. - **\[2025.10.29\]** 😊 We provided a clean [PyTorch reproduction](./projects/vla/pi0) of [Pi0 and Pi0.5](https://github.com/Physical-Intelligence/openpi). It supports end-to-end training and inference with better performance and lightweight deployment. - **\[2025.10.29\]** πŸŽ‰ We released **GigaModels**. ## ✨ Introduction GigaModels is an open-source project offering an intuitive, high-performance infrastructure for a wide range of models. This comprehensive toolkit empowers users throughout the entire workflow, from training and inference to deployment and model compression. We are dedicated to continuously integrating the latest advancements in open-source technology. Exciting updates and innovative features are always on the horizonβ€”stay tuned! ## ⚑ Installation GigaModels can be installed directly from source for the latest updates: ```bash conda create -n giga_models python=3.11.10 conda activate giga_models git clone https://github.com/open-gigaai/giga-models.git cd giga-models pip3 install -e . ``` ## πŸš€ Quick Start GigaModels is designed to be very simple to use. You can easily load and utilize the model using `load_pipeline` or `XXPipeline`. Here is an example of how to use: ```python # Load the Grounding DINO model with load_pipeline from PIL import Image from giga_models import load_pipeline image = Image.open(image_path) pipe = load_pipeline('detection/grounding_dino/swint_ogc') pred_boxes, pred_labels, pred_scores = pipe(image, det_labels) # Load the Depth Anything model with DepthAnythingPipeline from giga_models import DepthAnythingPipeline pipe = DepthAnythingPipeline('depth-anything/Depth-Anything-V2-Large-hf').to('cuda') depth_image = pipe(image) ``` More details on using GigaModels can be found in the [`projects`](./projects) folder. ## 🧨 Tasks & Pipelines
Task Pipeline Inference Training
VLA VLA
Diffusion Diffusion
Vision Depth Estimation
Detection
Edge Detection
Frame Interpolation
Image Restoration
Keypoints
Optical Flow
Segmentation
Shot Boundary Detection
## 🀝 Contributing We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details. ## πŸ“„ License This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details. ## πŸ“– Citation ```bibtex @misc{gigaai2025gigamodels, author = {GigaAI}, title = {GigaModels: A Comprehensive Repository for Multi-modal, Generative, and Perceptual Models}, year = {2025}, publisher = {GitHub}, journal = {GitHub repository}, howpublished = {\url{https://github.com/open-gigaai/giga-models}} } ```