Skip to content

Latest commit

 

History

History
75 lines (47 loc) · 3.47 KB

README.md

File metadata and controls

75 lines (47 loc) · 3.47 KB

Generative AI Models

Generative AI

Generative AI Models


Welcome to the Generative-AI-Models repository! This repository contains a collection of generative AI models implemented using Python and popular libraries like transformers, torch, diffusers, and more. These models can be used for various generative tasks such as image captioning, text-to-image generation, and more.

Getting Started

To get started with the models in this repository, you can use Google Colab, which provides a free and powerful environment for running your code with GPU acceleration.

Prerequisites

Before using the models, make sure you have the following:

  • A Google account to access Google Colab.
  • Basic knowledge of Python and deep learning concepts.

Running Models on Google Colab

We have provided Google Colab templates for each model to ensure that you can run them quickly and efficiently. Follow the steps below to get started:

  1. Open Google Colab: Click the links provided below for each model to open the respective Colab notebook.

  2. Connect to a GPU: In Colab, go to Runtime > Change runtime type, and select GPU as the hardware accelerator.

  3. Run the Notebook: Follow the instructions within the notebook to run the cells step by step. The models are pre-configured to run efficiently on Colab's environment.

Available Models

Below is a list of available models in this repository along with their corresponding Google Colab templates:

1. Text To Image Generator

Generate images from textual descriptions using the Stable Diffusion model.

  • Model Overview: Uses a diffusion model to create high-quality images from text prompts.
  • Colab Template: text_to_image_generator
  • Image Generation Output: Image_generation_output

2. Image To Text Generator

Generate descriptive captions for images using the Vision Transformer (ViT) and GPT-2 models.

  • Model Overview: Combines ViT for image processing and GPT-2 for text generation.
  • Colab Template: image_to_text_generator
  • Text Generation Output: Text_generation_output

How to Contribute

We welcome contributions from the community! If you have a model implementation you'd like to add or improvements to suggest, please follow these steps:

  1. Fork the repository.
  2. Create a new branch: git checkout -b feature/YourFeatureName.
  3. Make your changes and commit them: git commit -m 'Add some feature'.
  4. Push to the branch: git push origin feature/YourFeatureName.
  5. Submit a pull request.

License

This project is licensed under the MIT License.

Acknowledgments

  • Hugging Face for providing the transformers and diffusers libraries.
  • Google Colab for offering a free and powerful platform for running deep learning models.