sashavor
commited on
Commit
•
84cfbf6
1
Parent(s):
1ba7446
fixing reqs
Browse files- app.py +1 -1
- requirements.txt +2 -2
app.py
CHANGED
@@ -26,7 +26,7 @@ seeds = [46267, 48040, 51237, 54325, 60884, 64830, 67031, 72935, 92118, 93109]
|
|
26 |
|
27 |
adjectives = prompts['Descriptive-Adj'].tolist()[:10]
|
28 |
#adjectives = ['attractive','strong']
|
29 |
-
adjectives.
|
30 |
professions = [p.lower() for p in prompts['Occupation-Noun'].tolist()]
|
31 |
|
32 |
with gr.Blocks() as demo:
|
|
|
26 |
|
27 |
adjectives = prompts['Descriptive-Adj'].tolist()[:10]
|
28 |
#adjectives = ['attractive','strong']
|
29 |
+
adjectives.insert(0, '')
|
30 |
professions = [p.lower() for p in prompts['Occupation-Noun'].tolist()]
|
31 |
|
32 |
with gr.Blocks() as demo:
|
requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
|
2 |
-
pandas
|
|
|
1 |
+
pillow
|
2 |
+
pandas
|