NikhilJoson commited on
Commit
561a9b7
·
verified ·
1 Parent(s): d5f6297

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,10 +5,10 @@ import random
5
  import os
6
 
7
  # Define the folder containing images
8
- CELEB_FOLDER = "./Celebs"
9
 
10
  # Get the list of celebrity images from the folder
11
- celebs = {os.path.splitext(file)[0]: os.path.join(CELEB_FOLDER, file) for file in os.listdir(CELEB_FOLDER)}
12
 
13
  # Define pixel sizes for different levels of clarity
14
  PIXEL_SIZES = [64, 48, 32, 24, 16, 12, 8, 4, 2]
 
5
  import os
6
 
7
  # Define the folder containing images
8
+ CHRS_FOLDER = "./Cartoon_Characters"
9
 
10
  # Get the list of celebrity images from the folder
11
+ celebs = {os.path.splitext(file)[0]: os.path.join(CHRS_FOLDER, file) for file in os.listdir(CHRS_FOLDER)}
12
 
13
  # Define pixel sizes for different levels of clarity
14
  PIXEL_SIZES = [64, 48, 32, 24, 16, 12, 8, 4, 2]