Skip to content

Commit

Permalink
gen2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Oct 15, 2023
1 parent 490f918 commit d5a06b5
Show file tree
Hide file tree
Showing 5 changed files with 860 additions and 16 deletions.
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[![Multi-Modality](agorabanner.png)](https://discord.gg/qUtxnK2NMf)

# Paper-Implementation-Template
A simple reproducible template to implement AI research papers
# Gen2
Implementation of "Text driven video generation" in pytorch

Paper Link
This will use the implementation of Gen1 with text as an output

[Paper Link](https://research.runwayml.com/gen2)

# Appreciation
* Lucidrains
Expand All @@ -12,13 +14,7 @@ Paper Link


# Install

# Usage

# Architecture

# Todo

``

# License
MIT
Expand Down
10 changes: 10 additions & 0 deletions example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

import torch
from gen2 import Gen2

model = Gen2()

images = torch.randn(1, 3, 128, 128)
video = torch.randn(1, 3, 16, 128, 128)

run_out = model.forward(images, video)
4 changes: 4 additions & 0 deletions gen2/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from gen2.main import Gen2


__all__ = ['Gen2']
Loading

0 comments on commit d5a06b5

Please sign in to comment.