Genie2
Project description
Genie2 - Pytorch (wip)
Implementation of a framework for Genie2 in Pytorch
Install
$ pip install genie2-pytorch
Usage
import torch
from genie2_pytorch import Genie2
genie = Genie2(
dim = 512,
depth = 12,
dim_latent = 768,
num_actions = 256,
latent_channel_first = True,
is_video_enc_dec = True
)
video = torch.randn(2, 768, 3, 2, 2)
actions = torch.randint(0, 256, (2, 3))
loss, breakdown = genie(video, actions = actions)
loss.backward()
generated_video = genie.generate(video[:, :, 0], num_frames = 16)
assert generated_video.shape == (2, 768, 16 + 1, 2, 2)
Interactive
import torch
from genie2_pytorch import Genie2
genie = Genie2(
dim = 512,
depth = 12,
dim_latent = 768,
num_actions = 256,
latent_channel_first = True,
is_video_enc_dec = True
)
video = torch.randn(1, 768, 3, 2, 2)
actions = torch.randint(0, 256, (1, 3))
loss, breakdown = genie(video, actions = actions)
loss.backward()
generated_video, actions = genie.generate(
video[:, :, 0],
num_frames = 16,
interactive = True,
init_action = 0
)
# you will be prompted to enter the next action id(s) at every next time frame of the video
assert generated_video.shape == (1, 768, 16 + 1, 2, 2)
Citations
@inproceedings{Valevski2024DiffusionMA,
title = {Diffusion Models Are Real-Time Game Engines},
author = {Dani Valevski and Yaniv Leviathan and Moab Arar and Shlomi Fruchter},
year = {2024},
url = {https://api.semanticscholar.org/CorpusID:271962839}
}
@article{Ding2024DiffusionWM,
title = {Diffusion World Model},
author = {Zihan Ding and Amy Zhang and Yuandong Tian and Qinqing Zheng},
journal = {ArXiv},
year = {2024},
volume = {abs/2402.03570},
url = {https://api.semanticscholar.org/CorpusID:267499902}
}
@inproceedings{Sadat2024EliminatingOA,
title = {Eliminating Oversaturation and Artifacts of High Guidance Scales in Diffusion Models},
author = {Seyedmorteza Sadat and Otmar Hilliges and Romann M. Weber},
year = {2024},
url = {https://api.semanticscholar.org/CorpusID:273098845}
}
@misc{ParkerHolder2024,
author = {Jack Parker-Holder, Philip Ball, Jake Bruce, Vibhavari Dasagi, Kristian Holsheimer, Christos Kaplanis, Alexandre Moufarek, Guy Scully, Jeremy Shar, Jimmy Shi, Stephen Spencer, Jessica Yung, Michael Dennis, Sultan Kenjeyev, Shangbang Long, Vlad Mnih, Harris Chan, Maxime Gazeau, Bonnie Li, Fabio Pardo, Luyu Wang, Lei Zhang, Frederic Besse, Tim Harley, Anna Mitenkova, Jane Wang, Jeff Clune, Demis Hassabis, Raia Hadsell, Adrian Bolton, Satinder Singh, Tim Rocktäschel},
url = {https://deepmind.google/discover/blog/genie-2-a-large-scale-foundation-world-model/}
}
@inproceedings{Nguyen2024TurningUT,
title = {Turning Up the Heat: Min-p Sampling for Creative and Coherent LLM Outputs},
author = {Minh Nguyen and Andrew Baker and Clement Neo and Allen Roush and Andreas Kirsch and Ravid Shwartz-Ziv},
year = {2024},
url = {https://api.semanticscholar.org/CorpusID:270870613}
}
@article{Lee2022AutoregressiveIG,
title = {Autoregressive Image Generation using Residual Quantization},
author = {Doyup Lee and Chiheon Kim and Saehoon Kim and Minsu Cho and Wook-Shin Han},
journal = {2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
year = {2022},
pages = {11513-11522},
url = {https://api.semanticscholar.org/CorpusID:247244535}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
genie2_pytorch-0.0.21.tar.gz
(1.3 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file genie2_pytorch-0.0.21.tar.gz.
File metadata
- Download URL: genie2_pytorch-0.0.21.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47f1d6a0779ee9288a85f9b3c8968ef563df996db8a2d9e1eb887ca254b9e5e9
|
|
| MD5 |
e31f65b1f74dd202dc37d478e26d0950
|
|
| BLAKE2b-256 |
c146087d6e769219704ef0b2178ed8d2ef4e6b8fd4155a4e9521afdd8ff8382c
|
File details
Details for the file genie2_pytorch-0.0.21-py3-none-any.whl.
File metadata
- Download URL: genie2_pytorch-0.0.21-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d84c507681f9aed90874fc7485d22c49bc226d6a07e49f13bec8038dfd8adc39
|
|
| MD5 |
0a6b92e6c2ed7a7503d35e18e3026b65
|
|
| BLAKE2b-256 |
ed4c4ee677cad894fcdd7f6e8b2a68040373e37b99ec19f5cde46d8982012951
|