Adityadn commited on
Commit
7fd4d1f
1 Parent(s): 65770d8

Update modules/config.py

Browse files
Files changed (1) hide show
  1. modules/config.py +6 -2
modules/config.py CHANGED
@@ -351,9 +351,13 @@ embeddings_downloads = get_config_item_or_set_default(
351
  available_aspect_ratios = get_config_item_or_set_default(
352
  key='available_aspect_ratios',
353
  default_value=[
354
- '1080*1920', '800*1000', '1080*1080', '2560*2048', '6000*4000', '1024*768',
355
- '1920*1080', '3440*1440', '5760*1920'
 
 
 
356
  ],
 
357
  validator=lambda x: isinstance(x, list) and all('*' in v for v in x) and len(x) > 1
358
  )
359
  default_aspect_ratio = get_config_item_or_set_default(
 
351
  available_aspect_ratios = get_config_item_or_set_default(
352
  key='available_aspect_ratios',
353
  default_value=[
354
+ '704*1408', '704*1344', '768*1344', '768*1280', '832*1216', '832*1152',
355
+ '896*1152', '896*1088', '960*1088', '960*1024', '1024*1024', '1024*960',
356
+ '1088*960', '1088*896', '1152*896', '1152*832', '1216*832', '1280*768',
357
+ '1344*768', '1344*704', '1408*704', '1472*704', '1536*640', '1600*640',
358
+ '1664*576', '1728*576'
359
  ],
360
+
361
  validator=lambda x: isinstance(x, list) and all('*' in v for v in x) and len(x) > 1
362
  )
363
  default_aspect_ratio = get_config_item_or_set_default(