AI/EXPLORER
OutilsCatégoriesSitesLLMsComparerQuiz IAAlternativesPremium
—Outils IA
—Sites & Blogs
—LLMs & Modèles
—Catégories
AI Explorer

Trouvez et comparez les meilleurs outils d'intelligence artificielle pour vos projets.

Fait avecen France

Explorer

  • ›Tous les outils
  • ›Sites & Blogs
  • ›LLMs & Modèles
  • ›Comparer
  • ›Chatbots
  • ›Images IA
  • ›Code & Dev

Entreprise

  • ›Premium
  • ›À propos
  • ›Contact
  • ›Blog

Légal

  • ›Mentions légales
  • ›Confidentialité
  • ›CGV

© 2026 AI Explorer·Tous droits réservés.

AccueilLLMsNitro 1 PixArt

Nitro 1 PixArt

par amd

Open source · 31k downloads · 5 likes

1.0
(5 avis)ImageAPI & Local
À propos

Nitro 1 PixArt est un modèle de génération d'images à partir de texte optimisé pour une exécution ultra-rapide, capable de produire des visuels haute résolution en une seule étape grâce à une distillation avancée. Basé sur une architecture de type transformer, il hérite des performances de PixArt-Sigma tout en réduisant drastiquement les ressources nécessaires, avec une baisse de 90,9 % des calculs pour une qualité quasi équivalente. Idéal pour les applications nécessitant une génération instantanée comme les outils créatifs, les assistants visuels ou les pipelines automatisés, il se distingue par son efficacité énergétique et sa compatibilité avec les infrastructures AMD. Son entraînement rapide et son code open-source en font également une solution accessible pour la recherche et le prototypage.

Documentation

AMD Nitro-1

image/jpeg

Introduction

Nitro-1 is a series of efficient text-to-image generation models that are distilled from popular diffusion models on AMD Instinct™ GPUs. The release consists of:

  • Nitro-1-SD: a UNet-based one-step model distilled from Stable Diffusion 2.1.
  • Nitro-1-PixArt: a high resolution transformer-based one-step model distilled from PixArt-Sigma.

⚡️ Open-source code! The models are based on our re-implementation of Latent Adversarial Diffusion Distillation, the method used to build the popular Stable Diffusion 3 Turbo model. Since the original authors didn't provide training code, we release our re-implementation to help advance further research in the field.

Details

  • Model architecture: Nitro-1-PixArt has the same architecture as PixArt-Sigma and is compatible with the diffusers pipeline.
  • Inference steps: This model is distilled to perform inference in just a single step. However, the training code also supports distilling a model for 2, 4 or 8 steps.
  • Hardware: We use a single node consisting of 4 AMD Instinct™ MI250 GPUs for distilling Nitro-1-PixArt.
  • Dataset: We use 1M prompts from DiffusionDB and generate the corresponding images from the base PixArt-Sigma model.
  • Training cost: The distillation process achieves reasonable results in less than 2 days on a single node.

Quickstart

Python
from diffusers import PixArtSigmaPipeline
import torch
from safetensors.torch import load_file

pipe = PixArtSigmaPipeline.from_pretrained("PixArt-alpha/PixArt-Sigma-XL-2-1024-MS")

ckpt_path = '<path to distilled checkpoint>'
transformer_state_dict = load_file(ckpt_path)
pipe.transformer.load_state_dict(transformer_state_dict)
pipe = pipe.to("cuda")

image = pipe(prompt='a photo of a cat',
             num_inference_steps=1,
             guidance_scale=0,
             timesteps=[400]).images[0]

For more details on training and evaluation please visit the GitHub repo.

Results

Compared to PixArt-Sigma, our model achieves a 90.9% reduction in FLOPs at the cost of just 3.7% lower CLIP score and 10.5% higher FID.

ModelFID ↓CLIP ↑FLOPsLatency on AMD Instinct MI250 (sec)
PixArt-Sigma, 20 steps34.140.3289187.967.46
Nitro-1-PixArt, 1 step37.750.316717.040.53

License

Copyright (c) 2018-2024 Advanced Micro Devices, Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Liens & Ressources
Spécifications
CatégorieImage
AccèsAPI & Local
LicenceOpen Source
TarificationOpen Source
Note
1.0

Essayer Nitro 1 PixArt

Accédez directement au modèle