patrickvonplaten commited on
Commit
3d59359
1 Parent(s): eaaf433

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -19,7 +19,7 @@ SUBMISSIONS = {
19
  "karlo": load_dataset(os.path.join(ORG, "if-v-1.0"))["train"],
20
  # "Kadinsky":
21
  }
22
- NUM_QUESTIONS = 2
23
  MODEL_KEYS = "-".join(SUBMISSIONS.keys())
24
  SUBMISSION_ORG = f"results-{MODEL_KEYS}"
25
 
@@ -151,8 +151,12 @@ def change_view(row_number, dataframe):
151
 
152
 
153
  if True:
154
- TITLE = "Open-Source Parti Prompts"
155
- DESCRIPTION = "An interactive 'Which Generative AI' game to evaluate open-source generative AI models"
 
 
 
 
156
  GALLERY_COLUMN_NUM = len(SUBMISSIONS)
157
 
158
  with gr.Blocks(css="style.css") as demo:
 
19
  "karlo": load_dataset(os.path.join(ORG, "if-v-1.0"))["train"],
20
  # "Kadinsky":
21
  }
22
+ NUM_QUESTIONS = 10
23
  MODEL_KEYS = "-".join(SUBMISSIONS.keys())
24
  SUBMISSION_ORG = f"results-{MODEL_KEYS}"
25
 
 
151
 
152
 
153
  if True:
154
+ TITLE = "Community Parti Prompts - Who is your open-source genAI model?"
155
+ DESCRIPTION = """
156
+ An interactive game in which you click through pre-generated images from SD-v1-5, SD-v2.1, Karlo, and IF
157
+ using [Parti Prompts](https://huggingface.co/datasets/nateraw/parti-prompts) prompts.
158
+ You choices will go into the public community [genAI leaderboard](TODO)
159
+ """
160
  GALLERY_COLUMN_NUM = len(SUBMISSIONS)
161
 
162
  with gr.Blocks(css="style.css") as demo: