ad
ad

Oasis 500M - Interactive World Model - AI Gameplay Generator - Install Locally

Science & Technology


Introduction

Introduction

Welcome to the world of Oasis, an interactive world model developed by Decard and H. Oasis is a cutting-edge AI model built upon diffusion transformers and boasts an impressive 500 million parameters. This model enables users to generate gameplay simply by providing keyboard input, operating in an autoregressive manner. Remarkably, you won’t need any game engines, code, or complex logic. Everything is handled by this standalone model, which can be installed locally on your system for free.

What Makes Oasis Special?

Oasis can generate realistic gameplay by emulating the actions of millions of frames sourced from existing gameplay. This allows you to create engaging gaming content without the traditional tools typically necessary for game development. Within this article, I will guide you through the installation process on your local machine, demonstrating how easy it is to harness the power of AI for gaming.

Installation Process

Before diving into the installation, let’s set the stage: I am operating on an Ubuntu 22.04 system with an NVIDIA RTX A6000 GPU, which provides 48 GB of VRAM.

Step 1: Create a Virtual Environment

We start by creating a virtual environment using Conda, named "AI". This helps to manage dependencies without cluttering your main environment.

conda create -n AI python=3.8
conda activate AI

Step 2: Install Prerequisites

Next, we will install essential packages like torch and torchvision. This installation may take a few minutes, as it handles all necessary prerequisites.

pip install torch torchvision transformers

Step 3: Clone the Oasis Repository

Following the prerequisites, we clone the Oasis repository using Git. The commands for cloning and installation will be readily available in the video description for easy access.

git clone <repository-link>
cd oasis
pip install -r requirements.txt

Step 4: Hugging Face Authentication

To utilize the model, you must log in to Hugging Face to accept the terms and conditions and obtain a read token. Enter the token following your login to enable access to the required models.

huggingface-cli login

Step 5: Download the Models

Now, we proceed to download the necessary models. The main component is the diffusion transformer model, which is lightweight at around 2.43 MB.

git lfs install
git lfs pull

Next, we also download the VAE model, which is responsible for converting latent space to pixel space.

Step 6: Running the Gameplay Generation

Open your code editor and navigate to the particle of interest in the downloaded files. The gameplay generation code imports the required libraries and loads the models. Simply input your sample video within the specified part of the code.

python generate.py

Step 7: Checking GPU Usage

As the model begins generating gameplay, you can monitor the GPU usage to see performance metrics in real-time. For example, it might take around 6 GB of VRAM during generation, making it accessible even to those with lower specifications.

Example Result

Once the generation process is complete, you will notice a new video file created. I generated several gameplay videos using sample input videos, and the results were astonishing, demonstrating how the AI can create immersive gaming experiences from simple inputs.

Conclusion

In summary, the Oasis model revolutionizes how we can generate gameplay using AI technology, allowing enthusiasts to create content effortlessly. Whether you're aiming to produce unique gameplays or simply exploring the boundaries of AI, Oasis is worth considering.

Keywords

  • Oasis
  • Interactive World Model
  • AI Gameplay Generator
  • Gameplay
  • Diffusion Transformers
  • Local Installation
  • Virtual Environment
  • Hugging Face
  • NVIDIA RTX A6000

FAQ

Q1: What is Oasis?
A1: Oasis is an interactive world model developed by Decard and H based on diffusion transformers, which enables users to generate gameplay without needing a game engine.

Q2: How can I install Oasis on my local system?
A2: You can install Oasis by creating a virtual environment, installing necessary packages, cloning the repository, logging into Hugging Face, downloading models, and then running the generation script.

Q3: Is Oasis free to use?
A3: Yes, Oasis can be installed locally for free.

Q4: What kind of hardware do I need to run Oasis?
A4: While Oasis can run on modest setups, it performs best on systems with dedicated GPUs; e.g., an NVIDIA RTX A6000, though it can work with 8GB VRAM GPUs as well.

Q5: Can I use my own videos to generate gameplay?
A5: Absolutely! You can replace the sample videos provided in the code to generate gameplay based on your own video inputs.