generated_from_trainer

<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. -->

ArtPrompter

A gpt2 powered predictive algorithm for making descriptive text prompts for A.I. image generators (e.g. MidJourney, Stable Diffusion, ArtBot, etc). The model was trained on a custom dataset containing 666K unique prompts from MidJourney. Simply start a prompt and let the algorithm suggest ways to finish it.

Art Prompter Basic

from transformers import pipeline

prompter = pipeline('text-generation',model='pearsonkyle/ArtPrompter', tokenizer='gpt2')

texts = prompter('A portal to a galaxy, view with', max_length=30, num_return_sequences=5)

for i in range(5):
    print(texts[i]['generated_text']+'\n')

Intended uses & limitations

Build sick prompts and lots of them.. use it to make animations or a discord bot that can interact with MidJourney.

Examples

Training procedure

~30 hours of finetune on RTX3070 with 666K unique prompts

Training hyperparameters

The following hyperparameters were used during training:

Framework versions