File size: 1,211 Bytes
966ae59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#-----------------#
#  Global Config  #
#-----------------#

# optional args
target: ~
prompt: ~
neg_prompt: ~ # negative prompt

# Accelerate config
state:
  cpu: False # use cpu
  mprec: no # mixed precision, choices: 'no', 'fp16', 'bf16'
#  wandb: False
#  tensorboard: False

# Diffusers config
diffuser:
  download: True # Set this variable to True the first time it runs
  force_download: False
  resume_download: False

# PyDiffVG config
diffvg:
  print_timing: False

# reproduction
seed: 951222
# multi-run
multirun: False
srange: ~ # seed range, example: [100, 100]

# log
result_path: './workspace'
save_step: 10
eval_step: 10

# visual rendering process
mv: False # make video
framefreq: 5 # save the image interval
framerate: 24 # by adjusting the frame rate, you can control the playback speed of the output video

# hydra setting
hydra:
  help:
    # app name, override to match the name your app is known by
    app_name: 'SVGRender'
  run:
    # output directory for normal runs
    # warning: make sure that the L56-58 of '/libs/engine/model_state.py' and 'dir' are modified together
    dir: ./${result_path}/${x.method}-${now:%Y-%m-%d-%H-%M}

# default settings
defaults:
  - _self_
  - x: ~