mario-gpt icon indicating copy to clipboard operation
mario-gpt copied to clipboard

Generating Mario Levels with GPT2. Code for the paper "MarioGPT: Open-Ended Text2Level Generation through Large Language Models" https://arxiv.org/abs/2302.05981

Results 11 mario-gpt issues
Sort by recently updated
recently updated
newest added

Hi, i did try to use your exemple but it doesnt works. See the message on the screenshot. # you example script from mario_gpt.lm import MarioLM from mario_gpt.utils import view_level,...

HI! I saw your paper; I think it's a fantastic project! I noticed that there isn't a colab notebook available for people to try out the code. So I took...

We are making an open source, tile-based game with fairly similar constraints as super Mario: https://github.com/fishfolk/jumpy/ We’ve also made progress on procedural level generation using the Wave Function Collapse technique:...

Ok I sense this will be a very stupid question. so we generate AI Mario levels. perfect! How do we play them? :p

I don't see the Wiki enabled in this repo or I'd suggest putting them there. Maybe a new section at the bottom of the README so people can get a...

I'm trying to use it, but get the error ```bash File "python3.9/site-packages/mario_gpt/prompter.py", line 113, in output_hidden self.feature_extraction(prompt, return_tensors="pt")[0] AttributeError: 'list' object has no attribute 'mean' ``` code: ```python from mario_gpt...

May I ask how to use the `MarioBert` in this repo? I tried to call `MarioLM(mask_model=True)`, but `MarioBert` has no `sample` method: ``` generated_level = mario_lm.sample( AttributeError: 'MarioBert' object has...

It immidiatly closes python when i run setup.py

This is the script: from mario_gpt import MarioLM mario_lm = MarioLM() prompts = ["many pipes, many enemies, some blocks, high elevation"] generated_level = mario_lm.sample( prompts=prompts, num_steps=100, temperature=2.0, use_tqdm=True ) #...

1. TrainingConfig and MarioGPTTrainer cannot be used. 2. mario_lm = MarioLM(lm=BASE, tokenizer=BASE) The parameter here prompts an error. Is there no specific program for this training? Can you give some...