# 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
| 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 |