This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AI Quote & Image Generator | |
# Workshop Project by Laxmi Mourya | |
# -------------------------------- | |
# This notebook generates motivational quotes using GPT-2 (Hugging Face) | |
# and visualizes them with an AI-generated image using Stable Diffusion. | |
# No training is involved — using open-source models. | |
!pip install transformers diffusers torch accelerate --quiet | |
from transformers import pipeline |